/*
// ----------------------------------------------
// 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;
  font-family: "Din", Arial, sans-serif;
}

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

@font-face {
  font-family: 'Garamond3LTPro';
  src: url("../fonts/2E8375_0_0.eot");
  src: url("../fonts/2E8375_0_0.eot?#iefix") format("embedded-opentype"), url("../fonts/2E8375_0_0.woff2") format("woff2"), url("../fonts/2E8375_0_0.woff") format("woff"), url("../fonts/2E8375_0_0.ttf") format("truetype");
}
@font-face {
  font-family: 'Din';
  font-weight: bold;
  src: url("../fonts/DINWeb-Bold.eot");
  src: url("../fonts/DINWeb-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/DINWeb-Bold.woff2") format("woff2"), url("../fonts/DINWeb-Bold.woff") format("woff"), url("../fonts/DINWeb-Bold.ttf") format("truetype");
}
@font-face {
  font-family: 'Din';
  src: url("../fonts/DINWeb.woff") format("woff");
  src: url("../fonts/DINWeb.eot");
  src: url("../fonts/DINWeb.eot?#iefix") format("embedded-opentype"), url("../fonts/DINWeb.woff2") format("woff2"), url("../fonts/DINWeb.woff") format("woff"), url("../fonts/DINWeb.ttf") format("truetype");
}
/* ============================================ *
 * 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 .wrapper {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 14px;
  line-height: 1.5;
}

.wrapper button,
.wrapper input,
.wrapper select,
.wrapper table,
.wrapper textarea {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 14px;
  line-height: 1.5;
}
.wrapper a {
  color: #4f2b1c;
  text-decoration: none;
}
.wrapper a:hover {
  color: #3c2115;
  text-decoration: underline;
}
.wrapper a:focus {
  outline-color: #462619;
  color: black;
}

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

/* ============================================ *
 * Typography
 * ============================================ */
.wrapper h1, .wrapper .h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #3399CC;
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: none;
}
.wrapper h2, .wrapper .h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: none;
  border-bottom: 1px solid #CCCCCC;
}
.wrapper h3, .wrapper .h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}
.wrapper h4, .wrapper .h4 {
  margin: 0;
  margin-bottom: 10px;
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}
.wrapper h5, .wrapper .h5 {
  margin: 0;
  margin-bottom: 10px;
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}
.wrapper h6, .wrapper .h6 {
  margin: 0;
  margin-bottom: 5px;
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

/* ============================================ *
 * Shared Classes
 * ============================================ */
.wrapper .address-list address {
  margin-bottom: 1em;
}
.wrapper .availability {
  margin-bottom: 0;
  font-size: 13px;
  text-transform: uppercase;
}
.wrapper .availability .label {
  display: none;
}
.wrapper .availability.in-stock {
  color: #11B400;
}
.wrapper .availability.available-soon,
.wrapper .availability.out-of-stock {
  color: #DF280A;
}
.wrapper .availability-only {
  color: #DF280A;
  margin-bottom: 10px;
}

/* -------------------------------------------- *
 * Page Titles
 */
.wrapper .page-title, .wrapper .page .main .page-title {
  float: none;
  margin-bottom: 15px;
}
.wrapper .page-title h1,
.wrapper .page-title h2,
.wrapper .product-name h1,
.wrapper .product-name .h1, .wrapper .page .main .page-title h1,
.wrapper .page .main .page-title h2,
.wrapper .page .main .product-name h1,
.wrapper .page .main .product-name .h1 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  color: #4f2b1c;
  border-bottom: 1px solid #4f2b1c;
  padding-bottom: 3px;
  margin: 15px 0;
  text-transform: none;
  float: none;
}

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

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

.wrapper .block-title {
  position: relative;
  padding: 10px 0 0;
  margin-bottom: 5px;
  border-top: 1px solid #CCCCCC;
}
.wrapper .block-title h2,
.wrapper .block-title h3,
.wrapper .block-title strong {
  margin: 0;
  margin-bottom: 10px;
  color: #4f2b1c;
  font-family: "Din", Arial, 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;
}
.wrapper .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) {
  .main .sidebar .block:not(.block-layered-nav) {
    margin-bottom: 0;
  }
  .main .sidebar .block:not(.block-layered-nav) .block-title {
    padding: 0;
    margin-top: 0;
    border-bottom: none;
    border-top: none;
    margin-bottom: 0;
  }
  .main .sidebar .block:not(.block-layered-nav) .block-title > strong {
    margin: 0;
    margin-bottom: 10px;
    color: #4f2b1c;
    font-family: "Din", Arial, 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;
  }
  .main .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 #4f2b1c;
    border-right: none;
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }
  .main .sidebar .block:not(.block-layered-nav) .block-title > strong:hover {
    background-color: #ededed;
  }
  .main .sidebar .block:not(.block-layered-nav) .block-title.active > strong {
    margin: 0;
    margin-bottom: 10px;
    color: #4f2b1c;
    font-family: "Din", Arial, 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;
  }
  .main .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 #4f2b1c;
    border-bottom: none;
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }
  .main .sidebar .block:not(.block-layered-nav) .block-title.active > strong:hover {
    background-color: #ededed;
  }
  .main .sidebar .block:not(.block-layered-nav) .block-content {
    padding: 10px;
    margin-top: 0;
    border-width: 0 1px;
    border-style: solid;
    border-color: #CCCCCC;
  }
  .main .sidebar .block:last-of-type {
    border-bottom: 1px solid #CCCCCC;
  }
}
/* -------------------------------------------- *
 * Secondary Navigation
 */
.wrapper .block-account .block-title,
.wrapper .block-cms-menu .block-title {
  padding-top: 0;
  border-top: none;
}
.wrapper .block-account li,
.wrapper .block-cms-menu li {
  text-transform: uppercase;
  font-family: "Din", Arial, sans-serif;
  margin: 7px 0;
}
.wrapper .block-account li strong,
.wrapper .block-cms-menu li strong {
  font-weight: 400;
  color: #4f2b1c;
}
.wrapper .block-account li a,
.wrapper .block-cms-menu li a {
  color: #4f2b1c;
}
.wrapper .block-account li a:hover,
.wrapper .block-cms-menu li a:hover {
  color: #4f2b1c;
}

/* ============================================ *
 * Buttons
 * ============================================ */
/* Secondary Buttons */
.wrapper .cart .buttons-set .button,
.wrapper .cart-table .button,
.wrapper .sidebar .actions .button,
.wrapper .button.button-secondary {
  background: #cc2027;
  color: #4f2b1c;
  padding: 7px 15px;
}
.wrapper .cart .buttons-set .button:hover,
.wrapper .cart-table .button:hover,
.wrapper .sidebar .actions .button:hover,
.wrapper .button.button-secondary:hover {
  background: #b61d23;
  cursor: pointer;
}
.wrapper .cart .buttons-set .button:active,
.wrapper .cart-table .button:active,
.wrapper .sidebar .actions .button:active,
.wrapper .button.button-secondary:active {
  background: #a0191f;
  color: #4f2b1c;
}
.wrapper .cart .buttons-set .button:focus,
.wrapper .cart-table .button:focus,
.wrapper .sidebar .actions .button:focus,
.wrapper .button.button-secondary:focus {
  color: #4f2b1c;
  background: #a0191f;
  outline: none;
}

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

/* Primary Buttons */
.wrapper .button,
.wrapper .cart-table .product-cart-actions .button,
.wrapper #co-shipping-method-form .buttons-set .button,
.wrapper .footer .button {
  background: #cac7a7;
  display: inline-block;
  padding: 8px 14px 3px 15px;
  border: 0;
  color: #4f2b1c;
  font-size: 15px;
  font-weight: bold;
  font-family: "Din", Arial, sans-serif;
  line-height: 22px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
}
.wrapper .button:hover,
.wrapper .cart-table .product-cart-actions .button:hover,
.wrapper #co-shipping-method-form .buttons-set .button:hover,
.wrapper .footer .button:hover {
  background: #c0bd97;
  cursor: pointer;
}
.wrapper .button:active,
.wrapper .cart-table .product-cart-actions .button:active,
.wrapper #co-shipping-method-form .buttons-set .button:active,
.wrapper .footer .button:active {
  background: #b7b387;
  color: #4f2b1c;
}
.wrapper .button:focus,
.wrapper .cart-table .product-cart-actions .button:focus,
.wrapper #co-shipping-method-form .buttons-set .button:focus,
.wrapper .footer .button:focus {
  background-color: #b7b387;
  outline: none;
  color: #4f2b1c;
}

.wrapper a.button {
  text-decoration: none;
}
.wrapper a.button:hover {
  color: #29170f;
}

/* Disabled - class for anchor, state for form elements */
.wrapper {
  /* Adjacent buttons */
}
.wrapper .button.disabled,
.wrapper .button:disabled {
  background: #C8C8C8;
  opacity: 0.6;
  cursor: not-allowed;
}
.wrapper .button + .button {
  margin-left: 5px;
}

.wrapper .button2 {
  border: 0;
  padding: 0 5px;
  margin: 0;
  background: transparent;
  cursor: pointer;
  vertical-align: middle;
}
.wrapper .button2:focus {
  outline: none;
}
.wrapper .button2 span,
.wrapper .button2 span span {
  line-height: 30px;
  height: 30px;
  text-decoration: underline;
  text-transform: uppercase;
  display: inline-block;
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
}
.wrapper .button2 span:hover,
.wrapper .button2 span span:hover {
  text-decoration: none;
  color: #8a161a;
}

@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: 479px) {
  .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 10px 0;
  padding-top: 10px;
  border-top: 1px solid #4f2b1c;
  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 {
  background-image: url(../images/icon_sprite.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 4 / 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .icon-sprite, .btn-remove2, .ratings .rating-box, .ratings .rating-box .rating, .sorter > .sort-by .sort-by-switcher, .sorter > .view-mode .grid,
  .sorter > .view-mode .list {
    background-image: url(../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: "Din", Arial, sans-serif;
  text-transform: uppercase;
}

.breadcrumbs a {
  float: left;
  color: #4f2b1c;
}

.breadcrumbs a:hover {
  color: #4f2b1c;
}

.breadcrumbs strong {
  color: #4f2b1c;
  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 #4f2b1c;
  text-align: center;
  /* Hide text */
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  position: relative;
}
.btn-remove:hover,
.btn-previous:hover {
  background-color: #4f2b1c;
  border-color: #4f2b1c;
}

.btn-remove:after {
  content: 'X';
  color: #4f2b1c;
  height: 20px;
  line-height: 20px;
  width: 100%;
  font-size: 10px;
  font-family: Arial, "Din", 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 #4f2b1c;
  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
 */
.page .main-container {
  position: relative;
  max-width: 1004px;
  margin: 0 auto;
  padding: 0;
}
.page .main-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: 479px) {
  .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: 1064px;
    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: 1004px;
  margin-left: auto;
  margin-right: auto;
  line-height: 11px;
  min-height: 40px;
  padding-top: 14.5px;
  padding-bottom: 14.5px;
  background-image: url("../images/demo-logo.png");
  background-position: left;
  background-repeat: no-repeat;
}
.global-site-notice p {
  margin-bottom: 0;
}

/* -------------------------------------------- *
 * Promotional Message Banner
 */
.promo-msg {
  color: #3399CC;
  text-align: center;
  margin: 10px;
  text-transform: uppercase;
  font-family: "Din", Arial, 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: "Din", 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: "Din", Arial, sans-serif;
}

.price-box .price-label {
  color: #A0A0A0;
  white-space: nowrap;
  font-family: "Din", Arial, 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-size: 14px;
  font-family: "Din", Arial, sans-serif;
}
.item-options:after {
  content: '';
  display: table;
  clear: both;
}
.item-options dt {
  float: left;
  clear: left;
  font-weight: 600;
  padding-right: 5px;
  font-style: italic;
}
.item-options dt:after {
  content: ': ';
}
.item-options dd {
  float: left;
  padding-left: 10px;
  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 #4f2b1c;
  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 #4f2b1c;
  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: 479px) {
  .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 #4f2b1c;
}

@media only screen and (max-width: 770px) {
  body .product-img-box .product-image:hover {
    border-color: #4f2b1c;
  }
}
.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: "Din", Arial, sans-serif;
  color: #4f2b1c;
  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: "Din", 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: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
}

.pages .current,
.pages .current:hover {
  color: #4f2b1c;
  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 #4f2b1c;
}

.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 #4f2b1c;
  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 #8a161a;
  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 #4f2b1c;
  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 #8a161a;
  border-left: none;
}

@media only screen and (max-width: 479px) {
  .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: 1004px) {
  .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 #8a161a;
  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 #8a161a;
  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
 */
.wrapper .fieldset p {
  margin-bottom: 7px;
}
.wrapper .fieldset p.required {
  margin-bottom: 5px;
  float: none;
  font-size: 0;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  margin-top: 0px;
  color: #4f2b1c;
}
.wrapper .fieldset p.required::before {
  content: '*';
  font-size: 16px;
  font-weight: bold;
  vertical-align: sub;
}
.wrapper .fieldset p.required::after {
  font-size: 13px;
  content: ' = Required';
}

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

form .legend {
  margin: 0;
  margin-bottom: 10px;
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  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 #4f2b1c;
}

form a {
  font-family: "Garamond3LTPro", Arial, sans-serif;
}

/* FORM in 2 column layout */
/* 1-col form */
form > .fieldset .form-list {
  padding: 0 15%;
}
form > .fieldset .form-list li {
  display: block;
  content: '';
  display: table;
  clear: both;
}
form > .fieldset .form-list label {
  display: block;
  width: 50%;
  float: left;
  text-align: right;
}
form > .fieldset .form-list .input-box {
  display: block;
  width: 50%;
  text-align: right;
  float: right;
}

/* -------------------------------------------- *
 * Input Box
 */
.wrapper .input-box {
  padding-top: 0px;
}
.wrapper .input-box:after {
  content: '';
  display: table;
  clear: both;
}
.wrapper 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
 */
.wrapper label {
  display: inline-block;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  font-weight: bold;
  /*line-height: 1.2;*/
  position: relative;
  bottom: -3px;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.wrapper label.required:after,
.wrapper span.required:after {
  content: ' *';
  color: #4f2b1c;
  font-weight: bold;
  font-family: "Din", Arial, sans-serif;
  font-size: 15px;
}
.wrapper label.required em,
.wrapper 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 #4f2b1c;
  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
 */
.wrapper .input-text {
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  border: 1px solid #4f2b1c;
  background: #FFFFFF;
  font-size: 13px;
}
.wrapper .input-text:focus {
  border: 1px solid #CCC;
}
.wrapper .input-text.validation-failed {
  border-color: #DF280A;
}
.wrapper .input-text.validation-failed:focus {
  outline-color: #ef9485;
}
.wrapper input[type=email],
.wrapper input[type=search],
.wrapper input[type=number],
.wrapper input[type=password],
.wrapper input[type=tel],
.wrapper input[type=text] {
  height: 30px;
  padding: 0 8px;
}
.wrapper input[type=email],
.wrapper input[type=search],
.wrapper input[type=number],
.wrapper input[type=password],
.wrapper input[type=tel],
.wrapper input[type=text] {
  width: 300px;
  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: center;
  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: 14px;
  font-weight: normal;
  vertical-align: top;
}

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

/* ============================================ *
 * Form List
 * ============================================ */
.wrapper {
  /* Turn the label of controls (radio/checkbox) into a button style that wraps the input */
}
.wrapper .form-list > li {
  margin-bottom: 15px;
}
.wrapper .form-list select {
  margin-top: 4px;
  width: 365px;
  max-width: 100%;
}
.wrapper .form-list .input-range .input-text {
  width: 74px;
}
.wrapper .form-list .field,
.wrapper .form-list .wide,
.wrapper .form-list .control {
  margin-bottom: 10px;
}
.wrapper .form-list .control,
.wrapper .sp-methods dt,
.wrapper #checkout-shipping-method-load .sp-methods dd,
.wrapper #co-shipping-method-form .sp-methods dd,
.wrapper .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 */
}
.wrapper .form-list .control div.input-box,
.wrapper .sp-methods dt div.input-box,
.wrapper #checkout-shipping-method-load .sp-methods dd div.input-box,
.wrapper #co-shipping-method-form .sp-methods dd div.input-box,
.wrapper .product-options ul.options-list div.input-box {
  display: inline;
  float: left;
}
.wrapper .form-list .control div.input-box:after,
.wrapper .sp-methods dt div.input-box:after,
.wrapper #checkout-shipping-method-load .sp-methods dd div.input-box:after,
.wrapper #co-shipping-method-form .sp-methods dd div.input-box:after,
.wrapper .product-options ul.options-list div.input-box:after {
  display: none;
}
.wrapper .form-list .control input.radio,
.wrapper .form-list .control input.checkbox,
.wrapper .sp-methods dt input.radio,
.wrapper .sp-methods dt input.checkbox,
.wrapper #checkout-shipping-method-load .sp-methods dd input.radio,
.wrapper #checkout-shipping-method-load .sp-methods dd input.checkbox,
.wrapper #co-shipping-method-form .sp-methods dd input.radio,
.wrapper #co-shipping-method-form .sp-methods dd input.checkbox,
.wrapper .product-options ul.options-list input.radio,
.wrapper .product-options ul.options-list input.checkbox {
  float: left;
  margin-right: -40px;
  margin-top: 10px;
  margin-left: 15px;
}
.wrapper .form-list .control label,
.wrapper .sp-methods dt label,
.wrapper #checkout-shipping-method-load .sp-methods dd label,
.wrapper #co-shipping-method-form .sp-methods dd label,
.wrapper .product-options ul.options-list label {
  color: #4f2b1c;
  background-color: #F4F4F4;
  padding: 5px 10px;
  display: inline-block;
  width: auto;
  max-width: none;
  min-width: 250px;
  float: none;
  padding: 6px 10px 6px 40px;
}
.wrapper .form-list .control label:hover,
.wrapper .sp-methods dt label:hover,
.wrapper #checkout-shipping-method-load .sp-methods dd label:hover,
.wrapper #co-shipping-method-form .sp-methods dd label:hover,
.wrapper .product-options ul.options-list label:hover {
  background-color: #ededed;
}
.wrapper .form-list .control .no-display + label,
.wrapper .sp-methods dt .no-display + label,
.wrapper #checkout-shipping-method-load .sp-methods dd .no-display + label,
.wrapper #co-shipping-method-form .sp-methods dd .no-display + label,
.wrapper .product-options ul.options-list .no-display + label {
  padding-left: 10px;
  background-color: transparent;
}
.wrapper .form-list .control .no-display + label:hover,
.wrapper .sp-methods dt .no-display + label:hover,
.wrapper #checkout-shipping-method-load .sp-methods dd .no-display + label:hover,
.wrapper #co-shipping-method-form .sp-methods dd .no-display + label:hover,
.wrapper .product-options ul.options-list .no-display + label:hover {
  background-color: transparent;
}
.wrapper .product-options ul.options-list label,
.wrapper .col2-set .form-list .control label {
  min-width: inherit;
  width: 250px;
  max-width: 100%;
}
.wrapper .form-list .control.remember-me-box label {
  width: auto;
  max-width: none;
  min-width: inherit;
}
.wrapper .form-list .control {
  margin-top: 10px;
}
.wrapper .form-list .control label {
  float: none;
}
.wrapper .form-list .control .radio,
.wrapper .form-list .control .checkbox {
  margin-right: 6px;
}
.wrapper .form-list .control .input-box {
  clear: none;
  display: inline-block;
  width: auto;
  padding: 0;
}
.wrapper form .form-instructions {
  font-style: normal;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 13px;
  color: #4f2b1c;
}

/* ============================================ *
 * 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: "Din", Arial, 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 {
  margin-left: 20px;
  margin-top: 10px;
}
.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: 479px) {
  .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: "Din", Arial, 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: "Din", Arial, 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;
  }
}
.main .breadcrumbs {
  margin: 10px 0 !important;
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #4f2b1c;
  line-height: 12px;
  text-transform: none;
}
.main .breadcrumbs ul li {
  color: #4f2b1c;
}
.main .breadcrumbs ul li a, .main .breadcrumbs ul li strong {
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #4f2b1c;
  line-height: 12px;
  text-transform: none;
}
.main .breadcrumbs ul li span {
  text-indent: 0;
  padding: 0 5px;
}

h1, h2, h3, h4, h5 {
  font-family: "Din", Arial, sans-serif;
}

div.page-title {
  padding: 0;
  margin: 0;
}
div.page-title h1 {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 18px;
  line-height: 18px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 5px 0;
}

.std {
  color: #4f2b1c;
}
.std p {
  color: #4f2b1c;
}

.page .main-container {
  min-width: 1004px;
}

@media only screen and (max-width: 770px) {
  .page .main-container {
    min-width: 0 !important;
  }

  .header.page-header .page-header-container,
  .header.page-header .page-header-container,
  body .wrapper .dynamic-offer-top,
  .page .main-container,
  .page .main-container,
  .footer-newsletter {
    min-width: 0 !important;
  }
}
@media print {
  header.page-header .skip-links {
    border: 0 !important;
    position: relative;
    clear: none;
    overflow: inherit;
  }
  header.page-header a.skip-link.skip-nav {
    display: none;
  }
  header.page-header a.skip-link.skip-search {
    display: none;
  }
  header.page-header .page-header-container .header-minicart a.skip-cart {
    height: auto;
    width: auto;
  }
  header.page-header .page-header-container .header-minicart a.skip-cart .label {
    display: inherit;
    width: auto;
  }
  header.page-header .page-header-container .header-minicart a.skip-cart .count {
    position: inherit;
    background: transparent;
    width: auto;
    height: auto;
    top: 0;
  }
  header.page-header .page-header-container .header-minicart a.skip-cart .count:before {
    content: '(';
  }
  header.page-header .page-header-container .header-minicart a.skip-cart .count:after {
    content: ')';
  }
  header.page-header #header-nav {
    display: inline-block !important;
    width: 69.5% !important;
  }
  header.page-header #header-search {
    display: inline-block;
    padding: 0;
    margin-top: 0 !important;
  }

  .footer-container {
    background: transparent !important;
    color: #4f2b1c !important;
  }
  .footer-container .footer-logo {
    display: none !important;
  }
  .footer-container .footer-logo.print-view {
    display: block !important;
  }

  .footer-container .footer {
    color: #4f2b1c !important;
  }
  .footer-container .footer .footer-social img {
    border: 1px solid #4f2b1c;
  }
  .footer-container .footer .footer-links ul li a {
    color: #4f2b1c !important;
  }

  .footer-container .footer-copyright-container .container .footer-copyright {
    color: #4f2b1c !important;
  }
}
.header-language-background {
  display: none;
}

header.page-header {
  max-width: 100%;
  border-bottom: 5px solid #4f2b1c;
  min-width: 1004px;
}
header.page-header .page-header-container {
  max-width: 1004px;
  padding: 0;
  margin: 0 auto;
  font-family: "Din", Arial, sans-serif;
}
header.page-header .page-header-container a.logo {
  padding: 0;
  margin-left: 20px;
  max-width: 600px;
}
header.page-header .page-header-container a.logo img {
  max-height: 104px;
}
header.page-header .page-header-container .header-minicart {
  width: 300px;
  text-align: center;
  border-bottom: 5px solid #4f2b1c;
  padding-top: 20px;
}
header.page-header .page-header-container .header-minicart .mini-cart-hover {
  display: inline-block;
  height: 34px;
}
header.page-header .page-header-container .header-minicart a {
  font-family: "Din", Arial, sans-serif;
}
header.page-header .page-header-container .header-minicart a.skip-cart {
  padding: 0;
  margin: 0;
  height: auto;
  line-height: 22px;
  float: none;
  display: inline-block;
}
header.page-header .page-header-container .header-minicart a.skip-cart .icon {
  background: url("../images/ico-cart.png") 0 0 no-repeat;
  width: 24px;
  height: 19px;
}
header.page-header .page-header-container .header-minicart a.skip-cart .label, header.page-header .page-header-container .header-minicart a.skip-cart .count {
  font-size: 14px;
  color: #4f2b1c;
  font-weight: bold;
  text-transform: none;
}
header.page-header .page-header-container .header-minicart a.skip-cart .count {
  font-size: 13px;
}
header.page-header .page-header-container .header-minicart a.checkout {
  background: #cc2027;
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  color: #FFF;
  text-transform: uppercase;
  padding: 3px 7px 0 7px;
  margin-left: 10px;
}
header.page-header .page-header-container .header-minicart a.checkout:hover {
  text-decoration: none;
  background: #4f2b1c;
}
header.page-header .page-header-container .header-account {
  padding-top: 10px;
  text-align: center;
}
header.page-header .page-header-container .header-account a {
  display: inline-block;
  color: #4f2b1c;
  font-size: 13px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  margin-left: 15px;
}
header.page-header .page-header-container .header-account a:first-of-type {
  margin-left: 0;
}
header.page-header .page-header-container .header-account a.sign-out {
  position: absolute;
  margin: 17px 0 0 -66px;
  color: #D31919;
}
header.page-header .page-header-container .header-account .phone {
  display: inline-block;
  background: url("../images/ico-phone.png") 0 0 no-repeat;
  padding-left: 25px;
  font-size: 14px;
  font-weight: bold;
  color: #4f2b1c;
  margin-left: 15px;
}

.header-submenu-container {
  max-width: 1004px;
  padding: 0;
  margin: 0 auto;
}
.header-submenu-container .header-submenu {
  padding-top: 5px;
}
.header-submenu-container .header-submenu ul li {
  display: inline-block;
  margin-right: 50px;
}
.header-submenu-container .header-submenu ul li a {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 14px;
  font-weight: 400;
}
.header-submenu-container .header-submenu ul li.highlight a {
  color: #619abc;
  font-weight: bold;
}
.header-submenu-container .header-submenu ul li:last-of-type {
  margin-right: 0;
}

.dynamic-offer-top {
  max-width: 1004px;
  padding: 10px 0 0 0;
  margin: 0 auto;
}
.dynamic-offer-top h2 {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 35px;
  color: #4f2b1c;
  margin: 0;
}
.dynamic-offer-top.mobile-visible {
  display: none !important;
}

body.checkout-onepage-index .dynamic-offer-top {
  display: none;
}

/*
###########
Responsive
###########
*/
@media only screen and (max-width: 1000px) {
  .header-submenu-container .header-submenu ul li {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 770px) {
  header.page-header {
    min-width: 0;
  }
  header.page-header .page-header-container {
    max-width: 100%;
  }
  header.page-header .page-header-container a.logo {
    margin-left: 10px;
    margin-bottom: 0;
    max-width: 100%;
    width: 55%;
  }
  header.page-header .page-header-container a.logo img {
    max-width: 100%;
  }
  header.page-header .page-header-container .header-account .phone {
    font-size: 15px;
    font-weight: normal;
    padding-left: 20px;
  }

  .header-submenu-container {
    display: none;
  }

  .dynamic-offer-top.desktop-visible {
    display: none !important;
  }
  .dynamic-offer-top.mobile-visible {
    display: block !important;
    clear: both;
    border-top: 5px solid #4f2b1c;
    margin: 0 auto 0;
    padding: 5px 0 0 0;
  }
  .dynamic-offer-top.mobile-visible h2 {
    font-size: 25px;
    margin: 0 10px;
  }
}
@media only screen and (max-width: 479px) {
  body .wrapper .page .dynamic-offer-top h2 {
    font-size: 25px !important;
    margin: 0 10px;
  }
}
header {
  min-width: 1004px;
}
header #header-nav {
  border: 0;
  width: 79.5%;
}
header #header-nav #nav .nav-primary li.level0 {
  margin-right: 15px;
}
header #header-nav #nav .nav-primary li.level0 a {
  font-family: "Din", Arial, sans-serif;
}
header #header-nav #nav .nav-primary li.level0 a.level0 {
  padding: 5px 10px 0 10px;
  color: #4f2b1c;
  text-transform: none;
  font-weight: bold;
  font-size: 16px;
}
header #header-nav #nav .nav-primary li.level0:last-of-type {
  margin-right: 0;
}
header #header-nav #nav .nav-primary li.level0:last-of-type a.level0 {
  color: #cc2027;
}
header #header-nav #nav .nav-primary li.level0:hover {
  background: #cac7a7;
}
header #header-nav #nav .nav-primary li.level0 ul.level0 {
  background: #cac7a7;
  border: 0;
  width: 480px;
  padding: 10px;
  top: 35px;
}
header #header-nav #nav .nav-primary li.level0 ul.level0 li {
  float: left;
  border: 0;
  width: 230px;
  display: inline-block;
  vertical-align: top;
}
header #header-nav #nav .nav-primary li.level0 ul.level0 li:nth-child(even) {
  clear: left;
}
header #header-nav #nav .nav-primary li.level0 ul.level0 li a {
  border: 0;
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  display: inline-block;
  line-height: 14px;
  font-size: 14px;
  padding: 2px 0 2px 0;
}
header #header-nav #nav .nav-primary li.level0 ul.level0 li a:hover {
  text-decoration: underline;
}
header #header-nav #nav .nav-primary li.level0 ul.level0 li ul {
  display: none;
}
header #header-nav #nav .nav-primary li.level0 ul.level0.with-image {
  width: 670px;
}
header #header-nav #nav .nav-primary li.level0 ul.level0.with-image li.category-data {
  float: right;
  margin: -10px 0 0 0;
  width: 185px;
}
header #header-nav #nav .nav-primary li.level0 ul.level0.with-image li.category-data img {
  width: 185px;
  height: 185px;
}
header #header-nav #nav .nav-primary li.level0 ul.level0.with-image li.category-data .message {
  display: block;
  color: #4f2b1c;
  font-weight: bold;
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  padding: 5px 0 0 0;
}
header #header-nav #nav .nav-primary li.level0 ul.level0.with-image li.category-data .secondary-text {
  display: block;
  color: #4f2b1c;
  font-weight: 400;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 13px;
  line-height: 13px;
}
header .skip-account, header .skip-cart1 {
  display: none;
}

.gw-mainmenu {
  padding-top: 0;
}
.gw-mainmenu li.level0 {
  margin-right: 3%;
  display: inline-block;
  position: relative;
}
.gw-mainmenu li.level0 a {
  font-family: "Din", Arial, sans-serif;
  display: block;
}
.gw-mainmenu li.level0 a.level0 {
  padding: 5px 10px 0 10px;
  color: #4f2b1c;
  text-transform: none;
  font-weight: bold;
  font-size: 16px;
}
.gw-mainmenu li.level0 a:hover {
  text-decoration: none;
}
.gw-mainmenu li.level0:last-of-type {
  margin-right: 0;
}
.gw-mainmenu li.level0:last-of-type a.level0 {
  color: #4f2b1c;
}
.gw-mainmenu li.level0 .container {
  display: none;
  position: absolute;
  background: #cac7a7;
  border: 0;
  padding: 10px;
  top: 29px;
  min-width: 200px;
  z-index: 4;
}
.gw-mainmenu li.level0 .container ul {
  display: block;
  clear: both;
  min-width: 200px;
}
.gw-mainmenu li.level0 .container ul li {
  border: 0;
  vertical-align: top;
}
.gw-mainmenu li.level0 .container ul li.highlight a {
  /*color: $c-highlighted;*/
  font-weight: bold;
  text-decoration: underline;
}
.gw-mainmenu li.level0 .container ul li a:hover {
  text-decoration: underline;
}
.gw-mainmenu li.level0.all-tools .container {
  min-width: 620px;
}
.gw-mainmenu li.level0.all-tools .container .column {
  display: inline-block;
  float: left;
}
.gw-mainmenu li.level0:hover {
  background: #cac7a7;
  text-decoration: none;
}
.gw-mainmenu li.level0:hover > .container {
  display: block;
}

/*
###########
Responsive
###########
*/
@media only screen and (max-width: 1024px) {
  .gw-mainmenu li.level0 {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1000px) {
  header.page-header {
    padding: 0 10px 0 0;
  }
  header.page-header #header-nav #nav .nav-primary li.level0 {
    margin-right: 3px;
  }
  header.page-header #header-nav #nav .nav-primary li.level0 ul.level0 {
    width: 440px;
  }
  header.page-header #header-nav #nav .nav-primary li.level0 ul.level0 li {
    width: 210px;
  }
}
@media only screen and (max-width: 890px) {
  .gw-mainmenu li.level0 {
    margin-right: 0;
  }
  .gw-mainmenu li.level0 a.level0 {
    padding: 5px 5px 0 5px;
  }
}
@media only screen and (max-width: 770px) {
  header {
    min-width: auto;
  }

  header.page-header {
    padding: 0;
    border-bottom: 0;
  }
  header.page-header #header-nav {
    width: auto;
    padding: 0;
    display: none !important;
  }
  header.page-header #header-nav.skip-active {
    display: block !important;
    margin-top: 16px;
    margin-bottom: 30px;
  }
  header.page-header .page-header-container .header-minicart {
    display: none;
  }
  header.page-header .page-header-container .header-minicart .mini-cart-hover {
    display: inline-block;
    height: auto;
    width: 100%;
    margin-bottom: 0;
  }
  header.page-header .page-header-container .skip-links {
    border: 0;
  }
  header.page-header .page-header-container .skip-links .skip-link {
    width: 25%;
    border: 0;
    height: auto;
    display: block;
  }
  header.page-header .page-header-container .skip-links .skip-link .icon {
    float: none;
    width: 100%;
    display: block;
    height: 40px;
    border-bottom: 1px solid #cac7a7;
  }
  header.page-header .page-header-container .skip-links .skip-link .label {
    float: none;
    width: 100%;
    display: block;
    text-decoration: none;
    line-height: 22px;
    font-size: 16px;
  }
  header.page-header .page-header-container .skip-links .skip-link.skip-nav .icon {
    background: #FFF url("../images/ico-responsive-menu.png") center center no-repeat;
  }
  header.page-header .page-header-container .skip-links .skip-link.skip-search .icon {
    background: #FFF url("../images/ico-responsive-search.png") center center no-repeat;
  }
  header.page-header .page-header-container .skip-links .skip-link.skip-account .icon {
    background: #FFF url("../images/ico-responsive-account.png") center center no-repeat;
  }
  header.page-header .page-header-container .skip-links .skip-link.skip-cart1 .icon {
    background: #FFF url("../images/ico-responsive-cart.png") center center no-repeat;
  }
  header.page-header .page-header-container .skip-links .skip-link.skip-active {
    background: #FFF;
  }
  header.page-header .page-header-container .skip-links .skip-link:hover {
    background: #FFF;
    opacity: 0.9;
  }
  header.page-header .page-header-container .account-cart-wrapper .header-minicart {
    width: 100%;
    text-align: center;
    height: auto;
    float: none;
  }
  header.page-header .page-header-container .account-cart-wrapper .header-minicart a.checkout {
    display: none;
  }
  header.page-header .page-header-container .account-cart-wrapper .header-minicart a.skip-link {
    display: none;
  }
  header.page-header .page-header-container .account-cart-wrapper .header-minicart #header-cart.skip-active {
    top: 0;
    width: 100%;
    position: initial;
    background: #FFF;
  }
  header.page-header .page-header-container .account-cart-wrapper .header-account {
    display: block;
    position: absolute;
    top: 0;
    right: 10px;
  }
  header.page-header .page-header-container .account-cart-wrapper .header-account a {
    display: none;
  }
  header.page-header .page-header-container .skip-content.skip-active {
    background: #FFF;
  }
  header.page-header .page-header-container #header-nav #nav .nav-primary, header.page-header .page-header-container .gw-mainmenu {
    margin-top: -20px;
    border: 0;
  }
  header.page-header .page-header-container #header-nav #nav .nav-primary li, header.page-header .page-header-container .gw-mainmenu li {
    border-bottom: 0px solid #4f2b1c;
  }
  header.page-header .page-header-container #header-nav #nav .nav-primary li.level0, header.page-header .page-header-container .gw-mainmenu li.level0 {
    margin: 0;
  }
  header.page-header .page-header-container #header-nav #nav .nav-primary li.level0 a, header.page-header .page-header-container .gw-mainmenu li.level0 a {
    border: 0;
    padding: 8px 10px 4px;
    line-height: 15px;
  }
  header.page-header .page-header-container #header-nav #nav .nav-primary li.level0 a:hover, header.page-header .page-header-container .gw-mainmenu li.level0 a:hover {
    background: #cac7a7;
  }
  header.page-header .page-header-container #header-nav #nav .nav-primary li.level0 ul.level0, header.page-header .page-header-container .gw-mainmenu li.level0 ul.level0 {
    width: 100%;
    background: transparent;
    padding: 0;
  }
  header.page-header .page-header-container #header-nav #nav .nav-primary li.level0 ul.level0 li, header.page-header .page-header-container .gw-mainmenu li.level0 ul.level0 li {
    width: 100%;
    display: block;
    padding: 0;
    float: none;
  }
  header.page-header .page-header-container #header-nav #nav .nav-primary li.level0 ul.level0 li a, header.page-header .page-header-container .gw-mainmenu li.level0 ul.level0 li a {
    display: block;
    padding: 8px 10px 4px;
    border: 0;
    line-height: 15px;
  }
  header.page-header .page-header-container #header-nav #nav .nav-primary li.level0 ul.level0 li a:after, header.page-header .page-header-container .gw-mainmenu li.level0 ul.level0 li a:after {
    right: 10px;
    left: auto;
  }
  header.page-header .page-header-container #header-nav #nav .nav-primary li.level0 ul.level0 li a:hover, header.page-header .page-header-container .gw-mainmenu li.level0 ul.level0 li a:hover {
    text-decoration: none;
  }
  header.page-header .page-header-container #header-nav #nav .nav-primary li.level0.menu-active, header.page-header .page-header-container .gw-mainmenu li.level0.menu-active {
    background: #cac7a7;
  }
  header.page-header .page-header-container #header-nav #nav .nav-primary li.level0.menu-active.parent > a:after, header.page-header .page-header-container .gw-mainmenu li.level0.menu-active.parent > a:after {
    background: url("../images/ico-responsive-menu-arrow-opened.png") 0 0 no-repeat;
    width: 11px;
    height: 6px;
  }
  header.page-header .page-header-container #header-nav #nav .nav-primary li.level0.menu-active ul, header.page-header .page-header-container .gw-mainmenu li.level0.menu-active ul {
    background: #dbd9c4;
    border-top: 1px solid #4f2b1c;
  }
  header.page-header .page-header-container #header-nav #nav .nav-primary li.level0.menu-active ul li, header.page-header .page-header-container .gw-mainmenu li.level0.menu-active ul li {
    border-bottom: 1px solid #cac7a7;
  }
  header.page-header .page-header-container #header-nav #nav .nav-primary li.parent > a:after, header.page-header .page-header-container .gw-mainmenu li.parent > a:after {
    left: auto;
    right: 10px;
    border: 0;
    width: 9px;
    height: 17px;
    background: url("../images/ico-responsive-menu-arrow.png") 0 0 no-repeat;
  }
  header.page-header .page-header-container #header-account {
    padding: 0 5px;
    margin-top: 0;
    margin-bottom: 30px;
  }
  header.page-header .page-header-container #header-account li {
    border-bottom: 1px solid #4f2b1c;
  }
  header.page-header .page-header-container #header-account li a {
    padding: 10px 10px 0px;
    line-height: 22px;
    border-bottom: 0;
    text-align: left;
    color: #4f2b1c;
    font-weight: bold;
    font-family: "Din", Arial, sans-serif;
    font-size: 16px;
    text-transform: none;
  }
  header.page-header .page-header-container #header-account li a:hover {
    background: #cac7a7;
  }
  header.page-header .page-header-container .gw-mainmenu {
    width: 100%;
    padding: 0 5px;
  }
  header.page-header .page-header-container .gw-mainmenu li {
    border-bottom: 1px solid #4f2b1c;
    margin-right: 0 !important;
  }
  header.page-header .page-header-container .gw-mainmenu li.level0 {
    margin: 0;
    display: block;
  }
  header.page-header .page-header-container .gw-mainmenu li.level0 a {
    border: 0;
    padding: 15px 10px 2px;
    line-height: 15px;
    font-size: 20px;
  }
  header.page-header .page-header-container .gw-mainmenu li.level0 a.level0 {
    background: transparent;
  }
  header.page-header .page-header-container .gw-mainmenu li.level0 a.level0:after {
    content: '';
    background: url("../images/ico-responsive-menu-arrow.png") center center no-repeat;
    width: 25px;
    height: 13px;
    display: inline-block;
  }
  header.page-header .page-header-container .gw-mainmenu li.level0 a:hover {
    background-color: #cac7a7;
  }
  header.page-header .page-header-container .gw-mainmenu li.level0 .container {
    position: inherit;
    top: 0;
    padding: 0;
  }
  header.page-header .page-header-container .gw-mainmenu li.level0 .container ul li a {
    padding: 8px 10px 4px;
    font-size: 16px;
  }
  header.page-header .page-header-container .gw-mainmenu li.level0:hover > .container {
    display: none;
  }
  header.page-header .page-header-container .gw-mainmenu li.level0.active a:hover {
    background: #dbd9c4;
    text-decoration: none;
  }
  header.page-header .page-header-container .gw-mainmenu li.level0.active a.level0, header.page-header .page-header-container .gw-mainmenu li.level0.active a.level0:hover {
    background: #cac7a7;
  }
  header.page-header .page-header-container .gw-mainmenu li.level0.active a.level0:after, header.page-header .page-header-container .gw-mainmenu li.level0.active a.level0:hover:after {
    content: '';
    background: url("../images/ico-responsive-menu-arrow-opened.png") center center no-repeat;
    width: 25px;
    height: 13px;
    display: inline-block;
  }
  header.page-header .page-header-container .gw-mainmenu li.level0.all-tools .container {
    min-width: 0;
  }
  header.page-header .page-header-container .gw-mainmenu li.level0.all-tools .container .column {
    display: block;
    float: none;
  }
  header.page-header .page-header-container .gw-mainmenu li.level0.all-tools .container .column br {
    display: none;
  }

  .nxt-ac-main {
    z-index: 99 !important;
    left: 0 !important;
    max-width: 100% !important;
  }

  body:not(.cms-index-index) #header-nav.skip-active {
    display: none;
  }

  header.page-header .page-header-container .header-account .phone a {
    display: inline-block !important;
  }
}
@media only screen and (max-width: 1000px) {
  .header-submenu-container .header-submenu ul li {
    margin-right: 50px;
  }

  .header-submenu-container .header-submenu ul {
    min-width: 1000px;
  }
}
@media only screen and (max-width: 770px) {
  .header-submenu-container .header-submenu ul {
    min-width: inherit;
  }
}
header #header-search {
  width: auto;
  height: auto;
  margin-top: 47px;
}
header #header-search #search_mini_form input#search {
  width: 300px;
  border: 1px solid #4f2b1c;
  height: 32px;
  color: #4f2b1c;
  font-size: 11px;
  vertical-align: middle;
  line-height: 33px;
  -moz-transition: width 0.2s;
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
}
header #header-search #search_mini_form button.button {
  background: url("../images/btn-search.png") 0 0 no-repeat;
  width: 37px;
  height: 31px;
  border: #4f2b1c;
}
header #header-search #search_mini_form button.button::before {
  content: none;
}

/*
###########
Responsive
###########
*/
@media only screen and (max-width: 770px) {
  header #header-search {
    margin-top: 10px !important;
    margin-bottom: 30px;
    padding: 0 20px;
  }
  header #header-search .input-box {
    width: 100%;
    margin: 0 auto;
  }
  header #header-search #search_mini_form input#search {
    width: calc(100% - 37px);
    -moz-transition: none;
    -webkit-transition: none;
    transition: none;
    height: 31px !important;
  }
}
.header-minicart #header-cart.skip-active {
  background: #cac7a7;
  border: 0;
  top: 55px;
  width: 370px;
}
.header-minicart #header-cart.skip-active .block-subtitle {
  padding: 15px 0 0 0;
  margin: 0 15px 0 15px;
  text-align: left;
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #4f2b1c;
  text-transform: none;
  border-bottom: 5px solid #4f2b1c;
}
.header-minicart #header-cart.skip-active .block-subtitle .close {
  background: url("../images/ico-popup-close.png") 0 0 no-repeat;
  text-indent: -9999px;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 18px 12px 0 0;
}
.header-minicart #header-cart.skip-active .head-container {
  border-bottom: 1px solid #4f2b1c;
  text-align: left;
  margin: 0 15px 0 15px;
}
.header-minicart #header-cart.skip-active .head-container div.head {
  display: inline-block;
  font-size: 12px;
  font-family: "Din", Arial, sans-serif;
  font-weight: normal;
  text-align: left;
  color: #4f2b1c;
}
.header-minicart #header-cart.skip-active .head-container div.head.name {
  width: 220px;
}
.header-minicart #header-cart.skip-active .head-container div.head.qty {
  width: 40px;
}
.header-minicart #header-cart.skip-active .head-container div.head.price {
  width: 70px;
}
.header-minicart #header-cart.skip-active ul {
  padding: 0 15px;
  margin: 0;
}
.header-minicart #header-cart.skip-active ul li {
  padding: 15px 0 1px 0;
  margin: 0 0 5px 0;
  border: 0;
  border-bottom: 1px solid #4f2b1c;
  text-align: left;
  vertical-align: top;
  line-height: 15px;
}
.header-minicart #header-cart.skip-active ul li .product-name {
  display: inline-block;
  width: 220px;
  padding: 0;
  margin: 0;
  text-align: left;
  vertical-align: top;
}
.header-minicart #header-cart.skip-active ul li .product-name a {
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  text-transform: none;
  font-weight: 600;
}
.header-minicart #header-cart.skip-active ul li .qty-wrapper, .header-minicart #header-cart.skip-active ul li .price-wrapper {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 14px;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 40px;
  display: inline-block;
  vertical-align: top;
}
.header-minicart #header-cart.skip-active ul li .price-wrapper {
  width: 70px;
}
.header-minicart #header-cart.skip-active ul li .price-wrapper .price {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  display: block;
}
.header-minicart #header-cart.skip-active ul li .price-wrapper .price::first-letter {
  font-size: 12px;
  vertical-align: top;
  line-height: 12px;
}
.header-minicart #header-cart.skip-active .minicart-actions {
  margin: 5px 15px 15px 15px;
  padding: 0;
}
.header-minicart #header-cart.skip-active .minicart-actions a.checkout-button {
  background: #cc2027;
  display: inline-block;
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFF;
  text-transform: uppercase;
  padding: 5px 7px 1px 7px;
  float: right;
  width: auto;
  min-width: 0;
}
.header-minicart #header-cart.skip-active .minicart-actions a.checkout-button:hover {
  text-decoration: none;
  background: #4f2b1c;
}
.header-minicart #header-cart.skip-active .minicart-actions a.continue-link {
  background: #4f2b1c;
  display: inline-block;
  font-family: "Din", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #cac7a7;
  text-transform: none;
  padding: 3px 7px 0 7px;
  float: left;
}

/*
###########
Responsive
###########
*/
@media only screen and (max-width: 770px) {
  header.page-header .page-header-container .header-minicart {
    border-bottom: 0;
    padding-top: 0;
  }
  header.page-header .page-header-container .header-minicart #header-cart .skip-link-close {
    display: none;
  }

  .header-minicart #header-cart.skip-active .head-container div.head.name {
    width: 60%;
  }
  .header-minicart #header-cart.skip-active .head-container div.head.qty {
    width: 8%;
  }
  .header-minicart #header-cart.skip-active .head-container div.head.price {
    width: 29%;
  }
  .header-minicart #header-cart.skip-active ul li div.product-name {
    width: 60%;
  }
  .header-minicart #header-cart.skip-active ul li div.qty-wrapper {
    width: 8%;
  }
  .header-minicart #header-cart.skip-active ul li div.price-wrapper {
    width: 29%;
  }
}
@media only screen and (max-width: 320px) {
  .header-minicart #header-cart.skip-active .head-container div.head.name {
    width: 170px;
  }

  .header-minicart #header-cart.skip-active ul li .product-name {
    width: 170px;
  }
}
.footer-container {
  background: #4f2b1c;
  min-width: 1004px;
  max-width: 100% !important;
  padding: 0 !important;
  overflow: hidden;
}
.footer-container .footer {
  max-width: 1004px;
  margin: 0 auto;
  border: 0;
}
.footer-container .footer .footer-logo {
  display: inline-block;
  vertical-align: top;
}
.footer-container .footer .footer-logo.print-view {
  display: none;
}
.footer-container .footer .footer-logo .address {
  color: #c7bfbb;
  font-size: 11px;
  font-family: "Din", Arial, sans-serif;
  margin-left: 4px;
  margin-top: 5px;
  letter-spacing: 0.1px;
}
.footer-container .footer .footer-links {
  display: inline-block;
  vertical-align: top;
  margin-left: 30px;
  margin-top: 40px;
  font-family: "Din", Arial, sans-serif;
}
.footer-container .footer .footer-links ul {
  display: inline-block;
  margin: 0 15px;
  vertical-align: top;
}
.footer-container .footer .footer-links ul li {
  margin: 0 0 5px 0;
}
.footer-container .footer .footer-links ul li a {
  color: #FFF;
  font-size: 13px;
}
.footer-container .footer .footer-social {
  display: inline-block;
  vertical-align: top;
  float: right;
  margin-top: 35px;
}
.footer-container .footer .footer-social ul li {
  display: inline-block;
}
.footer-container .footer .footer-social ul li a:hover img {
  opacity: 0.5;
}
.footer-container .footer-copyright-container {
  margin-top: 30px;
  padding-top: 10px;
  border-top: 2px solid #cac7a7;
  padding-bottom: 10px;
  color: #FFF;
}
.footer-container .footer-copyright-container .container {
  max-width: 1004px;
  margin: 0 auto;
  line-height: 30px;
}
.footer-container .footer-copyright-container .container .footer-copyright {
  float: left;
  width: 49%;
}
.footer-container .footer-copyright-container .container .footer-secure {
  padding-top: 0;
  float: right;
}
.footer-container .footer-copyright-container .container .footer-secure .block {
  float: left;
  margin-left: 10px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.footer-container .footer-copyright-container .container:after {
  clear: both;
  content: '-';
  text-indent: -99999px;
  width: 100%;
  display: block;
  height: 0;
}
.footer-container .secure-logos {
  float: right;
  display: inline;
}
.footer-container .secure-logos img {
  display: inline-block;
  margin-left: 30px;
}
.footer-container .secure-logos img:first-of-type {
  margin-left: 0;
}
.footer-container .checkout-footer {
  display: none;
}

/** footer newsletter **/
.footer-newsletter {
  clear: both;
  max-width: 1004px;
  margin: 0 auto;
  padding: 30px 0 30px 0;
}
.footer-newsletter .block-content .input-box {
  display: inline-block;
  margin-right: -5px;
}
.footer-newsletter .block-content .input-box input {
  border: 1px solid #4f2b1c;
  font-size: 13px;
  color: #4f2b1c;
  width: 230px;
  height: 33px;
}
.footer-newsletter .block-content .actions {
  display: inline-block;
  margin: 0 0 -13px 0;
}
.footer-newsletter .block-content .actions button {
  background: #4f2b1c;
}
.footer-newsletter .block-content .actions button span, .footer-newsletter .block-content .actions button span span {
  border: 0;
  margin: 0;
  padding: 0;
  display: inline;
  color: #FFF;
  text-transform: none;
}
.footer-newsletter .block-content label {
  color: #4f2b1c;
  font-size: 22px;
  font-weight: 500;
  margin-left: 18px;
}
.footer-newsletter .block-content p.required, .footer-newsletter .block-content .validation-advice {
  position: absolute;
}

body.ios-10 .footer-newsletter .block-content .actions {
  margin-bottom: -14px;
}

@-moz-document url-prefix() {
  /** footer newsletter **/
  .footer-newsletter .block-content .actions {
    margin: 0 0 -13px 0;
  }
}
body.checkout-onepage-index .footer-container .footer, body.checkout-onepage-index .footer-container .footer-copyright-container,
body.express-express-index .footer-container .footer,
body.express-express-index .footer-container .footer-copyright-container {
  display: none;
}
body.checkout-onepage-index .footer-container .checkout-footer,
body.express-express-index .footer-container .checkout-footer {
  display: block;
  width: 1004px;
  margin: 0 auto;
  padding: 30px 0;
}
body.checkout-onepage-index .footer-container .checkout-footer .footer-logo,
body.express-express-index .footer-container .checkout-footer .footer-logo {
  display: inline-block;
  vertical-align: top;
}
body.checkout-onepage-index .footer-container .checkout-footer .links,
body.express-express-index .footer-container .checkout-footer .links {
  margin-left: 30px;
  margin-top: 40px;
  display: inline-block;
}
body.checkout-onepage-index .footer-container .checkout-footer .links ul,
body.express-express-index .footer-container .checkout-footer .links ul {
  display: inline-block;
  margin: 0 15px;
}
body.checkout-onepage-index .footer-container .checkout-footer .links ul li,
body.express-express-index .footer-container .checkout-footer .links ul li {
  margin: 0 0 5px 0;
}
body.checkout-onepage-index .footer-container .checkout-footer .links ul li a,
body.express-express-index .footer-container .checkout-footer .links ul li a {
  font-family: "Din", Arial, sans-serif;
  color: #FFF;
  font-size: 13px;
}
body.checkout-onepage-index .footer-container .checkout-footer .secure-logos,
body.express-express-index .footer-container .checkout-footer .secure-logos {
  float: right;
}
body.checkout-onepage-index .footer-container .checkout-footer .widget-static-block,
body.express-express-index .footer-container .checkout-footer .widget-static-block {
  padding-top: 20px;
  float: right;
}
body.checkout-onepage-index .footer-container .checkout-footer .widget-static-block .block,
body.express-express-index .footer-container .checkout-footer .widget-static-block .block {
  float: left;
  margin-left: 10px;
}
body.checkout-onepage-index .footer-newsletter,
body.express-express-index .footer-newsletter {
  display: none !important;
}

/*
###########
Responsive
###########
*/
@media only screen and (max-width: 1000px) {
  .footer-container .footer .footer-social {
    float: right;
    margin-right: 15px;
    margin-top: 50px;
  }
  .footer-container .secure-logos {
    float: right;
    display: block;
    margin-right: 40px;
  }

  body.checkout-onepage-index .footer-container .checkout-footer,
  body.express-express-index .footer-container .checkout-footer {
    width: 100%;
    margin: 0 auto;
    padding: 30px 10px;
  }
}
@media only screen and (max-width: 770px) {
  .footer-container {
    min-width: 0;
  }
  .footer-container .footer .footer-links {
    margin-left: 0;
    margin-top: 10px;
    border-top: 2px solid #cac7a7;
    padding-top: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #cac7a7;
  }
  .footer-container .footer .footer-logo {
    width: 100%;
    text-align: center;
  }
  .footer-container .footer .footer-logo div {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
  }
  .footer-container .footer .footer-logo div img {
    display: inline-block;
    margin: 0 auto;
  }
  .footer-container .footer .footer-logo .address {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-container .footer .footer-social {
    float: none;
    margin-left: 15px;
    margin-top: 50px;
  }
  .footer-container .footer-copyright-container {
    border: 0;
    padding: 10px 15px 0 15px;
  }
  .footer-container .footer-copyright-container .container .footer-copyright {
    float: none;
    display: block;
    width: 100%;
    clear: both;
  }
  .footer-container .footer-copyright-container .container .footer-secure {
    float: none;
    display: block;
    margin: 20px auto 0 auto;
    clear: both;
    width: 250px;
  }
}
@media only screen and (max-width: 479px) {
  body .page .footer-newsletter {
    margin-left: 10px;
  }
  body .page .footer-container .footer .footer-links ul {
    width: 40%;
  }
  body .page .footer-container .footer .footer-links ul:nth-of-type(3) {
    width: 100%;
    float: none;
  }
  body .page .footer-container .footer .footer-links ul:nth-of-type(3) li {
    width: 49%;
    float: left;
  }
  body .page .footer-container .footer .footer-social {
    margin-top: 20px;
  }

  body.checkout-onepage-index .footer-container .checkout-footer,
  body.express-express-index .footer-container .checkout-footer {
    width: 100%;
    margin: 0 auto;
    padding: 30px 10px;
  }
  body.checkout-onepage-index .footer-container .checkout-footer .links,
  body.express-express-index .footer-container .checkout-footer .links {
    float: none;
    display: block;
    margin: 30px 0 20px 0;
  }
  body.checkout-onepage-index .footer-container .checkout-footer .secure-logos,
  body.express-express-index .footer-container .checkout-footer .secure-logos {
    float: none;
    display: block;
    margin: 0 auto;
    padding-top: 15px;
    text-align: center;
  }

  .footer-newsletter {
    margin: 0;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
  }
  .footer-newsletter .block-content .input-box {
    width: calc(100% - 80px);
  }
  .footer-newsletter .block-content .input-box input {
    width: 100%;
  }
  .footer-newsletter .block-content .input-box .validation-advice {
    margin: -49px 0 0 2px;
  }
  .footer-newsletter .block-content label {
    margin: 10px 0 0 0;
    padding: 0;
    width: 80%;
    font-family: "Din", Arial, sans-serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: bold;
  }
}
@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (width: 736px) and (height: 414px) and (orientation: landscape) {
  .block.block-subscribe {
    text-align: center;
  }
}
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (width: 667px) and (height: 375px) and (orientation: landscape) {
  .block.block-subscribe {
    text-align: center;
  }
}
div.crosssells_progress {
  width: 100% !important;
  height: 100% !important;
  left: 0 !important;
  top: 0 !important;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  border: 0;
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #4f2b1c;
}
div.crosssells_progress p {
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #4f2b1c;
}
div.crosssells_progress img {
  margin: auto;
  margin-top: 26%;
}

.fancybox-overlay.fancybox-overlay-fixed .crosssells-fancybox .fancybox-skin {
  background: #cac7a7 !important;
  border: 0;
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #4f2b1c;
  border-radius: 0;
  box-shadow: none;
}
.fancybox-overlay.fancybox-overlay-fixed .crosssells-fancybox .fancybox-skin .fancybox-inner {
  width: 100% !important;
}

body.catalog-product-view div.fancybox-inner {
  width: auto !important;
}
body.catalog-product-view .fancybox-skin {
  background: #cac7a7 !important;
}
body.catalog-product-view .fancybox-opened {
  width: 380px !important;
  background: #cac7a7 !important;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper {
  width: 100%;
  min-width: 0;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .block-subtitle {
  padding: 0;
  margin: 0;
  text-align: left;
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #4f2b1c;
  text-transform: none;
  position: relative;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .block-subtitle .close {
  background: url("../images/ico-popup-close.png") 0 0 no-repeat;
  text-indent: -9999px;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper {
  height: auto;
  padding: 0;
  margin: 0;
  border: 0;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper .item {
  padding: 0;
  margin: 0;
  min-height: 170px;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper .item .product-image {
  border: 0;
  width: 170px;
  height: 170px;
  float: left;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper .item .product-image img {
  width: 170px;
  height: 170px;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper .item .product-image:hover {
  border: 0;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper .item .product-details {
  float: right;
  width: 165px;
  padding-top: 10px;
  margin-left: 15px;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper .item .product-details .product-name {
  display: block;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #4f2b1c;
  line-height: 18px;
  padding-bottom: 5px;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper .item .product-details .qty {
  display: block;
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  border-bottom: 1px solid #4f2b1c;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper .item .product-details .price {
  display: block;
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  padding-top: 3px;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper .item .product-details .price::first-letter {
  font-size: 12px;
  vertical-align: top;
  line-height: 12px;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper.grouped-list .item {
  min-height: 0;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper.grouped-list .item .product-details {
  padding: 5px 0 5px;
  margin-left: 15px;
  border-bottom: 4px solid #4f2b1c;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper.grouped-list .item:first-of-type .product-details {
  padding-top: 10px;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper.grouped-list .item:last-of-type .product-details {
  padding-bottom: 20px;
  border: 0;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper #crosssells-cart-summary {
  clear: both;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper #crosssells-cart-summary .totals {
  margin-top: 10px;
  border-top: 1px solid #4f2b1c;
  border-bottom: 1px solid #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  padding: 3px 0 3px 0;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper #crosssells-cart-summary .totals .subtotal {
  float: right;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper #crosssells-cart-summary .totals .subtotal .price {
  display: block;
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  padding-top: 3px;
  float: right;
  margin-left: 5px;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper #crosssells-cart-summary .totals .subtotal .price::first-letter {
  font-size: 12px;
  vertical-align: top;
  line-height: 12px;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper #crosssells-cart-summary .actions {
  border-bottom: 5px solid #4f2b1c;
  clear: both;
  padding: 8px 0 0 0;
  height: 45px;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper #crosssells-cart-summary .actions a.view-cart-checkout {
  background: #cc2027;
  display: inline-block;
  font-family: "Din", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #FFF;
  text-transform: uppercase;
  padding: 4px 7px 0 7px;
  float: right;
  width: auto;
  min-width: 0;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper #crosssells-cart-summary .actions a.view-cart-checkout:hover {
  text-decoration: none;
  background: #4f2b1c;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper #crosssells-cart-summary .actions a.continue-shopping {
  background: #4f2b1c;
  display: inline-block;
  font-family: "Din", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #cac7a7;
  text-transform: none;
  padding: 3px 7px 0 7px;
  float: left;
  border: 0;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper #special-offer {
  padding: 5px 0 5px 0;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper #special-offer .special-offer-label {
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper #special-offer .item {
  width: 80%;
  clear: both;
  min-height: 0;
  padding: 10px 0 0 0;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper #special-offer .item a img {
  width: 100px;
  float: left;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper #special-offer .item .item-data {
  float: left;
  margin-left: 10px;
  margin-top: 5px;
  width: 170px;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper #special-offer .item .item-data h3 {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-weight: normal;
  font-size: 18px;
  text-transform: none;
  color: #4f2b1c;
  border-bottom: 1px solid #4f2b1c;
  margin: 0;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper #special-offer .item .item-data .price-box {
  margin: 2px 0 5px 0;
  padding: 0;
  text-align: left;
  font-size: 16px;
  line-height: 16px;
  border-bottom: 1px solid #4f2b1c;
  width: 100%;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper #special-offer .item .item-data .price-box .price {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  display: inline-block;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper #special-offer .item .item-data .price-box .price::first-letter {
  font-size: 12px;
  vertical-align: top;
  line-height: 15px;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper #special-offer .item .item-data .price-box .special-price {
  padding-left: 8px;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper #special-offer .item .item-data .price-box .special-price .price {
  color: #cc2027;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper #special-offer .item .item-data .actions button.button {
  background: #cc2027;
  padding: 2px 8px;
  width: auto;
  margin: 0;
  border: 0;
  min-height: 0;
  line-height: 23px;
  min-width: 0;
}
body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper #special-offer .item .item-data .actions button.button span span {
  background: transparent;
  color: #FFF;
  text-transform: none;
  margin: 0;
  padding: 0;
  display: inline;
  font-weight: 500;
  font-size: 15px;
  font-family: "Din", Arial, sans-serif;
  line-height: 15px;
}
body.catalog-product-view .fancybox-opened .uar-crosssells-content h1 {
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #4f2b1c;
  text-transform: none;
  padding: 7px 0 0 0;
  margin: 0 0 4px 0;
}
body.catalog-product-view .fancybox-opened .uar-crosssells-content .crosssell-items-wrapper .crosssell-item .product-image {
  border: 0;
  width: 100px;
  height: 100px;
  float: left;
}
body.catalog-product-view .fancybox-opened .uar-crosssells-content .crosssell-items-wrapper .crosssell-item .product-image img {
  width: 100px;
  height: 100px;
}
body.catalog-product-view .fancybox-opened .uar-crosssells-content .crosssell-items-wrapper .crosssell-item .product-image:hover {
  border: 0;
}
body.catalog-product-view .fancybox-opened .uar-crosssells-content .crosssell-items-wrapper .crosssell-item .product-details {
  float: left;
  max-width: calc(100% - 115px);
  padding-top: 10px;
  padding-left: 15px;
}
body.catalog-product-view .fancybox-opened .uar-crosssells-content .crosssell-items-wrapper .crosssell-item .product-details .product-name {
  display: block;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #4f2b1c;
  line-height: 18px;
  padding-bottom: 5px;
  padding-right: 15px;
  color: #4f2b1c;
  width: 100%;
}
body.catalog-product-view .fancybox-opened .uar-crosssells-content .crosssell-items-wrapper .crosssell-item .product-details .product-name a {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #4f2b1c;
}
body.catalog-product-view .fancybox-opened .uar-crosssells-content .crosssell-items-wrapper .crosssell-item .product-details .price-box {
  display: block;
  width: 100%;
  margin: 2px 0;
  border-bottom: 1px solid #4f2b1c;
}
body.catalog-product-view .fancybox-opened .uar-crosssells-content .crosssell-items-wrapper .crosssell-item .product-details .price-box .price {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  border-bottom: 0;
  padding-right: 10px;
  width: 100%;
  display: inline-block;
}
body.catalog-product-view .fancybox-opened .uar-crosssells-content .crosssell-items-wrapper .crosssell-item .product-details .price-box .price::first-letter {
  font-size: 12px;
  vertical-align: top;
  line-height: 12px;
}
body.catalog-product-view .fancybox-opened .uar-crosssells-content .crosssell-items-wrapper .crosssell-item .product-details .price-box .minimal-price {
  padding-right: 10px;
  width: 100%;
}
body.catalog-product-view .fancybox-opened .uar-crosssells-content .crosssell-items-wrapper .crosssell-item .product-details .price-box .minimal-price .price {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  width: auto;
  display: inline-block;
  border: 0;
  padding: 0;
}
body.catalog-product-view .fancybox-opened .uar-crosssells-content .crosssell-items-wrapper .crosssell-item .product-details .price-box .minimal-price .price::first-letter {
  font-size: 12px;
  vertical-align: top;
  line-height: 12px;
}
body.catalog-product-view .fancybox-opened .uar-crosssells-content .crosssell-items-wrapper .crosssell-item .product-details .price-box .old-price .price {
  width: auto;
  display: inline-block;
  border: 0;
  padding: 0;
}
body.catalog-product-view .fancybox-opened .uar-crosssells-content .crosssell-items-wrapper .crosssell-item .product-details .price-box .special-price {
  padding-left: 10px;
}
body.catalog-product-view .fancybox-opened .uar-crosssells-content .crosssell-items-wrapper .crosssell-item .product-details .price-box .special-price .price {
  width: auto;
  display: inline-block;
  border: 0;
  padding: 0;
  color: #cc2027;
}
body.catalog-product-view .fancybox-opened .uar-crosssells-content .crosssell-items-wrapper .crosssell-item .product-details .actions {
  clear: both;
  padding: 6px 0 0 0;
  height: 45px;
}
body.catalog-product-view .fancybox-opened .uar-crosssells-content .crosssell-items-wrapper .crosssell-item .product-details .actions button {
  background: #cc2027;
  padding: 2px 8px;
  width: auto;
  margin: 0;
  border: 0;
  min-height: 0;
  min-width: 0;
  height: 23px;
  font-weight: bold;
  font-size: 15px;
  font-family: "Din", Arial, sans-serif;
  line-height: 23px;
  color: #FFF;
}
body.catalog-product-view .fancybox-opened .fancybox-close {
  display: none;
}

body.checkout-cart-index div.fancybox-inner {
  width: auto !important;
}
body.checkout-cart-index .fancybox-skin {
  background: #cac7a7 !important;
}
body.checkout-cart-index .fancybox-opened {
  background: #cac7a7 !important;
}
body.checkout-cart-index .fancybox-opened #gw-shipping-information-popup .close,
body.checkout-cart-index .fancybox-opened #international-shipping-popup .close {
  content: '-';
  background: url("../images/ico-popup-close.png") 0 0 no-repeat;
  text-indent: -9999px;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
  float: right;
  cursor: pointer;
}
body.checkout-cart-index .fancybox-opened #gw-shipping-information-popup h1,
body.checkout-cart-index .fancybox-opened #international-shipping-popup h1 {
  font-size: 16px;
  font-weight: bold;
  color: #4f2b1c;
  text-transform: none;
  border-bottom: 5px solid #4f2b1c;
  padding-top: 5px;
}
body.checkout-cart-index .fancybox-opened #gw-shipping-information-popup h2,
body.checkout-cart-index .fancybox-opened #international-shipping-popup h2 {
  font-size: 16px;
  font-weight: bold;
  color: #4f2b1c;
  text-transform: none;
  padding-top: 5px;
}
body.checkout-cart-index .fancybox-opened #gw-shipping-information-popup a,
body.checkout-cart-index .fancybox-opened #international-shipping-popup a {
  color: #4f2b1c;
  text-decoration: underline;
}

.popup-checkout-warning div.fancybox-inner {
  width: auto !important;
  max-width: 100%;
}
.popup-checkout-warning .fancybox-skin {
  width: 400px !important;
  max-width: 100%;
}

/*
###########
Responsive
###########
*/
@media only screen and (max-width: 479px) {
  body.catalog-product-view .fancybox-opened {
    width: 100% !important;
    left: 0 !important;
  }
  body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper .item .product-image {
    width: 48%;
  }
  body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper .item .product-image img {
    width: 100%;
    height: auto;
  }
  body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper .item .product-details {
    float: right;
    width: 48%;
    padding-top: 10px;
    margin-left: 0%;
  }
  body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper .product-wrapper.grouped-list .item .product-details {
    margin-left: 0px;
  }
  body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper #special-offer .item {
    width: 100%;
  }
  body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper #special-offer .item a img {
    width: 80px;
  }
  body.catalog-product-view .fancybox-opened #uar-crosssells-wrapper #special-offer .item .item-data {
    width: 61%;
  }
}
.popup-backorder .fancybox-close {
  display: block !important;
}

.product-view .block-viewed {
  clear: both;
  border: 0;
  padding: 0 0 0 0;
  width: 100%;
  margin: 0 auto;
}
.product-view .block-viewed .block-viewed {
  width: 100%;
  padding: 0 10px;
}
.product-view .block-viewed .block-title {
  padding: 0;
  margin: 0 0 15px 0;
  border: 0;
  border-bottom: 1px solid #4f2b1c;
}
.product-view .block-viewed .block-title strong {
  font-size: 18px;
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  text-transform: none;
}
.product-view .block-viewed .block-content li.item {
  margin: 0;
  padding: 0;
}

#recently-viewed-items .item {
  margin-bottom: 0;
  padding-bottom: 30px;
  height: auto;
  clear: none;
  margin-right: 1.96%;
  width: 185px;
  float: left;
}
#recently-viewed-items .item .product-image {
  border: 0;
  float: none;
}
#recently-viewed-items .item .product-info {
  text-align: left;
  margin: 0;
  padding: 0 !important;
  min-height: 0 !important;
}
#recently-viewed-items .item .product-info h2.product-name {
  padding: 0;
  margin: 0;
  border: none;
}
#recently-viewed-items .item .product-info h2.product-name a {
  color: #4f2b1c;
  display: block;
  text-transform: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  padding-top: 5px;
  padding-bottom: 0;
  margin: 0;
  height: 41px;
}
#recently-viewed-items .item .product-info .price-box {
  border-top: 1px solid #4f2b1c;
  padding: 5px;
  margin: 5px 0 0 0;
}
#recently-viewed-items .item .product-info .price-box .minimal-price .price-label {
  font-family: "Din", Arial, sans-serif;
  font-size: 13px;
  line-height: 18px;
  vertical-align: top;
}
#recently-viewed-items .item .product-info .price-box .price {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
}
#recently-viewed-items .item .product-info .price-box .price::first-letter {
  font-size: 12px;
  vertical-align: top;
  line-height: 20px;
}
#recently-viewed-items .item .product-info .price-box .special-price {
  padding-left: 8px;
}
#recently-viewed-items .item .product-info .price-box .special-price .price {
  color: #cc2027;
}
#recently-viewed-items .item .product-info .price-box .special-group .price {
  color: #cc2027;
}
#recently-viewed-items .item .product-info .review-container {
  height: 25px;
  padding: 5px 0 5px 5px;
}
#recently-viewed-items .item .product-info .review-container .ratings {
  padding: 0;
  margin: 0;
}
#recently-viewed-items .item .product-info .review-container .ratings .rating-box {
  width: 105px;
  height: 17px;
  padding: 0;
  margin: 0;
  background: url("../images/ico-review-stars.png") 0 -18px no-repeat;
}
#recently-viewed-items .item .product-info .review-container .ratings .rating-box .rating {
  height: 17px;
  background: url("../images/ico-review-stars.png") 0 0 no-repeat;
}
#recently-viewed-items .item .product-info .review-container .ratings .rating-links, #recently-viewed-items .item .product-info .review-container .ratings .amount {
  display: none;
}
#recently-viewed-items .item .custom-info {
  width: 100%;
  border-bottom: 1px solid #4f2b1c;
  border-top: 1px solid #4f2b1c;
  margin-top: 10px;
  height: 50px;
  vertical-align: middle;
  padding: 5px;
}
#recently-viewed-items .item .embedded-video {
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
}
#recently-viewed-items .item .embedded-video a {
  display: block;
}
#recently-viewed-items .item .embedded-video a img {
  border: none;
  display: inline-block;
}
#recently-viewed-items .item .quantity-limit {
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-weight: bold;
  font-size: 15px;
  text-transform: capitalize;
  text-align: left;
  margin-right: 3px;
  display: inline-block;
  line-height: 42px;
  vertical-align: top;
}
#recently-viewed-items .item .burst-value {
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-weight: bold;
  font-size: 15px;
  text-transform: capitalize;
  text-align: left;
  display: inline-block;
  padding: 0;
  margin: 0;
  line-height: 37px;
}
#recently-viewed-items .item .burst-value.clearance {
  color: #cc2027;
}
#recently-viewed-items .item .burst-value.new span {
  padding: 5px 9px 3px 9px;
  text-transform: uppercase;
  background: #000;
  text-align: center;
  vertical-align: middle;
  line-height: 15px;
  font-family: "Din", Arial, sans-serif;
  font-weight: bold;
  font-size: 15px;
  color: #c9c6a7;
}
#recently-viewed-items .item .custom-message {
  clear: both;
  color: #4f2b1c;
  font-weight: bold;
  font-size: 14px;
  width: 100%;
  text-align: left;
}
#recently-viewed-items .item .actions {
  margin: 0 5px;
  position: inherit;
  min-height: 0;
  padding: 0;
}
#recently-viewed-items .item .actions .availability.out-of-stock {
  display: inline;
  text-transform: none;
}
#recently-viewed-items .item .actions button.button {
  background: #cc2027;
  padding: 4px 8px;
  border: 0;
  float: none;
}
#recently-viewed-items .item .actions button.button span, #recently-viewed-items .item .actions button.button span span {
  background: transparent;
  color: #FFF;
  text-transform: none;
  margin: 0;
  padding: 0;
  display: inline;
  font-weight: 500;
  font-size: 15px;
  font-family: "Din", Arial, sans-serif;
  line-height: 15px;
}
#recently-viewed-items .item .actions button.button:first-letter {
  text-transform: uppercase;
}
#recently-viewed-items .item .actions a.more-info {
  color: #4f2b1c;
  font-size: 13px;
  margin-left: 5px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  float: none;
}
#recently-viewed-items .item .actions a.view-details {
  background: #cc2027;
  padding: 8px 8px 7px 8px;
  border: 0;
  color: #FFF;
  text-transform: none;
  margin: 0;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  font-family: "Din", Arial, sans-serif;
  line-height: 15px;
  float: none;
}
#recently-viewed-items .item.last {
  margin-right: 0;
}

@media only screen and (max-width: 1004px) {
  #recently-viewed-items .item {
    width: 18.4%;
    margin-right: 1.96%;
  }
  #recently-viewed-items .item img {
    width: 100%;
    height: auto;
  }
  #recently-viewed-items .item:last-of-type {
    margin-right: 0;
  }
}
@media only screen and (max-width: 599px) {
  #recently-viewed-items .item {
    width: 49%;
    margin-right: 2%;
  }
  #recently-viewed-items .item:nth-of-type(even) {
    margin: 0;
  }
  #recently-viewed-items .item:last-of-type {
    margin-right: 0;
  }
  #recently-viewed-items .item:last-of-type:nth-of-type(odd) {
    display: none;
  }
}
#recommendation-zone-wrapper {
  text-align: left;
  padding: 0;
  margin: 0;
}
#recommendation-zone-wrapper .MB_PRODUCTSLOT {
  margin-bottom: 0;
  padding-bottom: 30px;
  height: auto;
  clear: none;
  margin-right: 3%;
  width: 185px;
  float: left;
}
#recommendation-zone-wrapper .MB_PRODUCTSLOT .MB_PRODUCTIMAGELINK {
  border: 0;
  float: none;
}
#recommendation-zone-wrapper .MB_PRODUCTSLOT .MB_PRODUCTIMAGELINK img {
  width: 185px;
}
#recommendation-zone-wrapper .MB_PRODUCTSLOT .MB_PRODUCTIMAGELINK.button.view-details {
  margin-right: 5px;
}
#recommendation-zone-wrapper .MB_PRODUCTSLOT .MB_PRODUCTNAMELINK {
  color: #4f2b1c;
  display: block;
  text-transform: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  padding-top: 5px;
  padding-bottom: 0;
  margin: 0;
  height: 41px;
  overflow: hidden;
}
#recommendation-zone-wrapper .MB_PRODUCTSLOT .MB_PRODUCTNOTDISCOUNTEDPRICEWRAPPER {
  border-top: 1px solid #4f2b1c;
  padding: 5px;
  margin: 5px 0 0 0;
}
#recommendation-zone-wrapper .MB_PRODUCTSLOT .MB_PRODUCTNOTDISCOUNTEDPRICEWRAPPER a {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
}
#recommendation-zone-wrapper .MB_PRODUCTSLOT .MB_PRODUCTNOTDISCOUNTEDPRICEWRAPPER a::first-letter {
  font-size: 12px;
  vertical-align: top;
  line-height: 20px;
}
#recommendation-zone-wrapper .MB_PRODUCTSLOT .MB_PRODUCTDISCOUNTEDPRICEWRAPPER {
  border-top: 1px solid #4f2b1c;
  padding: 5px;
  margin: 5px 0 0 0;
}
#recommendation-zone-wrapper .MB_PRODUCTSLOT .MB_PRODUCTDISCOUNTEDPRICEWRAPPER div {
  display: inline-block;
}
#recommendation-zone-wrapper .MB_PRODUCTSLOT .MB_PRODUCTDISCOUNTEDPRICEWRAPPER div a {
  font-family: "Din", Arial, sans-serif;
  color: #cc2027;
  font-size: 16px;
  font-weight: bold;
  display: block;
}
#recommendation-zone-wrapper .MB_PRODUCTSLOT .MB_PRODUCTDISCOUNTEDPRICEWRAPPER div a span {
  display: block;
}
#recommendation-zone-wrapper .MB_PRODUCTSLOT .MB_PRODUCTDISCOUNTEDPRICEWRAPPER div a span.MB_PRODUCTBASEPRICE {
  text-decoration: line-through;
}
#recommendation-zone-wrapper .MB_PRODUCTSLOT .MB_PRODUCTDISCOUNTEDPRICEWRAPPER div a span.MB_PRODUCTSALEPRICE {
  color: #cc2027;
}
#recommendation-zone-wrapper .MB_PRODUCTSLOT .MB_PRODUCTDISCOUNTEDPRICEWRAPPER div a span::first-letter {
  font-size: 12px;
  vertical-align: top;
  line-height: 20px;
}
#recommendation-zone-wrapper .MB_PRODUCTSLOT .MB_PRODUCTDISCOUNTEDPRICEWRAPPER div:first-of-type {
  margin-right: 8px;
}
#recommendation-zone-wrapper .MB_PRODUCTSLOT:last-of-type {
  margin-right: 0;
}
#recommendation-zone-wrapper:before {
  content: 'May We Suggest';
  display: block;
  text-align: left;
  margin: 0 0 10px 0;
  border-bottom: 5px solid #4f2b1c;
  padding: 10px 0 2px 0;
  font-size: 18px;
  color: #4f2b1c;
  font-weight: bold;
}

body.catalog-product-view #recommendation-zone-wrapper {
  margin-top: 20px;
  text-align: left;
}
body.catalog-product-view #recommendation-zone-wrapper .MB_PRODUCTSLOT {
  margin-right: 1.96%;
}
body.catalog-product-view #recommendation-zone-wrapper .MB_PRODUCTSLOT:last-of-type {
  margin-right: 0;
}
body.catalog-product-view #recommendation-zone-wrapper:before {
  content: 'Customers Who Bought This Also Bought';
  display: block;
  text-align: left;
  margin: 0 0 10px 0;
  border-bottom: 5px solid #4f2b1c;
  padding: 10px 0 2px 0;
  font-size: 18px;
  color: #4f2b1c;
  font-weight: bold;
}

body.checkout-onepage-index #recommendation-zone-wrapper {
  margin-top: 20px;
  padding: 0;
  text-align: left;
}
body.checkout-onepage-index #recommendation-zone-wrapper .MB_PRODUCTSLOT {
  margin-right: 2.8%;
}
body.checkout-onepage-index #recommendation-zone-wrapper .MB_PRODUCTSLOT:last-of-type {
  margin-right: 0;
}
body.checkout-onepage-index #recommendation-zone-wrapper:before {
  content: 'May We Suggest';
  text-align: left;
}

@media only screen and (max-width: 1004px) {
  body.catalog-product-view #recommendation-zone-wrapper .MB_PRODUCTSLOT {
    width: 18.4%;
    margin-right: 1.96%;
  }
  body.catalog-product-view #recommendation-zone-wrapper .MB_PRODUCTSLOT img {
    width: 100%;
    height: auto;
  }
  body.catalog-product-view #recommendation-zone-wrapper .MB_PRODUCTSLOT:last-of-type {
    margin-right: 0;
  }
  body.catalog-product-view #recommendation-zone-wrapper .MB_PRODUCTSLOT a.MB_PRODUCTRATINGLINK img {
    width: auto;
  }

  body.checkout-cart-index #recommendation-zone-wrapper .MB_PRODUCTSLOT,
  body.checkout-onepage-index #recommendation-zone-wrapper .MB_PRODUCTSLOT {
    width: 23.5%;
    margin-right: 1.96%;
  }
  body.checkout-cart-index #recommendation-zone-wrapper .MB_PRODUCTSLOT img,
  body.checkout-onepage-index #recommendation-zone-wrapper .MB_PRODUCTSLOT img {
    width: 100%;
    height: auto;
  }
  body.checkout-cart-index #recommendation-zone-wrapper .MB_PRODUCTSLOT:last-of-type,
  body.checkout-onepage-index #recommendation-zone-wrapper .MB_PRODUCTSLOT:last-of-type {
    margin-right: 0;
  }
  body.checkout-cart-index #recommendation-zone-wrapper .MB_PRODUCTSLOT a.MB_PRODUCTRATINGLINK img,
  body.checkout-onepage-index #recommendation-zone-wrapper .MB_PRODUCTSLOT a.MB_PRODUCTRATINGLINK img {
    width: auto;
  }
}
@media only screen and (max-width: 599px) {
  body.catalog-product-view #recommendation-zone-wrapper .MB_PRODUCTSLOT {
    width: 49%;
    margin-right: 2%;
  }
  body.catalog-product-view #recommendation-zone-wrapper .MB_PRODUCTSLOT:nth-of-type(even) {
    margin: 0;
  }
  body.catalog-product-view #recommendation-zone-wrapper .MB_PRODUCTSLOT:last-of-type {
    margin-right: 0;
  }
  body.catalog-product-view #recommendation-zone-wrapper .MB_PRODUCTSLOT:last-of-type:nth-of-type(odd) {
    display: none;
  }

  body.checkout-cart-index #recommendation-zone-wrapper .MB_PRODUCTSLOT,
  body.checkout-onepage-index #recommendation-zone-wrapper .MB_PRODUCTSLOT {
    width: 49%;
    margin-right: 2%;
  }
  body.checkout-cart-index #recommendation-zone-wrapper .MB_PRODUCTSLOT:nth-of-type(even),
  body.checkout-onepage-index #recommendation-zone-wrapper .MB_PRODUCTSLOT:nth-of-type(even) {
    margin: 0;
  }
  body.checkout-cart-index #recommendation-zone-wrapper .MB_PRODUCTSLOT:last-of-type,
  body.checkout-onepage-index #recommendation-zone-wrapper .MB_PRODUCTSLOT:last-of-type {
    margin-right: 0;
  }
}
/* ============================================ *
 * Category Landing Pages
 * ============================================ */
.category-image {
  position: relative;
}

.categorylandingMainblock {
  border: 1px solid #E2E2E2;
  padding: 7px;
}

.catblocks {
  float: left;
  padding: 0 0 20px 0;
  width: 100%;
}

.catblocks li {
  position: relative;
  float: left !important;
  width: 23% !important;
  margin-right: 2.66667% !important;
  margin-bottom: 10px;
  border: 1px solid #CCCCCC;
  padding: 10px;
}

.catblocks li:hover {
  border-color: #3399CC;
}

@media only screen and (max-width: 770px) {
  .catblocks li {
    width: 49% !important;
    margin-right: 2% !important;
  }

  .catblocks li:nth-child(even) {
    margin-right: 0 !important;
  }
}
@media only screen and (max-width: 479px) {
  .catblocks li {
    width: 100% !important;
    margin-right: 0 !important;
    float: none;
  }
}
.catblocks li:last-child {
  margin-right: 0 !important;
}

.catblocks li img {
  width: 100%;
  max-width: 100%;
}

.catblocks li a span {
  color: #FFFFFF;
  position: absolute;
  background-color: #7B7C7B;
  font-family: raleway;
  font-size: 17px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  bottom: 0px;
  left: 0px;
  width: 100%;
  padding: 5px 10px;
  margin-right: 10px;
}

.catblocklinks a {
  color: #FFFFFF;
  text-decoration: none;
}

.catlandingbottomPromoblock {
  float: left;
  width: 100%;
  border: 1px solid #E2E2E2;
  margin-bottom: 100px;
}

.catalog-category-view div.categoryland-caption {
  display: block;
  margin: 0;
  position: absolute;
  color: #000000;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
}

.catalog-category-view div.categoryland-caption span.blue-big-text {
  color: #3399CC;
  font-size: 50px;
  font-weight: 800;
  padding: 0 0 0 8px;
}

.catalog-category-view div.categoryland-caption span.blue-big-text {
  padding: 0 !important;
}

.catalog-category-view div.categoryland-caption span.three-dots {
  background: url(../images/bg_threeDots.png) no-repeat center center;
  display: block;
  height: 20px;
}

.catalog-category-view div.categoryland-caption p.desc {
  font: italic 18px/28px Georgia, "Times New Roman", Times, serif;
  color: #656565;
}

.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption a.link:hover,
.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption span.link:hover {
  text-decoration: underline;
  color: #1189C5;
}

.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption span.blue-big-text,
.catalog-category-view div.categoryland-caption span.blue-big-text {
  color: #3399CC;
  font-size: 50px;
  font-weight: 800;
  padding: 0 0 0 8px;
}

.catalog-category-view div.categoryland-caption span.blue-big-text {
  padding: 0 !important;
}

.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption span.three-dots,
.catalog-category-view div.categoryland-caption span.three-dots {
  background: url(../images/bg_threeDots.png) no-repeat center center;
  display: block;
  height: 20px;
}

.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption p.desc,
.catalog-category-view div.categoryland-caption p.desc {
  font: italic 18px/28px Georgia, "Times New Roman", Times, serif;
  color: #656565;
}

.main .col-left {
  width: 20%;
  padding-top: 34px;
}
.main .col-main {
  width: 80%;
}

div.block-layered-nav div.block-content {
  font-family: "Din", Arial, sans-serif;
}
div.block-layered-nav div.block-content > dl > dt {
  background-color: transparent;
  border-style: none;
  font-weight: bold;
  padding-left: 0px;
  color: #4f2b1c;
  text-transform: none;
  padding-bottom: 3px;
}
div.block-layered-nav div.block-content > dl > dt.current {
  border-bottom: 5px solid #4f2b1c;
}
div.block-layered-nav div.block-content > dl > dt.all-other-categories {
  display: none;
}
div.block-layered-nav div.block-content > dl > dd {
  border-style: none;
  padding: 5px 0 5px 0;
  display: none;
}
div.block-layered-nav div.block-content > dl > dd ol > li > a {
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  padding: 2px 0 2px 0;
  display: inline-block;
}
div.block-layered-nav div.block-content > dl > dd.current {
  display: block;
  border-bottom: 1px solid;
  margin-bottom: 15px;
}
div.block-layered-nav div.block-content > dl > dd.all-other-categories {
  display: none;
}
div.block-layered-nav dl dd ol li .current {
  font-weight: bold;
}

div.mb-mana-catalog-leftnav div.block-content > dl > dd,
div.mb-mana-catalogsearch-leftnav div.block-content > dl > dd {
  display: block;
}

div.page-title h1 {
  color: #4f2b1c;
  text-transform: none;
  font-size: 18px;
}

div.toolbar {
  background: transparent;
  border-top: none;
}
div.toolbar .count-container {
  float: left;
  margin-right: 15px;
  color: #4f2b1c;
}

.page .category-image {
  border: none;
  padding: 0;
}

div.category-products .products-grid li {
  margin-bottom: 0;
  padding-bottom: 30px;
  height: auto;
  clear: none;
  margin-right: 2.22222%;
  cursor: pointer;
}
div.category-products .products-grid li .product-image {
  border: 0;
}
div.category-products .products-grid li .product-info {
  text-align: left;
  margin: 0;
  padding: 0 !important;
  min-height: 0 !important;
}
div.category-products .products-grid li .product-info h2.product-name {
  padding: 0;
  margin: 0;
  border: none;
}
div.category-products .products-grid li .product-info h2.product-name a {
  color: #4f2b1c;
  display: block;
  text-transform: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  padding-top: 5px;
  padding-bottom: 0;
  margin: 0;
  height: 41px;
  overflow: hidden;
}
div.category-products .products-grid li .product-info .price-box-empty {
  border-top: 1px solid #4f2b1c;
  padding: 5px 5px 10px 5px;
  margin: 5px 0 0 0;
  height: 34px;
}
div.category-products .products-grid li .product-info .price-box {
  border-top: 1px solid #4f2b1c;
  padding: 5px;
  margin: 5px 0 0 0;
}
div.category-products .products-grid li .product-info .price-box .pricesign {
  display: inline-block;
}
div.category-products .products-grid li .product-info .price-box .pricesign::first-letter {
  font-size: 12px;
  vertical-align: top;
  line-height: 20px;
  display: inline-block;
}
div.category-products .products-grid li .product-info .price-box .minimal-price .price-label {
  font-family: "Din", Arial, sans-serif;
  font-size: 13px;
  line-height: 18px;
  vertical-align: top;
}
div.category-products .products-grid li .product-info .price-box .minimal-price span {
  white-space: nowrap;
}
div.category-products .products-grid li .product-info .price-box .price {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
}
div.category-products .products-grid li .product-info .price-box .price::first-letter {
  font-size: 12px;
  vertical-align: top;
  line-height: 20px;
}
div.category-products .products-grid li .product-info .price-box .special-price {
  margin-left: 0px;
}
div.category-products .products-grid li .product-info .price-box .special-price .price {
  color: #cc2027;
}
div.category-products .products-grid li .product-info .price-box .special-group .price {
  color: #cc2027;
}
div.category-products .products-grid li .product-info .review-container {
  height: 25px;
  padding: 5px 0 5px 5px;
}
div.category-products .products-grid li .product-info .review-container .ratings {
  padding: 0;
  margin: 0;
}
div.category-products .products-grid li .product-info .review-container .ratings .rating-box {
  width: 105px;
  height: 17px;
  padding: 0;
  margin: 0;
  background: url("../images/ico-review-stars.png") 0 -18px no-repeat;
}
div.category-products .products-grid li .product-info .review-container .ratings .rating-box .rating {
  height: 17px;
  background: url("../images/ico-review-stars.png") 0 0 no-repeat;
}
div.category-products .products-grid li .product-info .review-container .ratings .rating-links {
  display: none;
}
div.category-products .products-grid li .custom-info {
  width: 100%;
  border-bottom: 1px solid #4f2b1c;
  border-top: 1px solid #4f2b1c;
  margin-top: 10px;
  height: 50px;
  vertical-align: middle;
  padding: 5px;
}
div.category-products .products-grid li .embedded-video {
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
  float: left;
}
div.category-products .products-grid li .embedded-video a {
  display: block;
  height: 35px;
}
div.category-products .products-grid li .embedded-video a img {
  border: none;
  display: inline-block;
}
div.category-products .products-grid li .quantity-limit {
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-weight: bold;
  font-size: 15px;
  text-transform: capitalize;
  text-align: left;
  margin-right: 3px;
  display: inline-block;
  line-height: 42px;
  vertical-align: top;
}
div.category-products .products-grid li .custom-info {
  line-height: 37px;
}
div.category-products .products-grid li .custom-info .burst-value {
  display: inline-block;
  line-height: 22px;
  background: url("../images/burst-sprite.png") 0 0 no-repeat;
  text-indent: -99999px;
}
div.category-products .products-grid li .custom-info .burst-value.best-seller, div.category-products .products-grid li .custom-info .burst-value.bestseller {
  background-position: 0 0;
  width: 90px;
}
div.category-products .products-grid li .custom-info .burst-value.sale {
  background-position: 0 -50px;
  width: 51px;
  line-height: 24px;
}
div.category-products .products-grid li .custom-info .burst-value.clearance {
  background-position: 0 -102px;
  width: 83px;
  line-height: 23px;
}
div.category-products .products-grid li .custom-info .burst-value.new {
  background-position: 0 -153px;
  width: 52px;
  line-height: 23px;
}
div.category-products .products-grid li .custom-message {
  clear: both;
  color: #4f2b1c;
  font-weight: bold;
  font-size: 14px;
  width: 100%;
  text-align: left;
}
div.category-products .products-grid li .actions {
  margin: 0 5px;
  position: inherit;
  min-height: 0;
  padding: 0;
}
div.category-products .products-grid li .actions .availability.out-of-stock {
  text-transform: none;
  font-size: 16px;
  padding-top: 6px;
  display: inline-block;
}
div.category-products .products-grid li .actions button.button {
  background: #cc2027;
  padding: 4px 8px;
  border: 0;
}
div.category-products .products-grid li .actions button.button span, div.category-products .products-grid li .actions button.button span span {
  background: transparent;
  color: #FFF;
  text-transform: none;
  margin: 0;
  padding: 0;
  display: inline;
  font-weight: 500;
  font-size: 15px;
  font-family: "Din", Arial, sans-serif;
  line-height: 15px;
}
div.category-products .products-grid li .actions button.button:first-letter {
  text-transform: uppercase;
}
div.category-products .products-grid li .actions a.more-info {
  color: #4f2b1c;
  font-size: 13px;
  margin-left: 5px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
div.category-products .products-grid li .actions a.view-details {
  background: #cc2027;
  padding: 8px 8px 7px 8px;
  border: 0;
  color: #FFF;
  text-transform: none;
  margin: 0;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  font-family: "Din", Arial, sans-serif;
  line-height: 15px;
}
div.category-products .products-grid li.last {
  margin-right: 0;
}
div.category-products .products-grid span.divider {
  content: '-';
  display: block;
  height: 5px;
  clear: both;
  width: 100%;
  background: #4f2b1c;
  margin: 0 0 20px 0;
  padding: 0;
}

body.catalog-category-view .sidebar .responsive-filter-button {
  display: none;
}
body.catalog-category-view .sidebar .gw-category-after-facets {
  padding-top: 10px;
}

div.toolbar {
  padding: 0;
  border-bottom: 1px solid #4f2b1c;
  color: #4f2b1c;
  height: 48px;
}
div.toolbar .count-container p.amount {
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #4f2b1c;
}
div.toolbar .pager .pages {
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
}
div.toolbar .pager .pages a.view-all {
  color: #4f2b1c;
  text-transform: none;
  width: auto;
  line-height: 30px;
  vertical-align: middle;
  display: inline-block;
  font-weight: bold;
  margin-top: -24px;
  margin-right: 10px;
}
div.toolbar .pager .pages ol {
  display: inline-block;
}
div.toolbar .pager .pages ol li {
  background: #cac7a7;
  border: 0;
  margin: 0 5px;
}
div.toolbar .pager .pages ol li a {
  color: #4f2b1c;
  width: 30px;
}
div.toolbar .pager .pages ol li.current {
  background: #4f2b1c;
  color: #cac7a7;
  font-weight: bold;
}
div.toolbar .pager .pages ol li.prev, div.toolbar .pager .pages ol li.next {
  background: transparent;
  text-align: center;
  margin: 0;
  width: 15px;
}
div.toolbar .pager .pages ol li.prev a, div.toolbar .pager .pages ol li.next a {
  width: 15px;
  text-align: center;
  display: block;
  padding-top: 4px;
}
div.toolbar .pager .pages ol li.prev a img, div.toolbar .pager .pages ol li.next a img {
  width: 11px;
  float: right;
}
div.toolbar .pager .pages ol li.prev a:hover, div.toolbar .pager .pages ol li.next a:hover {
  border: 0;
}
div.toolbar .pager .pages ol li.prev a:before, div.toolbar .pager .pages ol li.next a:before {
  content: none;
}
div.toolbar .pager .pages ol li.prev:before, div.toolbar .pager .pages ol li.next:before {
  content: none;
}
div.toolbar .pager .pages ol li.prev a img {
  float: left;
}
div.toolbar .sorter .sort-by select {
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #4f2b1c;
  height: 26px;
  background: #FFF url("../images/select-arrow.png") center right no-repeat;
  border: 1px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0px 5px;
  width: 105px;
  line-height: 26px;
}

.toolbar-bottom .toolbar {
  border: 0;
  margin: 0;
  padding: 0;
}

body.catalog-category-view .mb-mana-catalogsearch-leftnav,
body.catalog-category-view .mb-mana-catalog-leftnav,
body.catalogsearch-result-index .mb-mana-catalogsearch-leftnav,
body.catalogsearch-result-index .mb-mana-catalog-leftnav {
  border-bottom: 5px solid #4f2b1c;
  border-top: 1px solid #4f2b1c;
  padding: 0 0 15px 0;
}
body.catalog-category-view .mb-mana-catalogsearch-leftnav .m-more-less,
body.catalog-category-view .mb-mana-catalog-leftnav .m-more-less,
body.catalogsearch-result-index .mb-mana-catalogsearch-leftnav .m-more-less,
body.catalogsearch-result-index .mb-mana-catalog-leftnav .m-more-less {
  display: none;
}
body.catalog-category-view .mb-mana-catalogsearch-leftnav .block-layered-nav,
body.catalog-category-view .mb-mana-catalog-leftnav .block-layered-nav,
body.catalogsearch-result-index .mb-mana-catalogsearch-leftnav .block-layered-nav,
body.catalogsearch-result-index .mb-mana-catalog-leftnav .block-layered-nav {
  padding-bottom: 0;
  margin-bottom: 0;
}
body.catalog-category-view .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl,
body.catalog-category-view .mb-mana-catalog-leftnav .block-layered-nav .block-content dl,
body.catalogsearch-result-index .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl,
body.catalogsearch-result-index .mb-mana-catalog-leftnav .block-layered-nav .block-content dl {
  padding: 0;
}
body.catalog-category-view .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dt,
body.catalog-category-view .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dt,
body.catalogsearch-result-index .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dt,
body.catalogsearch-result-index .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dt {
  border: 0;
  padding-top: 15px;
}
body.catalog-category-view .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dt:hover,
body.catalog-category-view .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dt:hover,
body.catalogsearch-result-index .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dt:hover,
body.catalogsearch-result-index .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dt:hover {
  background: transparent;
}
body.catalog-category-view .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd,
body.catalog-category-view .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd,
body.catalogsearch-result-index .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd,
body.catalogsearch-result-index .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd {
  border-bottom: 1px solid #4f2b1c;
  padding: 0 0 15px 0;
}
body.catalog-category-view .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd:last-of-type,
body.catalog-category-view .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd:last-of-type,
body.catalogsearch-result-index .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd:last-of-type,
body.catalogsearch-result-index .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd:last-of-type {
  border: 0;
  padding-bottom: 0;
}
body.catalog-category-view .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd li a.m-checkbox-checked:before,
body.catalog-category-view .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd li a.m-checkbox-checked:before,
body.catalogsearch-result-index .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd li a.m-checkbox-checked:before,
body.catalogsearch-result-index .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd li a.m-checkbox-checked:before {
  content: 'x';
  display: block;
  font-size: 20px;
  line-height: 18px;
  text-align: center;
  float: left;
  margin-left: -20px;
  font-weight: normal;
  font-family: "Din", Arial, sans-serif;
}
body.catalog-category-view .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd li:before,
body.catalog-category-view .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd li:before,
body.catalogsearch-result-index .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd li:before,
body.catalogsearch-result-index .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd li:before {
  content: ' ';
  border: 1px solid #4f2b1c;
  height: 20px;
  width: 20px;
  float: left;
  margin: 0 5px 0 0;
}
body.catalog-category-view .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd .m-filter-item-list li a,
body.catalog-category-view .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd .m-filter-item-list li a,
body.catalogsearch-result-index .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd .m-filter-item-list li a,
body.catalogsearch-result-index .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd .m-filter-item-list li a {
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  display: inline-block;
  padding: 0;
}
body.catalog-category-view .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd .m-filter-item-list li span.count,
body.catalog-category-view .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd .m-filter-item-list li span.count,
body.catalogsearch-result-index .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd .m-filter-item-list li span.count,
body.catalogsearch-result-index .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd .m-filter-item-list li span.count {
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  padding: 0;
  display: inline-block;
  vertical-align: bottom;
  line-height: 20px;
}
body.catalog-category-view .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd .m-filter-item-list li:before,
body.catalog-category-view .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd .m-filter-item-list li:before,
body.catalogsearch-result-index .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd .m-filter-item-list li:before,
body.catalogsearch-result-index .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd .m-filter-item-list li:before {
  content: none;
}
body.catalog-category-view .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li,
body.catalog-category-view .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li,
body.catalogsearch-result-index .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li,
body.catalogsearch-result-index .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li {
  display: block;
  height: 25px;
  line-height: 25px;
}
body.catalog-category-view .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li input,
body.catalog-category-view .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li input,
body.catalogsearch-result-index .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li input,
body.catalogsearch-result-index .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li input {
  border: 1px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  float: left;
  margin: 5px 5px 0 0;
}
body.catalog-category-view .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li input:checked:after,
body.catalog-category-view .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li input:checked:after,
body.catalogsearch-result-index .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li input:checked:after,
body.catalogsearch-result-index .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li input:checked:after {
  content: 'x';
  display: block;
  font-size: 20px;
  line-height: 18px;
  text-align: center;
}
body.catalog-category-view .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li label,
body.catalog-category-view .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li label,
body.catalogsearch-result-index .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li label,
body.catalogsearch-result-index .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li label {
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  padding: 0;
}
body.catalog-category-view .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li span.count,
body.catalog-category-view .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li span.count,
body.catalogsearch-result-index .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li span.count,
body.catalogsearch-result-index .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li span.count {
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  padding: 0;
  display: inline-block;
  vertical-align: bottom;
  line-height: 20px;
}
body.catalog-category-view .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li:before,
body.catalog-category-view .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li:before,
body.catalogsearch-result-index .mb-mana-catalogsearch-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li:before,
body.catalogsearch-result-index .mb-mana-catalog-leftnav .block-layered-nav .block-content dl dd .m-filter-checkboxes li:before {
  content: none;
}

/*
###########
Responsive
###########
*/
@media only screen and (max-width: 1024px) {
  body.catalog-category-view #bannergroup_category_top {
    width: 100% !important;
    height: auto;
  }
  body.catalog-category-view #bannergroup_category_top img {
    width: 100%;
  }
  body.catalog-category-view .main div.category-products .products-grid span.divider {
    content: '-';
    display: block;
    height: 5px;
    clear: both;
    width: 100%;
    background: #4f2b1c;
    margin: 0 0 20px 0;
    padding: 0;
  }
  body.catalog-category-view .main div.category-products .products-grid li {
    clear: none !important;
    margin-right: 2%;
  }
  body.catalog-category-view .main div.category-products .products-grid li.first {
    clear: left !important;
  }
  body.catalog-category-view .main div.category-products .products-grid li.last {
    margin-right: 0 !important;
  }

  .block-viewed {
    width: 100%;
    padding: 0 10px;
  }

  div.category-products .products-grid span.divider {
    content: none;
    display: inline-block;
    height: 5px;
    clear: none;
    width: 15px;
    background: #FFF;
    margin: 0;
    padding: 0;
    float: none;
  }
  div.category-products .toolbar .sorter {
    width: 30%;
  }
  div.category-products .toolbar .pager {
    float: right;
    clear: right;
    width: 50%;
  }
  div.category-products .toolbar .pager .pages {
    float: right;
    margin-right: 10px;
  }
}
@media only screen and (max-width: 960px) {
  body.catalog-category-view .main div.category-products .products-grid span.divider {
    display: none !important;
  }
  body.catalog-category-view .main div.category-products .products-grid li {
    clear: none !important;
    margin-right: 2% !important;
  }
  body.catalog-category-view .main div.category-products .products-grid li.last {
    margin-right: 2% !important;
  }
  body.catalog-category-view .main div.category-products .products-grid li.first {
    clear: none !important;
  }
  body.catalog-category-view .main div.category-products .products-grid li:nth-of-type(3n) {
    margin-right: 0 !important;
  }
  body.catalog-category-view .main div.category-products .products-grid li:nth-of-type(3n+1) {
    clear: left !important;
  }
}
@media only screen and (max-width: 770px) {
  body.catalog-category-view .main .breadcrumbs {
    display: block;
    margin: 10px 0 0 10px !important;
  }
  body.catalog-category-view .main .page-title {
    margin-bottom: 0;
  }
  body.catalog-category-view .main .page-title h1 {
    padding-left: 10px;
    padding-right: 10px;
  }
  body.catalog-category-view .main .sidebar {
    position: relative;
    display: none;
  }
  body.catalog-category-view .main .sidebar .gw-category-after-facets {
    display: none;
  }
  body.catalog-category-view .main .sidebar div.block, body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav {
    margin: 0;
    padding: 0;
    border: 0 !important;
  }
  body.catalog-category-view .main .sidebar div.block.block-layered-nav .block-subtitle--filter, body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav.block-layered-nav .block-subtitle--filter {
    display: none;
  }
  body.catalog-category-view .main .sidebar div.block.block-layered-nav div.block-content, body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav.block-layered-nav div.block-content {
    border: 0;
    padding: 0;
    margin: 0;
  }
  body.catalog-category-view .main .sidebar div.block.block-layered-nav div.block-content .block-subtitle, body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav.block-layered-nav div.block-content .block-subtitle {
    display: none;
  }
  body.catalog-category-view .main .sidebar div.block.block-layered-nav div.block-content dl, body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav.block-layered-nav div.block-content dl {
    border: 0 !important;
    border-top: 0px solid #4f2b1c !important;
    border-bottom: 1px solid #4f2b1c !important;
    margin: 0 10px;
    padding: 10px 0 !important;
  }
  body.catalog-category-view .main .sidebar div.block.block-layered-nav div.block-content dl dt, body.catalog-category-view .main .sidebar div.block.block-layered-nav div.block-content dl dd, body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav.block-layered-nav div.block-content dl dt, body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav.block-layered-nav div.block-content dl dd {
    background: none;
    border: 0;
    padding: 0;
  }
  body.catalog-category-view .main .sidebar div.block.block-layered-nav div.block-content dl dt a, body.catalog-category-view .main .sidebar div.block.block-layered-nav div.block-content dl dd a, body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav.block-layered-nav div.block-content dl dt a, body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav.block-layered-nav div.block-content dl dd a {
    display: block;
  }
  body.catalog-category-view .main .sidebar div.block.block-layered-nav div.block-content dl dt, body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav.block-layered-nav div.block-content dl dt {
    margin-bottom: 5px;
  }
  body.catalog-category-view .main .sidebar div.block.block-layered-nav div.block-content dl dt:after, body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav.block-layered-nav div.block-content dl dt:after {
    content: none;
  }
  body.catalog-category-view .main .sidebar div.block.block-layered-nav div.block-content dl dt a:after, body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav.block-layered-nav div.block-content dl dt a:after {
    content: '-';
    text-indent: -9999px;
    display: block;
    float: right;
    background: url("../images/ico-responsive-menu-arrow.png") center center no-repeat;
    width: 15px;
  }
  body.catalog-category-view .main .sidebar div.block.block-layered-nav div.block-content dl dt.opened a:after, body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav.block-layered-nav div.block-content dl dt.opened a:after {
    background: url("../images/ico-responsive-menu-arrow-opened.png") center center no-repeat;
  }
  body.catalog-category-view .main .sidebar div.block.block-layered-nav div.block-content dl dt:last-of-type, body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav.block-layered-nav div.block-content dl dt:last-of-type {
    margin-bottom: 0;
  }
  body.catalog-category-view .main .sidebar div.block.block-layered-nav div.block-content dl dd ol li, body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav.block-layered-nav div.block-content dl dd ol li {
    background: none;
    padding-left: 10px;
  }
  body.catalog-category-view .main .sidebar div.block.block-layered-nav div.block-content dl dd ol li a, body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav.block-layered-nav div.block-content dl dd ol li a {
    padding: 0;
    background-color: transparent;
    margin: 0;
  }
  body.catalog-category-view .main .sidebar div.block.block-layered-nav div.block-content dl dd ol li a label span, body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav.block-layered-nav div.block-content dl dd ol li a label span {
    cursor: pointer;
  }
  body.catalog-category-view .main .sidebar div.block.block-layered-nav div.block-content dl ol li, body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav.block-layered-nav div.block-content dl ol li {
    margin: 0;
  }
  body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav .block.block-layered-nav div.block-content dl {
    border-top: 0 !important;
  }
  body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav .block.block-layered-nav div.block-content dl dt:before {
    content: '-';
    text-indent: -9999px;
    display: block;
    float: right;
    background: url("../images/ico-responsive-menu-arrow.png") center center no-repeat;
    width: 15px;
  }
  body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav .block.block-layered-nav div.block-content dl dt.opened:before {
    background: url("../images/ico-responsive-menu-arrow-opened.png") center center no-repeat;
  }
  body.catalog-category-view .main .sidebar .mb-mana-catalog-leftnav .block.block-layered-nav div.block-content dl dt:hover {
    color: #4f2b1c;
  }
  body.catalog-category-view .main .toolbar {
    height: 80px;
  }
  body.catalog-category-view .main .toolbar .count-container {
    margin: 0 0 0 10px;
  }
  body.catalog-category-view .main .toolbar .count-container p.amount {
    font-weight: normal;
    font-size: 16px;
    width: 70px;
    overflow: hidden;
    word-wrap: break-word;
    height: 24px;
  }
  body.catalog-category-view .main .toolbar .sorter {
    width: 100%;
    float: none;
    display: block;
    position: absolute;
    padding-top: 40px;
  }
  body.catalog-category-view .main .toolbar .sorter .sort-by {
    float: none;
    margin: 0 auto;
    padding: 0 10px;
  }
  body.catalog-category-view .main .toolbar .sorter .sort-by select {
    width: 100%;
  }
  body.catalog-category-view .main .toolbar .sorter .sort-by .sort-by-switcher {
    display: none;
  }
  body.catalog-category-view .main .toolbar .pager {
    position: absolute;
    right: 0;
    width: auto;
    margin: 0;
    padding: 0 10px;
  }
  body.catalog-category-view .main .toolbar .pager .pages {
    margin-right: 0;
  }
  body.catalog-category-view .main .toolbar .pager .pages a.view-all {
    display: none;
  }
  body.catalog-category-view .main .toolbar .pager .pages ol li a.next {
    background: url("../images/ico-responsive-menu-arrow.png") center center no-repeat;
  }
  body.catalog-category-view .main .toolbar .pager .pages ol li a.next img {
    display: none;
  }
  body.catalog-category-view .main .toolbar .pager .pages ol li a.previous {
    background: url("../images/ico-responsive-menu-arrow-prev.png") center center no-repeat;
  }
  body.catalog-category-view .main .toolbar .pager .pages ol li a.previous img {
    display: none;
  }
  body.catalog-category-view .main div.category-products .products-grid {
    width: 95%;
    margin: 0 auto;
  }
  body.catalog-category-view .main div.category-products .products-grid span.divider {
    content: none;
    display: inline-block;
    height: 5px;
    clear: none;
    width: 15px;
    background: #FFF;
    margin: 0;
    padding: 0;
    float: left;
  }
  body.catalog-category-view .main div.category-products .products-grid li {
    margin-right: 3.5% !important;
  }
  body.catalog-category-view .main div.category-products .products-grid li.last {
    margin-right: 3.5% !important;
  }
  body.catalog-category-view .main div.category-products .products-grid li:nth-of-type(3n) {
    margin-right: 0 !important;
  }
  body.catalog-category-view .main .toolbar-bottom {
    padding-top: 20px;
  }
  body.catalog-category-view .main .toolbar-bottom .sort-by, body.catalog-category-view .main .toolbar-bottom .count-container {
    display: none;
  }
}
@media only screen and (max-width: 540) {
  body.catalog-category-view .main div.category-products .products-grid span.divider {
    display: none;
  }
  body.catalog-category-view .main div.category-products .products-grid li:nth-child(4n) {
    clear: none !important;
  }
  body.catalog-category-view .main div.category-products .products-grid li:nth-child(2n) {
    clear: left !important;
  }
}
@media only screen and (max-width: 479px) {
  body.catalog-category-view #bannergroup_category_top {
    display: none;
  }
  body.catalog-category-view .main div.category-products ul.products-grid {
    width: 100%;
    margin: 0 auto;
  }
  body.catalog-category-view .main div.category-products ul.products-grid li {
    float: none;
    display: block;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #4f2b1c;
  }
  body.catalog-category-view .main div.category-products ul.products-grid li:hover {
    background: #cac7a7;
  }
  body.catalog-category-view .main div.category-products ul.products-grid li .product-image {
    width: 35%;
    display: block;
    float: left;
  }
  body.catalog-category-view .main div.category-products ul.products-grid li .product-image img {
    width: 100%;
    height: auto;
  }
  body.catalog-category-view .main div.category-products ul.products-grid li .product-info {
    width: 100%;
  }
  body.catalog-category-view .main div.category-products ul.products-grid li .product-info h2.product-name {
    width: 62%;
    float: right;
  }
  body.catalog-category-view .main div.category-products ul.products-grid li .product-info h2.product-name a {
    padding-top: 0;
  }
  body.catalog-category-view .main div.category-products ul.products-grid li .product-info .review-container {
    width: 62%;
    float: right;
    padding: 0;
    height: 20px;
  }
  body.catalog-category-view .main div.category-products ul.products-grid li .product-info .price-box {
    width: 62%;
    float: right;
    border: 0;
    padding: 0;
    margin: 0;
  }
  body.catalog-category-view .main div.category-products ul.products-grid li .product-info .actions {
    width: 62%;
    margin: 0;
    float: right;
    position: relative;
    line-height: 15px;
    display: none;
  }
  body.catalog-category-view .main div.category-products ul.products-grid li .product-info .actions a.view-details,
  body.catalog-category-view .main div.category-products ul.products-grid li .product-info .actions button.button {
    padding: 4px 8px 2px !important;
    line-height: 15px;
  }
  body.catalog-category-view .main div.category-products ul.products-grid li .product-info .custom-info {
    width: 62%;
    margin: 10px 0 0 0;
    float: right;
    display: block;
    border: 0;
    padding: 0;
  }
  body.catalog-category-view .main div.category-products ul.products-grid li .product-info .custom-info.empty {
    display: none;
  }
  body.catalog-category-view .main div.category-products ul.products-grid .divider {
    display: none;
  }
  body.catalog-category-view .block-viewed #recently-viewed-items .item {
    float: none;
    width: 100%;
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid;
    margin-right: 5% !important;
  }
  body.catalog-category-view .block-viewed #recently-viewed-items .item .product-image {
    width: 35%;
    display: block;
    float: left;
  }
  body.catalog-category-view .block-viewed #recently-viewed-items .item .product-image img {
    width: 100%;
    height: auto;
  }
  body.catalog-category-view .block-viewed #recently-viewed-items .item .product-info {
    width: 62%;
    float: right;
  }
  body.catalog-category-view .block-viewed #recently-viewed-items .item .product-info h2.product-name {
    border: 0;
  }
  body.catalog-category-view .block-viewed #recently-viewed-items .item .product-info h2.product-name a {
    padding-top: 0;
  }
  body.catalog-category-view .block-viewed #recently-viewed-items .item .product-info .review-container {
    padding: 0;
  }
  body.catalog-category-view .block-viewed #recently-viewed-items .item .product-info .price-box {
    border: 0;
    padding: 0;
    margin: 0;
  }
  body.catalog-category-view .block-viewed #recently-viewed-items .item .product-info .actions {
    position: relative;
    line-height: 15px;
  }
  body.catalog-category-view .block-viewed #recently-viewed-items .item .product-info .actions button.btn-cart {
    text-indent: -999999px;
    height: 0;
    width: 0;
    padding: 0;
    margin: 0;
  }
  body.catalog-category-view .block-viewed #recently-viewed-items .item .product-info .actions button.btn-cart:after {
    content: 'In Stock';
    display: block;
    text-indent: 0;
    color: #cc2027;
    z-index: 1;
    position: absolute;
    text-transform: none;
    font-size: 14px;
    font-weight: normal;
    left: 0;
    text-align: left;
    margin-top: -8px;
    margin-left: -5px;
    top: 0;
  }
  body.catalog-category-view .block-viewed #recently-viewed-items .item .product-info .actions a.more-info {
    display: none;
  }
  body.catalog-category-view .block-viewed #recently-viewed-items .item .product-info .custom-info {
    display: none;
  }
  body.catalog-category-view .toolbar-bottom .toolbar {
    height: auto;
  }
  body.catalog-category-view .toolbar-bottom .toolbar .sorter {
    display: none;
  }
}
body .wrapper #m-wait .loader {
  background: #dbd9c4;
  border: 2px solid #4f2b1c;
  color: #4f2b1c;
}

body.cms-index-index .std {
  display: none;
}
body.cms-index-index.cms-home .main-container {
  padding-top: 10px;
}
body.cms-index-index .page .main-container {
  min-width: 1004px;
}
body.cms-index-index h1.page-title {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  color: #4f2b1c;
  text-transform: none;
  padding: 0;
  margin: 0 0 5px 0;
  font-size: 35px;
  font-weight: bold;
}
body.cms-index-index #bannergroup_home_page_slider {
  position: relative;
  z-index: 3;
  float: left;
  width: 685px;
}
body.cms-index-index #bannergroup_home_page_slider h2 {
  display: none;
}
body.cms-index-index #bannergroup_home_page_slider #divMainRotator_home_page_slider {
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
}
body.cms-index-index #bannergroup_home_page_slider #divMainRotator_home_page_slider img {
  height: 360px;
}
body.cms-index-index #bannergroup_home_page_slider #divMainRotator_home_page_slider .flex-control-nav.flex-control-paging {
  display: none;
}
body.cms-index-index #bannergroup_home_page_slider #divMainRotator_home_page_slider .flexslider-navigation-box {
  position: absolute;
  top: 170px;
  z-index: 2;
  width: 100%;
}
body.cms-index-index #bannergroup_home_page_slider #divMainRotator_home_page_slider .flexslider-navigation-box a {
  text-decoration: none;
  display: block;
  width: 60px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
  text-indent: -99999px;
}
body.cms-index-index #bannergroup_home_page_slider #divMainRotator_home_page_slider .flexslider-navigation-box a.flex-prev {
  background: url("../images/icon_royal_slider.png") no-repeat;
  height: 73px;
  left: -50px;
}
body.cms-index-index #bannergroup_home_page_slider #divMainRotator_home_page_slider .flexslider-navigation-box a.flex-next {
  background: url("../images/icon_royal_slider.png") no-repeat;
  background-position: 0px -73px;
  height: 73px;
  right: -50px;
}
body.cms-index-index #bannergroup_home_page_slider:hover #divMainRotator_home_page_slider .flexslider-navigation-box a.flex-prev {
  opacity: .7;
  left: 10px;
}
body.cms-index-index #bannergroup_home_page_slider:hover #divMainRotator_home_page_slider .flexslider-navigation-box a.flex-next {
  opacity: .7;
  right: 10px;
}
body.cms-index-index #bannergroup_home_page_slider:hover #divMainRotator_home_page_slider .flexslider-navigation-box a:hover {
  opacity: 1;
}
body.cms-index-index #bannergroup_home_page_banners {
  width: 300px;
  float: right;
}
body.cms-index-index #bannergroup_home_page_banners h2 {
  display: none;
}
body.cms-index-index #bannergroup_home_page_banners ul li {
  margin-bottom: 20px;
}
body.cms-index-index #bannergroup_home_page_banners ul li div {
  display: none;
}
body.cms-index-index #bannergroup_home_page_banners ul li img {
  padding: 0 !important;
  height: 170px;
}
body.cms-index-index #bannergroup_home_page_banners ul li:last-of-type {
  margin: 0;
}
body.cms-index-index .home-categories-container {
  clear: both;
  padding-top: 25px;
}
body.cms-index-index .home-categories-container ul li {
  width: 236px;
  float: left;
  margin-right: 20px;
}
body.cms-index-index .home-categories-container ul li:last-of-type {
  margin-right: 0;
}
body.cms-index-index .home-categories-container ul li a {
  color: #4f2b1c;
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  font-family: "Din", Arial, sans-serif;
}
body.cms-index-index .home-categories-container ul li a img {
  width: 100%;
}
body.cms-index-index .home-products-container {
  clear: both;
  padding-top: 25px;
}
body.cms-index-index .home-products-container ul li {
  width: 185px;
  float: left;
  margin-right: 19px;
  padding-bottom: 40px;
}
body.cms-index-index .home-products-container ul li:last-of-type {
  margin-right: 0;
}
body.cms-index-index .home-products-container ul li a.title {
  color: #4f2b1c;
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  font-family: "Din", Arial, sans-serif;
}
body.cms-index-index .home-products-container ul li h3 {
  color: #4f2b1c;
  display: block;
  text-transform: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  padding-top: 5px;
  padding-bottom: 0;
  margin: 0;
  height: 41px;
}
body.cms-index-index .home-products-container ul li .price-box {
  border-top: 1px solid #4f2b1c;
  padding: 5px;
  margin: 5px 0 0 0;
}
body.cms-index-index .home-products-container ul li .price-box .pricesign {
  display: inline-block;
}
body.cms-index-index .home-products-container ul li .price-box .pricesign::first-letter {
  font-size: 12px;
  vertical-align: top;
  line-height: 20px;
  display: inline-block;
}
body.cms-index-index .home-products-container ul li .price-box .minimal-price .price-label {
  font-family: "Din", Arial, sans-serif;
  font-size: 13px;
  line-height: 18px;
  vertical-align: top;
}
body.cms-index-index .home-products-container ul li .price-box .price {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
}
body.cms-index-index .home-products-container ul li .price-box .price::first-letter {
  font-size: 12px;
  vertical-align: top;
  line-height: 20px;
}
body.cms-index-index .home-products-container ul li .price-box .special-price {
  padding-left: 8px;
}
body.cms-index-index .home-products-container ul li .price-box .special-price .price {
  color: #cc2027;
}
body.cms-index-index .home-products-container ul li .price-box .special-group .price {
  color: #cc2027;
}
body.cms-index-index .home-products-container ul li .review-container {
  height: 25px;
  padding: 5px 0 5px 5px;
}
body.cms-index-index .home-products-container ul li .review-container .ratings {
  padding: 0;
  margin: 0;
}
body.cms-index-index .home-products-container ul li .review-container .ratings .rating-box {
  width: 105px;
  height: 17px;
  padding: 0;
  margin: 0;
  background: url("../images/ico-review-stars.png") 0 -18px no-repeat;
}
body.cms-index-index .home-products-container ul li .review-container .ratings .rating-box .rating {
  height: 17px;
  background: url("../images/ico-review-stars.png") 0 0 no-repeat;
}
body.cms-index-index .home-products-container ul li .review-container .ratings .rating-links {
  display: none;
}
body.cms-index-index .home-products-container ul li .actions {
  margin: 0 5px;
}
body.cms-index-index .home-products-container ul li .actions .availability.out-of-stock {
  display: inline;
  text-transform: none;
}
body.cms-index-index .home-products-container ul li .actions button {
  background: #cc2027;
  padding: 4px 8px;
  border: 0;
}
body.cms-index-index .home-products-container ul li .actions button span, body.cms-index-index .home-products-container ul li .actions button span span {
  background: transparent;
  color: #FFF;
  text-transform: none;
  margin: 0;
  padding: 0;
  display: inline;
  font-weight: 500;
  font-size: 15px;
  font-family: "Din", Arial, sans-serif;
  line-height: 15px;
}
body.cms-index-index .home-products-container ul li .actions a {
  color: #4f2b1c;
  font-size: 13px;
  margin-left: 5px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
body.cms-index-index .home-products-container ul li .actions a.view-details {
  background: #cc2027;
  padding: 8px 8px 7px 8px;
  border: 0;
  color: #FFF;
  text-transform: none;
  margin: 0;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
  font-family: "Din", Arial, sans-serif;
  line-height: 15px;
  float: none;
}
body.cms-index-index .home-products-container ul li:nth-child(2) a.title {
  color: #cc2027;
}
body.cms-index-index .home-products-gallery-container {
  clear: both;
  padding-top: 20px;
  border-top: 3px solid #4f2b1c;
}
body.cms-index-index .home-products-gallery-container div.grid-sizer {
  width: 32.7%;
}
body.cms-index-index .home-products-gallery-container div.item {
  width: 32.7%;
  margin-bottom: 10px;
  float: left;
}
body.cms-index-index .home-products-gallery-container div.item a {
  display: block;
  position: relative;
  transition: opacity 0.2s 0s ease;
  overflow: hidden;
}
body.cms-index-index .home-products-gallery-container div.item a img {
  width: 100%;
  height: auto;
}
body.cms-index-index .home-products-gallery-container div.item a .product-hover {
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  color: #FFF;
  position: absolute;
  top: 0;
  left: -100%;
  transition: all 300ms ease;
}
body.cms-index-index .home-products-gallery-container div.item a .product-hover .name {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: 10px;
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
}
body.cms-index-index .home-products-gallery-container div.item a:hover > .product-hover {
  display: block;
  left: 0;
  transition: all 300ms ease;
}

/*
###########
Responsive
###########
*/
@media only screen and (max-width: 1000px) {
  body.cms-index-index #bannergroup_home_page_slider {
    width: 69% !important;
  }
  body.cms-index-index #bannergroup_home_page_banners {
    width: 30% !important;
  }
  body.cms-index-index #bannergroup_home_page_banners ul li {
    width: 100%;
    max-width: 300px;
  }
  body.cms-index-index #bannergroup_home_page_banners ul li img {
    width: 100%;
  }
  body.cms-index-index .home-categories-container ul li {
    width: 23.5%;
    float: left;
    margin-right: 2%;
  }
  body.cms-index-index .home-categories-container ul li img {
    width: 100%;
  }
  body.cms-index-index .home-products-container ul li {
    width: 19%;
    margin-right: 1%;
  }
  body.cms-index-index .home-products-container ul li img {
    width: 100%;
  }
  body.cms-index-index .home-products-container ul li .actions a {
    display: none;
  }
  body.cms-index-index .home-products-container ul li h3 {
    height: 60px;
  }
  body.cms-index-index .home-products-gallery-header,
  body.cms-index-index .home-products-gallery-container {
    display: none;
  }
}
@media only screen and (max-width: 770px) {
  body.cms-index-index header.page-header #header-nav {
    display: block;
  }
  body.cms-index-index .page .main-container {
    min-width: 0;
    padding-top: 5px;
  }
  body.cms-index-index #bannergroup_home_page_slider {
    width: 100% !important;
    float: none;
    display: block;
    overflow: hidden;
  }
  body.cms-index-index #bannergroup_home_page_slider ul li img {
    height: auto;
  }
  body.cms-index-index #bannergroup_home_page_slider #divMainRotator_home_page_slider img {
    height: auto;
  }
  body.cms-index-index #bannergroup_home_page_slider .flexslider-navigation-box {
    top: 43% !important;
  }
  body.cms-index-index #bannergroup_home_page_banners {
    float: none;
    width: 100% !important;
  }
  body.cms-index-index #bannergroup_home_page_banners ul li {
    margin: 30px 0 5% 7% !important;
    width: 40%;
    float: left;
  }
  body.cms-index-index .home-categories-container {
    width: 100%;
  }
  body.cms-index-index .home-categories-container ul li {
    margin: 0 0 5% 7% !important;
    width: 40% !important;
    max-width: 300px;
    float: left !important;
  }
  body.cms-index-index .home-categories-container ul li img {
    width: 100%;
  }
  body.cms-index-index .home-products-container ul li {
    float: left !important;
    margin: 0 0 5% 7% !important;
    padding: 0;
    width: 40% !important;
    max-width: 300px;
    min-height: 450px;
  }
  body.cms-index-index .home-products-container ul li img {
    width: 100%;
    height: auto;
  }
  body.cms-index-index .footer-newsletter {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 479px) {
  body.cms-index-index .flexslider-navigation-box {
    display: none;
  }

  body.cms-index-index div#bannergroup_home_page_banners ul li {
    width: 49% !important;
    float: left !important;
  }
  body.cms-index-index div#bannergroup_home_page_banners ul li img {
    width: 100%;
    height: auto;
  }
  body.cms-index-index div#bannergroup_home_page_banners ul li:first-of-type {
    margin-right: 2% !important;
  }
}
@media only screen and (max-width: 479px) {
  body.cms-index-index #bannergroup_home_page_banners {
    float: none;
    width: 100% !important;
  }
  body.cms-index-index #bannergroup_home_page_banners ul li {
    margin: 5px auto !important;
    width: 300px  !important;
    float: none;
  }
  body.cms-index-index .home-categories-container ul li {
    width: 100%;
    float: none;
    margin: 0 auto 30px auto;
    display: block;
  }
  body.cms-index-index .home-categories-container ul li:last-of-type {
    margin: 0 auto;
  }
  body.cms-index-index .home-products-container ul li {
    float: none;
    margin: 0 auto 30px auto;
    padding: 0;
    width: 236px;
    min-height: 0;
  }
  body.cms-index-index .home-products-container ul li img {
    width: 100%;
    height: auto;
  }
  body.cms-index-index .home-products-container ul li:last-of-type {
    margin: 0 auto;
  }
}
body.catalog-product-view .page .main-container {
  min-width: 1004px;
}

.main .product-view .product-shop {
  display: inline-block;
  width: 625px;
  padding: 20px 0 0 0;
  /*.burst-value {
      float: left;
      line-height: 22px;
      margin-right: 10px;
      &.clearance, &.new {
          line-height: 22px;
          font-size: $f-size-l;
          font-family: $f-main;
          font-weight: bold;
          vertical-align: middle;
      }
      &.clearance {
          padding: 4px 5px 0px 5px;
          margin-top: -3px;
          border: 1px solid $c-highlighted;
          span {
              color: $c-highlighted;
              font-weight: bold;
              font-size: $f-size-xl + 1;
          }
      }
      &.sale {
          padding: 4px 5px 0px 5px;
          margin-top: -3px;
          border: 1px solid $c-highlighted;
          span {
              color: $c-highlighted;
              font-weight: bold;
              font-size: $f-size-xl + 1;
              text-transform: uppercase;
          }
      }
      &.new {
          span {
              padding: 5px 9px 3px 9px;
              text-transform: uppercase;
              background: #000;
              text-align: center;
              color: $c-drop;
          }
      }
      &.best-seller {
          background: $c-drop;
          padding: 3px 5px 1px 5px;
          margin-top: -3px;
          span {
              font-weight: bold;
              color: $c-border;
              font-size: $f-size-xl;
          }
      }
  }
  */
}
.main .product-view .product-shop .product-name {
  display: block;
  float: none;
  padding-bottom: 8px;
}
.main .product-view .product-shop .product-name span.h1 {
  text-transform: none;
  color: #4f2b1c;
  font-size: 35px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  padding-bottom: 0px;
  margin: 0;
  border: 0;
  line-height: 23px;
}
.main .product-view .product-shop .product-headline {
  clear: both;
  color: #4f2b1c;
  font-size: 18px;
  line-height: 18px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Din", Arial, sans-serif;
}
.main .product-view .product-shop .product-subhead {
  color: #4f2b1c;
  text-transform: none;
  font-size: 18px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-weight: 500;
}
.main .product-view .product-shop .burst-value {
  display: inline-block;
  line-height: 22px;
  background: url("../images/burst-sprite.png") 0 0 no-repeat;
  text-indent: -99999px;
}
.main .product-view .product-shop .burst-value.best-seller, .main .product-view .product-shop .burst-value.bestseller {
  background-position: 0 0;
  width: 95px;
  height: 22px;
  vertical-align: middle;
  margin-top: -14px;
}
.main .product-view .product-shop .burst-value.sale {
  background-position: 0 -50px;
  width: 56px;
  height: 24px;
  line-height: 24px;
  vertical-align: middle;
  margin-top: -12px;
}
.main .product-view .product-shop .burst-value.clearance {
  background-position: 0 -102px;
  width: 88px;
  line-height: 23px;
  margin-top: -9px;
  height: 23px;
  vertical-align: middle;
}
.main .product-view .product-shop .burst-value.new {
  background-position: 0 -153px;
  width: 57px;
  line-height: 23px;
  height: 23px;
  vertical-align: middle;
  margin-top: -12px;
}
.main .product-view .product-shop .long-description,
.main .product-view .product-shop .short-description {
  clear: both;
  color: #4f2b1c;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  padding-top: 40px;
}
.main .product-view .product-shop .guarantee {
  width: 50%;
  height: 30%;
  background-color: #c1c1c1;
  text-align: center;
}
.main .product-view .product-shop .add-to-cart-wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  border-top: 5px solid #4f2b1c;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table {
  padding: 0;
  border-collapse: separate;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table thead th,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table thead th {
  border-bottom: 1px solid #4f2b1c;
  font-size: 12px;
  font-weight: normal;
  font-family: "Din", Arial, sans-serif;
  background: transparent;
  text-decoration: none;
  line-height: 12px;
  text-transform: none;
  padding: 5px 0;
  color: #4f2b1c;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table th, .main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table td,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table th,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table td {
  padding: 0;
  margin: 0;
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table th.sku, .main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table td.sku,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table th.sku,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table td.sku {
  width: 75px;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table th.name, .main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table td.name,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table th.name,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table td.name {
  width: 170px;
  padding-right: 10px;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table th.availability, .main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table td.availability,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table th.availability,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table td.availability {
  width: 80px;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table th.price, .main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table td.price,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table th.price,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table td.price {
  width: 100px;
  text-align: left;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table th.qty, .main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table td.qty,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table th.qty,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table td.qty {
  width: 35px;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr {
  border-bottom: 1px solid #4f2b1c;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td {
  border: 0;
  vertical-align: bottom;
  border-top: 15px solid #FFF;
  border-bottom: 1px solid #4f2b1c;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.sku,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.sku {
  font-size: 16px;
  line-height: 16px;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.name,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.name {
  font-size: 16px;
  font-weight: bold;
  line-height: 14px;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.availability .availability,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.availability .availability {
  font-size: 14px;
  line-height: 14px;
  text-transform: none;
  margin: 0;
  padding: 0;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.availability .availability.out-of-stock span,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.availability .availability.out-of-stock span {
  color: #4f2b1c;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.availability .availability.in-stock,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.availability .availability.in-stock {
  color: #cc2027;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.availability .availability .out-of-stock-link,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.availability .availability .out-of-stock-link {
  text-decoration: underline;
  cursor: pointer;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.price,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.price {
  font-size: 16px;
  line-height: 16px;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.price .price-box,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.price .price-box {
  margin: 0;
  padding: 0;
  text-align: left;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.price .price-box .price,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.price .price-box .price {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  display: inline-block;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.price .price-box .price::first-letter,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.price .price-box .price::first-letter {
  font-size: 12px;
  vertical-align: top;
  line-height: 15px;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.price .price-box .special-price,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.price .price-box .special-price {
  padding-left: 8px;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.price .price-box .special-price .price,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.price .price-box .special-price .price {
  color: #cc2027;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.qty,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.qty {
  font-size: 16px;
  line-height: 0;
  text-align: right;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.qty input,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.qty input {
  border: 1px solid #4f2b1c;
  height: 20px;
  line-height: 1.5;
  width: 50px;
  color: #4f2b1c;
  margin-bottom: 2px;
  margin-right: 10px;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.qty input[type=number],
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.qty input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.qty input::-webkit-outer-spin-button,
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.qty input::-webkit-inner-spin-button,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.qty input::-webkit-outer-spin-button,
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.main .product-view .product-shop .add-to-cart-wrapper .simple-items-table thead th.qty {
  text-align: right;
  padding-right: 10px;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table .validation-advice {
  margin-top: 10px;
  width: 160px;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table td.name {
  width: 185px;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table td.price {
  width: 140px;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table td.qty {
  position: relative;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table td.qty input.validation-failed {
  border-color: #DF280A;
}
.main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table td.qty .validation-advice {
  margin-top: 0px;
  width: 160px;
  position: absolute;
  bottom: -12px;
  right: 0;
  font-size: 11px;
  z-index: 1;
}
.main .product-view .product-shop .extra-info {
  float: none;
  clear: both;
  max-width: 100%;
  padding: 20px 0 0 0;
  width: 100%;
}
.main .product-view .product-shop .extra-info .ratings {
  padding: 0;
  margin: 0;
}
.main .product-view .product-shop .extra-info .ratings .rating-box {
  width: 105px;
  height: 17px;
  padding: 0;
  margin: 0;
  background: url("../images/ico-review-stars.png") 0 -18px no-repeat;
  float: left;
  display: inline-block;
}
.main .product-view .product-shop .extra-info .ratings .rating-box .rating {
  height: 17px;
  background: url("../images/ico-review-stars.png") 0 -37px no-repeat;
}
.main .product-view .product-shop .extra-info .ratings .rating-links {
  float: left;
  clear: none;
  display: inline-block;
  margin-left: 10px;
}
.main .product-view .product-shop .extra-info .ratings .rating-links a {
  color: #4f2b1c;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 14px;
}
.main .product-view .product-shop .extra-info .ratings:after {
  content: none;
}
.main .product-view .product-shop .extra-info .addtocart-top {
  display: none;
  float: right;
  margin-top: -10px;
  padding-bottom: 10px;
}
.main .product-view .product-shop .extra-info .addtocart-top .add-to-cart {
  margin-top: 0;
}
.main .product-view .recaptcha {
  float: right;
}
.main .product-view .custom-tabs.product-collateral {
  clear: both;
  padding-top: 40px;
}
.main .product-view .custom-tabs.product-collateral.empty {
  padding-top: 0px;
}
.main .product-view .custom-tabs.product-collateral .toggle-tabs {
  border: none;
  border-bottom: 1px solid #4f2b1c;
  background-color: transparent;
}
.main .product-view .custom-tabs.product-collateral .toggle-tabs li {
  border: 0;
  padding: 0;
  margin: 0 60px 0 0;
}
.main .product-view .custom-tabs.product-collateral .toggle-tabs li span {
  text-transform: none;
  color: #cac7a7;
  font-weight: bold;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  padding: 0;
  margin: 0;
  line-height: 23px;
  height: auto;
}
.main .product-view .custom-tabs.product-collateral .toggle-tabs li.current {
  border-left: none;
  border-right: none;
}
.main .product-view .custom-tabs.product-collateral .toggle-tabs li.current span {
  color: #4f2b1c;
  background: transparent;
}
.main .product-view .custom-tabs.product-collateral .tab-container {
  border: none;
  border-bottom: 4px solid #4f2b1c;
  padding: 10px 5px;
  font-size: 20px;
  line-height: 25px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  color: #4f2b1c;
}
.main .product-view .product-img-box {
  width: 365px;
  margin: 0;
  padding: 0;
}
.main .product-view .product-img-box .product-image.product-image-zoom {
  width: 365px;
  border: 0;
  padding: 0;
  margin: 0;
}
.main .product-view .product-img-box .product-image-gallery .gallery-image {
  margin: 0px;
}
.main .product-view .product-img-box .more-views {
  margin: 4px 0 0 0;
}
.main .product-view .product-img-box .more-views .product-image-thumbs li {
  width: 88px;
  height: 88px;
  margin: 0 4px 4px 0;
  float: left;
}
.main .product-view .product-img-box .more-views .product-image-thumbs li a {
  border: 0;
  display: block;
  width: 88px;
  height: 88px;
}
.main .product-view .product-img-box .more-views .product-image-thumbs li.youtube-video a {
  width: 88px;
  height: 88px;
  display: block;
  position: relative;
}
.main .product-view .product-img-box .more-views .product-image-thumbs li.youtube-video a img {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  opacity: 0.8;
}
.main .product-view .product-img-box .more-views .product-image-thumbs li.youtube-video a .ico-play {
  background: url("../images/ico-play.png") center center no-repeat;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  height: 88px;
  width: 88px;
}
.main .product-view .product-img-box .more-views .product-image-thumbs li:nth-of-type(4n) {
  margin-right: 0 !important;
}
.main .product-view .product-img-box .more-views .product-image-thumbs:after {
  content: '';
  display: block;
  clear: both;
}
.main .product-view .product-img-box .product-family {
  margin-top: 10px;
  padding: 5px 0 2px 0;
  border-top: 1px solid #4f2b1c;
  border-bottom: 1px solid #4f2b1c;
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 15px;
  font-weight: bold;
}
.main .product-view .product-img-box .product-family a {
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 15px;
  font-weight: bold;
}
.main .product-view #customer-reviews.box-reviews .review-heading {
  border-top: 4px solid #4f2b1c;
  border-bottom: 1px solid #4f2b1c;
}
.main .product-view #customer-reviews.box-reviews .review-heading h2 {
  text-transform: capitalize;
  font-weight: bold;
  font-size: 16px;
  color: #4f2b1c;
  margin: 0px;
  padding-top: 35px;
  border: 0;
}
.main .product-view #customer-reviews.box-reviews .review-heading span {
  display: inline;
  float: right;
  margin-top: 29px;
  margin-right: 5px;
  padding: 1px 9px 1px 9px;
  background: #4f2b1c;
  text-align: center;
  vertical-align: middle;
  line-height: 23px;
  font-weight: bold;
}
.main .product-view #customer-reviews.box-reviews .review-heading span a {
  color: #c9c6a7;
  text-transform: capitalize;
}
.main .product-view #customer-reviews.box-reviews .overall-rating, .main .product-view #customer-reviews.box-reviews .review-items {
  border-bottom: 4px solid #4f2b1c;
  padding: 15px 0 15px 0;
}
.main .product-view #customer-reviews.box-reviews .overall-rating .ratings, .main .product-view #customer-reviews.box-reviews .review-items .ratings {
  padding: 0;
  margin: 0;
}
.main .product-view #customer-reviews.box-reviews .overall-rating .ratings .rating-box, .main .product-view #customer-reviews.box-reviews .review-items .ratings .rating-box {
  width: 105px;
  height: 17px;
  padding: 0;
  margin: 0;
  background: url("../images/ico-review-stars.png") 0 -18px no-repeat;
  float: left;
  display: inline-block;
}
.main .product-view #customer-reviews.box-reviews .overall-rating .ratings .rating-box .rating, .main .product-view #customer-reviews.box-reviews .review-items .ratings .rating-box .rating {
  height: 17px;
  background: url("../images/ico-review-stars.png") 0 -37px no-repeat;
}
.main .product-view #customer-reviews.box-reviews .overall-rating .ratings .rating-links, .main .product-view #customer-reviews.box-reviews .review-items .ratings .rating-links {
  display: none;
}
.main .product-view #customer-reviews.box-reviews .overall-rating .ratings:after, .main .product-view #customer-reviews.box-reviews .review-items .ratings:after {
  content: none;
}
.main .product-view #customer-reviews.box-reviews .overall-rating span.label, .main .product-view #customer-reviews.box-reviews .review-items span.label {
  clear: none;
  margin-left: 10px;
  color: #4f2b1c;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 14px;
}
.main .product-view #customer-reviews.box-reviews .review-items {
  border: 0;
  clear: both;
}
.main .product-view #customer-reviews.box-reviews .review-items li {
  float: left;
  width: 490px;
  border-bottom: 1px solid #4f2b1c;
  margin-bottom: 20px;
}
.main .product-view #customer-reviews.box-reviews .review-items li h3 {
  font: bold 16px "Din", Arial, sans-serif;
  color: #4f2b1c;
  padding: 0;
  margin: 0;
  text-transform: none;
}
.main .product-view #customer-reviews.box-reviews .review-items li .review-meta {
  font: 400 13px "Garamond3LTPro", Arial, sans-serif;
  color: #4f2b1c;
  padding: 15px;
}
.main .product-view #customer-reviews.box-reviews .review-items li .description {
  display: block;
  clear: both;
  padding: 5px 0 15px;
  font: 400 15px "Din", Arial, sans-serif;
  color: #4f2b1c;
}
.main .product-view #customer-reviews.box-reviews .review-items li.view-on-more {
  display: none;
}
.main .product-view #customer-reviews.box-reviews .review-items.view-all li {
  display: block !important;
}
.main .product-view #customer-reviews.box-reviews .review-more {
  border-top: 1px solid #4f2b1c;
  padding: 10px 0 10px 0;
}
.main .product-view #customer-reviews.box-reviews .review-more span {
  display: inline;
  float: right;
  margin-right: 5px;
  padding: 1px 9px 1px 9px;
  background: #4f2b1c;
  text-align: center;
  vertical-align: middle;
  line-height: 23px;
  font-weight: bold;
  color: #c9c6a7;
  text-transform: capitalize;
  cursor: pointer;
}
.main .product-view #customer-reviews.box-reviews .review-more span:after {
  content: '-';
  display: block;
  height: 0;
  text-indent: -999999px;
}
.main .product-view .embedded_video {
  height: 554px;
}
.main .product-view .embedded_video embed, .main .product-view .embedded_video iframe {
  width: 100%;
  height: 550px;
  border: 0;
  padding: 0;
  margin: 0;
}
.main .product-view .sharing-links li {
  margin: 15px 10px 0 0;
  padding: 0;
}
.main .product-view .sharing-links li a {
  width: 36px;
  height: 36px;
}
.main .product-view .sharing-links li a.link-facebook {
  background: url("../images/pdp-social-icon-sprite.png") 0 4px no-repeat;
}
.main .product-view .sharing-links li a.link-twitter {
  background: url("../images/pdp-social-icon-sprite.png") -44px 4px no-repeat;
}
.main .product-view .sharing-links li a.link-pinterest {
  background: url("../images/pdp-social-icon-sprite.png") -91px 4px no-repeat;
}
.main .product-view .sharing-links li a.link-fpo {
  background: url("../images/ico-fpo-dark.png") 0 0 no-repeat;
}
.main .product-view .sharing-links li a.link-google {
  background: url("../images/pdp-social-icon-sprite.png") -139px 4px no-repeat;
}
.main .product-view .sharing-links li a.link-instagram {
  background: url("../images/ico-instagram-dark.png") 0 0 no-repeat;
}
.main .product-view .sharing-links li a.link-email-friend {
  background: transparent;
  padding: 0;
  margin: 0 0 0 10px;
  text-indent: 0;
  color: #4f2b1c;
  font-size: 13px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  width: auto;
  line-height: 38px;
}
.main .product-view .add-to-links {
  clear: none;
  margin: 15px 0 0 10px;
}
.main .product-view .add-to-links a {
  background: transparent;
  padding: 0;
  text-indent: 0;
  color: #4f2b1c;
  font-size: 13px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  width: auto;
  line-height: 38px;
  border: 0;
}
.main .product-view .add-to-links a.link-compare {
  margin-left: 20px;
}
.main .product-view .add-to-cart {
  float: right;
  margin: 15px 0 0 0;
  padding: 0;
  border: 0;
  min-height: 0;
}
.main .product-view .add-to-cart .add-to-cart-buttons {
  padding: 0;
  margin: 0;
  border: 0;
  min-height: 0;
}
.main .product-view .add-to-cart .add-to-cart-buttons button.button {
  background: #cc2027;
  padding: 4px 8px;
  width: auto;
  margin: 0;
  border: 0;
  min-height: 0;
  line-height: 23px;
  min-width: 0;
}
.main .product-view .add-to-cart .add-to-cart-buttons button.button span span {
  background: transparent;
  color: #FFF;
  text-transform: none;
  margin: 0;
  padding: 0;
  display: inline;
  font-weight: 500;
  font-size: 15px;
  font-family: "Din", Arial, sans-serif;
  line-height: 15px;
}
.main .product-view .add-review-form {
  display: none;
  border-top: 5px solid #4f2b1c;
  margin-top: 10px;
  padding: 30px 0 30px 0;
}
.main .product-view .add-review-form h2 {
  border-bottom: 1px solid #4f2b1c;
}
.main .product-view .add-review-form h3 {
  text-transform: none;
}
.main .product-view .add-review-form .fieldset {
  width: 710px;
  margin: 40px auto;
}
.main .product-view .add-review-form .fieldset #product-review-table {
  width: 710px;
  border: 0;
}
.main .product-view .add-review-form .fieldset #product-review-table th, .main .product-view .add-review-form .fieldset #product-review-table tbody td {
  padding: 0;
  margin: 0;
  border: 0;
  text-align: right;
}
.main .product-view .add-review-form .fieldset #product-review-table th label, .main .product-view .add-review-form .fieldset #product-review-table tbody td label {
  padding: 0;
  margin: 0;
}
.main .product-view .add-review-form .fieldset #product-review-table .rating-box {
  width: 105px;
  height: 17px;
  padding: 0;
  margin: 0;
  background: url("../images/ico-review-stars.png") 0 -18px no-repeat;
  float: right;
  display: inline-block;
}
.main .product-view .add-review-form .fieldset #product-review-table .rating-box .rating {
  height: 17px;
  background: url("../images/ico-review-stars.png") 0 -37px no-repeat;
  text-indent: 999999px;
}
.main .product-view .add-review-form .fieldset .form-list {
  padding: 0;
}
.main .product-view .add-review-form .fieldset .form-list li {
  width: 100%;
}
.main .product-view .add-review-form .fieldset .form-list li label {
  width: 30%;
}
.main .product-view .add-review-form .fieldset .form-list li .input-box {
  width: 68%;
  margin: 0;
  padding: 0;
}
.main .product-view .add-review-form .fieldset .form-list li .input-box textarea, .main .product-view .add-review-form .fieldset .form-list li .input-box input {
  width: 100%;
  padding: 0;
  margin: 0;
  max-width: none;
  border: 1px solid #4f2b1c;
}
.main .product-view .add-review-form .buttons-set {
  border: 0;
}
.main .product-view .wrapper p.required,
.main .product-view .wrapper .validation-advice {
  text-align: right;
}
.main .product-view.disabled-product .product-image-thumbs {
  display: none;
}
.main .product-view.disabled-product .product-shop {
  padding-left: 40px;
}
.main .product-view.disabled-product .product-shop .long-description {
  padding-top: 10px;
}
.main .product-view.disabled-product .product-shop .disabled-product-message {
  color: #cc2027;
  font-size: 20px;
  font-family: "Din", Arial, sans-serif;
  font-weight: bold;
  margin-top: 40px;
}
.main .product-view .no-rating .btn-review-form {
  font-weight: bold;
  text-decoration: underline;
}
.main .product-view #recently-viewed-items .actions, .main .product-view #recently-viewed-items .custom-info {
  display: none;
}

body[class*="product-gift"] .product-options {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
}
body[class*="product-gift"] .product-options .gift-product {
  display: block;
}
body[class*="product-gift"] .product-options .gift-product .giftcard-amount-form .form-list li {
  margin-bottom: 2px;
}
body[class*="product-gift"] .product-options .gift-product .giftcard-amount-form .form-list li select {
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #4f2b1c;
  height: 22px;
  background: #FFF url("../images/select-arrow.png") center right no-repeat;
  border: 1px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0px 5px;
  margin: 0;
  line-height: 22px;
  width: 100%;
  z-index: 1;
  position: relative;
}
body[class*="product-gift"] .product-options .gift-product .giftcard-amount-form .form-list li select.validation-failed {
  border: 1px solid #DF280A;
}
body[class*="product-gift"] .product-options .gift-product .giftcard-amount-form .form-list li select:focus {
  box-shadow: 0px 0 3px 1px #7D7D81;
  border: 1px solid #ccc;
}
body[class*="product-gift"] .product-options .gift-product .giftcard-amount-form .form-list li .validation-advice {
  position: absolute;
  margin-top: -35px;
}
body[class*="product-gift"] .product-options p.required {
  top: initial;
  bottom: 0px;
}
body[class*="product-gift"] .product-options .giftcard-send-form {
  padding: 20px 0 0 0;
  margin: 0;
  border-bottom: 1px solid #4f2b1c;
}
body[class*="product-gift"] .product-options .giftcard-send-form li input, body[class*="product-gift"] .product-options .giftcard-send-form li textarea {
  width: 100%;
  max-width: none;
}
body[class*="product-gift"] .product-options .giftcard-send-form li:last-of-type {
  margin: 2px;
}
body[class*="product-gift"] .product-options-bottom {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
}
body[class*="product-gift"] .product-options-bottom .add-to-links {
  float: right;
  margin-right: 45px;
}
body[class*="product-gift"] .add-to-cart-wrapper {
  display: none;
}

/*
###########
Responsive
###########
*/
@media only screen and (max-width: 770px) {
  body.catalog-product-view .page .main-container {
    min-width: 0;
  }
  body.catalog-product-view .main {
    padding: 0 10px;
  }
  body.catalog-product-view .main .product-view .product-img-box {
    padding: 0;
    float: none;
    margin: 0 auto;
  }
  body.catalog-product-view .main .product-view .product-shop {
    display: block;
    width: 100%;
    padding: 20px 0 0 0;
  }
}
@media only screen and (max-width: 770px) {
  body.catalog-product-view .main {
    padding: 0 10px;
  }
  body.catalog-product-view .main .breadcrumbs {
    display: block;
    margin: 10px 0 10px 0 !important;
  }
  body.catalog-product-view .main .product-view .product-img-box {
    width: 100%;
  }
  body.catalog-product-view .main .product-view .product-img-box .product-name {
    display: none;
  }
  body.catalog-product-view .main .product-view .product-img-box .product-image {
    width: 100%;
  }
  body.catalog-product-view .main .product-view .product-img-box .product-image img {
    width: 100%;
  }
  body.catalog-product-view .main .product-view .product-img-box .more-views {
    display: none;
  }
  body.catalog-product-view .main .product-view .product-shop {
    width: 100%;
  }
  body.catalog-product-view .main .product-view .product-shop .burst-value {
    line-height: 22px;
  }
  body.catalog-product-view .main .product-view .product-shop .product-name span.h1 {
    line-height: 30px;
    margin: 10px 0;
    display: inline-block;
  }
  body.catalog-product-view .main .product-view .product-shop .extra-info {
    padding: 10px 0 10px 0;
    width: 100%;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper table {
    display: block;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper table thead {
    display: none;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper table tbody {
    display: block;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper table tbody tr {
    display: block;
    border-bottom: 1px solid #4f2b1c;
    padding: 10px 0 10px 0;
    margin: 0;
    min-height: 132px;
    position: relative;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper table tbody tr td {
    border: 0;
    float: left;
    width: 65% !important;
    padding-left: 10px;
    display: inline-block;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper table tbody tr td.name {
    min-height: 45px;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper table tbody tr td.sku {
    display: inline-block;
    font-size: 12px;
    line-height: 12px;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper table tbody tr td.availability {
    position: absolute;
    bottom: 8px;
    text-align: right;
    left: 0;
    top: 71px;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper table tbody tr td.qty {
    text-align: left;
    position: absolute;
    left: 0;
    top: 95px;
    bottom: 8px;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper table tbody tr td.qty:before {
    content: 'Qty';
    text-transform: uppercase;
    display: inline-block;
    font-weight: bold;
    font-size: 15px;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper table tbody tr td.image {
    display: inline-block !important;
    width: 100px !important;
    height: 100px;
    float: right;
    min-height: 100px;
    padding: 0;
    margin: 0;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper table tbody tr td.image img {
    width: 100px;
    height: 100px;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-box {
    height: 140px;
    position: relative;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-box .sharing-links {
    float: left;
    position: absolute;
    top: 60px;
    width: 100%;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-box .sharing-links li {
    width: 25%;
    text-align: center;
    margin: 0;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-box .sharing-links li a {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-box .sharing-links li:last-of-type {
    clear: both;
    width: auto;
    text-align: left;
    margin-top: 10px;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-box .sharing-links li:last-of-type a {
    padding-left: 0;
    margin: 0;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-box .add-to-links {
    clear: none;
    position: absolute;
    bottom: -4px;
    right: 0;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-box .add-to-cart {
    position: absolute;
    right: 0;
  }
  body.catalog-product-view .main .product-view .custom-tabs.product-collateral {
    padding: 0;
  }
  body.catalog-product-view .main .product-view .custom-tabs.product-collateral dl {
    background: transparent;
    border: 0;
  }
  body.catalog-product-view .main .product-view .custom-tabs.product-collateral dl dt {
    border: 0;
    border-top: 1px solid #4f2b1c;
    background: transparent;
    font-weight: bold;
    font-family: "Din", Arial, sans-serif;
    font-size: 16px;
    text-transform: none;
    color: #4f2b1c;
    padding: 5px 10px;
  }
  body.catalog-product-view .main .product-view .custom-tabs.product-collateral dl dt:last-of-type {
    border-bottom: 1px solid #4f2b1c;
  }
  body.catalog-product-view .main .product-view .custom-tabs.product-collateral dl dt:after {
    background: url("../images/ico-responsive-menu-arrow.png") center center no-repeat;
    border: 0;
    width: 9px;
    height: 11px;
    top: 15px;
    left: auto;
    right: 10px;
  }
  body.catalog-product-view .main .product-view .custom-tabs.product-collateral.accordion-open dt.current {
    border-bottom: 1px solid #4f2b1c;
    background: #dbd9c4;
  }
  body.catalog-product-view .main .product-view .custom-tabs.product-collateral.accordion-open dt.current:after {
    background: url("../images/ico-responsive-menu-arrow-opened.png") center center no-repeat;
    border: 0;
    width: 11px;
    height: 9px;
    top: 15px;
    left: auto;
    right: 10px;
  }
  body.catalog-product-view .main .product-view .embedded_video {
    height: auto;
  }
  body.catalog-product-view .main .product-view .embedded_video iframe {
    height: auto;
  }
  body.catalog-product-view .main .product-view #customer-reviews.box-reviews .review-items li {
    float: none;
    width: 100%;
  }
  body.catalog-product-view .main .product-view .add-review-form .fieldset {
    width: 100%;
  }
  body.catalog-product-view .main .product-view .add-review-form .fieldset #product-review-table {
    width: 100%;
    display: block;
  }
  body.catalog-product-view .main .product-view .add-review-form .fieldset #product-review-table thead {
    display: none;
  }
  body.catalog-product-view .main .product-view .add-review-form .fieldset #product-review-table tbody {
    display: block;
  }
  body.catalog-product-view .main .product-view .add-review-form .fieldset #product-review-table tbody tr {
    display: block;
  }
  body.catalog-product-view .main .product-view .add-review-form .fieldset #product-review-table tbody tr td {
    display: block;
  }
  body.catalog-product-view .main .product-view .add-review-form .fieldset #product-review-table tbody tr td label {
    text-align: right;
  }
  body.catalog-product-view .main .product-view .add-review-form .fieldset #product-review-table tbody tr td label input[type="radio"] {
    vertical-align: bottom;
    line-height: 20px;
  }
  body.catalog-product-view .main .product-view .add-review-form .fieldset #product-review-table tbody tr td label:before {
    content: '-';
    display: inline-block;
    width: 18px;
    height: 17px;
    background: url("../images/ico-review-stars.png") 0 -37px no-repeat;
    text-indent: -999999px;
    font-size: 0;
    margin-right: 5px;
    line-height: 20px;
  }
  body.catalog-product-view .main .product-view .add-review-form .fieldset #product-review-table tbody tr td label[for*="rating_1"]:before {
    width: 18px;
  }
  body.catalog-product-view .main .product-view .add-review-form .fieldset #product-review-table tbody tr td label[for*="rating_2"]:before {
    width: 41px;
  }
  body.catalog-product-view .main .product-view .add-review-form .fieldset #product-review-table tbody tr td label[for*="rating_3"]:before {
    width: 61px;
  }
  body.catalog-product-view .main .product-view .add-review-form .fieldset #product-review-table tbody tr td label[for*="rating_4"]:before {
    width: 83px;
  }
  body.catalog-product-view .main .product-view .add-review-form .fieldset #product-review-table tbody tr td label[for*="rating_5"]:before {
    width: 104px;
  }
  body.catalog-product-view .main .product-view .add-review-form .fieldset .form-list label {
    display: block;
    text-align: left;
    float: none;
    width: 100%;
  }
  body.catalog-product-view .main .product-view .add-review-form .fieldset .form-list .input-box {
    display: block;
    text-align: left;
    float: none;
    width: 100%;
  }
  body.catalog-product-view .main #recommendation-zone-wrapper .MB_PRODUCTSLOT .more-info {
    display: none;
  }
}
@media only screen and (max-width: 770px) {
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table .validation-advice {
    margin-top: 10px;
    width: 160px;
    position: inherit;
    display: inline-block;
    margin-left: 5px;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table td.qty .validation-advice {
    width: 160px;
    top: 20px;
    left: 35px;
    margin-top: 10px !important;
  }
}
@media only screen and (max-width: 770px) {
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr,
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr {
    min-height: 0;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td,
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td {
    width: 100% !important;
    float: none;
    min-height: 0;
    padding-left: 0;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.name,
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.name {
    min-height: 0;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.availability,
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.availability {
    position: initial;
    text-align: left;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.availability .availability.out-of-stock span,
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.availability .availability.out-of-stock span {
    font-size: 11px;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.price,
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.price {
    min-height: 0;
    line-height: 16px;
    padding-top: 15px;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper .simple-items-table tr td.qty,
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.qty {
    position: initial;
    padding-top: 5px;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr {
    min-height: 0;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td {
    width: 80% !important;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.image {
    width: 20% !important;
    height: auto !important;
    text-align: right;
  }
  body.catalog-product-view .main .product-view .product-shop .add-to-cart-wrapper .grouped-items-table tr td.image img {
    max-width: 100px;
    width: 100%;
    height: auto;
    display: inline;
  }
}
#backorder_hyperlink_popup {
  display: none;
}
#backorder_hyperlink_popup p {
  margin-bottom: 20px;
}
#backorder_hyperlink_popup p:last-of-type {
  margin-bottom: 0;
}

#shopping-cart-table {
  width: 100%;
  margin-bottom: 2px;
  border-width: 6px 0;
  border-style: solid;
  border-color: #4f2b1c;
  table-layout: fixed;
}
#shopping-cart-table colgroup {
  display: none;
}
#shopping-cart-table thead th:nth-child(1) {
  width: 98px;
  /*140px*/
}
#shopping-cart-table thead th:nth-child(2) {
  width: 84px;
  /*100px*/
}
#shopping-cart-table thead th:nth-child(4) {
  width: 96px;
}
#shopping-cart-table thead th:nth-child(5) {
  width: 69px;
  /*83px*/
}
#shopping-cart-table thead th:nth-child(6) {
  width: 69px;
  /*83px*/
}
#shopping-cart-table thead th:nth-child(7) {
  width: 77px;
}
#shopping-cart-table thead th:nth-child(8) {
  width: 75px;
  /*90px*/
}
#shopping-cart-table tr, #shopping-cart-table th {
  border-color: #4f2b1c;
}
#shopping-cart-table th {
  text-transform: capitalize;
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  padding-right: 5px;
  padding-left: 5px;
  text-align: center;
}
#shopping-cart-table th:nth-of-type(3) {
  text-align: center;
}
#shopping-cart-table th:last-of-type {
  text-align: right;
}
#shopping-cart-table td {
  vertical-align: middle;
  padding-right: 3px;
  padding-left: 3px;
}
#shopping-cart-table .product-cart-actions {
  padding-bottom: 0;
}
#shopping-cart-table .product-cart-actions .cart-links li {
  display: block;
  margin: 0 0 4px;
  min-width: 0;
}
#shopping-cart-table .product-cart-actions .cart-links li.cart-link-edit {
  display: none;
}
#shopping-cart-table .product-cart-actions .cart-links a {
  display: inline-block;
}
.wrapper .col-main .cart #shopping-cart-table .product-cart-actions .button {
  margin-bottom: 9px;
  padding: 0;
  background-color: transparent;
  height: auto;
}
.wrapper .col-main .cart #shopping-cart-table .product-cart-actions .button:hover {
  background-color: transparent;
  text-decoration: underline;
}
.wrapper .col-main .cart #shopping-cart-table .product-cart-actions .button span {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-weight: normal;
  font-size: 14px;
  margin-left: 3px;
}
#shopping-cart-table .product-cart-total {
  text-align: right;
}
#shopping-cart-table tbody * {
  font-size: 16px;
  font-weight: bold;
}
#shopping-cart-table tfoot tr {
  border-bottom: none;
}
#shopping-cart-table tfoot tr td {
  padding: 10px 0;
}
#shopping-cart-table .product-name {
  border: none;
}
#shopping-cart-table .product-name a {
  line-height: 1.5;
}
#shopping-cart-table .product-name a:hover {
  color: #4f2b1c;
  text-decoration: underline;
}
#shopping-cart-table .ground-only {
  font-size: 12px;
  font-weight: normal;
  font-style: italic;
}
#shopping-cart-table .product-name.ground-only-product {
  margin-bottom: -6px;
}
#shopping-cart-table .product-cart-sku {
  font-style: normal;
  font-weight: normal;
  display: block;
  text-align: center;
  margin: 0;
}
#shopping-cart-table .product-cart-image {
  padding-left: 0;
}
#shopping-cart-table .product-cart-image .cart-links {
  display: none;
}
#shopping-cart-table .product-cart-image a {
  border: none;
}
#shopping-cart-table .product-cart-image a img {
  width: 100%;
  height: auto;
  min-width: 50px;
}
#shopping-cart-table .product-cart-image img {
  width: 100%;
  height: auto;
  min-width: 50px;
}
#shopping-cart-table .product-cart-info .item-msg {
  font-size: 12px;
  padding-top: 2px;
  border-top: 1px solid #4f2b1c;
  display: none;
}
#shopping-cart-table .btn-remove2, #shopping-cart-table .cart-links a, #shopping-cart-table .product-cart-info .item-msg {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
}
#shopping-cart-table .btn-remove2 {
  background: none;
  text-indent: 0;
  width: auto;
  height: auto !important;
  margin-top: 0;
  line-height: 30px;
}
#shopping-cart-table .old-price .price {
  text-decoration: line-through;
}
#shopping-cart-table .product-cart-availability {
  font-weight: normal;
  color: #cc2027;
  display: block;
  text-align: center;
  white-space: nowrap;
}
#shopping-cart-table .special-price {
  color: #cc2027;
  display: block;
  text-align: center;
}
#shopping-cart-table .input-text {
  padding: 0 2px;
  width: 2.2em;
}

.wrapper .col-main .cart .price, .wrapper .col-main .cart .price span {
  display: inline-block;
  /* for ::first-letter to work */
}
.wrapper .col-main .cart .price::first-letter, .wrapper .col-main .cart .price span::first-letter {
  font-size: 0.7em;
  letter-spacing: 1px;
  vertical-align: top;
  font-weight: bold;
}
.wrapper .col-main .cart .price .price-dash::first-letter {
  vertical-align: baseline;
  font-size: 1em;
  letter-spacing: 2px;
}
.wrapper .col-main .cart * {
  font-family: "Din", Arial, sans-serif;
  text-transform: none !important;
  color: #4f2b1c;
}
.wrapper .col-main .cart .page-title {
  margin: 14px 0 8px;
  border-bottom: none;
  position: relative;
}
.wrapper .col-main .cart .page-title h1 {
  font-family: "Din", Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
  border: none;
}
.wrapper .col-main .cart .page-title ul.checkout-types {
  position: absolute;
  top: -7px;
  right: 0;
}
.wrapper .col-main .cart .checkout-types li {
  margin-bottom: 0;
}
.wrapper .col-main .cart .discount, .wrapper .col-main .cart .shipping, .wrapper .col-main .cart .cart-totals {
  padding: 10px 0 0 0;
  margin: 0;
  background: none;
  border: 0;
}
.wrapper .col-main .cart .cart-forms {
  float: left;
  clear: both;
  width: 60%;
  padding-left: 0;
}
.wrapper .col-main .cart .cart-forms h2 {
  display: block !important;
  color: #4f2b1c;
  text-transform: none;
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  border-bottom: none;
}
.wrapper .col-main .cart .cart-forms .discount {
  border-bottom: 0;
  padding-bottom: 0;
}
.wrapper .col-main .cart .cart-forms .discount h2 {
  margin: 0;
}
.wrapper .col-main .cart .cart-forms .discount .field-wrapper a {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  margin-left: 10px;
}
.wrapper .col-main .cart .cart-forms .discount button + button {
  margin-left: 10px;
}
.wrapper .col-main .cart .cart-forms label {
  font-family: "Din", Arial, sans-serif;
}
.wrapper .col-main .cart .cart-forms #discount-coupon-form label {
  display: none;
}
.wrapper .col-main .cart .cart-forms #discount-coupon-form #coupon_code.input-text {
  width: 140px;
}
.wrapper .col-main .cart .cart-forms .shipping-form select {
  background: #FFF url("../images/select-arrow.png") center right no-repeat;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding-right: 30px;
}
.wrapper .col-main .cart .cart-forms .shipping-form input.input-text {
  margin-top: 5px;
}
.wrapper .col-main .cart .cart-forms .shipping-form .shipping-postcode .input-text {
  margin-top: 4px;
}
.wrapper .col-main .cart .cart-totals-wrapper {
  width: 40%;
  padding-left: 0;
}
.wrapper .col-main .cart .input-text, .wrapper .col-main .cart select {
  border: 1px solid #4f2b1c !important;
  border-radius: 0;
}
.wrapper .col-main .cart .button, .wrapper .col-main .cart .button2, .wrapper .col-main .cart #shopping-cart-table .button, .wrapper .col-main .cart #co-shipping-method-form .buttons-set .button {
  background: #cac7a7;
  height: 30px;
  padding: 0 8px;
}
.wrapper .col-main .cart .button:hover, .wrapper .col-main .cart .button2:hover, .wrapper .col-main .cart #shopping-cart-table .button:hover, .wrapper .col-main .cart #co-shipping-method-form .buttons-set .button:hover {
  background: #c0bd97;
}
.wrapper .col-main .cart .button:active, .wrapper .col-main .cart .button2:active, .wrapper .col-main .cart #shopping-cart-table .button:active, .wrapper .col-main .cart #co-shipping-method-form .buttons-set .button:active {
  background: #b7b387;
}
.wrapper .col-main .cart .button:focus, .wrapper .col-main .cart .button2:focus, .wrapper .col-main .cart #shopping-cart-table .button:focus, .wrapper .col-main .cart #co-shipping-method-form .buttons-set .button:focus {
  box-shadow: 0 0 1px #8a161a;
}
.wrapper .col-main .cart .button span, .wrapper .col-main .cart .button2 span, .wrapper .col-main .cart #shopping-cart-table .button span, .wrapper .col-main .cart #co-shipping-method-form .buttons-set .button span {
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #4f2b1c;
  text-decoration: none;
  text-transform: none;
}
.wrapper .col-main .cart .checkout-types .btn-checkout {
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  background-color: #cc2027;
  height: 30px;
}
.wrapper .col-main .cart .checkout-types .btn-checkout span {
  color: #FFF;
  vertical-align: bottom;
  line-height: 20px;
  text-transform: uppercase !important;
}
.wrapper .col-main .cart .checkout-types .btn-checkout:hover {
  background-color: #a0191f;
}
.wrapper .col-main .cart .checkout-types .btn-checkout:active {
  background-color: #8a161a;
}
.wrapper .col-main .cart .checkout-types .btn-continue {
  height: 30px !important;
}
.wrapper .col-main .cart .checkout-types.bottom {
  width: 100%;
}
.wrapper .col-main .cart .checkout-types.bottom li button {
  width: 100%;
}
.wrapper .col-main .cart .checkout-types.bottom li button.btn-continue {
  margin: 0 0 11px;
}
.wrapper .col-main .cart .method-checkout-cart-methods-multishipping a {
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
.wrapper .col-main .cart .shipping #co-shipping-method-form .sp-methods input[type=radio] {
  float: none;
  margin: 6px -10px 0 10px;
}
.wrapper .col-main .cart .shipping #co-shipping-method-form .sp-methods input[type=radio]:after {
  background: #fff;
  border: 1px solid #4f2b1c;
  height: 30px;
  width: 30px;
  border-radius: 15px;
  line-height: 30px;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  display: inline-block;
  padding: 0 0 0 0px;
  content: ' ';
  text-align: center;
  cursor: pointer;
  margin-left: -10px;
  margin-top: -6px;
}
.wrapper .col-main .cart .shipping #co-shipping-method-form .sp-methods input[type=radio]:checked:after {
  content: '\2713';
}
.wrapper .col-main .cart .shipping #co-shipping-method-form .sp-methods label {
  width: auto !important;
  font-weight: bold;
  padding-left: 10px;
  text-align: left;
  cursor: pointer;
  bottom: 2px;
  background-color: transparent;
  min-width: 0;
  border: none;
}
.wrapper .col-main .cart .shipping #co-shipping-method-form .sp-methods input[type=radio] + label {
  margin-left: 13px;
  font-size: 16px;
}

#discount-coupon-form h2 {
  display: block;
}

#shopping-cart-totals-table .price {
  font-size: 16px;
  font-weight: bold;
  font-family: "Din", Arial, sans-serif;
}
#shopping-cart-totals-table td:last-child {
  padding-right: 10px;
}
#shopping-cart-totals-table tfoot {
  border: 0;
}
#shopping-cart-totals-table tfoot td {
  font-size: 18px;
}

body.checkout-cart-index .main .col-main {
  width: 82%;
}
body.checkout-cart-index .main .col-main .cart .checkout-types.top li button.btn-continue {
  margin-right: 50px;
  padding: 0 8px;
}
body.checkout-cart-index .main .col-main .cart .checkout-types.bottom li button {
  width: auto;
}
body.checkout-cart-index .main .col-main .cart .checkout-types.bottom li button.btn-continue {
  margin: -8px 50px 0 0;
  padding: 0 8px;
}
body.checkout-cart-index .main .col-main .cart .gw-cart-links a.link-email, body.checkout-cart-index .main .col-main .cart .gw-cart-links a.link-save {
  display: none;
}
body.checkout-cart-index .main .col-main .cart #shopping-cart-table .input-text {
  padding: 0 0;
  width: 54%;
  height: 25px;
  margin: 0;
}
body.checkout-cart-index .main .col-main .cart #shopping-cart-table .product-cart-actions button {
  display: block;
  float: none;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  line-height: 8px;
}
body.checkout-cart-index .main .col-main .cart #shopping-cart-table .product-cart-actions button span, body.checkout-cart-index .main .col-main .cart #shopping-cart-table .product-cart-actions button span span {
  padding: 0;
  margin: 0;
}
body.checkout-cart-index .main .col-main .cart #shopping-cart-totals-table tfoot tr td.a-right:first-of-type:before {
  content: 'Merchandise Total';
}
body.checkout-cart-index .main .col-main .cart #shopping-cart-totals-table tfoot tr td.a-right:first-of-type strong {
  display: none;
}
body.checkout-cart-index .main .col-main .shipping-information {
  padding: 10px 0 0 0;
}
body.checkout-cart-index .main .col-main .shipping-information .link {
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
}
body.checkout-cart-index .main .col-right {
  width: 175px;
  padding: 0;
}
body.checkout-cart-index #gw-sourcecode-whatis {
  display: none;
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  vertical-align: middle;
  z-index: 2;
}
body.checkout-cart-index #gw-sourcecode-whatis .container {
  display: inline-block;
  position: relative;
  background: #cac7a7;
  border: 1px solid;
  padding: 10px;
  box-shadow: 5px 5px 8px -3px rgba(0, 0, 0, 0.4);
  margin-top: 25%;
  text-align: left;
  z-index: 2;
  min-width: 300px;
  max-width: 100%;
  overflow: hidden;
}
body.checkout-cart-index #gw-sourcecode-whatis .container .close {
  content: '-';
  background: url("../images/ico-popup-close.png") 0 0 no-repeat;
  text-indent: -9999px;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
  float: right;
  cursor: pointer;
}
body.checkout-cart-index #gw-sourcecode-whatis .container h1 {
  font-size: 16px;
  font-weight: bold;
  color: #4f2b1c;
  text-transform: none;
  border-bottom: 5px solid #4f2b1c;
  padding-top: 5px;
}
body.checkout-cart-index #gw-shipping-information-popup,
body.checkout-cart-index #international-shipping-popup {
  display: none;
  background: #cac7a7;
  max-width: 750px;
}
body.checkout-cart-index #giftcard-container {
  padding-top: 20px;
}
body.checkout-cart-index #giftcard-container .giftcard-link {
  cursor: pointer;
  padding-bottom: 2px;
  border-bottom: 1px solid #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
}
body.checkout-cart-index #giftcard-container .giftcard-container {
  display: none;
  background: transparent;
  padding: 10px 0 0 0;
  border: 0;
}
body.checkout-cart-index #giftcard-container .giftcard-container label {
  display: block;
  font-size: 14px;
}
body.checkout-cart-index #giftcard-container .giftcard-container .v-fix {
  display: inline-block;
  float: left;
  width: 100px;
}
body.checkout-cart-index #giftcard-container .giftcard-container .v-fix input {
  width: 100%;
}
body.checkout-cart-index #giftcard-container .giftcard-container .v-fix .validation-advice {
  position: absolute;
  padding: 0 0 10px 0;
  display: block;
  font-size: 12px;
  color: #cc2027;
}
body.checkout-cart-index #giftcard-container .giftcard-container button {
  margin-top: 4px;
  float: left;
  margin-left: 5px;
  background: #cc2027;
  color: #FFF;
}
body.checkout-cart-index #giftcard-container .giftcard-container button span, body.checkout-cart-index #giftcard-container .giftcard-container button span span {
  color: #FFF;
}
body.checkout-cart-index #giftcard-container .giftcard-container button.check-gc-status {
  background: #cac7a7;
  color: #4f2b1c;
  font-weight: normal;
}
body.checkout-cart-index #giftcard-container .giftcard-container button.check-gc-status span, body.checkout-cart-index #giftcard-container .giftcard-container button.check-gc-status span span {
  font-weight: normal;
  color: #4f2b1c;
}

/*
###########
Responsive
###########
*/
@media only screen and (max-width: 985px) {
  body.checkout-cart-index .main .col-main {
    width: 80%;
  }
  body.checkout-cart-index .main .col-main .cart .checkout-types.top li button.btn-continue, body.checkout-cart-index .main .col-main .cart .checkout-types.bottom li button.btn-continue {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 890px) {
  body.checkout-cart-index .main .col-right {
    display: none;
  }
  body.checkout-cart-index .main .col-main {
    width: 100%;
  }
  body.checkout-cart-index .main .col-main .cart .checkout-types.bottom li button {
    width: 100%;
    display: block;
    float: none;
    margin-bottom: 3px !important;
  }
}
@media only screen and (max-width: 770px) {
  body.checkout-cart-index .main .col-main {
    width: 100%;
    padding: 10px;
  }
  body.checkout-cart-index .main .col-main .cart .checkout-types li {
    width: 100%;
    margin: 0 0 5px 0;
  }
  body.checkout-cart-index .main .col-main .cart .checkout-types li button {
    width: 48%;
    display: block;
    float: left !important;
    margin: 0;
  }
  body.checkout-cart-index .main .col-main .cart .checkout-types li button:first-of-type {
    margin-right: 4% !important;
  }
  body.checkout-cart-index .main .col-right {
    display: none;
  }
}
@media only screen and (max-width: 1000px) {
  /* 1000 px */
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table .product-cart-image {
    vertical-align: top;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table .product-cart-actions .qty {
    margin-bottom: 5px;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table .product-cart-actions .button {
    display: block;
    margin: 0 auto 10px;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table .product-cart-actions .button span {
    text-align: center;
    margin-left: 0;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table .product-cart-availability {
    margin: 0;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr {
    height: 132px;
  }
}
@media only screen and (max-width: 770px) {
  /* 770 px */
  body.checkout-cart-index .wrapper .col-main .cart .title-buttons {
    margin: 15px 0;
  }
  body.checkout-cart-index .wrapper .col-main .cart .title-buttons h1 {
    float: left;
    margin-top: 2px;
  }
  body.checkout-cart-index .wrapper .col-main .cart .title-buttons .gw-cart-links {
    float: left;
  }
  body.checkout-cart-index .wrapper .col-main .cart .title-buttons .gw-cart-links a {
    position: static;
    float: left;
    margin-left: 17px;
    text-decoration: underline;
  }
  body.checkout-cart-index .wrapper .col-main .cart .title-buttons .gw-cart-links a + a {
    margin-left: 10px;
  }
  body.checkout-cart-index .wrapper .col-main .cart .title-buttons .checkout-types {
    position: static;
    float: none;
  }
  body.checkout-cart-index .wrapper .col-main .cart .title-buttons .checkout-types:before {
    content: '';
    display: table;
    clear: both;
    height: 10px;
  }
  body.checkout-cart-index .wrapper .col-main .cart .cart-forms {
    width: 100%;
    padding: 0;
  }
  body.checkout-cart-index .wrapper .col-main .cart .cart-forms #co-shipping-method-form .button, body.checkout-cart-index .wrapper .col-main .cart .cart-forms #co-shipping-method-form .button2, body.checkout-cart-index .wrapper .col-main .cart .cart-forms #shipping-zip-form .button, body.checkout-cart-index .wrapper .col-main .cart .cart-forms #shipping-zip-form .button2 {
    width: 100%;
    height: 36px;
    line-height: 36px;
  }
  body.checkout-cart-index .wrapper .col-main .cart .cart-forms .sp-methods dt {
    float: left;
    line-height: 42px;
  }
  body.checkout-cart-index .wrapper .col-main .cart .cart-forms .sp-methods dt:after {
    content: ':';
  }
  body.checkout-cart-index .wrapper .col-main .cart .cart-forms .sp-methods dd {
    float: right;
  }
  body.checkout-cart-index .wrapper .col-main .cart .cart-totals-wrapper {
    width: 100%;
    padding: 0 5px;
  }
  body.checkout-cart-index .wrapper .col-main .cart .cart-totals-wrapper .checkout-types {
    float: none;
  }
  body.checkout-cart-index .wrapper .col-main .cart .cart-totals-wrapper .method-checkout-cart-methods-onepage-bottom button {
    width: 48%;
    padding: 0;
    float: left;
    margin: 0;
  }
  body.checkout-cart-index .wrapper .col-main .cart .cart-totals-wrapper .method-checkout-cart-methods-onepage-bottom button + button {
    margin-left: 4%;
  }
  body.checkout-cart-index .wrapper .col-main .cart .cart-totals-wrapper .method-checkout-cart-methods-onepage-bottom button.btn-checkout span {
    line-height: 36px;
  }
  body.checkout-cart-index .wrapper .col-main .cart #co-shipping-method-form {
    margin-top: 15px;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table {
    border-width: 4px 0;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table colgroup, body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table thead {
    display: none;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table .product-cart-availability {
    margin: 0;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr {
    height: auto;
    min-height: 200px;
    margin: 0;
    border-top: 1px solid #4f2b1c;
    border-bottom: none;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr.first {
    margin-top: 21px;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr.first .product-cart-info:before, body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr.first .product-cart-image:before {
    position: absolute;
    margin-top: -30px;
    font-family: "Din", Arial, sans-serif;
    font-size: 13px;
    font-weight: normal;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr.first .product-cart-image {
    vertical-align: middle;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr.first .product-cart-image:before {
    content: 'Item';
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr.first .product-cart-info:before {
    content: 'Description';
    top: 10px;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr td {
    padding: 0;
    text-align: left;
    float: none;
    width: 100%;
    padding-left: 205px;
    margin-left: 0;
    display: block;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr td div, body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr td span {
    text-align: left;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-sku {
    margin: 0;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 190px;
    padding: 10px 0 0 10px;
    margin-left: 0;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-image img {
    max-width: 100%;
    margin-right: 0;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-image .cart-links {
    display: none;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-info {
    order: 1;
    padding-top: 10px;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-info .btn-remove2 {
    display: none;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-image + td {
    order: 2;
    position: static;
    vertical-align: middle;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-price {
    order: 3;
    float: none;
    width: auto;
    margin: 0;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-price:before {
    display: none;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-price + td {
    order: 4;
    margin-top: -24px;
    padding-left: 297px;
    height: 24px;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-price + td:after {
    content: '';
    display: table;
    clear: both;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-total {
    order: 8;
    display: block;
    margin-bottom: 0;
    margin-top: 4px;
    float: left;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-total:before {
    content: attr(data-rwd-label) ": ";
    text-transform: none;
    font-family: "Din", Arial, sans-serif;
    font-size: 15px;
    font-weight: normal;
    padding-right: 5px;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-info + td {
    order: 6;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-actions {
    order: 7;
    margin-bottom: 0;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-actions:before {
    font-family: "Din", Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
    content: attr(data-rwd-label);
    text-transform: uppercase;
    padding-right: 5px;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-actions:before, body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-actions .input-text {
    float: left;
    margin-bottom: 0 !important;
    margin-top: 3px;
    line-height: 24px;
    height: 22px;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-actions .button {
    float: left;
    margin: 0 5px 0 0 !important;
    height: auto !important;
    vertical-align: middle;
    line-height: 30px;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-actions .input-text {
    margin-right: 7px;
    width: 60px;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-actions .cart-links {
    display: block;
    float: left;
    margin-left: 13px;
    margin-top: 2px;
    padding: 0;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-actions .cart-links li {
    display: none;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-actions .cart-links li.cart-link-remove {
    display: inline-block;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-actions .cart-links li.cart-link-remove a {
    font-family: "Garamond3LTPro", Arial, sans-serif;
  }

  body.checkout-cart-index .wrapper .col-main .cart .cart-totals-wrapper {
    padding: 0;
  }

  body.checkout-cart-index .main .col-main .cart .checkout-types.bottom li button {
    width: 48%;
    margin: 0 4% 0 0 !important;
  }
  body.checkout-cart-index .main .col-main .cart .checkout-types.bottom li button:last-of-type {
    margin: 0 !important;
  }

  body.checkout-cart-index .wrapper .col-main .cart .cart-totals-wrapper .method-checkout-cart-methods-onepage-bottom button.btn-checkout span {
    line-height: 34px;
  }

  body.checkout-cart-index .wrapper .col-main .cart .checkout-types li button:first-of-type {
    line-height: 32px;
  }

  body.checkout-cart-index #giftcard-container .giftcard-container button span,
  body.checkout-cart-index #giftcard-container .giftcard-container button span span {
    line-height: 34px;
  }

  body.checkout-cart-index #giftcard-container .giftcard-container button.check-gc-status {
    margin-top: 10px;
    margin-left: 0;
    float: none;
    width: 100%;
  }

  body.checkout-cart-index #giftcard-container .giftcard-container .v-fix {
    width: 140px;
  }

  body.checkout-cart-index #giftcard-container .giftcard-container button {
    margin-left: 12px;
  }

  body.checkout-cart-index #giftcard-container .giftcard-container .v-fix .validation-advice {
    position: inherit;
    margin: 0;
  }
}
@media only screen and (max-width: 599px) {
  /* 599 px */
  body.checkout-cart-index #shopping-cart-table tbody tr {
    min-height: 155px;
  }
  body.checkout-cart-index #shopping-cart-table tbody tr td {
    padding-left: 160px;
  }
  body.checkout-cart-index #shopping-cart-table tbody tr .product-cart-image {
    width: 145px;
  }
  body.checkout-cart-index #shopping-cart-table tbody tr .product-cart-price + td {
    padding-left: 252px;
  }
}
@media only screen and (max-width: 479px) {
  /* 479px */
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr {
    min-height: 0;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr td {
    width: 70%;
    margin-left: 30%;
    padding-left: 10px;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-image {
    width: 30%;
    margin-left: 0;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-image img {
    max-width: 120px;
    margin-right: 0;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-price {
    margin-left: 30%;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table tbody tr .product-cart-price + td {
    padding-left: 92px;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table .product-cart-actions:before {
    margin-top: 1px;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table .product-cart-actions .qty {
    height: 21px;
    line-height: 23px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table .product-cart-actions .btn-update {
    margin-bottom: 0;
    margin-top: 0 !important;
    background-color: transparent;
    height: 21px;
    padding: 0 3px;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table .product-cart-actions .btn-update span {
    font-family: "Garamond3LTPro", Arial, sans-serif;
    font-weight: normal;
    font-size: 14px;
    line-height: 21px;
  }
  body.checkout-cart-index .wrapper .col-main .cart #shopping-cart-table .product-cart-actions .cart-links {
    margin-top: -1px;
  }
  body.checkout-cart-index .wrapper .col-main .cart .checkout-types li button,
  body.checkout-cart-index .wrapper .col-main .cart .checkout-types.bottom li button {
    width: 45%;
  }
  body.checkout-cart-index .wrapper .col-main .cart .checkout-types li button:first-of-type {
    width: 51%;
  }

  body.checkout-cart-index #giftcard-container .giftcard-link {
    font-size: 0;
  }
  body.checkout-cart-index #giftcard-container .giftcard-link:after {
    content: 'Click here to use a Gift Certificate';
    font-size: 16px;
    display: block;
  }
}
@media print {
  body.checkout-cart-index #header-nav,
  body.checkout-cart-index #header-search,
  body.checkout-cart-index .header-submenu-container,
  body.checkout-cart-index .account-cart-wrapper,
  body.checkout-cart-index .dynamic-offer-top,
  body.checkout-cart-index .breadcrumbs,
  body.checkout-cart-index .col-right.sidebar,
  body.checkout-cart-index .skip-links,
  body.checkout-cart-index .footer-newsletter,
  body.checkout-cart-index .footer-container .footer .footer-links,
  body.checkout-cart-index .footer-container .footer .footer-social,
  body.checkout-cart-index .checkout-types,
  body.checkout-cart-index .cart-links,
  body.checkout-cart-index button.btn-update,
  body.checkout-cart-index .cart-forms {
    display: none !important;
  }
  body.checkout-cart-index .wrapper .main .col-main {
    width: 100%;
  }
  body.checkout-cart-index .wrapper .main .col-main .cart {
    border-bottom: 0;
  }
  body.checkout-cart-index header.page-header .page-header-container a.logo {
    margin-left: 0;
  }
  body.checkout-cart-index header.page-header {
    height: 135px;
  }
}
body.checkout-onepage-index header #header-nav,
body.checkout-onepage-index header #header-search,
body.checkout-onepage-index .header-submenu-container {
  display: none;
}
body.checkout-onepage-index header.page-header #header-nav.skip-active {
  display: none !important;
}
body.checkout-onepage-index header.page-header {
  height: 160px;
}
body.checkout-onepage-index header.page-header .page-header-container .header-minicart {
  text-indent: -99999px;
}
body.checkout-onepage-index header.page-header .page-header-container .header-minicart:after {
  content: '100% Secure Shopping';
  text-indent: 0;
  display: inline-block;
  float: right;
  background: #cac7a7;
  font-family: "Din", Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  padding: 2px 5px;
  margin: 0 70px 0 0;
}
body.checkout-onepage-index header.page-header .page-header-container .header-account a {
  display: none;
}
body.checkout-onepage-index header.page-header .page-header-container .header-account:before {
  content: 'Need help? Please call:';
  color: #4f2b1c;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 13px;
}
body.checkout-onepage-index header.page-header .page-header-container .header-account .phone {
  margin-left: 0;
}
body.checkout-onepage-index .main {
  position: relative;
}
body.checkout-onepage-index .col-main {
  width: 810px;
  padding: 0;
  margin: 0;
}
body.checkout-onepage-index .col-main .page-title {
  display: none;
  clear: both;
}
body.checkout-onepage-index .col-main #opc-payment .method-container.single.method-ccsave:after {
  content: '';
  box-shadow: none;
  background: none;
}
body.checkout-onepage-index .col-main #opc-payment .method-container.single.method-ccsave:before {
  content: '';
  box-shadow: none;
  background: none;
}
body.checkout-onepage-index .col-main #checkout-progress-top-wrapper .block-progress {
  display: none;
}
body.checkout-onepage-index .col-main #checkout-progress-top-wrapper .block-custom-progressbar {
  position: absolute;
  top: -33px;
}
body.checkout-onepage-index .col-main #checkout-progress-top-wrapper .block-custom-progressbar ul {
  margin: 0 10px;
}
body.checkout-onepage-index .col-main #checkout-progress-top-wrapper .block-custom-progressbar ul li {
  display: inline-block;
  float: left;
  color: #cac7a7;
  margin-right: 42px;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  font-weight: normal;
}
body.checkout-onepage-index .col-main #checkout-progress-top-wrapper .block-custom-progressbar ul li.active {
  color: #4f2b1c;
}
body.checkout-onepage-index .col-main #checkout-progress-top-wrapper .block-custom-progressbar ul li.active span:not(.step) {
  display: block;
  background: #4f2b1c;
  width: 12px;
  height: 12px;
  margin: 0px auto 0 auto;
}
body.checkout-onepage-index .col-main #checkout-progress-top-wrapper .block-custom-progressbar ul li:last-of-type {
  margin: 0;
}
body.checkout-onepage-index .col-main ol.opc {
  clear: both;
}
body.checkout-onepage-index .col-main ol.opc p.required {
  position: absolute;
  left: 0;
  font-size: 13px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  margin-top: 5px;
  color: #4f2b1c;
}
body.checkout-onepage-index .col-main ol.opc p.required span {
  font-size: 16px;
  font-weight: bold;
  font-family: "Din", Arial, sans-serif;
  vertical-align: bottom;
  line-height: 7px;
}
body.checkout-onepage-index .col-main ol.opc .back-link {
  float: none;
  display: inline;
}
body.checkout-onepage-index .col-main ol.opc .back-link a {
  display: inline-block;
  border: 1px solid #cac7a7;
  background: #dbd9c4;
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  padding: 2px 5px;
  margin-right: 15px;
}
body.checkout-onepage-index .col-main ol.opc .back-link a small {
  display: none;
}
body.checkout-onepage-index .col-main ol.opc .back-link a:hover {
  text-decoration: none;
  background: #4f2b1c;
  color: #cac7a7;
}
body.checkout-onepage-index .col-main ol.opc .validation-advice {
  position: absolute;
  font-size: 11px;
}
body.checkout-onepage-index .col-main ol.opc li.section .step-title {
  display: none;
  border: 0;
  padding: 0;
  margin: -15px 0 0 0;
  position: absolute;
  width: 100%;
  border-bottom: 1px solid #4f2b1c;
}
body.checkout-onepage-index .col-main ol.opc li.section .step-title span.number {
  display: none;
}
body.checkout-onepage-index .col-main ol.opc li.section .step-title h2 {
  font-weight: bold;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  line-height: 16px;
  text-transform: none;
  border: 0;
  padding: 0;
  margin: 0;
  float: none;
  height: auto;
}
body.checkout-onepage-index .col-main ol.opc li.section .step {
  margin-top: 50px;
  padding: 0 0 15px 0;
}
body.checkout-onepage-index .col-main ol.opc li.section.active .step-title {
  display: block;
}
body.checkout-onepage-index .col-main ol.opc li.section:hover .step-title span.number {
  display: none;
}
body.checkout-onepage-index .col-main ol.opc .buttons-set {
  text-align: center;
  border-top: 1px solid #cac7a7;
}
body.checkout-onepage-index .col-main ol.opc .buttons-set button.button {
  float: none;
  margin: 0 auto;
  background: #cc2027 !important;
  color: #FFF !important;
  width: auto;
  min-width: 0;
}
body.checkout-onepage-index .col-right {
  width: 175px;
  border: 0;
  padding: 0;
  margin: 80px 0 0 0;
}
body.checkout-onepage-index .col-right #checkout-sidebar {
  border: 0;
  padding: 20px 10px;
  margin: 0;
  min-height: 200px;
}
body.checkout-onepage-index .col-right #checkout-sidebar dl dt {
  padding: 0;
  text-transform: none;
  color: #4f2b1c;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  line-height: 16px;
  font-weight: normal;
  text-decoration: wavy;
}
body.checkout-onepage-index .col-right #checkout-sidebar dl dt .changelink {
  font-size: 12px;
  font-weight: normal;
  display: block;
  text-decoration: underline;
}
body.checkout-onepage-index .col-right #checkout-sidebar dl dt .changelink .separator {
  display: none;
}
body.checkout-onepage-index .col-right #checkout-sidebar dl dt.complete {
  font-weight: bold;
}
body.checkout-onepage-index .col-right #checkout-sidebar dl dd {
  padding: 0 0 10px 0;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 14px;
  line-height: 15px;
  font-style: normal;
}
body.checkout-onepage-index .col-right #checkout-sidebar dl dd address {
  font-style: normal;
}
body.checkout-onepage-index .col-right #checkout-sidebar .block {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
}
body.checkout-onepage-index .col-right #checkout-sidebar .block:last-of-type {
  margin: 0;
  border: 0;
}

#checkout-step-login {
  padding: 20px 0 0 0 !important;
}
#checkout-step-login p.required {
  margin-top: -35px;
}
#checkout-step-login .col2-set {
  padding: 20px 10% 20px 10%;
  position: relative;
}
#checkout-step-login .col2-set h3 {
  font-weight: bold;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  line-height: 16px;
  text-transform: none;
  border: 0;
  padding: 0;
  margin: 0;
  float: none;
  height: auto;
  border-bottom: 1px solid #4f2b1c;
}
#checkout-step-login .col2-set .col-1 {
  position: relative;
  padding-right: 45px;
}
#checkout-step-login .col2-set .col-1:before {
  background: #fff;
  height: 60px;
  width: 38px;
  display: inline-block;
  content: ' ';
  position: absolute;
  right: -21px;
  top: 0px;
}
#checkout-step-login .col2-set .col-1:after {
  background: #4f2b1c;
  border-radius: 19px;
  height: 38px;
  width: 38px;
  line-height: 40px;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  color: #cac7a7;
  display: inline-block;
  content: 'OR';
  text-align: center;
  position: absolute;
  right: -21px;
  top: 12px;
}
#checkout-step-login .col2-set .col-2 {
  border-left: 5px solid #4f2b1c;
  padding-left: 45px;
  height: 330px;
}
#checkout-step-login .col2-set .form-list {
  padding: 20px 0 10px 0;
  border-bottom: 1px solid #4f2b1c;
  margin-bottom: 15px;
}
#checkout-step-login .col2-set .form-list li {
  width: 100%;
  display: block;
}
#checkout-step-login .col2-set .form-list li label {
  display: block;
  width: 100%;
  float: none;
  text-align: left;
}
#checkout-step-login .col2-set .form-list li .input-box {
  display: block;
  width: 100%;
  float: none;
}
#checkout-step-login .col2-set .form-list li .input-box input {
  width: 100%;
}
#checkout-step-login .col2-set .form-list li.control {
  display: none;
}

#opc-billing .step-title h2:after {
  content: 'Please make sure this matches the address where your Credit Card Statements are sent.';
  font-weight: normal;
  padding-left: 10px;
  font-size: 12px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
#opc-billing .fieldset {
  padding: 10px 0 0 0;
}
#opc-billing .fieldset .form-list {
  padding: 0px 25% 0 15%;
}
#opc-billing .fieldset .form-list #billing-new-address-form {
  padding: 20px 0 0 0;
}
#opc-billing .fieldset .form-list #billing-new-address-form .fields {
  display: block;
}
#opc-billing .fieldset .form-list #billing-new-address-form .wide, #opc-billing .fieldset .form-list #billing-new-address-form .fields .field {
  height: 30px;
  margin: 0 0 20px 0;
  display: block;
}
#opc-billing .fieldset .form-list #billing-new-address-form .wide label, #opc-billing .fieldset .form-list #billing-new-address-form .fields .field label {
  padding-right: 10px;
  width: 35%;
  line-height: 30px;
}
#opc-billing .fieldset .form-list #billing-new-address-form .wide .input-box, #opc-billing .fieldset .form-list #billing-new-address-form .fields .field .input-box {
  width: 65%;
  padding-right: 15%;
}
#opc-billing .fieldset .form-list #billing-new-address-form .wide.email-offers, #opc-billing .fieldset .form-list #billing-new-address-form .wide.mobile-offers, #opc-billing .fieldset .form-list #billing-new-address-form .fields .field.email-offers, #opc-billing .fieldset .form-list #billing-new-address-form .fields .field.mobile-offers {
  height: auto;
  padding-bottom: 10px;
}
#opc-billing .fieldset .form-list #billing-new-address-form .wide.email-offers .input-box, #opc-billing .fieldset .form-list #billing-new-address-form .wide.mobile-offers .input-box, #opc-billing .fieldset .form-list #billing-new-address-form .fields .field.email-offers .input-box, #opc-billing .fieldset .form-list #billing-new-address-form .fields .field.mobile-offers .input-box {
  padding: 0;
}
#opc-billing .fieldset .form-list #billing-new-address-form .wide.email-offers .input-box label, #opc-billing .fieldset .form-list #billing-new-address-form .wide.mobile-offers .input-box label, #opc-billing .fieldset .form-list #billing-new-address-form .fields .field.email-offers .input-box label, #opc-billing .fieldset .form-list #billing-new-address-form .fields .field.mobile-offers .input-box label {
  text-align: left;
  font-size: 14px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  color: #4f2b1c;
  float: right;
  width: 88%;
  line-height: 15px;
  padding-bottom: 20px;
  padding-right: 0;
}
#opc-billing .fieldset .form-list #billing-new-address-form .wide.email-offers .input-box label a, #opc-billing .fieldset .form-list #billing-new-address-form .wide.mobile-offers .input-box label a, #opc-billing .fieldset .form-list #billing-new-address-form .fields .field.email-offers .input-box label a, #opc-billing .fieldset .form-list #billing-new-address-form .fields .field.mobile-offers .input-box label a {
  text-decoration: underline;
}
#opc-billing .fieldset .form-list #billing-new-address-form .wide.email-offers .input-box input, #opc-billing .fieldset .form-list #billing-new-address-form .wide.mobile-offers .input-box input, #opc-billing .fieldset .form-list #billing-new-address-form .fields .field.email-offers .input-box input, #opc-billing .fieldset .form-list #billing-new-address-form .fields .field.mobile-offers .input-box input {
  border: 1px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 30px;
  width: 30px;
  float: left;
  margin: 5px 5px 0 0;
}
#opc-billing .fieldset .form-list #billing-new-address-form .wide.email-offers .input-box input:checked:after, #opc-billing .fieldset .form-list #billing-new-address-form .wide.mobile-offers .input-box input:checked:after, #opc-billing .fieldset .form-list #billing-new-address-form .fields .field.email-offers .input-box input:checked:after, #opc-billing .fieldset .form-list #billing-new-address-form .fields .field.mobile-offers .input-box input:checked:after {
  content: 'x';
  display: block;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
}
#opc-billing .fieldset .form-list #billing-new-address-form .field.name-middlename {
  display: none;
}
#opc-billing .fieldset .form-list #billing-new-address-form select {
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #4f2b1c;
  height: 30px;
  background: #FFF url("../images/select-arrow.png") center right no-repeat;
  border: 1px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0px 5px;
  margin: 0;
  line-height: 30px;
}
#opc-billing .fieldset .form-list #billing-new-address-form select.validation-failed {
  border: 1px solid #DF280A;
}
#opc-billing .fieldset .form-list #billing-new-address-form select:focus {
  box-shadow: 0px 0 3px 1px #7D7D81;
  border: 1px solid #ccc;
}
#opc-billing .fieldset .form-list #billing-new-address-form #register-customer-password {
  border: 1px solid #cac7a7;
  padding: 15px;
  margin-left: 40px;
}
#opc-billing .fieldset .form-list #billing-new-address-form #register-customer-password h2 {
  border: 0;
  padding: 0;
  margin: 0;
}
#opc-billing .fieldset .form-list #billing-new-address-form #register-customer-password h4 {
  text-transform: none;
  font-weight: normal;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 14px;
}
#opc-billing .fieldset .form-list #billing-new-address-form #register-customer-password .field label {
  width: 40%;
}
#opc-billing .fieldset .form-list #billing-new-address-form #register-customer-password .field .input-box {
  width: 60%;
  padding: 0;
}
#opc-billing .fieldset .form-list #billing-new-address-form .use-address-for-shipping {
  display: block;
  margin: 20px 0 20px 60px;
}
#opc-billing .fieldset .form-list #billing-new-address-form .use-address-for-shipping input {
  background: white;
  border-radius: 90px;
  border: 4px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 25px;
  width: 25px;
  float: left;
  margin: 5px 0 0 0;
}
#opc-billing .fieldset .form-list #billing-new-address-form .use-address-for-shipping input:checked:after {
  content: 'x';
  display: block;
  font-size: 20px;
  line-height: 18px;
  text-align: center;
}
#opc-billing .fieldset .form-list #billing-new-address-form .use-address-for-shipping label {
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  line-height: 16px;
  text-transform: none;
  border: 0;
  padding: 0;
  margin: 0 0 0 10px;
  float: none;
  height: auto;
  text-align: left;
  width: 420px;
}
#opc-billing .fieldset .form-list #billing-new-address-form .use-address-for-shipping label span {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  display: block;
}
#opc-billing .fieldset .billing-address-select-wrapper {
  padding-top: 40px;
  display: block;
}
#opc-billing .fieldset .billing-address-select-wrapper label {
  display: block;
  float: none;
  width: 100%;
  text-align: left;
}
#opc-billing .fieldset .billing-address-select-wrapper label span {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  display: block;
}
#opc-billing .fieldset .billing-address-select-wrapper .input-box {
  display: block;
  float: none;
  width: 100%;
}
#opc-billing .fieldset .billing-address-select-wrapper .input-box select {
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #4f2b1c;
  height: 30px;
  background: #FFF url("../images/select-arrow.png") center right no-repeat;
  border: 1px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0px 5px;
  margin: 0;
  line-height: 30px;
  width: 100%;
}
#opc-billing .fieldset .billing-address-select-wrapper .input-box select.validation-failed {
  border: 1px solid #DF280A;
}
#opc-billing .fieldset .billing-address-select-wrapper .input-box select:focus {
  box-shadow: 0px 0 3px 1px #7D7D81;
  border: 1px solid #ccc;
}
#opc-billing .fieldset .save-in-address-book-wrapper {
  display: block;
  margin: 0 0 20px 0;
  border-bottom: 0;
  padding: 30px 0 30px 100px;
}
#opc-billing .fieldset .save-in-address-book-wrapper input {
  border-radius: 90px;
  border: 4px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 25px;
  width: 25px;
  float: left;
  margin: 5px 0 0 0;
}
#opc-billing .fieldset .save-in-address-book-wrapper input:checked:after {
  content: 'x';
  display: block;
  font-size: 20px;
  line-height: 18px;
  text-align: center;
}
#opc-billing .fieldset .save-in-address-book-wrapper label {
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  line-height: 16px;
  background: transparent;
  text-transform: none;
  border: 0;
  padding: 0;
  margin: 8px 0 0 10px;
  float: none;
  height: auto;
  text-align: left;
  width: auto;
}
#opc-billing .fieldset .save-in-address-book-wrapper label span {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  display: block;
}

#opc-shipping .step-title h2:after {
  content: none;
}
#opc-shipping .fieldset {
  padding: 10px 0 0 0;
}
#opc-shipping .fieldset .same-as-billing-wrapper,
#opc-shipping .fieldset .save-in-address-book-wrapper {
  display: block;
  margin: 0 0 20px 0;
  border-bottom: 1px solid #cac7a7;
  padding: 30px 0 30px 100px;
}
#opc-shipping .fieldset .same-as-billing-wrapper input,
#opc-shipping .fieldset .save-in-address-book-wrapper input {
  background: white;
  border-radius: 90px;
  border: 4px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 25px;
  width: 25px;
  float: left;
  margin: 5px 0 0 0;
}
#opc-shipping .fieldset .same-as-billing-wrapper input:checked:after,
#opc-shipping .fieldset .save-in-address-book-wrapper input:checked:after {
  content: 'x';
  display: block;
  font-size: 20px;
  line-height: 18px;
  text-align: center;
}
#opc-shipping .fieldset .same-as-billing-wrapper label,
#opc-shipping .fieldset .save-in-address-book-wrapper label {
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  line-height: 16px;
  text-transform: none;
  border: 0;
  padding: 0;
  margin: 8px 0 0 10px;
  float: none;
  height: auto;
  text-align: left;
}
#opc-shipping .fieldset .same-as-billing-wrapper label span,
#opc-shipping .fieldset .save-in-address-book-wrapper label span {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  display: block;
}
#opc-shipping .fieldset .same-as-billing-wrapper p,
#opc-shipping .fieldset .save-in-address-book-wrapper p {
  margin: 10px 0 0 35px;
}
#opc-shipping .fieldset .same-as-billing-wrapper.gift-options {
  padding: 0;
}
#opc-shipping .fieldset .no-padding {
  padding: 0 !important;
}
#opc-shipping .fieldset .not-same-billing-address {
  font-weight: bold;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  line-height: 16px;
  padding-left: 100px;
}
#opc-shipping .fieldset .form-list {
  padding: 0px 25% 0 15%;
}
#opc-shipping .fieldset .form-list #shipping-new-address-form {
  padding: 20px 0 0 0;
}
#opc-shipping .fieldset .form-list #shipping-new-address-form .fields {
  display: block;
}
#opc-shipping .fieldset .form-list #shipping-new-address-form .wide, #opc-shipping .fieldset .form-list #shipping-new-address-form .fields .field {
  height: 30px;
  margin: 0 0 20px 0;
  display: block;
}
#opc-shipping .fieldset .form-list #shipping-new-address-form .wide label, #opc-shipping .fieldset .form-list #shipping-new-address-form .fields .field label {
  padding-right: 10px;
  width: 35%;
  line-height: 30px;
}
#opc-shipping .fieldset .form-list #shipping-new-address-form .wide label small, #opc-shipping .fieldset .form-list #shipping-new-address-form .fields .field label small {
  font-size: 13px;
  display: block;
  line-height: 12px;
  font-weight: normal;
  margin-top: -5px;
}
#opc-shipping .fieldset .form-list #shipping-new-address-form .wide .input-box, #opc-shipping .fieldset .form-list #shipping-new-address-form .fields .field .input-box {
  width: 65%;
  padding-right: 15%;
}
#opc-shipping .fieldset .form-list #shipping-new-address-form .field.name-middlename {
  display: none;
}
#opc-shipping .fieldset .form-list #shipping-new-address-form select {
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #4f2b1c;
  height: 30px;
  background: #FFF url("../images/select-arrow.png") center right no-repeat;
  border: 1px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0px 5px;
  margin: 0;
  line-height: 30px;
}
#opc-shipping .fieldset .form-list #shipping-new-address-form select.validation-failed {
  border: 1px solid #DF280A;
}
#opc-shipping .fieldset .form-list #shipping-new-address-form select:focus {
  box-shadow: 0px 0 3px 1px #7D7D81;
  border: 1px solid #ccc;
}
#opc-shipping .fieldset .form-list #shipping-new-address-form .textarea {
  height: 70px !important;
}
#opc-shipping .fieldset .form-list #shipping-new-address-form .gift-info {
  border-bottom: 1px solid #cac7a7;
  margin-bottom: 20px;
}
#opc-shipping .fieldset .form-list #shipping-new-address-form .order-instructions label {
  bottom: 0;
  margin-top: -8px;
}
#opc-shipping .fieldset .form-list #shipping-new-address-form .order-instructions label small {
  margin-top: 5px !important;
}
#opc-shipping .fieldset .shipping-address-select-wrapper {
  padding-top: 40px;
  display: block;
}
#opc-shipping .fieldset .shipping-address-select-wrapper label {
  display: block;
  float: none;
  width: 100%;
  text-align: left;
}
#opc-shipping .fieldset .shipping-address-select-wrapper label span {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  display: block;
}
#opc-shipping .fieldset .shipping-address-select-wrapper .input-box {
  display: block;
  float: none;
  width: 100%;
}
#opc-shipping .fieldset .shipping-address-select-wrapper .input-box select {
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #4f2b1c;
  height: 30px;
  background: #FFF url("../images/select-arrow.png") center right no-repeat;
  border: 1px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0px 5px;
  margin: 0;
  line-height: 30px;
  width: 100%;
}
#opc-shipping .fieldset .shipping-address-select-wrapper .input-box select.validation-failed {
  border: 1px solid #DF280A;
}
#opc-shipping .fieldset .shipping-address-select-wrapper .input-box select:focus {
  box-shadow: 0px 0 3px 1px #7D7D81;
  border: 1px solid #ccc;
}
#opc-shipping .fieldset .save-in-address-book-wrapper {
  display: block;
  margin: 0 0 20px 0;
  border-bottom: 0;
  padding: 30px 0 30px 100px;
}
#opc-shipping .fieldset .save-in-address-book-wrapper input {
  border-radius: 90px;
  border: 4px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 25px;
  width: 25px;
  float: left;
  margin: 5px 0 0 0;
}
#opc-shipping .fieldset .save-in-address-book-wrapper input:checked:after {
  content: 'x';
  display: block;
  font-size: 20px;
  line-height: 18px;
  text-align: center;
}
#opc-shipping .fieldset .save-in-address-book-wrapper label {
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  line-height: 16px;
  background: transparent;
  text-transform: none;
  border: 0;
  padding: 0;
  margin: 8px 0 0 10px;
  float: none;
  height: auto;
  text-align: left;
  width: auto;
}
#opc-shipping .fieldset .save-in-address-book-wrapper label span {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  display: block;
}

#opc-shipping_method #checkout-shipping-method-load {
  padding: 30px 0 0 0;
}
#opc-shipping_method #checkout-shipping-method-load dt {
  font-size: 20px;
  text-transform: none;
}
#opc-shipping_method #checkout-shipping-method-load .sp-methods input {
  border-radius: 90px;
  border: 4px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 25px;
  width: 25px;
  float: left;
  margin: 5px 0 0 0;
}
#opc-shipping_method #checkout-shipping-method-load .sp-methods input:checked:after {
  content: 'x';
  display: block;
  font-size: 20px;
  line-height: 18px;
  text-align: center;
}
#opc-shipping_method #checkout-shipping-method-load .sp-methods label {
  display: block;
  font-weight: bold;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  line-height: 16px;
  text-transform: none;
  border: 0;
  padding: 0;
  margin: 0;
  float: none;
  height: auto;
  text-align: left;
  width: auto;
  background: transparent;
}
#opc-shipping_method #checkout-shipping-method-load .sp-methods label span {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  display: block;
}
#opc-shipping_method #checkout-shipping-method-load .sp-methods select {
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #4f2b1c;
  height: 30px;
  background: #FFF url("../images/select-arrow.png") center right no-repeat;
  border: 1px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0px 5px;
  margin: 10px 0 0;
  line-height: 30px;
  width: 100%;
}
#opc-shipping_method #checkout-shipping-method-load .sp-methods select.validation-failed {
  border: 1px solid #DF280A;
}
#opc-shipping_method #checkout-shipping-method-load .sp-methods select:focus {
  box-shadow: 0px 0 3px 1px #7D7D81;
  border: 1px solid #ccc;
}
#opc-shipping_method #onepage-checkout-shipping-method-additional-load {
  padding: 50px 0 0 0;
}
#opc-shipping_method #onepage-checkout-shipping-method-additional-load h3 {
  font-weight: bold;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  line-height: 16px;
  margin-bottom: 15px;
  border-bottom: 1px solid #cac7a7;
}
#opc-shipping_method #onepage-checkout-shipping-method-additional-load input {
  border-radius: 90px;
  border: 4px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 25px;
  width: 25px;
  float: left;
  margin: 5px 0 0 0;
}
#opc-shipping_method #onepage-checkout-shipping-method-additional-load input:checked:after {
  content: 'x';
  display: block;
  font-size: 20px;
  line-height: 18px;
  text-align: center;
}
#opc-shipping_method #onepage-checkout-shipping-method-additional-load label {
  display: inline-block;
  font-weight: bold;
  font-size: 15px;
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  line-height: 32px;
  text-transform: none;
  border: 0;
  padding: 0;
  margin: 0 0 0 10px;
  float: none;
  height: auto;
  text-align: left;
  width: auto;
  background: transparent;
}
#opc-shipping_method #onepage-checkout-shipping-method-additional-load label span {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  display: block;
}
#opc-shipping_method #onepage-checkout-shipping-method-additional-load ol .gift-item {
  border: 0;
  padding: 0;
  margin: 0;
}
#opc-shipping_method #allow-gift-options-for-items-container ol li {
  float: none;
  border-bottom: 1px solid #cac7a7;
  padding-bottom: 20px;
  margin-bottom: 20px;
  clear: both;
}
#opc-shipping_method #allow-gift-options-for-items-container ol li .product-img-box {
  width: 100%;
}
#opc-shipping_method #allow-gift-options-for-items-container ol li .product-img-box .product-image {
  float: left;
  margin-right: 15px;
}
#opc-shipping_method #allow-gift-options-for-items-container ol li .product-img-box .product-name {
  color: #4f2b1c;
  display: block;
  text-transform: none;
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
}

#opc-payment .payment-gift-msg-1 {
  font-weight: normal;
  font-size: 13px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  padding-left: 10px;
}
@media only screen and (max-width: 770px) {
  #opc-payment .payment-gift-msg-1 {
    display: none;
  }
}
#opc-payment .payment-gift-msg-1 a {
  text-decoration: underline;
  display: inline-block;
}
#opc-payment .payment-gift-msg-2 {
  font-weight: normal;
  font-size: 13px;
  line-height: 13px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  padding-left: 0px;
  display: none;
  padding-top: 15px;
}
@media only screen and (max-width: 770px) {
  #opc-payment .payment-gift-msg-2 {
    display: block;
  }
}
#opc-payment .payment-gift-msg-2 a {
  text-decoration: underline;
  display: inline-block;
}
#opc-payment .sp-methods {
  padding-top: 40px;
  margin: 0 auto;
}
#opc-payment .sp-methods p.required {
  display: none;
}
#opc-payment .sp-methods .method-container {
  float: left;
  position: relative;
}
#opc-payment .sp-methods .method-container dt {
  display: block;
  clear: both;
  border-bottom: 0;
  float: right;
  border-bottom: 1px solid #cac7a7;
  padding: 0 0 0 0;
  margin: 0 10px 30px 0;
  width: 220px;
}
#opc-payment .sp-methods .method-container dt input {
  background: white;
  border-radius: 90px;
  border: 4px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 25px;
  width: 25px;
  float: left;
  margin: 5px 0 0 0;
}
#opc-payment .sp-methods .method-container dt input:checked:after {
  content: 'x';
  display: block;
  font-size: 20px;
  line-height: 18px;
  text-align: center;
}
#opc-payment .sp-methods .method-container dt label {
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  line-height: 16px;
  background: transparent;
  text-transform: none;
  border: 0;
  padding: 0;
  margin: 8px 0 0 10px;
  float: left;
  height: auto;
  text-align: left;
  width: 150px;
  min-width: 0;
}
#opc-payment .sp-methods .method-container dt label span {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  display: block;
}
#opc-payment .sp-methods .method-container.single.method-ccsave:before {
  content: '';
  box-shadow: none;
  background: none;
}
#opc-payment .sp-methods .method-container.method-ccsave {
  width: 54%;
}
#opc-payment .sp-methods .method-container.method-ccsave dd {
  display: block !important;
}
#opc-payment .sp-methods .method-container.method-ccsave dd ul {
  display: block !important;
}
#opc-payment .sp-methods .method-container.method-ccsave:before {
  background: #4f2b1c;
  border-radius: 19px;
  height: 38px;
  width: 38px;
  line-height: 40px;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  color: #cac7a7;
  content: 'OR';
  text-align: center;
  display: block;
  right: -48px;
  position: absolute;
}
#opc-payment .sp-methods .method-container.method-paypal_express {
  width: 42%;
  padding-left: 70px;
}
#opc-payment .sp-methods .method-container.method-paypal_express dt {
  float: left;
  width: 100%;
}
#opc-payment .sp-methods .method-container.method-paypal_express dt label {
  width: 175px;
}
#opc-payment .sp-methods .method-container.method-paypal_express dt label .paypal-icon {
  background: url("../images/ico-paypal-checkout.png") 0 0 no-repeat;
  width: 93px;
  height: 25px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 0px;
  margin-bottom: -5px;
}
#opc-payment .sp-methods .method-container.method-paypal_express dd {
  font-weight: bold;
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
}
#opc-payment .sp-methods .method-container.method-paypal_express dd a {
  font-weight: bold;
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  text-decoration: underline;
}
#opc-payment .sp-methods .method-container.method-paypal_express:before {
  border-left: 4px solid #4f2b1c;
  height: 250px;
  content: '-';
  display: block;
  position: absolute;
  left: 27px;
  top: 45px;
  text-indent: -999999px;
}
#opc-payment .sp-methods dd {
  clear: both;
  padding: 0 0 0 0;
}
#opc-payment .sp-methods dd .form-list {
  padding: 0 0 20px 0;
}
#opc-payment .sp-methods dd .form-list li {
  display: block;
  height: 40px;
  position: relative;
}
#opc-payment .sp-methods dd .form-list li label {
  width: 45%;
}
#opc-payment .sp-methods dd .form-list li .input-box {
  width: 55%;
  text-align: left;
  padding-right: 10px;
  padding-left: 10px;
}
#opc-payment .sp-methods dd .form-list li .input-box select {
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #4f2b1c;
  height: 30px;
  background: #FFF url("../images/select-arrow.png") center right no-repeat;
  border: 1px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0px 5px;
  margin: 0;
  line-height: 30px;
  width: 100%;
}
#opc-payment .sp-methods dd .form-list li .input-box select.validation-failed {
  border: 1px solid #DF280A;
}
#opc-payment .sp-methods dd .form-list li .input-box select:focus {
  box-shadow: 0px 0 3px 1px #7D7D81;
  border: 1px solid #ccc;
}
#opc-payment .sp-methods dd .form-list li .input-box input {
  width: 100%;
}
#opc-payment .sp-methods dd .form-list li .input-box .v-fix {
  width: 60.5%;
}
#opc-payment .sp-methods dd .form-list li .input-box .v-fix select {
  width: 100%;
}
#opc-payment .sp-methods dd .form-list li .input-box .v-fix:last-of-type {
  margin: 0;
  width: 37%;
}
#opc-payment .sp-methods dd .form-list li .input-box .v-fix:last-of-type .validation-advice {
  display: none !important;
}
#opc-payment .sp-methods dd .form-list li .input-box .cvv-what-is-this {
  text-indent: -9999px;
  display: inline-block;
  width: 20px;
  padding: 0;
  margin: 6px 0 0 60px;
  float: left;
  position: absolute;
}
#opc-payment .sp-methods dd .form-list li .input-box .cvv-what-is-this:after {
  content: '?';
  display: block;
  border: 1px solid #4f2b1c;
  border-radius: 90px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: #4f2b1c;
  text-indent: 0;
  font-family: "Din", Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  float: left;
}
#opc-payment .sp-methods dd .form-list li .input-box input.cvv {
  float: left;
}
#opc-payment .sp-methods dd .form-list li .input-box .validation-advice {
  position: inherit;
  clear: both;
  line-height: 10px;
  padding-top: 3px;
}
#opc-payment .sp-methods dd .form-list li.form-alt {
  padding-left: 140px;
  font-size: 16px;
}
#opc-payment .sp-methods dd .form-list li.cvv-code-container .v-fix:last-of-type {
  width: 100% !important;
}
#opc-payment .sp-methods dd .form-list li.cvv-code-container .v-fix:last-of-type .validation-advice {
  display: inline-block !important;
  float: left;
}
#opc-payment .sp-methods dd:last-of-type {
  padding: 0;
  margin-bottom: 0;
}
#opc-payment #payment-tool-tip {
  top: 0;
  width: 100%;
  margin: 0px auto;
  padding: 0px;
  position: initial;
  float: none;
}
#opc-payment #payment-tool-tip .btn-close {
  display: none;
}
#opc-payment #payment-tool-tip .tool-tip-content {
  text-align: center;
  margin-bottom: 100px;
}
#opc-payment #payment-tool-tip .tool-tip-content img {
  display: inline-block;
  margin: 0 auto;
}
#opc-payment .checkout-onepage-payment-additional-giftcardaccount {
  display: none;
}
#opc-payment .important-message {
  clear: both;
  border: 1px solid #cac7a7;
  padding: 15px;
  width: 80%;
  margin: 0 auto 20px auto;
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  color: #4f2b1c;
  text-align: center;
  font-weight: bold;
}
#opc-payment .important-message strong {
  color: #cc2027;
  font-weight: bold;
  text-transform: uppercase;
}
#opc-payment button.button {
  text-transform: none;
}
#opc-payment p.required {
  position: inherit;
  padding: 10px 0;
  line-height: 13px;
}
#opc-payment p.required .gift-certificate-note {
  padding-top: 10px;
  font-style: italic;
  font-size: 13px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-weight: normal;
  vertical-align: baseline;
}
#opc-payment p.required .gift-certificate-note strong {
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
}
#opc-payment .paypal-not-available {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 15px;
  margin-top: 10px;
}

#opc-review .responsive {
  display: none;
}
#opc-review .desktop {
  display: table-row;
}
#opc-review .step-title h2:after {
  content: 'Please review all of your information and make changes where needed.';
  font-weight: normal;
  padding-left: 10px;
  font-size: 12px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
#opc-review .subtitle-message {
  font-size: 12px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  color: #4f2b1c;
  padding: 5px 0 10px 0;
}
#opc-review .subtitle-message .button-wrapper {
  display: block;
  text-align: Center;
  padding: 10px 0 0 0;
}
#opc-review .subtitle-message .button-wrapper button.button {
  display: inline-block;
  float: none;
  margin: 0 auto;
  background: #cc2027 !important;
  color: #FFF !important;
  width: auto;
  min-width: 0;
  font-weight: bold;
}
#opc-review .subtitle-message .back-link {
  display: none;
}
#opc-review .data-table#checkout-review-table {
  border-top: 5px solid #4f2b1c;
  font-family: "Din", Arial, sans-serif;
}
#opc-review .data-table#checkout-review-table thead tr {
  background: transparent;
}
#opc-review .data-table#checkout-review-table thead tr th {
  border-bottom: 1px solid #4f2b1c;
  background: transparent;
  font-size: 12px;
  text-transform: none;
  font-family: "Din", Arial, sans-serif;
  text-align: left;
  padding: 4px 10px 3px 10px;
}
#opc-review .data-table#checkout-review-table thead tr th.qty {
  text-align: center;
}
#opc-review .data-table#checkout-review-table thead tr th.item-total {
  text-align: right;
}
#opc-review .data-table#checkout-review-table tbody tr td {
  padding: 10px 10px;
  border-bottom: 1px solid #000000;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  vertical-align: middle;
}
#opc-review .data-table#checkout-review-table tbody tr td.image {
  width: 100px;
  padding-left: 0;
}
#opc-review .data-table#checkout-review-table tbody tr td.name {
  width: 250px;
}
#opc-review .data-table#checkout-review-table tbody tr td.name h3.product-name {
  padding: 0;
  text-transform: none;
  color: #4f2b1c;
  font-size: 16px;
  font-weight: bold;
}
#opc-review .data-table#checkout-review-table tbody tr td.name .warning-attribute {
  margin-top: 10px;
  font-size: 11px;
  line-height: 13px;
}
#opc-review .data-table#checkout-review-table tbody tr td.name .warning-attribute .text {
  margin-left: 30px;
  display: block;
}
#opc-review .data-table#checkout-review-table tbody tr td.name .warning-attribute .icon {
  float: left;
  background: url("../images/ico-warning.png") 0 0 no-repeat;
  display: block;
  width: 20px;
  height: 16px;
  background-size: contain;
}
#opc-review .data-table#checkout-review-table tbody tr td.name .warning-attribute a {
  text-decoration: underline;
}
#opc-review .data-table#checkout-review-table tbody tr td.item-total {
  width: 80px;
  text-align: right;
}
#opc-review .data-table#checkout-review-table tbody tr td.item-total .price {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  display: inline-block;
}
#opc-review .data-table#checkout-review-table tbody tr td.item-total .price::first-letter {
  font-size: 12px;
  vertical-align: top;
  line-height: 15px;
}
#opc-review .data-table#checkout-review-table tbody tr td.item-total .special-price {
  padding-left: 8px;
}
#opc-review .data-table#checkout-review-table tbody tr td.item-total .special-price .price {
  color: #cc2027;
}
#opc-review .data-table#checkout-review-table tbody tr td.availability {
  width: 110px;
}
#opc-review .data-table#checkout-review-table tbody tr td.availability p {
  font-size: 16px;
}
#opc-review .data-table#checkout-review-table tbody tr td.availability p.availability {
  text-transform: none;
  color: #cc2027;
}
#opc-review .data-table#checkout-review-table tbody tr td.availability p.out-of-stock {
  text-transform: none;
}
#opc-review .data-table#checkout-review-table tbody tr td.qty {
  font-weight: bold;
  text-align: center;
}
#opc-review .data-table#checkout-review-table tbody tr td.price {
  margin: 0;
  text-align: left;
}
#opc-review .data-table#checkout-review-table tbody tr td.price .price {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  display: inline-block;
}
#opc-review .data-table#checkout-review-table tbody tr td.price .price::first-letter {
  font-size: 12px;
  vertical-align: top;
  line-height: 15px;
}
#opc-review .data-table#checkout-review-table tbody tr td.price .special-price {
  padding-left: 8px;
}
#opc-review .data-table#checkout-review-table tbody tr td.price .special-price .price {
  color: #cc2027;
}
#opc-review .data-table#checkout-review-table tbody tr:last-of-type td {
  border-bottom: 5px solid #4f2b1c;
}
#opc-review .data-table#checkout-review-table tfoot tr {
  background: transparent;
}
#opc-review .data-table#checkout-review-table tfoot tr td {
  background: transparent;
  padding: 2px 10px 0 10px;
  font-size: 12px;
  font-family: "Din", Arial, sans-serif;
}
#opc-review .data-table#checkout-review-table tfoot tr td .price {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  display: inline-block;
}
#opc-review .data-table#checkout-review-table tfoot tr td .price::first-letter {
  font-size: 12px;
  vertical-align: top;
  line-height: 15px;
}
#opc-review .data-table#checkout-review-table tfoot tr td .special-price {
  padding-left: 8px;
}
#opc-review .data-table#checkout-review-table tfoot tr td .special-price .price {
  color: #cc2027;
}
#opc-review .data-table#checkout-review-table tfoot tr:first-of-type td {
  padding-top: 15px;
}
#opc-review #checkout-step-review .block-progress.opc-block-progress {
  border-top: 1px solid #cac7a7;
  margin-top: 20px;
  padding-top: 10px;
}
#opc-review #checkout-step-review .block-progress.opc-block-progress .block-content dl div {
  width: 23%;
  margin: 0 2.6% 0 0;
}
#opc-review #checkout-step-review .block-progress.opc-block-progress .block-content dl div:last-of-type {
  margin: 0;
}
#opc-review #checkout-step-review .block-progress.opc-block-progress .block-content dl div dt {
  border-bottom: 1px solid #cac7a7;
  color: #4f2b1c;
  font-weight: bold;
  text-transform: none;
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
}
#opc-review #checkout-step-review .block-progress.opc-block-progress .block-content dl div dt .changelink {
  display: inline-block;
  float: right;
}
#opc-review #checkout-step-review .block-progress.opc-block-progress .block-content dl div dt .changelink .separator {
  display: none;
}
#opc-review #checkout-step-review .block-progress.opc-block-progress .block-content dl div dt .changelink a {
  font-size: 14px;
  text-decoration: none;
  text-indent: -99999px;
  display: block;
}
#opc-review #checkout-step-review .block-progress.opc-block-progress .block-content dl div dt .changelink a:after {
  content: 'Edit';
  display: block;
  text-indent: 0;
  font-weight: normal;
  font-size: 13px;
  margin-top: -16px;
}
#opc-review #checkout-step-review .block-progress.opc-block-progress .block-content dl div dd {
  padding: 0;
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: #4f2b1c;
  font-style: normal;
}
#opc-review #checkout-step-review .block-progress.opc-block-progress .block-content dl div dd address {
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
}
#opc-review #checkout-step-review .block-progress.opc-block-progress .block-content #billing-progress-opcheckout dt {
  text-indent: -9999px;
}
#opc-review #checkout-step-review .block-progress.opc-block-progress .block-content #billing-progress-opcheckout dt:after {
  content: 'Bill to:';
  text-indent: 0;
  display: block;
  margin-top: -20px;
}
#opc-review #checkout-step-review .block-progress.opc-block-progress .block-content #shipping-progress-opcheckout dt {
  text-indent: -9999px;
}
#opc-review #checkout-step-review .block-progress.opc-block-progress .block-content #shipping-progress-opcheckout dt:after {
  content: 'Ship to:';
  text-indent: 0;
  display: block;
  margin-top: -20px;
}
#opc-review #checkout-step-review .block-progress.opc-block-progress .block-content #shipping_method-progress-opcheckout dt {
  text-indent: -9999px;
}
#opc-review #checkout-step-review .block-progress.opc-block-progress .block-content #shipping_method-progress-opcheckout dt:after {
  content: 'Ship method:';
  text-indent: 0;
  display: block;
  margin-top: -20px;
}
#opc-review #checkout-step-review .block-progress.opc-block-progress .block-content #payment-progress-opcheckout dt {
  text-indent: -9999px;
}
#opc-review #checkout-step-review .block-progress.opc-block-progress .block-content #payment-progress-opcheckout dt:after {
  content: 'Payment details:';
  text-indent: 0;
  display: block;
  margin-top: -20px;
}
#opc-review #checkout-step-review .block-progress.opc-block-progress .block-content #payment-progress-opcheckout dl.payment-info dt {
  text-indent: 0;
  font-weight: bold;
  float: none;
  border: 0;
  font-size: 14px;
  font-style: normal;
}
#opc-review #checkout-step-review .block-progress.opc-block-progress .block-content #payment-progress-opcheckout dl.payment-info dt:after {
  content: none;
}
#opc-review #checkout-step-review .block-progress.opc-block-progress .block-content #payment-progress-opcheckout dl.payment-info dd {
  display: block;
  float: none;
}

body.checkout-onepage-success .col-main {
  text-align: left;
}

/*
###########
Responsive
###########
*/
@media only screen and (max-width: 985px) {
  body.checkout-onepage-index .main .col-main {
    width: 80%;
    float: left;
  }
  body.checkout-onepage-index .main .col-main .block-custom-progressbar {
    top: 10px !important;
  }
  body.checkout-onepage-index .main .col-right {
    display: block;
  }
}
@media only screen and (max-width: 890px) {
  body.checkout-onepage-index .main .col-main {
    width: 75%;
    float: left;
  }
  body.checkout-onepage-index .main .col-right {
    display: block;
  }
}
@media only screen and (max-width: 1004px) {
  body.checkout-onepage-index .col-main .block-custom-progressbar {
    top: -33px !important;
    height: 30px;
  }
  body.checkout-onepage-index .col-main .block-custom-progressbar ul li .step, body.checkout-onepage-index .col-main .block-custom-progressbar ul li.active .step {
    display: none;
  }
}
@media only screen and (max-width: 980px) {
  body.checkout-onepage-index .col-main {
    width: 100%;
  }
  body.checkout-onepage-index .col-main .block-custom-progressbar {
    top: -80px !important;
  }
  body.checkout-onepage-index .col-main .block-custom-progressbar ul li, body.checkout-onepage-index .col-main .block-custom-progressbar ul li.active {
    font-size: 14px !important;
    margin-right: 60px !important;
  }
  body.checkout-onepage-index .col-main .block-custom-progressbar ul li .step, body.checkout-onepage-index .col-main .block-custom-progressbar ul li.active .step {
    display: none;
  }
}
@media only screen and (max-width: 770px) {
  body.checkout-onepage-index header.page-header {
    height: auto;
  }
  body.checkout-onepage-index header.page-header .page-header-container .header-minicart:after {
    content: none;
  }
  body.checkout-onepage-index header.page-header .page-header-container .header-account:before {
    content: none !important;
  }
  body.checkout-onepage-index .page-header-container .skip-nav, body.checkout-onepage-index .page-header-container .skip-search, body.checkout-onepage-index .page-header-container .skip-account, body.checkout-onepage-index .page-header-container .skip-cart1 {
    display: none !important;
  }
  body.checkout-onepage-index .col-main .block-custom-progressbar {
    top: 10px !important;
    width: 100%;
    border-bottom: 5px solid #4f2b1c;
    text-align: center;
  }
  body.checkout-onepage-index .col-main .block-custom-progressbar ul {
    margin: 0 auto -5px auto !important;
    display: inline-block;
    text-align: center;
  }
  body.checkout-onepage-index .col-main .block-custom-progressbar ul li, body.checkout-onepage-index .col-main .block-custom-progressbar ul li.active {
    margin-right: 40px !important;
    letter-spacing: -0.3px;
    font-size: 15px;
  }
  body.checkout-onepage-index .col-main .block-custom-progressbar ul li:last-of-type, body.checkout-onepage-index .col-main .block-custom-progressbar ul li.active:last-of-type {
    margin-right: 0;
  }
  body.checkout-onepage-index .col-main .step-title h2 {
    font-size: 15px !important;
    margin: 0 10px !important;
    letter-spacing: -0.3px;
  }
  body.checkout-onepage-index .col-main .step-title h2:after {
    content: '100% Secure Shopping';
    display: inline-block;
    float: right;
    background: #cac7a7;
    font-family: "Din", Arial, sans-serif;
    font-weight: bold;
    font-size: 13px;
    padding: 0 2px;
  }
  body.checkout-onepage-index .col-main ol.opc {
    padding-top: 30px;
  }
  body.checkout-onepage-index .col-main ol.opc #opc-login p.required {
    display: block;
  }
  body.checkout-onepage-index .col-main ol.opc li.section .step {
    padding: 0 10px 15px;
    border-bottom: none;
  }
  body.checkout-onepage-index .col-main ol.opc .buttons-set {
    text-align: left;
  }
  body.checkout-onepage-index .col-main ol.opc .buttons-set button.button {
    float: left;
  }
  body.checkout-onepage-index .col-main ol.opc .buttons-set a {
    line-height: 26px;
  }
  body.checkout-onepage-index .col-main ol.opc .buttons-set .back-link {
    float: left;
  }
  body.checkout-onepage-index .col-main ol.opc p.required {
    margin-left: 10px;
  }
  body.checkout-onepage-index .col-main #checkout-step-login .col2-set {
    padding: 20px 10px;
    height: 580px;
  }
  body.checkout-onepage-index .col-main #checkout-step-login .col2-set .col-1 {
    border-top: 5px solid #4f2b1c;
    padding: 50px 0 30px;
    position: absolute;
    top: 210px;
    width: 93%;
  }
  body.checkout-onepage-index .col-main #checkout-step-login .col2-set .col-1:after {
    border: 10px solid #ffffff;
    border-radius: 30px;
    font-weight: bold;
    height: 60px;
    left: 44%;
    top: -32px;
    width: 60px;
  }
  body.checkout-onepage-index .col-main #checkout-step-login .col2-set .col-2 {
    border-left: medium none;
    height: 200px;
    padding-left: 0;
    position: absolute;
    top: 20px;
    width: 93%;
  }
  body.checkout-onepage-index .col-main #checkout-step-login .col2-set .form-list {
    border-bottom: none;
    padding-bottom: 0;
  }
  body.checkout-onepage-index .col-main #opc-billing .step-title h2:after {
    content: '100% Secure Shopping' !important;
    font-weight: bold !important;
    padding: 0 2px !important;
    font-size: 13px !important;
    font-family: "Din", Arial, sans-serif !important;
  }
  body.checkout-onepage-index .col-main #opc-billing .fieldset .form-list {
    padding: 0;
  }
  body.checkout-onepage-index .col-main #opc-billing .fieldset .form-list #billing-new-address-form .fields .field .input-box, body.checkout-onepage-index .col-main #opc-billing .fieldset .form-list #billing-new-address-form .fields .field label, body.checkout-onepage-index .col-main #opc-billing .fieldset .form-list #billing-new-address-form .fields .field select, body.checkout-onepage-index .col-main #opc-billing .fieldset .form-list #billing-new-address-form .fields .field input {
    text-align: left;
    width: 100%;
    padding: 0 10px;
    float: left;
  }
  body.checkout-onepage-index .col-main #opc-billing .fieldset .form-list #billing-new-address-form .fields .field.email-offers input, body.checkout-onepage-index .col-main #opc-billing .fieldset .form-list #billing-new-address-form .fields .field.mobile-offers input {
    width: 30px;
    float: left;
    margin: 20px 5px 10px 0;
  }
  body.checkout-onepage-index .col-main #opc-billing .fieldset .form-list #billing-new-address-form .fields .field.email-offers label, body.checkout-onepage-index .col-main #opc-billing .fieldset .form-list #billing-new-address-form .fields .field.mobile-offers label {
    width: 85%;
    margin: 18px 0 0 0;
  }
  body.checkout-onepage-index .col-main #opc-billing .fieldset .form-list #billing-new-address-form .fields .field.email-offers label a, body.checkout-onepage-index .col-main #opc-billing .fieldset .form-list #billing-new-address-form .fields .field.mobile-offers label a {
    text-decoration: underline;
  }
  body.checkout-onepage-index .col-main #opc-billing .fieldset .form-list #billing-new-address-form .wide .input-box, body.checkout-onepage-index .col-main #opc-billing .fieldset .form-list #billing-new-address-form .wide label, body.checkout-onepage-index .col-main #opc-billing .fieldset .form-list #billing-new-address-form .wide input {
    float: left;
    width: 100%;
    text-align: left;
    padding: 0 10px;
  }
  body.checkout-onepage-index .col-main #opc-billing .fieldset .form-list #billing-new-address-form .use-address-for-shipping {
    margin: 10px;
    padding: 20px 0;
  }
  body.checkout-onepage-index .col-main #opc-billing .fieldset .form-list #billing-new-address-form .use-address-for-shipping label {
    width: 100%;
  }
  body.checkout-onepage-index .col-main #opc-billing .fieldset .form-list #billing-new-address-form #register-customer-password {
    padding: 10px 0;
    margin-left: 10px;
    margin-right: 10px;
    border: none;
    border-top: 1px solid #cac7a7;
  }
  body.checkout-onepage-index .col-main #opc-billing .fieldset .form-list #billing-new-address-form #register-customer-password .field .input-box, body.checkout-onepage-index .col-main #opc-billing .fieldset .form-list #billing-new-address-form #register-customer-password .field label, body.checkout-onepage-index .col-main #opc-billing .fieldset .form-list #billing-new-address-form #register-customer-password .field input {
    width: 100%;
    text-align: left;
    padding: 0;
  }
  body.checkout-onepage-index .col-main #opc-billing .buttons-set {
    padding-left: 0px;
    padding-right: 0px;
  }
  body.checkout-onepage-index .col-main #opc-shipping .fieldset .not-same-billing-address {
    padding-left: 10px;
  }
  body.checkout-onepage-index .col-main #opc-shipping .fieldset .same-as-billing-wrapper {
    padding: 30px 10px;
  }
  body.checkout-onepage-index .col-main #opc-shipping .fieldset .form-list {
    padding: 0;
  }
  body.checkout-onepage-index .col-main #opc-shipping .fieldset .form-list #shipping-new-address-form .fields .field .input-box, body.checkout-onepage-index .col-main #opc-shipping .fieldset .form-list #shipping-new-address-form .fields .field label, body.checkout-onepage-index .col-main #opc-shipping .fieldset .form-list #shipping-new-address-form .fields .field select, body.checkout-onepage-index .col-main #opc-shipping .fieldset .form-list #shipping-new-address-form .fields .field input {
    text-align: left;
    width: 100%;
    padding: 0 10px;
    float: left;
  }
  body.checkout-onepage-index .col-main #opc-shipping .fieldset .form-list #shipping-new-address-form .wide .input-box, body.checkout-onepage-index .col-main #opc-shipping .fieldset .form-list #shipping-new-address-form .wide label, body.checkout-onepage-index .col-main #opc-shipping .fieldset .form-list #shipping-new-address-form .wide input {
    float: left;
    width: 100%;
    text-align: left;
    padding: 0 10px;
  }
  body.checkout-onepage-index .col-main #opc-shipping .fieldset .form-list #shipping-new-address-form .textarea {
    height: 150px !important;
  }
  body.checkout-onepage-index .col-main #opc-shipping .buttons-set {
    padding-left: 10px;
    position: relative;
    height: 100px;
  }
  body.checkout-onepage-index .col-main #opc-shipping_method form {
    padding: 10px;
  }
  body.checkout-onepage-index .col-main #opc-shipping_method form .buttons-set {
    position: relative;
    height: 100px;
  }
  body.checkout-onepage-index .col-main #opc-payment .payment-gift-msg {
    display: block;
    padding-left: 0;
  }
  body.checkout-onepage-index .col-main #opc-payment p.required {
    margin-top: 15px;
  }
  body.checkout-onepage-index .col-main #opc-payment .sp-methods {
    width: 100%;
    padding: 40px 10px 10px;
  }
  body.checkout-onepage-index .col-main #opc-payment .sp-methods dt {
    padding: 0;
  }
  body.checkout-onepage-index .col-main #opc-payment .method-container {
    width: 100%;
    float: none;
    clear: both;
  }
  body.checkout-onepage-index .col-main #opc-payment .method-container dt {
    float: none;
    width: 100%;
    padding: 0 10px 35px 10px;
    margin-bottom: 20px;
  }
  body.checkout-onepage-index .col-main #opc-payment .method-container.method-ccsave:before {
    content: none;
  }
  body.checkout-onepage-index .col-main #opc-payment .method-container.method-ccsave:after {
    background: #4f2b1c;
    border-radius: 19px;
    height: 38px;
    width: 38px;
    line-height: 35px;
    font-size: 16px;
    font-family: "Din", Arial, sans-serif;
    color: #cac7a7;
    content: 'OR';
    text-align: center;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0px 10px #FFF;
  }
  body.checkout-onepage-index .col-main #opc-payment .method-container.method-paypal_express {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
  }
  body.checkout-onepage-index .col-main #opc-payment .method-container.method-paypal_express:before {
    border-top: 4px solid #4f2b1c;
    height: 0;
    content: '-';
    display: block;
    position: absolute;
    left: 0;
    top: -21px;
    text-indent: -999999px;
    width: 100%;
  }
  body.checkout-onepage-index .col-main #opc-payment .form-list li {
    height: 52px;
  }
  body.checkout-onepage-index .col-main #opc-payment .form-list li .input-box, body.checkout-onepage-index .col-main #opc-payment .form-list li label, body.checkout-onepage-index .col-main #opc-payment .form-list li select, body.checkout-onepage-index .col-main #opc-payment .form-list li input {
    text-align: left;
    width: 100%;
    padding: 0 10px;
    float: left;
  }
  body.checkout-onepage-index .col-main #opc-payment .form-list li .v-fix {
    width: 49.5%;
  }
  body.checkout-onepage-index .col-main #opc-payment .form-list li .v-fix:last-of-type {
    margin: 0;
    width: 49.5% !important;
  }
  body.checkout-onepage-index .col-main #opc-payment .form-list li.cvv-code-container .input-box .v-fix .validation-advice {
    margin-top: 10px;
    float: none;
    clear: none;
    width: 160px;
    margin-left: 91px;
    display: block !important;
  }
  body.checkout-onepage-index .col-main #opc-payment .buttons-set {
    position: relative;
    height: 100px;
    padding-left: 0px;
  }
  body.checkout-onepage-index .col-main #opc-payment .buttons-set .back-link a {
    margin-right: 10px;
  }
  body.checkout-onepage-index .col-main #opc-payment .checkout-onepage-payment-additional-giftcardaccount {
    position: inherit;
    margin: 0;
  }
  body.checkout-onepage-index .col-main #opc-review .responsive {
    display: table-row;
  }
  body.checkout-onepage-index .col-main #opc-review .desktop {
    display: none;
  }
  body.checkout-onepage-index .col-main #opc-review .step-title h2:after {
    content: none !important;
  }
  body.checkout-onepage-index .col-main #opc-review #checkout-step-review {
    padding: 10px;
  }
  body.checkout-onepage-index .col-main #opc-review #checkout-step-review .block-progress.opc-block-progress .block-content dl div {
    width: 100%;
  }
  body.checkout-onepage-index .col-main #opc-review .buttons-set {
    position: relative;
    height: 100px;
    padding-left: 0px;
  }
  body.checkout-onepage-index .col-main #opc-review #checkout-review-table.data-table tbody tr {
    height: auto;
    margin: 0;
    border-top: 1px solid #4f2b1c;
    border-bottom: none;
    position: relative;
    flex-direction: column;
    padding-bottom: 10px;
  }
  body.checkout-onepage-index .col-main #opc-review #checkout-review-table.data-table tbody tr td {
    display: table-cell;
    vertical-align: top;
    font-family: "Din", Arial, sans-serif;
    color: #4f2b1c;
  }
  body.checkout-onepage-index .col-main #opc-review #checkout-review-table.data-table tbody tr td.image img {
    max-width: 180px;
  }
  body.checkout-onepage-index .col-main #opc-review #checkout-review-table.data-table tbody tr td div.name .product-name {
    font-size: 16px;
    font-weight: bold;
    text-transform: none;
    font-family: "Din", Arial, sans-serif;
    color: #4f2b1c;
  }
  body.checkout-onepage-index .col-main #opc-review #checkout-review-table.data-table tbody tr td div.availability .availability.in-stock {
    font-weight: normal;
    color: #cc2027;
    text-transform: none;
    font-size: 16px;
  }
  body.checkout-onepage-index .col-main #opc-review #checkout-review-table.data-table tbody tr td div.qty {
    text-align: left;
    font-family: "Din", Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
  }
  body.checkout-onepage-index .col-main #opc-review #checkout-review-table.data-table tbody tr td div.qty:before {
    content: 'QTY';
    font-family: "Din", Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
    text-transform: uppercase;
    padding-right: 5px;
  }
  body.checkout-onepage-index .col-main #opc-review #checkout-review-table.data-table tbody tr td div.price {
    text-align: left;
    font-family: "Din", Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
  }
  body.checkout-onepage-index .col-main #opc-review #checkout-review-table.data-table tbody tr td div.price:before {
    content: 'Subtotal';
    font-family: "Din", Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    margin-top: 5px;
    text-transform: none;
    padding-right: 5px;
  }
  body.checkout-onepage-index .col-main #opc-review #checkout-review-table.data-table tbody tr td div.price .price {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
  }
  body.checkout-onepage-index .col-main #opc-review #checkout-review-table.data-table tbody tr td div.price .price::first-letter {
    font-size: 12px;
    vertical-align: top;
    line-height: 20px;
  }
  body.checkout-onepage-index .col-main #opc-review #checkout-review-table.data-table tbody tr td.image {
    width: 30%;
  }
  body.checkout-onepage-index .col-main #opc-review #checkout-review-table.data-table tbody tr td.image img {
    width: 100%;
    height: auto;
  }
  body.checkout-onepage-index .col-main #opc-review #checkout-review-table.data-table thead {
    display: none;
  }
  body.checkout-onepage-index .main .col-right {
    display: none;
  }
  body.checkout-onepage-index .main .col-main {
    width: 100%;
  }

  body.checkout-onepage-success .col-main {
    text-align: left;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 599px) {
  body.checkout-onepage-index .col-main .block-custom-progressbar ul {
    margin: 0 10px -5px 10px !important;
  }
  body.checkout-onepage-index .col-main .block-custom-progressbar ul li, body.checkout-onepage-index .col-main .block-custom-progressbar ul li.active {
    margin-right: 10px !important;
  }
  body.checkout-onepage-index .col-main #opc-payment .form-list li .v-fix {
    width: 100%;
    margin-bottom: 5px;
  }
  body.checkout-onepage-index .col-main #opc-payment .form-list li .v-fix:last-of-type {
    margin-bottom: 10px;
  }
  body.checkout-onepage-index .col-main ol.opc .validation-advice {
    font-size: 14px !important;
    position: inherit;
    float: none;
    text-align: left;
  }
}
@media only screen and (max-width: 479px) {
  body.checkout-onepage-index .main .col-main .block-custom-progressbar {
    text-align: center;
    width: 100%;
    border-bottom: 5px solid #4f2b1c;
    top: 10px !important;
  }
  body.checkout-onepage-index .main .col-main .block-custom-progressbar ul {
    margin: 0 auto;
    text-align: center;
    display: inline-block;
  }
  body.checkout-onepage-index .main .col-main .block-custom-progressbar ul li, body.checkout-onepage-index .main .col-main .block-custom-progressbar ul li.active {
    font-size: 15px !important;
    margin-right: 15px !important;
  }
  body.checkout-onepage-index .main .col-main .block-custom-progressbar ul li.opc-shipping_method, body.checkout-onepage-index .main .col-main .block-custom-progressbar ul li.active.opc-shipping_method {
    display: none !important;
  }
  body.checkout-onepage-index .main .col-main .block-custom-progressbar ul li:last-of-type, body.checkout-onepage-index .main .col-main .block-custom-progressbar ul li.active:last-of-type {
    margin-right: 0;
  }
  body.checkout-onepage-index .main .col-main ol.opc {
    padding-top: 30px;
  }
  body.checkout-onepage-index .main .col-main #opc-payment p.required {
    margin-top: 50px;
  }
  body.checkout-onepage-index .main .col-main #opc-payment .sp-methods {
    width: 100%;
    padding: 25px 10px 10px;
  }
}
@media only screen and (max-width: 320px) {
  body.checkout-onepage-index .main .col-main .block-custom-progressbar {
    top: 10px !important;
  }
  body.checkout-onepage-index .main .col-main .block-custom-progressbar ul li, body.checkout-onepage-index .main .col-main .block-custom-progressbar ul li.active {
    font-size: 13px !important;
    margin-right: 10px !important;
  }
  body.checkout-onepage-index .main .col-main .input-box {
    position: relative !important;
  }
  body.checkout-onepage-index .main .col-main .input-box label {
    width: 80% !important;
    padding-right: 0 !important;
  }
  body.checkout-onepage-index .main .col-main #opc-billing .fieldset .form-list #billing-new-address-form .fields .field.email-offers label,
  body.checkout-onepage-index .main .col-main #opc-billing .fieldset .form-list #billing-new-address-form .fields .field.mobile-offers label {
    width: 70% !important;
  }
}
.col-main .cart .title-buttons .gw-cart-links {
  position: absolute;
  top: 0px;
  left: 75px;
}
.col-main .cart .title-buttons .gw-cart-links a {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  margin-right: 5px;
}

.wrapper .col-main .cart-totals .checkout-types button.btn-continue {
  height: 25px;
  margin-right: 5px;
  margin-bottom: 7px;
  white-space: nowrap;
  padding: 0;
}

.col-main .cart .title-buttons .checkout-types button.btn-continue {
  height: 25px;
  margin-right: 5px;
  white-space: nowrap;
  padding: 0;
}

.cart-forms #discount-coupon-form #coupon_code.input-text {
  width: 70px;
}

@media only screen and (max-width: 770px) {
  body.checkout-onepage-index .fields .field input, body.checkout-onepage-index #opc-billing .fieldset .form-list #billing-new-address-form select, body.checkout-onepage-index #opc-shipping .fieldset .form-list #shipping-new-address-form select, body.checkout-onepage-index #billing-new-address-form input, body.checkout-onepage-index #shipping-new-address-form input, body.checkout-onepage-index .col-main #opc-payment .form-list li input, body.checkout-onepage-index .col-main #opc-payment .form-list li select {
    height: 35px;
  }

  .input-box .validation-advice {
    margin: 1px 0 0 2px;
  }

  body.checkout-onepage-index .fields .field label, body.checkout-onepage-index #billing-new-address-form label, body.checkout-onepage-index #shipping-new-address-form label, body.checkout-onepage-index .col-main #opc-payment .form-list li label {
    margin-top: 15px;
  }
}
body.checkout-onepage-index div.dynamic-offer-top.mobile-visible,
body.checkout-onepage-index div.dynamic-offer {
  display: none !important;
}

#address-verification-results .iwd-head {
  background: #4f2b1c;
  color: #FFF;
}
#address-verification-results .va_choice_row {
  padding-bottom: 10px;
  display: table;
}
#address-verification-results .va_choice_row .va_info {
  color: #4f2b1c;
  display: table-cell;
  vertical-align: middle;
}
#address-verification-results .va_choice_row .va_choice {
  display: table-cell;
  vertical-align: middle;
  float: none;
}
#address-verification-results .va_choice_row:after {
  content: '';
  display: block;
  clear: both;
}
#address-verification-results .iwd-buttons-set button.iwd-button {
  float: none;
  margin: 0 auto;
  background: #cc2027 !important;
  color: #FFF !important;
  width: auto;
  min-width: 0;
  border: 0;
  border-radius: 0;
  text-shadow: none;
  box-shadow: none;
  line-height: 13px;
  vertical-align: middle;
  padding: 12px 20px 10px;
}
#address-verification-results p.note {
  display: block;
  padding: 0 20px 20px;
  line-height: 14px;
}

body.express-express-index header #header-nav,
body.express-express-index header #header-search,
body.express-express-index .header-submenu-container {
  display: none;
}
body.express-express-index header.page-header {
  height: 105px;
}
body.express-express-index header.page-header .page-header-container .header-minicart {
  text-indent: -99999px;
}
body.express-express-index header.page-header .page-header-container .header-minicart:after {
  content: '100% Secure Shopping';
  text-indent: 0;
  display: inline-block;
  float: right;
  background: #cac7a7;
  font-family: "Din", Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  padding: 2px 5px;
  margin: 0 70px 0 0;
}
body.express-express-index header.page-header .page-header-container .header-account a {
  display: none;
}
body.express-express-index header.page-header .page-header-container .header-account:before {
  content: 'Need help? Please call:';
  color: #4f2b1c;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 13px;
}
body.express-express-index header.page-header .page-header-container .header-account .phone {
  margin-left: 0;
}
body.express-express-index .express-checkout .title-box .welcome-message {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 31px;
  text-transform: none;
  margin: 0;
  padding: 0;
  font-weight: bold;
}
body.express-express-index .express-checkout .title-box .additional-information {
  padding: 0 0 10px 0;
  border-bottom: 5px solid #4f2b1c;
  margin-bottom: 20px;
  color: #4f2b1c;
  font-size: 15px;
}
body.express-express-index h2.title {
  border-bottom: 1px solid #4f2b1c;
}
body.express-express-index form#co-payment-form {
  margin: 0 14% 0 0;
}
body.express-express-index form#co-payment-form:after {
  content: '-';
  clear: both;
  width: 100%;
  display: block;
  text-indent: -999999px;
}
body.express-express-index form#co-payment-form .sp-methods .method-container.single.method-ccsave:before {
  content: '';
  box-shadow: none;
  background: none;
}
body.express-express-index form#co-payment-form .sp-methods .method-container.single.method-ccsave:after {
  content: '';
  box-shadow: none;
  background: none;
}
body.express-express-index .payment-details {
  border-bottom: 5px solid #4f2b1c;
  margin-bottom: 20px;
}
body.express-express-index .payment-details .sp-methods {
  padding-top: 40px;
  margin: 0 auto;
}
body.express-express-index .payment-details .sp-methods p.required {
  display: none;
}
body.express-express-index .payment-details .sp-methods .method-container {
  float: left;
  position: relative;
}
body.express-express-index .payment-details .sp-methods .method-container dt {
  display: block;
  clear: both;
  border-bottom: 0;
  float: right;
  border-bottom: 1px solid #cac7a7;
  padding: 0 0 0 0;
  margin: 0 10px 30px 0;
  width: 220px;
}
body.express-express-index .payment-details .sp-methods .method-container dt input {
  border-radius: 90px;
  border: 4px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 25px;
  width: 25px;
  float: left;
  margin: 5px 0 0 0;
}
body.express-express-index .payment-details .sp-methods .method-container dt input:checked:after {
  content: 'x';
  display: block;
  font-size: 20px;
  line-height: 18px;
  text-align: center;
}
body.express-express-index .payment-details .sp-methods .method-container dt label {
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  line-height: 16px;
  background: transparent;
  text-transform: none;
  border: 0;
  padding: 0;
  margin: 8px 0 0 10px;
  float: left;
  height: auto;
  text-align: left;
  width: 150px;
  min-width: 0;
}
body.express-express-index .payment-details .sp-methods .method-container dt label span {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  display: block;
}
body.express-express-index .payment-details .sp-methods .method-container.method-ccsave {
  width: 54%;
}
body.express-express-index .payment-details .sp-methods .method-container.method-ccsave dd {
  display: block !important;
}
body.express-express-index .payment-details .sp-methods .method-container.method-ccsave dd ul {
  display: block !important;
}
body.express-express-index .payment-details .sp-methods .method-container.method-ccsave:before {
  background: #4f2b1c;
  border-radius: 19px;
  height: 38px;
  width: 38px;
  line-height: 40px;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  color: #cac7a7;
  content: 'OR';
  text-align: center;
  display: block;
  right: -48px;
  position: absolute;
}
body.express-express-index .payment-details .sp-methods .method-container.method-paypal_express {
  width: 38%;
  padding-left: 70px;
}
body.express-express-index .payment-details .sp-methods .method-container.method-paypal_express dt {
  float: left;
  width: 100%;
}
body.express-express-index .payment-details .sp-methods .method-container.method-paypal_express dt label {
  width: 175px;
}
body.express-express-index .payment-details .sp-methods .method-container.method-paypal_express dt label .paypal-icon {
  background: url("../images/ico-paypal-checkout.png") 0 0 no-repeat;
  width: 93px;
  height: 25px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 0px;
  margin-bottom: -5px;
}
body.express-express-index .payment-details .sp-methods .method-container.method-paypal_express dd {
  font-weight: bold;
  font-family: "Din", Arial, sans-serif;
  font-size: 0;
  text-indent: -99999px;
  display: block;
}
body.express-express-index .payment-details .sp-methods .method-container.method-paypal_express dd a {
  font-weight: bold;
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  text-decoration: underline;
}
body.express-express-index .payment-details .sp-methods .method-container.method-paypal_express dd:before {
  content: 'If you wish to use PayPal, please select the checkbox above and click the red submit button below.';
  display: block;
  text-indent: 0;
  font-size: 16px;
}
body.express-express-index .payment-details .sp-methods .method-container.method-paypal_express dd:after {
  padding-top: 20px;
  content: 'You will then be directed to the PayPal site to complete your order.';
  display: block;
  text-indent: 0;
  font-size: 16px;
}
body.express-express-index .payment-details .sp-methods .method-container.method-paypal_express:before {
  border-left: 4px solid #4f2b1c;
  height: 250px;
  content: '-';
  display: block;
  position: absolute;
  left: 27px;
  top: 45px;
  text-indent: -999999px;
}
body.express-express-index .payment-details .sp-methods dd {
  clear: both;
  padding: 0 0 0 0;
}
body.express-express-index .payment-details .sp-methods dd .form-list {
  padding: 0 0 20px 0;
}
body.express-express-index .payment-details .sp-methods dd .form-list li {
  display: block;
  height: 40px;
  position: relative;
}
body.express-express-index .payment-details .sp-methods dd .form-list li label {
  width: 45%;
}
body.express-express-index .payment-details .sp-methods dd .form-list li .input-box {
  width: 55%;
  text-align: left;
  padding-right: 10px;
  padding-left: 10px;
}
body.express-express-index .payment-details .sp-methods dd .form-list li .input-box select {
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #4f2b1c;
  height: 30px;
  background: #FFF url("../images/select-arrow.png") center right no-repeat;
  border: 1px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0px 5px;
  margin: 0;
  line-height: 30px;
  width: 100%;
}
body.express-express-index .payment-details .sp-methods dd .form-list li .input-box select.validation-failed {
  border: 1px solid #DF280A;
}
body.express-express-index .payment-details .sp-methods dd .form-list li .input-box select:focus {
  box-shadow: 0px 0 3px 1px #7D7D81;
  border: 1px solid #ccc;
}
body.express-express-index .payment-details .sp-methods dd .form-list li .input-box input {
  width: 100%;
}
body.express-express-index .payment-details .sp-methods dd .form-list li .input-box .v-fix {
  width: 60.5%;
}
body.express-express-index .payment-details .sp-methods dd .form-list li .input-box .v-fix select {
  width: 100%;
}
body.express-express-index .payment-details .sp-methods dd .form-list li .input-box .v-fix:last-of-type {
  margin: 0;
  width: 37%;
}
body.express-express-index .payment-details .sp-methods dd .form-list li .input-box .v-fix:last-of-type .validation-advice {
  display: none !important;
}
body.express-express-index .payment-details .sp-methods dd .form-list li .input-box .cvv-what-is-this {
  text-indent: -9999px;
  display: inline-block;
  width: 20px;
  padding: 0;
  margin: 6px 0 0 10px;
  float: left;
}
body.express-express-index .payment-details .sp-methods dd .form-list li .input-box .cvv-what-is-this:after {
  content: '?';
  display: block;
  border: 1px solid #4f2b1c;
  border-radius: 90px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: #4f2b1c;
  text-indent: 0;
  font-family: "Din", Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  float: left;
}
body.express-express-index .payment-details .sp-methods dd .form-list li .input-box input.cvv {
  float: left;
}
body.express-express-index .payment-details .sp-methods dd .form-list li .input-box .validation-advice {
  position: inherit;
  clear: both;
  line-height: 10px;
  padding-top: 3px;
}
body.express-express-index .payment-details .sp-methods dd .form-list li.form-alt {
  padding-left: 140px;
  font-size: 16px;
}
body.express-express-index .payment-details .sp-methods dd .form-list li.cvv-code-container .v-fix:last-of-type {
  width: 100% !important;
}
body.express-express-index .payment-details .sp-methods dd .form-list li.cvv-code-container .v-fix:last-of-type .validation-advice {
  display: inline-block !important;
  float: left;
}
body.express-express-index .payment-details .sp-methods dd:last-of-type {
  padding: 0;
  margin-bottom: 0;
}
body.express-express-index .billing-information {
  padding-bottom: 20px;
  margin-bottom: 0;
  width: 49%;
  float: left;
}
body.express-express-index .shipping-information {
  padding-bottom: 20px;
  margin-bottom: 0;
  width: 49%;
  float: right;
}
body.express-express-index .express-checkout-separator.after-shipping {
  border-bottom: 5px solid #4f2b1c;
  clear: both;
  margin-bottom: 20px;
}
body.express-express-index #checkout-shipping-method-load {
  border-bottom: 5px solid;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
body.express-express-index #checkout-shipping-method-load label {
  display: block;
  bottom: 0;
}
body.express-express-index #checkout-shipping-method-load select {
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #4f2b1c;
  height: 30px;
  background: #FFF url("../images/select-arrow.png") center right no-repeat;
  border: 1px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0px 5px;
  margin: 0;
  line-height: 30px;
  width: 100%;
}
body.express-express-index #checkout-shipping-method-load select.validation-failed {
  border: 1px solid #DF280A;
}
body.express-express-index #checkout-shipping-method-load select:focus {
  box-shadow: 0px 0 3px 1px #7D7D81;
  border: 1px solid #ccc;
}
body.express-express-index .order-summary h2 {
  margin-bottom: 0;
}
body.express-express-index .order-summary .data-table#checkout-review-table {
  font-family: "Din", Arial, sans-serif;
}
body.express-express-index .order-summary .data-table#checkout-review-table thead tr {
  background: transparent;
}
body.express-express-index .order-summary .data-table#checkout-review-table thead tr th {
  border-bottom: 1px solid #4f2b1c;
  background: transparent;
  font-size: 12px;
  text-transform: none;
  font-family: "Din", Arial, sans-serif;
  text-align: left;
  padding: 4px 10px 3px 10px;
}
body.express-express-index .order-summary .data-table#checkout-review-table thead tr th.qty {
  text-align: center;
}
body.express-express-index .order-summary .data-table#checkout-review-table thead tr th.item-total {
  text-align: right;
}
body.express-express-index .order-summary .data-table#checkout-review-table tbody tr td {
  padding: 10px 10px;
  border-bottom: 1px solid #000000;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  vertical-align: middle;
}
body.express-express-index .order-summary .data-table#checkout-review-table tbody tr td.image {
  width: 100px;
  padding-left: 0;
}
body.express-express-index .order-summary .data-table#checkout-review-table tbody tr td.name {
  width: 400px;
}
body.express-express-index .order-summary .data-table#checkout-review-table tbody tr td.name h3.product-name {
  padding: 0;
  text-transform: none;
  color: #4f2b1c;
  font-size: 16px;
  font-weight: bold;
}
body.express-express-index .order-summary .data-table#checkout-review-table tbody tr td.item-total {
  width: 80px;
  text-align: right;
}
body.express-express-index .order-summary .data-table#checkout-review-table tbody tr td.item-total .price {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  display: inline-block;
}
body.express-express-index .order-summary .data-table#checkout-review-table tbody tr td.item-total .price::first-letter {
  font-size: 12px;
  vertical-align: top;
  line-height: 15px;
}
body.express-express-index .order-summary .data-table#checkout-review-table tbody tr td.item-total .special-price {
  padding-left: 8px;
}
body.express-express-index .order-summary .data-table#checkout-review-table tbody tr td.item-total .special-price .price {
  color: #cc2027;
}
body.express-express-index .order-summary .data-table#checkout-review-table tbody tr td.availability {
  width: 110px;
}
body.express-express-index .order-summary .data-table#checkout-review-table tbody tr td.availability p {
  font-size: 16px;
}
body.express-express-index .order-summary .data-table#checkout-review-table tbody tr td.availability p.availability {
  text-transform: none;
  color: #cc2027;
}
body.express-express-index .order-summary .data-table#checkout-review-table tbody tr td.availability p.out-of-stock {
  text-transform: none;
}
body.express-express-index .order-summary .data-table#checkout-review-table tbody tr td.qty {
  font-weight: bold;
  text-align: center;
}
body.express-express-index .order-summary .data-table#checkout-review-table tbody tr td.price {
  margin: 0;
  text-align: left;
}
body.express-express-index .order-summary .data-table#checkout-review-table tbody tr td.price .price {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  display: inline-block;
}
body.express-express-index .order-summary .data-table#checkout-review-table tbody tr td.price .price::first-letter {
  font-size: 12px;
  vertical-align: top;
  line-height: 15px;
}
body.express-express-index .order-summary .data-table#checkout-review-table tbody tr td.price .special-price {
  padding-left: 8px;
}
body.express-express-index .order-summary .data-table#checkout-review-table tbody tr td.price .special-price .price {
  color: #cc2027;
}
body.express-express-index .order-summary .data-table#checkout-review-table tbody tr:last-of-type td {
  border-bottom: 5px solid #4f2b1c;
}
body.express-express-index .order-summary .data-table#checkout-review-table tfoot tr {
  background: transparent;
}
body.express-express-index .order-summary .data-table#checkout-review-table tfoot tr td {
  background: transparent;
  padding: 2px 10px 0 10px;
  font-size: 12px;
  font-family: "Din", Arial, sans-serif;
}
body.express-express-index .order-summary .data-table#checkout-review-table tfoot tr td .price {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  display: inline-block;
}
body.express-express-index .order-summary .data-table#checkout-review-table tfoot tr td .price::first-letter {
  font-size: 12px;
  vertical-align: top;
  line-height: 15px;
}
body.express-express-index .order-summary .data-table#checkout-review-table tfoot tr td .special-price {
  padding-left: 8px;
}
body.express-express-index .order-summary .data-table#checkout-review-table tfoot tr td .special-price .price {
  color: #cc2027;
}
body.express-express-index .order-summary .data-table#checkout-review-table tfoot tr:first-of-type td {
  padding-top: 15px;
}
body.express-express-index #checkout-review-submit .buttons-set {
  display: block;
  text-align: Center;
  padding: 10px 0 0 0;
  border-top: 1px solid #cac7a7;
}
body.express-express-index #checkout-review-submit .buttons-set button.button {
  display: inline-block;
  float: right;
  margin: 0 auto;
  background: #cc2027 !important;
  color: #FFF !important;
  width: auto;
  min-width: 0;
  font-weight: normal;
}
body.express-express-index #checkout-review-submit .btn-checkout-back {
  float: left !important;
  display: inline;
}
body.express-express-index #checkout-review-submit .btn-checkout-back a {
  display: inline-block;
  border: 1px solid #cac7a7;
  background: #dbd9c4;
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  padding: 3px 5px 1px 5px;
  margin-right: 15px;
  float: none;
}
body.express-express-index #checkout-review-submit .btn-checkout-back a small {
  display: none;
}
body.express-express-index #checkout-review-submit .btn-checkout-back a:hover {
  text-decoration: none;
  background: #4f2b1c;
  color: #cac7a7;
}
body.express-express-index #checkout-review-submit .back-link {
  display: none;
}
body.express-express-index #shipping-new-address-form,
body.express-express-index #billing-new-address-form {
  padding: 20px 0 0 0;
  width: 50%;
  margin: 0 auto;
}
body.express-express-index #shipping-new-address-form .fields,
body.express-express-index #billing-new-address-form .fields {
  display: block;
}
body.express-express-index #shipping-new-address-form .wide, body.express-express-index #shipping-new-address-form .fields .field,
body.express-express-index #billing-new-address-form .wide,
body.express-express-index #billing-new-address-form .fields .field {
  height: 30px;
  margin: 0 0 20px 0;
  display: block;
}
body.express-express-index #shipping-new-address-form .wide label, body.express-express-index #shipping-new-address-form .fields .field label,
body.express-express-index #billing-new-address-form .wide label,
body.express-express-index #billing-new-address-form .fields .field label {
  padding-right: 10px;
  width: 35%;
  line-height: 30px;
  float: left;
  text-align: right;
}
body.express-express-index #shipping-new-address-form .wide .input-box, body.express-express-index #shipping-new-address-form .fields .field .input-box,
body.express-express-index #billing-new-address-form .wide .input-box,
body.express-express-index #billing-new-address-form .fields .field .input-box {
  width: 65%;
  padding-right: 15%;
  float: right;
}
body.express-express-index #shipping-new-address-form .field.name-middlename,
body.express-express-index #billing-new-address-form .field.name-middlename {
  display: none;
}
body.express-express-index #shipping-new-address-form select,
body.express-express-index #billing-new-address-form select {
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #4f2b1c;
  height: 30px;
  background: #FFF url("../images/select-arrow.png") center right no-repeat;
  border: 1px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0px 5px;
  margin: 0;
  line-height: 30px;
}
body.express-express-index #shipping-new-address-form select.validation-failed,
body.express-express-index #billing-new-address-form select.validation-failed {
  border: 1px solid #DF280A;
}
body.express-express-index #shipping-new-address-form select:focus,
body.express-express-index #billing-new-address-form select:focus {
  box-shadow: 0px 0 3px 1px #7D7D81;
  border: 1px solid #ccc;
}
body.express-express-index .form-list .control.save-in-address-book-wrapper,
body.express-express-index .form-list .control.shipp-different-address {
  display: block;
  margin: 20px 0 20px 60px;
}
body.express-express-index .form-list .control.save-in-address-book-wrapper input.checkbox,
body.express-express-index .form-list .control.shipp-different-address input.checkbox {
  border-radius: 90px;
  border: 4px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 25px;
  width: 25px;
  float: left;
  margin: 5px 0 0 0;
}
body.express-express-index .form-list .control.save-in-address-book-wrapper input.checkbox:checked:after,
body.express-express-index .form-list .control.shipp-different-address input.checkbox:checked:after {
  content: 'x';
  display: block;
  font-size: 20px;
  line-height: 18px;
  text-align: center;
}
body.express-express-index .form-list .control.save-in-address-book-wrapper label,
body.express-express-index .form-list .control.shipp-different-address label {
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  line-height: 32px;
  background: transparent;
  text-transform: none;
  border: 0;
  padding: 0;
  margin: 0 0 0 10px;
  float: none;
  height: auto;
  text-align: left;
  width: auto;
}
body.express-express-index .form-list .control.save-in-address-book-wrapper label span,
body.express-express-index .form-list .control.shipp-different-address label span {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  display: block;
}
body.express-express-index .form-list #billing-address-select,
body.express-express-index .form-list #shipping-address-select {
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #4f2b1c;
  height: 30px;
  background: #FFF url("../images/select-arrow.png") center right no-repeat;
  border: 1px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0px 5px;
  margin: 0;
  line-height: 30px;
  width: 100%;
}
body.express-express-index .form-list #billing-address-select.validation-failed,
body.express-express-index .form-list #shipping-address-select.validation-failed {
  border: 1px solid #DF280A;
}
body.express-express-index .form-list #billing-address-select:focus,
body.express-express-index .form-list #shipping-address-select:focus {
  box-shadow: 0px 0 3px 1px #7D7D81;
  border: 1px solid #ccc;
}
body.express-express-index .form-list .control.shipp-different-address {
  display: none;
}
body.express-express-index .responsive {
  display: none;
}
body.express-express-index .desktop {
  display: table-row;
}
body.express-express-index .header-note {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 13px;
}
body.express-express-index .header-note .gift-certificate-note {
  padding-top: 10px;
  font-style: italic;
  vertical-align: baseline;
}
body.express-express-index .header-note .gift-certificate-note strong {
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
}
body.express-express-index .paypal-not-available {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 15px;
  margin-top: 10px;
}
body.express-express-index #change-shipping-address,
body.express-express-index #change-billing-address {
  text-decoration: underline;
}
body.express-express-index #co-giftmessage-form #opc-shipping ul li {
  float: left;
  width: 49%;
  border: 0;
}
body.express-express-index #co-giftmessage-form #opc-shipping ul li.order-instructions-container {
  margin-left: 1%;
}
body.express-express-index #co-giftmessage-form #opc-shipping ul li.order-instructions-container label {
  width: 30%;
  float: left;
}
body.express-express-index #co-giftmessage-form #opc-shipping ul li.order-instructions-container label small {
  display: block;
  line-height: 12px;
  font-size: 14px;
  font-weight: normal;
}
body.express-express-index #co-giftmessage-form #opc-shipping ul li.order-instructions-container .input-box {
  float: left;
  width: 50%;
  margin-left: 10px;
}
body.express-express-index #co-giftmessage-form #opc-shipping ul li .gift-info label {
  margin: 0;
}
body.express-express-index #co-giftmessage-form #opc-shipping ul li .gift-info input[type="text"] {
  width: 100%;
  max-width: 100%;
  border-radius: 0px;
  border: 1px solid #4f2b1c;
  background: #FFFFFF;
}
body.express-express-index #co-giftmessage-form #opc-shipping ul li .gift-info textarea {
  width: 100%;
  max-width: 100%;
}
body.express-express-index #co-giftmessage-form .buttons-set {
  border: 0;
  padding: 0;
  margin: 0;
}

/*
###########
Responsive
###########
*/
@media only screen and (max-width: 770px) {
  body.express-express-index header.page-header .page-header-container .header-minicart:after {
    content: none !important;
  }
  body.express-express-index header.page-header .page-header-container .header-account:before {
    content: none !important;
  }
  body.express-express-index .page-header-container .skip-nav, body.express-express-index .page-header-container .skip-search, body.express-express-index .page-header-container .skip-account, body.express-express-index .page-header-container .skip-cart1 {
    display: none !important;
  }
  body.express-express-index .col-main .page-title h1 {
    font-size: 15px !important;
    margin: 20px 10px !important;
    letter-spacing: -0.3px;
  }
  body.express-express-index .col-main .page-title h1:after {
    content: '100% Secure Shopping';
    display: inline-block;
    float: right;
    background: #cac7a7;
    font-family: "Din", Arial, sans-serif;
    font-weight: bold;
    font-size: 13px;
    padding: 0 2px;
  }
  body.express-express-index .col-main .express-checkout {
    padding: 10px;
  }
  body.express-express-index .col-main .payment-details .sp-methods dt {
    padding: 0px;
  }
  body.express-express-index .col-main .payment-details .sp-methods input.cvv {
    float: left;
    width: 42px !important;
  }
  body.express-express-index .col-main .responsive {
    display: table-row;
    height: 150px;
    position: relative;
  }
  body.express-express-index .col-main .desktop {
    display: none;
  }
  body.express-express-index .col-main .form-list {
    padding: 0;
  }
  body.express-express-index .col-main .form-list li .input-box, body.express-express-index .col-main .form-list li label, body.express-express-index .col-main .form-list li select, body.express-express-index .col-main .form-list li input {
    text-align: left !important;
    width: 100% !important;
    padding: 0 10px !important;
    float: left !important;
  }
  body.express-express-index .col-main .form-list li .input-box .cvv-what-is-this:after {
    margin-left: 10px !important;
  }
  body.express-express-index .col-main .buttons-set {
    position: relative;
    height: 100px;
  }
  body.express-express-index .col-main .buttons-set .btn-checkout-back {
    position: absolute;
    top: 50px;
    left: 0px;
  }
  body.express-express-index .col-main .buttons-set .btn-checkout {
    float: left !important;
  }
  body.express-express-index .col-main .order-summary #checkout-review-table.data-table tbody tr {
    height: auto;
    margin: 0;
    border-top: 1px solid #4f2b1c;
    border-bottom: none;
    position: relative;
    flex-direction: column;
    padding-bottom: 10px;
  }
  body.express-express-index .col-main .order-summary #checkout-review-table.data-table tbody tr td {
    display: table-cell;
    vertical-align: top;
    font-family: "Din", Arial, sans-serif;
    color: #4f2b1c;
  }
  body.express-express-index .col-main .order-summary #checkout-review-table.data-table tbody tr td.image img {
    max-width: 180px;
  }
  body.express-express-index .col-main .order-summary #checkout-review-table.data-table tbody tr td div.name .product-name {
    font-size: 16px;
    font-weight: bold;
    text-transform: none;
    font-family: "Din", Arial, sans-serif;
    color: #4f2b1c;
  }
  body.express-express-index .col-main .order-summary #checkout-review-table.data-table tbody tr td div.availability .availability.in-stock {
    font-weight: normal;
    color: #cc2027;
    text-transform: none;
    font-size: 16px;
  }
  body.express-express-index .col-main .order-summary #checkout-review-table.data-table tbody tr td div.qty {
    text-align: left;
    font-family: "Din", Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
  }
  body.express-express-index .col-main .order-summary #checkout-review-table.data-table tbody tr td div.qty:before {
    content: attr(data-rwd-label);
    font-family: "Din", Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
    text-transform: uppercase;
    padding-right: 5px;
  }
  body.express-express-index .col-main .order-summary #checkout-review-table.data-table tbody tr td div.item-total {
    text-align: left;
    font-family: "Din", Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
  }
  body.express-express-index .col-main .order-summary #checkout-review-table.data-table tbody tr td div.item-total:before {
    content: attr(data-rwd-label);
    font-family: "Din", Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    margin-top: 5px;
    text-transform: none;
    padding-right: 5px;
  }
  body.express-express-index .col-main .order-summary #checkout-review-table.data-table tbody tr td div.item-total .price {
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
  }
  body.express-express-index .col-main .order-summary #checkout-review-table.data-table tbody tr td div.item-total .price::first-letter {
    font-size: 12px;
    vertical-align: top;
    line-height: 20px;
  }
  body.express-express-index .col-main .order-summary #checkout-review-table.data-table tbody tr td.image {
    width: 30%;
  }
  body.express-express-index .col-main .order-summary #checkout-review-table.data-table tbody tr td.image img {
    width: 100%;
    height: auto;
  }
  body.express-express-index .col-main .order-summary #checkout-review-table.data-table thead {
    display: none;
  }
  body.express-express-index .col-main .order-summary #checkout-review-table.data-table tfoot tr td:last-of-type {
    width: 10%;
    min-width: 100px;
  }

  body.express-express-success .col-main {
    text-align: left;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 985px) {
  body.express-express-index form#co-payment-form {
    margin: 0;
  }
}
@media only screen and (max-width: 770px) {
  body.express-express-index form#co-payment-form .sp-methods {
    width: 100%;
    padding: 40px 0 10px;
  }
  body.express-express-index form#co-payment-form .sp-methods dt {
    padding: 0;
  }
  body.express-express-index form#co-payment-form .sp-methods .method-container {
    width: 100%;
    float: none;
    clear: both;
  }
  body.express-express-index form#co-payment-form .sp-methods .method-container dt {
    float: none;
    width: 100%;
    padding: 0 10px 35px 10px;
    margin-bottom: 20px;
  }
  body.express-express-index form#co-payment-form .sp-methods .method-container.method-ccsave:before {
    content: none;
  }
  body.express-express-index form#co-payment-form .sp-methods .method-container.method-ccsave:after {
    background: #4f2b1c;
    border-radius: 19px;
    height: 38px;
    width: 38px;
    line-height: 40px;
    font-size: 16px;
    font-family: "Din", Arial, sans-serif;
    color: #cac7a7;
    content: 'OR';
    text-align: center;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0px 10px #FFF;
  }
  body.express-express-index form#co-payment-form .sp-methods .method-container.method-paypal_express {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
  }
  body.express-express-index form#co-payment-form .sp-methods .method-container.method-paypal_express:before {
    border-top: 4px solid #4f2b1c;
    height: 0;
    content: '-';
    display: block;
    position: absolute;
    left: 0;
    top: -21px;
    text-indent: -999999px;
    width: 100%;
  }
  body.express-express-index .billing-information,
  body.express-express-index .shipping-information {
    float: none;
    width: 100%;
    clear: both;
  }
  body.express-express-index #checkout-shipping-method-load select {
    width: 100%;
  }
  body.express-express-index .form-list #billing-address-select, body.express-express-index .form-list #shipping-address-select {
    padding-right: 40px !important;
  }
  body.express-express-index .col-main .form-list li {
    clear: both;
  }
  body.express-express-index .col-main .form-list li.wide,
  body.express-express-index .col-main .form-list li label,
  body.express-express-index .col-main .form-list li .input-box {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  body.express-express-index .col-main .form-list li.wide:after {
    display: block;
    clear: both;
  }
  body.express-express-index #opc-shipping .fieldset .same-as-billing-wrapper input,
  body.express-express-index #opc-shipping .fieldset .save-in-address-book-wrapper input {
    padding: 0 !important;
    width: 25px !important;
  }
  body.express-express-index #opc-shipping .fieldset .same-as-billing-wrapper p,
  body.express-express-index #opc-shipping .fieldset .save-in-address-book-wrapper p {
    clear: both;
  }
  body.express-express-index #shipping-new-address-form,
  body.express-express-index #billing-new-address-form {
    width: 100%;
  }
  body.express-express-index #shipping-new-address-form .wide,
  body.express-express-index #shipping-new-address-form .fields .field,
  body.express-express-index #billing-new-address-form .wide,
  body.express-express-index #billing-new-address-form .fields .field {
    height: 60px;
    margin: 0 0 10px 0;
    display: block;
    clear: both;
    float: none;
  }
  body.express-express-index .form-list .control.save-in-address-book-wrapper,
  body.express-express-index .form-list .control.shipp-different-address {
    padding: 0;
    margin-left: 0;
  }
  body.express-express-index .form-list .control.save-in-address-book-wrapper input.checkbox,
  body.express-express-index .form-list .control.shipp-different-address input.checkbox {
    padding: 0 !important;
    width: 25px !important;
  }
  body.express-express-index .form-list .control.save-in-address-book-wrapper label,
  body.express-express-index .form-list .control.shipp-different-address label {
    width: calc(100% - 40px) !important;
  }
}
@media only screen and (max-width: 599px) {
  body.express-express-index .order-summary #checkout-review-table.data-table tfoot tr {
    display: table-row;
  }
  body.express-express-index .order-summary #checkout-review-table.data-table tfoot tr td {
    width: 100%;
    display: table-cell;
    clear: none;
    float: none;
    padding: 0;
  }
  body.express-express-index .order-summary #checkout-review-table.data-table tfoot tr td:last-of-type {
    width: 30%;
    min-width: 100px;
    text-align: right;
  }
}
/* ============================================ *
 * Signup
 * ============================================ */
.customer-account-login .wrapper .page .buttons-set,
.customer-account-create .wrapper .page .buttons-set,
.customer-account-forgotpassword .wrapper .page .buttons-set,
.checkout-multishipping-register .wrapper .page .buttons-set,
.checkout-multishipping-login .wrapper .page .buttons-set, body.customer-account .wrapper .main .fieldset + .buttons-set,
.customer-account-create .wrapper .main .fieldset + .buttons-set,
.customer-account-forgotpassword .wrapper .main .fieldset + .buttons-set,
.checkout-multishipping-register .wrapper .main .fieldset + .buttons-set, .sendfriend-product-send .wrapper .send-friend .buttons-set {
  border-top: 1px solid #CCCCCC;
  max-width: none;
  padding-top: 15px;
  text-align: center;
}

.customer-account-login .wrapper .page .col-main,
.customer-account-create .wrapper .page .col-main,
.customer-account-forgotpassword .wrapper .page .col-main,
.checkout-multishipping-register .wrapper .page .col-main,
.checkout-multishipping-login .wrapper .page .col-main {
  border-bottom: 4px solid #4f2b1c;
  padding-bottom: 15px;
}
.customer-account-login .wrapper .page .buttons-set p.back-link,
.customer-account-create .wrapper .page .buttons-set p.back-link,
.customer-account-forgotpassword .wrapper .page .buttons-set p.back-link,
.checkout-multishipping-register .wrapper .page .buttons-set p.back-link,
.checkout-multishipping-login .wrapper .page .buttons-set p.back-link {
  width: 36%;
  padding-right: 3%;
  text-align: right;
}
.customer-account-login .wrapper .page .buttons-set p.back-link a,
.customer-account-create .wrapper .page .buttons-set p.back-link a,
.customer-account-forgotpassword .wrapper .page .buttons-set p.back-link a,
.checkout-multishipping-register .wrapper .page .buttons-set p.back-link a,
.checkout-multishipping-login .wrapper .page .buttons-set p.back-link a {
  float: none;
  font-weight: bold;
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: #A0A0A0;
  border: 1px solid #A0A0A0;
  padding: 2px 6px 1px;
  vertical-align: middle;
}
.customer-account-login .wrapper .page .buttons-set p.back-link a:hover,
.customer-account-create .wrapper .page .buttons-set p.back-link a:hover,
.customer-account-forgotpassword .wrapper .page .buttons-set p.back-link a:hover,
.checkout-multishipping-register .wrapper .page .buttons-set p.back-link a:hover,
.checkout-multishipping-login .wrapper .page .buttons-set p.back-link a:hover {
  text-decoration: none;
  background: #f4f4f4;
}
.customer-account-login .wrapper .page .buttons-set button,
.customer-account-create .wrapper .page .buttons-set button,
.customer-account-forgotpassword .wrapper .page .buttons-set button,
.checkout-multishipping-register .wrapper .page .buttons-set button,
.checkout-multishipping-login .wrapper .page .buttons-set button {
  float: left;
  margin: 0 3% 0 0;
}

.wrapper .account-login .col2-set {
  padding: 0 15%;
  display: flex;
}
.wrapper .account-login .col2-set label:first-child {
  width: auto;
}
.wrapper .account-login .col2-set .benefits {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0 20px;
}
.wrapper .account-login .col2-set .col-1, .wrapper .account-login .col2-set .col-2 {
  padding-bottom: 0;
  padding-top: 0;
  margin-top: 20px;
}
.wrapper .account-login .col2-set .col-1 {
  padding-right: 44px;
  position: relative;
  border-right: 2px solid #4f2b1c;
}
.wrapper .account-login .col2-set .col-1:after {
  background: #4f2b1c;
  border-radius: 19px;
  height: 38px;
  width: 38px;
  line-height: 40px;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  color: #cac7a7;
  display: inline-block;
  content: 'OR';
  text-align: center;
  position: absolute;
  right: -21px;
  top: -6px;
}
.wrapper .account-login .col2-set .col-1:before {
  background: #fff;
  height: 50px;
  width: 38px;
  display: inline-block;
  content: ' ';
  position: absolute;
  right: -21px;
  top: -6px;
}
.wrapper .account-login .col2-set .col-2 {
  padding-left: 44px;
  border-left: 2px solid #4f2b1c;
}

body.customer-account .wrapper .main .fieldset, body.customer-account .wrapper .main .fieldset + .buttons-set,
.customer-account-create .wrapper .main .fieldset,
.customer-account-create .wrapper .main .fieldset + .buttons-set,
.customer-account-forgotpassword .wrapper .main .fieldset,
.customer-account-forgotpassword .wrapper .main .fieldset + .buttons-set,
.checkout-multishipping-register .wrapper .main .fieldset,
.checkout-multishipping-register .wrapper .main .fieldset + .buttons-set {
  margin-left: 5%;
  width: 95%;
}
body.customer-account .wrapper .main .fieldset,
.customer-account-create .wrapper .main .fieldset,
.customer-account-forgotpassword .wrapper .main .fieldset,
.checkout-multishipping-register .wrapper .main .fieldset {
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 100%;
}
body.customer-account .wrapper .main .fieldset + .fieldset,
.customer-account-create .wrapper .main .fieldset + .fieldset,
.customer-account-forgotpassword .wrapper .main .fieldset + .fieldset,
.checkout-multishipping-register .wrapper .main .fieldset + .fieldset {
  margin-top: -20px;
}
body.customer-account .wrapper .main .fieldset .recaptcha,
.customer-account-create .wrapper .main .fieldset .recaptcha,
.customer-account-forgotpassword .wrapper .main .fieldset .recaptcha,
.checkout-multishipping-register .wrapper .main .fieldset .recaptcha {
  margin: 0 auto;
  padding-left: 35px;
  width: 350px;
}
body.customer-account .wrapper .main .fieldset h2.legend, body.customer-account .wrapper .main .fieldset h2,
.customer-account-create .wrapper .main .fieldset h2.legend,
.customer-account-create .wrapper .main .fieldset h2,
.customer-account-forgotpassword .wrapper .main .fieldset h2.legend,
.customer-account-forgotpassword .wrapper .main .fieldset h2,
.checkout-multishipping-register .wrapper .main .fieldset h2.legend,
.checkout-multishipping-register .wrapper .main .fieldset h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: none;
  border-bottom: 1px solid #CCCCCC;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 23px;
  display: inline-block;
}
body.customer-account .wrapper .main .fieldset p.required,
.customer-account-create .wrapper .main .fieldset p.required,
.customer-account-forgotpassword .wrapper .main .fieldset p.required,
.checkout-multishipping-register .wrapper .main .fieldset p.required {
  margin-top: -54px;
  float: right;
}
body.customer-account .wrapper .main .fieldset .form-list,
.customer-account-create .wrapper .main .fieldset .form-list,
.customer-account-forgotpassword .wrapper .main .fieldset .form-list,
.checkout-multishipping-register .wrapper .main .fieldset .form-list {
  padding: 0;
  margin: 0 0 0 8%;
  border: none;
 				/*
 				label[for="region_id"] + .input-box{
 					position: relative;
 					&:after{
 						background: red url("../images/select-arrow.png") center right no-repeat;
			            width: 30px;
			            height: 26px;
			            display: inline-block;
			            position: absolute;
			            left: 269px;
			            top: 3px;
			            content: ' ';
			            pointer-events: none;
 					}
 				}
 				*/
}
body.customer-account .wrapper .main .fieldset .form-list li,
.customer-account-create .wrapper .main .fieldset .form-list li,
.customer-account-forgotpassword .wrapper .main .fieldset .form-list li,
.checkout-multishipping-register .wrapper .main .fieldset .form-list li {
  width: 100%;
}
body.customer-account .wrapper .main .fieldset .form-list .fields, body.customer-account .wrapper .main .fieldset .form-list .hidden,
.customer-account-create .wrapper .main .fieldset .form-list .fields,
.customer-account-create .wrapper .main .fieldset .form-list .hidden,
.customer-account-forgotpassword .wrapper .main .fieldset .form-list .fields,
.customer-account-forgotpassword .wrapper .main .fieldset .form-list .hidden,
.checkout-multishipping-register .wrapper .main .fieldset .form-list .fields,
.checkout-multishipping-register .wrapper .main .fieldset .form-list .hidden {
  margin-bottom: 0;
}
body.customer-account .wrapper .main .fieldset .form-list .wide,
.customer-account-create .wrapper .main .fieldset .form-list .wide,
.customer-account-forgotpassword .wrapper .main .fieldset .form-list .wide,
.checkout-multishipping-register .wrapper .main .fieldset .form-list .wide {
  margin-bottom: 20px;
}
body.customer-account .wrapper .main .fieldset .form-list .field,
.customer-account-create .wrapper .main .fieldset .form-list .field,
.customer-account-forgotpassword .wrapper .main .fieldset .form-list .field,
.checkout-multishipping-register .wrapper .main .fieldset .form-list .field {
  content: '';
  display: table;
  clear: both;
  min-height: 40px;
  width: 100%;
  display: block;
}
body.customer-account .wrapper .main .fieldset .form-list label,
.customer-account-create .wrapper .main .fieldset .form-list label,
.customer-account-forgotpassword .wrapper .main .fieldset .form-list label,
.checkout-multishipping-register .wrapper .main .fieldset .form-list label {
  width: 30%;
  text-align: right;
  padding-right: 10px;
}
body.customer-account .wrapper .main .fieldset .form-list .input-box,
.customer-account-create .wrapper .main .fieldset .form-list .input-box,
.customer-account-forgotpassword .wrapper .main .fieldset .form-list .input-box,
.checkout-multishipping-register .wrapper .main .fieldset .form-list .input-box {
  width: 70%;
  text-align: left;
}
body.customer-account .wrapper .main .fieldset .form-list .input-box select,
.customer-account-create .wrapper .main .fieldset .form-list .input-box select,
.customer-account-forgotpassword .wrapper .main .fieldset .form-list .input-box select,
.checkout-multishipping-register .wrapper .main .fieldset .form-list .input-box select {
  font-size: 12px;
  height: 32px;
  border: 1px solid #4f2b1c;
  margin-top: 0;
  width: 300px;
  background: #FFF url("../images/select-arrow.png") center right no-repeat;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 0px 4px;
  line-height: 30px;
}
body.customer-account .wrapper .main .fieldset .form-list .input-text,
.customer-account-create .wrapper .main .fieldset .form-list .input-text,
.customer-account-forgotpassword .wrapper .main .fieldset .form-list .input-text,
.checkout-multishipping-register .wrapper .main .fieldset .form-list .input-text {
  width: 300px;
}
body.customer-account .wrapper .main .fieldset .form-list textarea.input-text, body.customer-account .wrapper .main .fieldset .form-list textarea,
.customer-account-create .wrapper .main .fieldset .form-list textarea.input-text,
.customer-account-create .wrapper .main .fieldset .form-list textarea,
.customer-account-forgotpassword .wrapper .main .fieldset .form-list textarea.input-text,
.customer-account-forgotpassword .wrapper .main .fieldset .form-list textarea,
.checkout-multishipping-register .wrapper .main .fieldset .form-list textarea.input-text,
.checkout-multishipping-register .wrapper .main .fieldset .form-list textarea {
  width: 300px;
  min-height: 76px;
}
body.customer-account .wrapper .main .fieldset .form-list li.control,
.customer-account-create .wrapper .main .fieldset .form-list li.control,
.customer-account-forgotpassword .wrapper .main .fieldset .form-list li.control,
.checkout-multishipping-register .wrapper .main .fieldset .form-list li.control {
  padding-left: 30.1%;
  margin-top: 18px;
}
body.customer-account .wrapper .main .fieldset .form-list li.control:first-child,
.customer-account-create .wrapper .main .fieldset .form-list li.control:first-child,
.customer-account-forgotpassword .wrapper .main .fieldset .form-list li.control:first-child,
.checkout-multishipping-register .wrapper .main .fieldset .form-list li.control:first-child {
  margin-top: 0;
}
body.customer-account .wrapper .main .fieldset .form-list li.control .input-box,
.customer-account-create .wrapper .main .fieldset .form-list li.control .input-box,
.customer-account-forgotpassword .wrapper .main .fieldset .form-list li.control .input-box,
.checkout-multishipping-register .wrapper .main .fieldset .form-list li.control .input-box {
  padding-left: 30%;
  width: 30%;
  margin-right: 33px;
  min-height: 30px;
}
body.customer-account .wrapper .main .fieldset .form-list li.control input[type=checkbox],
.customer-account-create .wrapper .main .fieldset .form-list li.control input[type=checkbox],
.customer-account-forgotpassword .wrapper .main .fieldset .form-list li.control input[type=checkbox],
.checkout-multishipping-register .wrapper .main .fieldset .form-list li.control input[type=checkbox] {
  float: none;
  margin: 0;
}
body.customer-account .wrapper .main .fieldset .form-list li.control input[type=checkbox]:after,
.customer-account-create .wrapper .main .fieldset .form-list li.control input[type=checkbox]:after,
.customer-account-forgotpassword .wrapper .main .fieldset .form-list li.control input[type=checkbox]:after,
.checkout-multishipping-register .wrapper .main .fieldset .form-list li.control input[type=checkbox]:after {
  background: #fff;
  border: 1px solid #4f2b1c;
  height: 30px;
  width: 30px;
  line-height: 30px;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  display: inline-block;
  padding: 0 0 0 0px;
  content: ' ';
  text-align: center;
  cursor: pointer;
}
body.customer-account .wrapper .main .fieldset .form-list li.control input[type=checkbox]:checked:after,
.customer-account-create .wrapper .main .fieldset .form-list li.control input[type=checkbox]:checked:after,
.customer-account-forgotpassword .wrapper .main .fieldset .form-list li.control input[type=checkbox]:checked:after,
.checkout-multishipping-register .wrapper .main .fieldset .form-list li.control input[type=checkbox]:checked:after {
  content: 'X';
}
body.customer-account .wrapper .main .fieldset .form-list li.control label,
.customer-account-create .wrapper .main .fieldset .form-list li.control label,
.customer-account-forgotpassword .wrapper .main .fieldset .form-list li.control label,
.checkout-multishipping-register .wrapper .main .fieldset .form-list li.control label {
  width: auto !important;
  font-weight: bold;
  padding-left: 10px;
  text-align: left;
  cursor: pointer;
  bottom: 2px;
  background-color: transparent;
  min-width: 0;
}
body.customer-account .wrapper .main .fieldset .form-list li.control input[type=checkbox] + label,
.customer-account-create .wrapper .main .fieldset .form-list li.control input[type=checkbox] + label,
.customer-account-forgotpassword .wrapper .main .fieldset .form-list li.control input[type=checkbox] + label,
.checkout-multishipping-register .wrapper .main .fieldset .form-list li.control input[type=checkbox] + label {
  margin-left: 18px;
  font-size: 16px;
}
body.customer-account .wrapper .main .fieldset .form-list li:not(.fields):not(.control),
.customer-account-create .wrapper .main .fieldset .form-list li:not(.fields):not(.control),
.customer-account-forgotpassword .wrapper .main .fieldset .form-list li:not(.fields):not(.control),
.checkout-multishipping-register .wrapper .main .fieldset .form-list li:not(.fields):not(.control) {
  margin-bottom: 20px;
}
body.customer-account .wrapper .main .fieldset + .buttons-set p.back-link,
.customer-account-create .wrapper .main .fieldset + .buttons-set p.back-link,
.customer-account-forgotpassword .wrapper .main .fieldset + .buttons-set p.back-link,
.checkout-multishipping-register .wrapper .main .fieldset + .buttons-set p.back-link {
  width: 35.5%;
  padding-right: 3%;
  text-align: right;
}
body.customer-account .wrapper .main .fieldset + .buttons-set p.back-link a,
.customer-account-create .wrapper .main .fieldset + .buttons-set p.back-link a,
.customer-account-forgotpassword .wrapper .main .fieldset + .buttons-set p.back-link a,
.checkout-multishipping-register .wrapper .main .fieldset + .buttons-set p.back-link a {
  float: none;
  font-weight: bold;
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: #A0A0A0;
  border: 1px solid #A0A0A0;
  padding: 2px 6px 1px;
  vertical-align: middle;
}
body.customer-account .wrapper .main .fieldset + .buttons-set p.back-link a:hover,
.customer-account-create .wrapper .main .fieldset + .buttons-set p.back-link a:hover,
.customer-account-forgotpassword .wrapper .main .fieldset + .buttons-set p.back-link a:hover,
.checkout-multishipping-register .wrapper .main .fieldset + .buttons-set p.back-link a:hover {
  text-decoration: none;
  background: #f4f4f4;
}
body.customer-account .wrapper .main .fieldset + .buttons-set button,
.customer-account-create .wrapper .main .fieldset + .buttons-set button,
.customer-account-forgotpassword .wrapper .main .fieldset + .buttons-set button,
.checkout-multishipping-register .wrapper .main .fieldset + .buttons-set button {
  float: left;
  margin: 0 3% 0 0;
}
body.customer-account .wrapper .main .fieldset + .buttons-set button[type=submit],
.customer-account-create .wrapper .main .fieldset + .buttons-set button[type=submit],
.customer-account-forgotpassword .wrapper .main .fieldset + .buttons-set button[type=submit],
.checkout-multishipping-register .wrapper .main .fieldset + .buttons-set button[type=submit] {
  background-color: #cc2027;
}
body.customer-account .wrapper .main .fieldset + .buttons-set button[type=submit] span,
.customer-account-create .wrapper .main .fieldset + .buttons-set button[type=submit] span,
.customer-account-forgotpassword .wrapper .main .fieldset + .buttons-set button[type=submit] span,
.checkout-multishipping-register .wrapper .main .fieldset + .buttons-set button[type=submit] span {
  color: #FFF;
}
body.customer-account .wrapper .main .fieldset + .buttons-set button[type=submit]:hover, body.customer-account .wrapper .main .fieldset + .buttons-set button[type=submit]:focus,
.customer-account-create .wrapper .main .fieldset + .buttons-set button[type=submit]:hover,
.customer-account-create .wrapper .main .fieldset + .buttons-set button[type=submit]:focus,
.customer-account-forgotpassword .wrapper .main .fieldset + .buttons-set button[type=submit]:hover,
.customer-account-forgotpassword .wrapper .main .fieldset + .buttons-set button[type=submit]:focus,
.checkout-multishipping-register .wrapper .main .fieldset + .buttons-set button[type=submit]:hover,
.checkout-multishipping-register .wrapper .main .fieldset + .buttons-set button[type=submit]:focus {
  background-color: #a0191f;
}
body.customer-account .wrapper .main .fieldset + .buttons-set button[type=submit]:active,
.customer-account-create .wrapper .main .fieldset + .buttons-set button[type=submit]:active,
.customer-account-forgotpassword .wrapper .main .fieldset + .buttons-set button[type=submit]:active,
.checkout-multishipping-register .wrapper .main .fieldset + .buttons-set button[type=submit]:active {
  background-color: #8a161a;
}

.customer-account-forgotpassword .wrapper .main .fieldset h2 {
  width: 100%;
}
.customer-account-forgotpassword .wrapper .main .fieldset p.form-instructions {
  position: absolute;
  top: 0;
  left: 185px;
}
.customer-account-forgotpassword .wrapper .main .fieldset p.required {
  margin-top: 0;
  position: absolute;
  top: 38px;
  right: 0;
}

.customer-account-create .wrapper .main .fieldset p.form-instructions,
.checkout-multishipping-register .wrapper .main .fieldset p.form-instructions {
  position: absolute;
  top: 0;
  left: 155px;
}
.customer-account-create .wrapper .main .fieldset p.required,
.checkout-multishipping-register .wrapper .main .fieldset p.required {
  margin-top: -44px;
}
.customer-account-create .wrapper .main .fieldset .form-list li.control,
.checkout-multishipping-register .wrapper .main .fieldset .form-list li.control {
  margin-top: 0;
  padding-left: 0;
}
.customer-account-create .wrapper .main .fieldset .form-list li.control .input-box,
.checkout-multishipping-register .wrapper .main .fieldset .form-list li.control .input-box {
  margin-left: -1px;
}

.customer-account .wrapper .table-caption {
  margin-bottom: 0;
  border-bottom: none;
}
.customer-account .wrapper .my-account .pager {
  color: #4f2b1c;
  margin-top: 10px;
}
.customer-account .wrapper .my-account .pager * {
  font-family: "Din", Arial, sans-serif;
}
.customer-account .wrapper .my-account .pager:nth-child(2) {
  margin-top: 0;
}
.customer-account .wrapper .my-account .pager label {
  font-size: 12px;
  position: static;
}
.customer-account .wrapper .my-account .pager .limiter {
  font-weight: bold;
}
.customer-account .wrapper .my-account .pager .limiter select {
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #4f2b1c;
  height: 26px;
  background: #FFF url("../images/select-arrow.png") center right no-repeat;
  border: 1px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0px 5px;
  width: 66px;
  line-height: 26px;
}
.customer-account .wrapper .data-table {
  margin-top: -1px;
  border-top: 3px solid #4f2b1c;
  clear: both;
}
.customer-account .wrapper .data-table * {
  text-transform: none;
  font-family: "Din", Arial, sans-serif;
}
.customer-account .wrapper .data-table tr.last td {
  border-bottom: 3px solid #4f2b1c;
}
.customer-account .wrapper .data-table td, .customer-account .wrapper .data-table th {
  vertical-align: middle;
}
.customer-account .wrapper .data-table td .price {
  display: inline-block;
  /* for ::first-letter to work */
}
.customer-account .wrapper .data-table td .price::first-letter {
  font-size: 0.7em;
  letter-spacing: 1px;
  vertical-align: top;
  font-weight: bold;
}
.customer-account .wrapper .data-table td h3 {
  margin-bottom: 0;
  font-weight: bold;
  color: #4f2b1c;
  font-size: 14px;
}
.customer-account .wrapper .my-account .title-buttons {
  text-align: right;
}
.customer-account .wrapper .my-account .title-buttons a, .customer-account .wrapper .my-account .title-buttons span.separator {
  top: -39px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
.customer-account .wrapper .box-head h2, .customer-account .wrapper .box-title h2 {
  border-bottom: none;
  font-family: "Din", Arial, sans-serif;
}
.customer-account .wrapper .box-head h3, .customer-account .wrapper .box-title h3 {
  text-transform: none;
  display: inline-block;
  margin-right: 10px;
}
.customer-account .wrapper .box-head a, .customer-account .wrapper .box-title a {
  text-transform: none;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 13px;
}
.customer-account .wrapper .box .box-content {
  font-family: "Din", Arial, sans-serif;
}
.customer-account .wrapper .box-account {
  padding-bottom: 25px;
  border-bottom: none;
  margin-bottom: 35px;
}
.customer-account .wrapper .box-account p, .customer-account .wrapper .box-account address {
  font-style: normal;
  font-family: "Din", Arial, sans-serif;
}
.customer-account .wrapper #my-orders-table th {
  font-size: 12px;
  background-color: transparent;
  border-bottom: 1px solid #4f2b1c;
}
.customer-account .wrapper #my-orders-table th.total {
  min-width: 100px;
  text-align: right;
}
.customer-account .wrapper #my-orders-table th.status {
  min-width: 100px;
}
.customer-account .wrapper #my-orders-table th.view {
  width: 82px;
}
.customer-account .wrapper #my-orders-table td.total {
  text-align: right;
}
.customer-account .wrapper #my-orders-table td.last a {
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
.customer-account .wrapper #my-reviews-table h2 {
  border: none;
  margin-bottom: 0;
}
.customer-account .wrapper #my-reviews-table h2 a {
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #4f2b1c;
}
.customer-account .wrapper #my-reviews-table h2 a:hover {
  text-decoration: underline;
}
.customer-account .wrapper .order-details #my-orders-table tr th:nth-of-type(4) {
  min-width: 105px;
}
.customer-account .wrapper .buttons-set .back-link a {
  font-weight: bold;
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  color: #A0A0A0;
  border: 1px solid #A0A0A0;
  padding: 2px 6px 1px;
  vertical-align: middle;
}
.customer-account .wrapper .my-account .addresses-list {
  font-style: normal;
  font-family: "Din", Arial, sans-serif;
}
.customer-account .wrapper .my-account .addresses-list h3 {
  font-weight: normal;
}
.customer-account .wrapper .my-account a {
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
.customer-account .wrapper .my-account .title-buttons {
  margin-bottom: 0;
}
.customer-account .wrapper .my-account .title-buttons .button {
  position: static;
  margin-top: -6px;
  background-color: #cc2027;
  color: #fff;
}
.customer-account .wrapper .my-account .title-buttons .button:hover {
  background-color: #b61d23;
}
.customer-account .wrapper .my-account .order-info {
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.customer-account .wrapper .my-account .order-info-box + .order-info-box {
  margin-bottom: 30px;
  padding-bottom: 10px;
}
.customer-account .wrapper .my-account .product-review * {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
}
.customer-account .wrapper .my-account .product-review .product-name, .customer-account .wrapper .my-account .product-review .ratings-description dd {
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
.customer-account .wrapper .my-account .product-review .product-img-box {
  width: 40%;
  padding-right: 0;
  margin-right: 3%;
}
.customer-account .wrapper .my-account .product-review .product-img-box a {
  display: block;
}
.customer-account .wrapper .my-account .product-review .product-details {
  padding-bottom: 15px;
}
.customer-account .wrapper .my-account .product-review .product-details .product-name {
  border-bottom: none;
  text-transform: none;
  font-size: 28px;
}
.customer-account .wrapper .my-account .product-review .product-details .ratings-description dt {
  border-bottom: none;
}
.customer-account .wrapper .my-account .product-review .product-details .ratings-description dd {
  font-size: 18px;
}
.customer-account .wrapper .my-account .rating-box {
  width: 105px;
  height: 17px;
  padding: 0;
  margin: 0;
  background: url("../images/ico-review-stars.png") 0 -18px no-repeat;
  display: inline-block;
}
.customer-account .wrapper .my-account .rating-box .rating {
  height: 17px;
  background: url("../images/ico-review-stars.png") 0 -37px no-repeat;
}
.customer-account .wrapper .my-account .box-reviews .product-name {
  text-transform: none;
}
.customer-account .wrapper .my-account .box-reviews .product-name a {
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  color: #4f2b1c;
}
.customer-account .wrapper .my-account .box-reviews .product-name a:hover {
  text-decoration: underline;
}
.customer-account .wrapper .my-account .box-reviews .ratings strong {
  font-weight: normal;
  margin-top: 4px;
  font-family: "Din", Arial, sans-serif;
}
.customer-account .wrapper .my-account .box-reviews .number {
  margin-top: 2px;
}
.customer-account .wrapper .my-account .box-reviews .number:after {
  content: '.';
}

.customer-account .wrapper .sidebar.col-left-first,
.sendfriend-product-send .wrapper .sidebar.col-left-first {
  padding-top: 13px;
}
.customer-account .wrapper .sidebar .block-account .block-title,
.sendfriend-product-send .wrapper .sidebar .block-account .block-title {
  border-width: 0 0 3px;
  border-style: solid;
  border-color: #4f2b1c;
  padding-bottom: 1px;
}
.customer-account .wrapper .sidebar .block-account .block-title span,
.sendfriend-product-send .wrapper .sidebar .block-account .block-title span {
  color: #4f2b1c;
  text-transform: none;
  font-weight: bold;
  font-size: 16px;
}
.customer-account .wrapper .sidebar .block-account .block-content,
.sendfriend-product-send .wrapper .sidebar .block-account .block-content {
  margin-top: 10px;
}
.customer-account .wrapper .sidebar .block-account .block-content ul li,
.sendfriend-product-send .wrapper .sidebar .block-account .block-content ul li {
  text-transform: none;
}
.customer-account .wrapper .sidebar .block-account .block-content ul li.current a strong,
.sendfriend-product-send .wrapper .sidebar .block-account .block-content ul li.current a strong {
  font-weight: bold;
}
.customer-account .wrapper .sidebar .block-reorder .block-title,
.sendfriend-product-send .wrapper .sidebar .block-reorder .block-title {
  border-width: 0 0 3px;
  border-style: solid;
  border-color: #4f2b1c;
  padding-bottom: 6px;
}
.customer-account .wrapper .sidebar .block-reorder .block-title span,
.sendfriend-product-send .wrapper .sidebar .block-reorder .block-title span {
  color: #4f2b1c;
  text-transform: none;
  font-weight: bold;
  font-size: 16px;
}
.customer-account .wrapper .sidebar .block-reorder #cart-sidebar-reorder li,
.sendfriend-product-send .wrapper .sidebar .block-reorder #cart-sidebar-reorder li {
  margin-left: 0;
  clear: both;
}
.customer-account .wrapper .sidebar .block-reorder #cart-sidebar-reorder li:after,
.sendfriend-product-send .wrapper .sidebar .block-reorder #cart-sidebar-reorder li:after {
  content: '';
  display: table;
  clear: both;
}
.customer-account .wrapper .sidebar .block-reorder #cart-sidebar-reorder li .product-name,
.sendfriend-product-send .wrapper .sidebar .block-reorder #cart-sidebar-reorder li .product-name {
  text-transform: none;
  display: block;
  float: right;
  width: 162px;
}
.customer-account .wrapper .sidebar .block-reorder #cart-sidebar-reorder li .product-name a,
.sendfriend-product-send .wrapper .sidebar .block-reorder #cart-sidebar-reorder li .product-name a {
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
}
.customer-account .wrapper .sidebar .block-reorder #cart-sidebar-reorder li .product-name a:hover,
.sendfriend-product-send .wrapper .sidebar .block-reorder #cart-sidebar-reorder li .product-name a:hover {
  text-decoration: underline;
}
.customer-account .wrapper .sidebar .block-reorder #cart-sidebar-reorder li input[type=checkbox]:checked ~ .product-name a,
.sendfriend-product-send .wrapper .sidebar .block-reorder #cart-sidebar-reorder li input[type=checkbox]:checked ~ .product-name a {
  font-weight: bold;
}
.customer-account .wrapper .sidebar .block-reorder #cart-sidebar-reorder li input[type=checkbox]:after,
.sendfriend-product-send .wrapper .sidebar .block-reorder #cart-sidebar-reorder li input[type=checkbox]:after {
  background: #fff;
  border: 1px solid #4f2b1c;
  height: 20px;
  width: 20px;
  line-height: 20px;
  font-size: 20px;
  font-family: "Din", Arial, sans-serif;
  display: inline-block;
  padding: 0;
  content: ' ';
  text-align: center;
  cursor: pointer;
}
.customer-account .wrapper .sidebar .block-reorder #cart-sidebar-reorder li input[type=checkbox]:checked:after,
.sendfriend-product-send .wrapper .sidebar .block-reorder #cart-sidebar-reorder li input[type=checkbox]:checked:after {
  content: '\00D7';
}
.customer-account .wrapper .sidebar .block-reorder .block-content .actions,
.sendfriend-product-send .wrapper .sidebar .block-reorder .block-content .actions {
  margin-top: 15px;
  border-bottom: 3px solid #4f2b1c;
  border-top: 1px dotted #4f2b1c;
  padding: 15px 0;
}
.customer-account .wrapper .sidebar .block-reorder .block-content .actions a,
.sendfriend-product-send .wrapper .sidebar .block-reorder .block-content .actions a {
  line-height: 27px;
}
.customer-account .wrapper .sidebar .block-reorder .block-content .actions .button, .customer-account .wrapper .sidebar .block-reorder .block-content .actions .button span,
.sendfriend-product-send .wrapper .sidebar .block-reorder .block-content .actions .button,
.sendfriend-product-send .wrapper .sidebar .block-reorder .block-content .actions .button span {
  font-weight: bold;
  text-transform: none;
  font-size: 16px;
  padding: 3px 5px 2px;
  color: #fff;
}

.sales-order-print #my-orders-table {
  border-top: 3px solid #4f2b1c;
}
.sales-order-print #my-orders-table * {
  text-transform: none;
  font-family: "Din", Arial, sans-serif;
}
.sales-order-print #my-orders-table tr.last td {
  border-bottom: 3px solid #4f2b1c;
}
.sales-order-print #my-orders-table td, .sales-order-print #my-orders-table th {
  vertical-align: middle;
}
.sales-order-print #my-orders-table td.total {
  text-align: right;
}
.sales-order-print #my-orders-table td.last a {
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
.sales-order-print #my-orders-table td .price {
  display: inline-block;
  /* for ::first-letter to work */
}
.sales-order-print #my-orders-table td .price::first-letter {
  font-size: 0.7em;
  letter-spacing: 1px;
  vertical-align: top;
  font-weight: bold;
}
.sales-order-print #my-orders-table td h3 {
  margin-bottom: 0;
  font-weight: bold;
  color: #4f2b1c;
  font-size: 14px;
}
.sales-order-print #my-orders-table th {
  font-size: 12px;
  background-color: transparent;
  border-bottom: 1px solid #4f2b1c;
}
.sales-order-print #my-orders-table th.total {
  min-width: 100px;
  text-align: right;
}
.sales-order-print #my-orders-table th.status {
  min-width: 100px;
}

/*
###########
Responsive
###########
*/
@media only screen and (max-width: 1000px) {
  body.customer-account .wrapper .sidebar .block-reorder #cart-sidebar-reorder li input[type=checkbox],
  body.sendfriend-product-send .wrapper .sidebar .block-reorder #cart-sidebar-reorder li input[type=checkbox] {
    float: left;
    margin-right: -26px;
  }
  body.customer-account .wrapper .sidebar .block-reorder #cart-sidebar-reorder li .product-name,
  body.sendfriend-product-send .wrapper .sidebar .block-reorder #cart-sidebar-reorder li .product-name {
    float: left;
    width: 100%;
    padding-left: 26px;
  }

  body.customer-account #my-reviews-table tr td:nth-child(4), body.customer-account #my-reviews-table colgroup col:nth-child(4) {
    display: none;
  }
}
@media only screen and (max-width: 770px) {
  .customer-account .wrapper .sidebar .block-account .block-content {
    margin: 0px;
    padding: 0px;
  }
  .customer-account .wrapper .sidebar .block-account .block-content ul li {
    border-bottom: 1px solid #F4F4F4;
    margin: 0;
    padding: 0 0 0 10px;
    cursor: pointer;
  }
  .customer-account .wrapper .sidebar .block-account .block-content ul li.last {
    border-bottom: 0px;
  }
  .customer-account .wrapper .sidebar .block-account .block-content ul li a {
    line-height: 40px;
    display: block;
  }
  .customer-account .wrapper .sidebar .block-account .block-content ul li a:hover {
    text-decoration: none;
  }
  .customer-account .wrapper .sidebar .block-account .block-content ul li:hover {
    background-color: #F4F4F4;
  }
}
@media only screen and (max-width: 770px) {
  .customer-account .wrapper .sidebar .block-account .block-content ul li.current a strong .wrapper .account-login .col2-set,
  .sendfriend-product-send .wrapper .sidebar .block-account .block-content ul li.current a strong
  body.customer-account-login .wrapper .account-login .col2-set {
    padding: 0 10px 20px 10px;
    height: auto;
    display: block;
  }
  .customer-account .wrapper .sidebar .block-account .block-content ul li.current a strong .wrapper .account-login .col2-set .col-1,
  .sendfriend-product-send .wrapper .sidebar .block-account .block-content ul li.current a strong
  body.customer-account-login .wrapper .account-login .col2-set .col-1 {
    border: 0;
    padding: 0 0 10px;
    width: 100%;
    float: none;
  }
  .customer-account .wrapper .sidebar .block-account .block-content ul li.current a strong .wrapper .account-login .col2-set .col-1:after,
  .sendfriend-product-send .wrapper .sidebar .block-account .block-content ul li.current a strong
  body.customer-account-login .wrapper .account-login .col2-set .col-1:after {
    border: 10px solid #ffffff;
    border-radius: 30px;
    font-weight: bold;
    height: 60px;
    width: 60px;
    position: initial;
    right: auto;
    left: auto;
    top: auto;
    display: block;
    margin: 0px auto -51px auto;
  }
  .customer-account .wrapper .sidebar .block-account .block-content ul li.current a strong .wrapper .account-login .col2-set .col-1:before,
  .sendfriend-product-send .wrapper .sidebar .block-account .block-content ul li.current a strong
  body.customer-account-login .wrapper .account-login .col2-set .col-1:before {
    content: none;
  }
  .customer-account .wrapper .sidebar .block-account .block-content ul li.current a strong .wrapper .account-login .col2-set .col-2,
  .sendfriend-product-send .wrapper .sidebar .block-account .block-content ul li.current a strong
  body.customer-account-login .wrapper .account-login .col2-set .col-2 {
    border-top: 5px solid #4f2b1c;
    border-left: medium none;
    height: auto;
    padding-left: 0;
    padding-top: 0;
    margin-top: 8px;
    width: 100%;
    float: none;
  }
  .customer-account .wrapper .sidebar .block-account .block-content ul li.current a strong .wrapper .account-login .col2-set .col-2:before,
  .sendfriend-product-send .wrapper .sidebar .block-account .block-content ul li.current a strong
  body.customer-account-login .wrapper .account-login .col2-set .col-2:before {
    background: #fff;
    height: 50px;
    width: 38px;
    display: block;
    content: ' ';
    position: inherit;
    right: auto;
    top: auto;
    margin: -20px auto 0 auto;
  }
  .customer-account .wrapper .sidebar .block-account .block-content ul li.current a strong .wrapper .account-login .col2-set .form-list,
  .sendfriend-product-send .wrapper .sidebar .block-account .block-content ul li.current a strong
  body.customer-account-login .wrapper .account-login .col2-set .form-list {
    border-bottom: none;
    padding-bottom: 0;
  }
  .customer-account .wrapper .sidebar .block-account .block-content ul li.current a strong .wrapper .account-login .col2-set .form-list input,
  .sendfriend-product-send .wrapper .sidebar .block-account .block-content ul li.current a strong
  body.customer-account-login .wrapper .account-login .col2-set .form-list input {
    width: 100%;
  }

  body.customer-account-create .wrapper .main .page-title h1 {
    padding: 0 10px 5px;
  }
  body.customer-account-create .wrapper .main .fieldset {
    margin: 0;
    padding: 0 10px;
    width: 100%;
  }
  body.customer-account-create .wrapper .main .fieldset p.form-instructions {
    position: inherit;
  }
  body.customer-account-create .wrapper .main .fieldset p.required {
    float: none;
    position: inherit;
    margin: 0;
  }
  body.customer-account-create .wrapper .main .fieldset .form-list {
    margin: 0 auto;
    padding: 0;
  }
  body.customer-account-create .wrapper .main .fieldset .form-list .fields {
    display: block;
    padding: 0;
    margin: 0;
  }
  body.customer-account-create .wrapper .main .fieldset .form-list .fields label {
    display: block;
    width: 100%;
    float: none;
    text-align: left;
  }
  body.customer-account-create .wrapper .main .fieldset .form-list .fields .input-box {
    display: block;
    width: 100%;
    float: none;
  }
  body.customer-account-create .wrapper .main .fieldset .form-list .fields .input-box input {
    width: 100%;
  }
  body.customer-account-create .wrapper .main .fieldset .form-list li.control .input-box {
    width: auto;
    margin: 0 20px 0 0;
    padding: 0;
  }
  body.customer-account-create .wrapper .main .fieldset .form-list li.control label {
    line-height: 35px;
  }
  body.customer-account-create .wrapper .main .fieldset + .buttons-set {
    margin: 0 auto;
  }
  body.customer-account-create .wrapper .main .fieldset + .buttons-set button {
    margin: 0 auto;
  }

  .customer-account-forgotpassword .wrapper .main .fieldset {
    margin-left: 0;
    width: 100%;
    padding: 0 5px;
  }
  .customer-account-forgotpassword .wrapper .main .fieldset h2 {
    margin-bottom: 5px;
  }
  .customer-account-forgotpassword .wrapper .main .fieldset p.form-instructions {
    position: static;
    margin-bottom: 15px;
  }
  .customer-account-forgotpassword .wrapper .main .fieldset ~ .buttons-set {
    margin: 10px 0 0;
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
  }
  .customer-account-forgotpassword .wrapper .main .fieldset p.required {
    margin-top: 0;
    position: absolute;
    top: 38px;
    right: 5px;
  }

  body.customer-account .wrapper .main .fieldset, body.customer-account .wrapper .main .fieldset + .buttons-set {
    margin-left: 0%;
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
  }
  body.customer-account .wrapper .main .my-account .product-review .product-img-box {
    width: 100%;
  }
  body.customer-account .wrapper .main .my-account .product-review .product-img-box a {
    display: inline-block;
  }
  body.customer-account .col-main {
    padding: 0 5px;
  }
}
@media only screen and (max-width: 599px) {
  /* 599 px */
  body.customer-account .wrapper .main #my-orders-table.orders tbody:last-child tr.last td,
  body.customer-account .wrapper .main #my-orders-table.linearize-table-large tbody:last-child tr.last td.last {
    border-bottom: 3px solid #4f2b1c;
  }
  body.customer-account .wrapper .main .fieldset .form-list {
    margin-left: 0;
  }
  body.customer-account .wrapper .main .fieldset .form-list label {
    width: 40%;
  }
  body.customer-account .wrapper .main .fieldset .form-list .input-box {
    width: 60%;
  }
  body.customer-account .wrapper .main .fieldset .form-list li.control {
    padding-left: 19%;
  }
  body.customer-account .wrapper .main #my-reviews-table colgroup {
    display: none;
  }
  body.customer-account .wrapper .main #my-reviews-table tr {
    display: block;
    border-bottom: 1px solid #CCCCCC;
    padding: 7px 0;
  }
  body.customer-account .wrapper .main #my-reviews-table tr:last-child {
    border-bottom: 3px solid #4f2b1c;
  }
  body.customer-account .wrapper .main #my-reviews-table tr td {
    display: block;
    padding: 2px 7px;
    border-bottom: none;
  }
  body.customer-account .wrapper .main #my-reviews-table tr td:nth-child(4) {
    display: block;
  }
  body.customer-account .wrapper .main #my-reviews-table colgroup col:nth-child(4) {
    display: table-column;
  }

  .customer-account-forgotpassword .wrapper .main .fieldset .form-list {
    margin-left: 0;
  }
  .customer-account-forgotpassword .wrapper .main .fieldset .form-list label {
    width: 100%;
    text-align: left;
  }
  .customer-account-forgotpassword .wrapper .main .fieldset .form-list .input-box {
    width: 100%;
  }
  .customer-account-forgotpassword .wrapper .main .fieldset .form-list .input-box .input-text {
    width: 100%;
  }
  .customer-account-forgotpassword .wrapper .main .fieldset ~ .buttons-set {
    display: flex;
    flex-direction: column-reverse;
  }
  .customer-account-forgotpassword .wrapper .main .fieldset ~ .buttons-set .button {
    margin-right: 0;
  }
  .customer-account-forgotpassword .wrapper .main .fieldset ~ .buttons-set p.back-link {
    width: 100%;
    padding-right: 0;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 479px) {
  body.customer-account .wrapper .main .my-account .title-buttons a, body.customer-account .wrapper .main .my-account .title-buttons span.separator {
    top: 0;
  }
  body.customer-account .wrapper .main .fieldset + .fieldset {
    margin-top: 0px;
  }
  body.customer-account .wrapper .main .fieldset .form-list label {
    width: 100%;
    text-align: left;
  }
  body.customer-account .wrapper .main .fieldset .form-list .input-box {
    width: 100%;
  }
  body.customer-account .wrapper .main .fieldset .form-list .input-box .input-text, body.customer-account .wrapper .main .fieldset .form-list .input-box select {
    width: 100%;
  }
  body.customer-account .wrapper .main .fieldset .form-list li .field:after {
    content: '';
    display: table;
    clear: both;
  }
  body.customer-account .wrapper .main .fieldset .form-list li:not(.fields):not(.control) {
    margin-bottom: 10px;
  }
  body.customer-account .wrapper .main .fieldset .form-list li.control {
    padding-left: 0px;
  }
  body.customer-account .wrapper .main .fieldset .form-list li.control input[type=checkbox] + label {
    margin-left: 15px;
    padding-right: 0;
  }
  body.customer-account .wrapper .main form .buttons-set {
    display: flex;
    flex-direction: row-reverse;
  }
  body.customer-account .wrapper .main form .buttons-set .back-link {
    display: inline-block;
  }

  .customer-account-forgotpassword .wrapper .main .fieldset ~ .buttons-set .back-link {
    display: block;
    width: 100%;
  }
}
#all-tools-block .category-container {
  clear: both;
  padding: 20px 0 10px 0;
  margin: 0 0 20px 0;
  border-bottom: 1px solid #4f2b1c;
}
#all-tools-block .category-container .category-name h1 {
  color: #4f2b1c;
  text-transform: none;
  font-size: 18px;
  font-weight: bold;
  font-family: "Din", Arial, sans-serif;
  margin: 0;
  padding: 0;
}
#all-tools-block .category-container .category-name h1 a {
  color: #4f2b1c;
}
#all-tools-block .category-container .subcategories ul {
  margin: 0;
  padding: 0;
}
#all-tools-block .category-container .subcategories ul li {
  list-style-type: none;
  display: inline-block;
  float: left;
  width: 24%;
  padding: 0;
  margin: 0 10px 0 0;
}
#all-tools-block .category-container .subcategories ul li a {
  color: #4f2b1c;
  font-size: 15px;
  font-family: "Din", Arial, sans-serif;
  font-style: normal;
}
#all-tools-block .category-container.with-image .subcategories {
  display: block;
  float: left;
  width: 760px;
}
#all-tools-block .category-container.with-image .subcategories ul li {
  width: 31%;
}
#all-tools-block .category-container .category-image {
  float: right;
  width: 185px;
  margin: 0;
  padding: 0;
}
#all-tools-block .category-container .category-image img {
  width: 185px;
  height: 185px;
}
#all-tools-block .category-container .divider {
  clear: both;
}

body.cms-page-view .std h1 {
  font-size: 18px;
  font-weight: bold;
  color: #4f2b1c;
  border-bottom: 1px solid #4f2b1c;
  padding-bottom: 3px;
  margin: 15px 0;
  text-transform: none;
}
body.cms-page-view .std h2 {
  border-bottom: 0;
  font-size: 16px;
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
}
body.cms-page-view .std p {
  font-style: normal;
  font-size: 16px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
body.cms-page-view .std p a {
  text-decoration: underline;
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
body.cms-page-view .std p ul li {
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
body.cms-page-view .std li {
  color: #4f2b1c;
  font-size: 16px;
  font-style: normal;
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
body.cms-page-view .std .col-1 {
  float: left;
  width: 49%;
}
body.cms-page-view .std .col-2 {
  float: right;
  width: 49%;
}
body.cms-page-view .std .set-col-3.col {
  float: left;
  width: 32%;
  margin-right: 1%;
}
body.cms-page-view .std .set-col-3.col:last-of-type {
  margin: 0;
}
body.cms-page-view .std .set-col-3.col:last-of-type:after {
  content: '-';
  width: 100%;
  display: block;
  clear: both;
  text-indent: -99999px;
  padding-bottom: 25px;
}
body.cms-page-view .std .row-col .col-1 {
  float: left;
  width: 8.33333%;
}
body.cms-page-view .std .row-col .col-2 {
  float: left;
  width: 16.66667%;
}
body.cms-page-view .std .row-col .col-3 {
  float: left;
  width: 25%;
}
body.cms-page-view .std .row-col .col-4 {
  float: left;
  width: 33.33333%;
}
body.cms-page-view .std .row-col .col-5 {
  float: left;
  width: 41.66667%;
}
body.cms-page-view .std .row-col .col-6 {
  float: left;
  width: 50%;
}
body.cms-page-view .std .row-col .col-7 {
  float: left;
  width: 58.33333%;
}
body.cms-page-view .std .row-col .col-8 {
  float: left;
  width: 66.66667%;
}
body.cms-page-view .std .row-col .col-9 {
  float: left;
  width: 75%;
}
body.cms-page-view .std .row-col .col-10 {
  float: left;
  width: 83.33333%;
}
body.cms-page-view .std .row-col .col-11 {
  float: left;
  width: 91.66667%;
}
body.cms-page-view .std .row-col .col-12 {
  float: left;
  width: 100%;
}

.cms-page-view .std p, .cms-no-route .std p {
  color: #4f2b1c !important;
}

body.catalogsearch-result-index .note-msg {
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
}
body.catalogsearch-result-index .search-not-found {
  padding-top: 40px;
  color: #4f2b1c;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 20px;
}
body.catalogsearch-result-index .search-not-found #all-tools-block {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #4f2b1c;
}

@media only screen and (max-width: 479px) {
  body.cms-email-sign-up .wrapper .page .main {
    position: relative;
  }
  body.cms-email-sign-up .wrapper .page .main .sign-up-main-wrapper h2 {
    margin-bottom: 15px;
    margin-top: 20px;
    line-height: 30px;
  }
  body.cms-email-sign-up .wrapper .page .main .sign-up-main-wrapper .after-description {
    max-width: 100%;
  }
  body.cms-email-sign-up .wrapper .page .main form#email-signup-form input {
    width: calc(100% - 81px) !important;
    float: left;
  }
  body.cms-email-sign-up .desktop-visible {
    display: none !important;
  }
  body.cms-email-sign-up .sign-up-main-wrapper.mobile-visible {
    display: block !important;
  }
}
body.cms-email-sign-up .wrapper .page .main .page-title h1 {
  font-size: 16px;
}
body.cms-email-sign-up .wrapper .page .main .sign-up-main-wrapper {
  float: left;
  width: 50%;
}
body.cms-email-sign-up .wrapper .page .main .sign-up-main-wrapper h2 {
  color: #4f2b1c;
  border: 0;
  font-family: Garamond3LTPro, Arial, sans-serif;
  font-size: 38px;
  margin-bottom: 5px;
}
body.cms-email-sign-up .wrapper .page .main .sign-up-main-wrapper .before-description {
  font-size: 16px;
  width: 90%;
  padding: 0px 0 15px 0;
}
body.cms-email-sign-up .wrapper .page .main .sign-up-main-wrapper .after-description {
  width: 400px;
  padding: 30px 0 15px 0;
}
body.cms-email-sign-up .wrapper .page .main .sign-up-main-wrapper .after-description ul {
  list-style-type: none;
}
body.cms-email-sign-up .wrapper .page .main .sign-up-main-wrapper .after-description ul li {
  margin-top: 10px;
  margin-left: 0px;
  style: none;
  color: #4f2b1c;
  font-style: normal;
  font-size: 20px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
body.cms-email-sign-up .wrapper .page .main .sign-up-main-wrapper .after-description p {
  font-size: 18px;
}
body.cms-email-sign-up .wrapper .page .main .sign-up-main-wrapper .validation-advice {
  position: absolute;
  left: 0;
  margin: 32px 0 0 0;
  display: inline-block;
  width: auto;
}
body.cms-email-sign-up .wrapper .page .main .sign-up-main-wrapper form#email-signup-form input {
  border: 1px solid #4f2b1c;
  font-size: 13px;
  color: #4f2b1c;
  width: 230px;
  height: 33px;
}
body.cms-email-sign-up .wrapper .page .main .sign-up-main-wrapper form#email-signup-form button {
  margin-left: -3px;
  background: #4f2b1c;
}
body.cms-email-sign-up .wrapper .page .main .sign-up-main-wrapper form#email-signup-form button span span {
  color: #FFF;
  text-transform: none;
}
body.cms-email-sign-up .wrapper .page .main .sign-up-sidebar {
  float: right;
  width: 49%;
  padding-bottom: 20px;
}
body.cms-email-sign-up .footer-newsletter {
  display: none;
}
body.cms-email-sign-up .mobile-visible {
  display: none !important;
}

body.cms-index-noroute {
  color: #4f2b1c;
}
body.cms-index-noroute .page-title {
  padding-top: 20px;
}
body.cms-index-noroute .std .description-404 {
  border-bottom: 5px solid #4f2b1c;
  padding-bottom: 15px;
}
body.cms-index-noroute .std .description-404 a {
  text-decoration: underline;
}
body.cms-index-noroute .std ul li {
  color: #4f2b1c;
  font-style: normal;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 16px;
}

body.cms-free-catalog .std p {
  font-style: normal;
  margin-bottom: 0;
}
body.cms-free-catalog .std .col-1 {
  float: left;
  width: 57%;
}
body.cms-free-catalog .std .col-1 .validation-advice {
  margin: -20px 0 5px;
  font-size: 12px;
  font-style: normal;
}
body.cms-free-catalog .std .col-1 .form-list {
  padding-top: 25px;
  list-style-type: none;
}
body.cms-free-catalog .std .col-1 .form-list li.fields, body.cms-free-catalog .std .col-1 .form-list li.captcha-input-container, body.cms-free-catalog .std .col-1 .form-list li.captcha-img-container {
  margin: 0 0 10px 0;
}
body.cms-free-catalog .std .col-1 .form-list li.fields label, body.cms-free-catalog .std .col-1 .form-list li.captcha-input-container label, body.cms-free-catalog .std .col-1 .form-list li.captcha-img-container label {
  width: 30%;
  float: left;
  text-align: right;
  font-size: 16px;
  font-family: "Din", Arial, sans-serif;
  color: #4f2b1c;
  font-style: normal;
}
body.cms-free-catalog .std .col-1 .form-list li.fields .input-box, body.cms-free-catalog .std .col-1 .form-list li.captcha-input-container .input-box, body.cms-free-catalog .std .col-1 .form-list li.captcha-img-container .input-box {
  float: left;
  text-align: left;
  width: 70%;
  padding: 0 20% 0 10px;
}
body.cms-free-catalog .std .col-1 .form-list li.fields .input-box input, body.cms-free-catalog .std .col-1 .form-list li.captcha-input-container .input-box input, body.cms-free-catalog .std .col-1 .form-list li.captcha-img-container .input-box input {
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #4f2b1c;
  border: 1px solid #4f2b1c;
  max-width: 100%;
  width: 100%;
  margin-bottom: 15px;
}
body.cms-free-catalog .std .col-1 .form-list li.fields .input-box input.validation-failed, body.cms-free-catalog .std .col-1 .form-list li.captcha-input-container .input-box input.validation-failed, body.cms-free-catalog .std .col-1 .form-list li.captcha-img-container .input-box input.validation-failed {
  border: 1px solid #DF280A;
}
body.cms-free-catalog .std .col-1 .form-list li.fields .input-box select, body.cms-free-catalog .std .col-1 .form-list li.captcha-input-container .input-box select, body.cms-free-catalog .std .col-1 .form-list li.captcha-img-container .input-box select {
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #4f2b1c;
  height: 30px;
  background: #FFF url("../images/select-arrow.png") center right no-repeat;
  border: 1px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0px 5px;
  margin: 0;
  line-height: 30px;
  margin-bottom: 15px;
}
body.cms-free-catalog .std .col-1 .form-list li.fields .input-box select.validation-failed, body.cms-free-catalog .std .col-1 .form-list li.captcha-input-container .input-box select.validation-failed, body.cms-free-catalog .std .col-1 .form-list li.captcha-img-container .input-box select.validation-failed {
  border: 1px solid #DF280A;
}
body.cms-free-catalog .std .col-1 .form-list li.fields .input-box select:focus, body.cms-free-catalog .std .col-1 .form-list li.captcha-input-container .input-box select:focus, body.cms-free-catalog .std .col-1 .form-list li.captcha-img-container .input-box select:focus {
  box-shadow: 0px 0 3px 1px #7D7D81;
  border: 1px solid #ccc;
}
body.cms-free-catalog .std .col-1 .form-list .captcha-img-container {
  padding: 0 30% 0 10px;
}
body.cms-free-catalog .std .col-1 .form-list .captcha-img-container .captcha-image {
  float: right;
  margin: 0;
  padding-left: 44%;
  width: 100%;
}
body.cms-free-catalog .std .col-1 .buttons-set {
  text-align: left;
  padding-left: 182px;
}
body.cms-free-catalog .std .col-1 .buttons-set button {
  float: none;
  margin: 0 auto 0 auto;
  background: #cc2027 !important;
  color: #FFF !important;
  width: auto;
  min-width: 0;
  font-weight: normal;
}
body.cms-free-catalog .std .col-1 .email-offers {
  display: block;
  clear: both;
  padding: 0 0px 60px 150px;
}
body.cms-free-catalog .std .col-1 .email-offers input {
  border: 1px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 30px;
  width: 30px;
  float: left;
  margin: 5px 5px 0 0;
}
body.cms-free-catalog .std .col-1 .email-offers input:checked:after {
  content: 'x';
  display: block;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
}
body.cms-free-catalog .std .col-1 .email-offers label {
  float: left;
  margin-left: 40px;
  margin-top: -35px;
}
body.cms-free-catalog .std .col-1 .email-offers label span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
body.cms-free-catalog .std .col-1 .email-offers label span a {
  text-decoration: underline;
}
body.cms-free-catalog .std .col-2 {
  float: right;
  width: 410px;
}

.gw-cms-sidebar .gw-category-after-facets {
  margin-top: 30px;
  border-top: 1px solid #cac7a7;
  padding-top: 30px;
}
.gw-cms-sidebar .gw-category-after-facets:before {
  content: 'More info';
  padding-bottom: 0;
  margin: 0;
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.2;
  text-transform: none;
  clear: both;
  display: inline-block;
}
.gw-cms-sidebar .categories-nav ul {
  margin-bottom: 15px;
}
.gw-cms-sidebar .categories-nav ul li {
  position: relative;
}
.gw-cms-sidebar .categories-nav ul li.highlight {
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
}
.gw-cms-sidebar .categories-nav ul li.more {
  cursor: pointer;
  display: inline-block;
}
.gw-cms-sidebar .categories-nav ul li.more:hover > .more-categories {
  display: block;
}
.gw-cms-sidebar .categories-nav ul.more-categories {
  display: none;
  position: absolute;
  background: #cac7a7;
  border: 1px solid #4f2b1c;
  padding: 10px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.4);
  z-index: 2;
  right: -150px;
  top: 0;
}

body.cms-free-catalog .std .col-1 .recaptcha {
  margin-bottom: 20px;
  width: 350px;
}

body.cms-tell-a-friend .std .col-1,
body.cms-customer-service .std .col-1,
body.cms-contact .std .col-1 {
  float: none;
  width: 75%;
}
body.cms-tell-a-friend .std .col-1 ul,
body.cms-customer-service .std .col-1 ul,
body.cms-contact .std .col-1 ul {
  list-style-type: none;
  padding-top: 30px;
}
body.cms-tell-a-friend .std .col-1 ul li, body.cms-tell-a-friend .std .col-1 ul li .field,
body.cms-customer-service .std .col-1 ul li,
body.cms-customer-service .std .col-1 ul li .field,
body.cms-contact .std .col-1 ul li,
body.cms-contact .std .col-1 ul li .field {
  margin: 0;
  padding: 5px 0;
  min-height: 40px;
  clear: both;
  width: 100%;
}
body.cms-tell-a-friend .std .col-1 ul li label, body.cms-tell-a-friend .std .col-1 ul li .field label,
body.cms-customer-service .std .col-1 ul li label,
body.cms-customer-service .std .col-1 ul li .field label,
body.cms-contact .std .col-1 ul li label,
body.cms-contact .std .col-1 ul li .field label {
  width: 48%;
  float: left;
  text-align: right;
}
body.cms-tell-a-friend .std .col-1 ul li label span, body.cms-tell-a-friend .std .col-1 ul li label em, body.cms-tell-a-friend .std .col-1 ul li .field label span, body.cms-tell-a-friend .std .col-1 ul li .field label em,
body.cms-customer-service .std .col-1 ul li label span,
body.cms-customer-service .std .col-1 ul li label em,
body.cms-customer-service .std .col-1 ul li .field label span,
body.cms-customer-service .std .col-1 ul li .field label em,
body.cms-contact .std .col-1 ul li label span,
body.cms-contact .std .col-1 ul li label em,
body.cms-contact .std .col-1 ul li .field label span,
body.cms-contact .std .col-1 ul li .field label em {
  float: right;
}
body.cms-tell-a-friend .std .col-1 ul li label span.sub-label, body.cms-tell-a-friend .std .col-1 ul li label em.sub-label, body.cms-tell-a-friend .std .col-1 ul li .field label span.sub-label, body.cms-tell-a-friend .std .col-1 ul li .field label em.sub-label,
body.cms-customer-service .std .col-1 ul li label span.sub-label,
body.cms-customer-service .std .col-1 ul li label em.sub-label,
body.cms-customer-service .std .col-1 ul li .field label span.sub-label,
body.cms-customer-service .std .col-1 ul li .field label em.sub-label,
body.cms-contact .std .col-1 ul li label span.sub-label,
body.cms-contact .std .col-1 ul li label em.sub-label,
body.cms-contact .std .col-1 ul li .field label span.sub-label,
body.cms-contact .std .col-1 ul li .field label em.sub-label {
  display: block;
  width: 100%;
  text-align: left;
  float: none;
  line-height: 15px;
  font-weight: normal;
  font-size: 14px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
body.cms-tell-a-friend .std .col-1 ul li .input-box, body.cms-tell-a-friend .std .col-1 ul li .field .input-box,
body.cms-customer-service .std .col-1 ul li .input-box,
body.cms-customer-service .std .col-1 ul li .field .input-box,
body.cms-contact .std .col-1 ul li .input-box,
body.cms-contact .std .col-1 ul li .field .input-box {
  width: 50%;
  float: right;
}
body.cms-tell-a-friend .std .col-1 ul li .input-box input, body.cms-tell-a-friend .std .col-1 ul li .input-box textarea, body.cms-tell-a-friend .std .col-1 ul li .input-box select, body.cms-tell-a-friend .std .col-1 ul li .field .input-box input, body.cms-tell-a-friend .std .col-1 ul li .field .input-box textarea, body.cms-tell-a-friend .std .col-1 ul li .field .input-box select,
body.cms-customer-service .std .col-1 ul li .input-box input,
body.cms-customer-service .std .col-1 ul li .input-box textarea,
body.cms-customer-service .std .col-1 ul li .input-box select,
body.cms-customer-service .std .col-1 ul li .field .input-box input,
body.cms-customer-service .std .col-1 ul li .field .input-box textarea,
body.cms-customer-service .std .col-1 ul li .field .input-box select,
body.cms-contact .std .col-1 ul li .input-box input,
body.cms-contact .std .col-1 ul li .input-box textarea,
body.cms-contact .std .col-1 ul li .input-box select,
body.cms-contact .std .col-1 ul li .field .input-box input,
body.cms-contact .std .col-1 ul li .field .input-box textarea,
body.cms-contact .std .col-1 ul li .field .input-box select {
  padding: 0;
  width: 100%;
  border: 1px solid #4f2b1c;
  max-width: 100%;
}
body.cms-tell-a-friend .std .col-1 ul li .input-box textarea, body.cms-tell-a-friend .std .col-1 ul li .field .input-box textarea,
body.cms-customer-service .std .col-1 ul li .input-box textarea,
body.cms-customer-service .std .col-1 ul li .field .input-box textarea,
body.cms-contact .std .col-1 ul li .input-box textarea,
body.cms-contact .std .col-1 ul li .field .input-box textarea {
  margin-top: 10px;
  height: 110px;
  margin-bottom: 0;
}
body.cms-tell-a-friend .std .col-1 ul li .input-box select, body.cms-tell-a-friend .std .col-1 ul li .field .input-box select,
body.cms-customer-service .std .col-1 ul li .input-box select,
body.cms-customer-service .std .col-1 ul li .field .input-box select,
body.cms-contact .std .col-1 ul li .input-box select,
body.cms-contact .std .col-1 ul li .field .input-box select {
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #4f2b1c;
  height: 30px;
  background: #FFF url("../images/select-arrow.png") center right no-repeat;
  border: 1px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0px 5px;
  margin: 0;
  line-height: 30px;
  width: 100%;
}
body.cms-tell-a-friend .std .col-1 ul li .input-box select.validation-failed, body.cms-tell-a-friend .std .col-1 ul li .field .input-box select.validation-failed,
body.cms-customer-service .std .col-1 ul li .input-box select.validation-failed,
body.cms-customer-service .std .col-1 ul li .field .input-box select.validation-failed,
body.cms-contact .std .col-1 ul li .input-box select.validation-failed,
body.cms-contact .std .col-1 ul li .field .input-box select.validation-failed {
  border: 1px solid #DF280A;
}
body.cms-tell-a-friend .std .col-1 ul li .input-box select:focus, body.cms-tell-a-friend .std .col-1 ul li .field .input-box select:focus,
body.cms-customer-service .std .col-1 ul li .input-box select:focus,
body.cms-customer-service .std .col-1 ul li .field .input-box select:focus,
body.cms-contact .std .col-1 ul li .input-box select:focus,
body.cms-contact .std .col-1 ul li .field .input-box select:focus {
  box-shadow: 0px 0 3px 1px #7D7D81;
  border: 1px solid #ccc;
}
body.cms-tell-a-friend .std .col-1 ul li.captcha-input-container, body.cms-tell-a-friend .std .col-1 ul li .field.captcha-input-container,
body.cms-customer-service .std .col-1 ul li.captcha-input-container,
body.cms-customer-service .std .col-1 ul li .field.captcha-input-container,
body.cms-contact .std .col-1 ul li.captcha-input-container,
body.cms-contact .std .col-1 ul li .field.captcha-input-container {
  padding-top: 15px;
}
body.cms-tell-a-friend .std .col-1 ul li.captcha-img-container, body.cms-tell-a-friend .std .col-1 ul li .field.captcha-img-container,
body.cms-customer-service .std .col-1 ul li.captcha-img-container,
body.cms-customer-service .std .col-1 ul li .field.captcha-img-container,
body.cms-contact .std .col-1 ul li.captcha-img-container,
body.cms-contact .std .col-1 ul li .field.captcha-img-container {
  padding-left: 50%;
}
body.cms-tell-a-friend .std .col-1 ul li.captcha-img-container .captcha-image, body.cms-tell-a-friend .std .col-1 ul li .field.captcha-img-container .captcha-image,
body.cms-customer-service .std .col-1 ul li.captcha-img-container .captcha-image,
body.cms-customer-service .std .col-1 ul li .field.captcha-img-container .captcha-image,
body.cms-contact .std .col-1 ul li.captcha-img-container .captcha-image,
body.cms-contact .std .col-1 ul li .field.captcha-img-container .captcha-image {
  float: right;
  display: inline;
  max-width: 100%;
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}
body.cms-tell-a-friend .std .col-1 ul li:last-of-type:after, body.cms-tell-a-friend .std .col-1 ul li .field:last-of-type:after,
body.cms-customer-service .std .col-1 ul li:last-of-type:after,
body.cms-customer-service .std .col-1 ul li .field:last-of-type:after,
body.cms-contact .std .col-1 ul li:last-of-type:after,
body.cms-contact .std .col-1 ul li .field:last-of-type:after {
  content: '';
  display: block;
  clear: both;
  width: 100%;
  float: none;
}
body.cms-tell-a-friend .std .col-1 .recaptcha,
body.cms-customer-service .std .col-1 .recaptcha,
body.cms-contact .std .col-1 .recaptcha {
  float: right;
  padding-bottom: 20px;
}
body.cms-tell-a-friend .std .col-1 .buttons-set,
body.cms-customer-service .std .col-1 .buttons-set,
body.cms-contact .std .col-1 .buttons-set {
  clear: both;
}
body.cms-tell-a-friend .std .col-1 .email-offers,
body.cms-customer-service .std .col-1 .email-offers,
body.cms-contact .std .col-1 .email-offers {
  clear: both;
}
body.cms-tell-a-friend .std .col-1 .email-offers input,
body.cms-customer-service .std .col-1 .email-offers input,
body.cms-contact .std .col-1 .email-offers input {
  border: 1px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 30px;
  width: 30px;
  float: left;
  margin: 5px 5px 0 0;
}
body.cms-tell-a-friend .std .col-1 .email-offers input:checked:after,
body.cms-customer-service .std .col-1 .email-offers input:checked:after,
body.cms-contact .std .col-1 .email-offers input:checked:after {
  content: 'x';
  display: block;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
}
body.cms-tell-a-friend .std .col-1 .email-offers label,
body.cms-customer-service .std .col-1 .email-offers label,
body.cms-contact .std .col-1 .email-offers label {
  float: right;
  width: 90%;
  padding-bottom: 30px;
}
body.cms-tell-a-friend .std .col-1 .email-offers label span,
body.cms-customer-service .std .col-1 .email-offers label span,
body.cms-contact .std .col-1 .email-offers label span {
  display: block;
  font-weight: normal;
  line-height: 15px;
  font-size: 14px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
body.cms-tell-a-friend .std .col-1 #contactForm,
body.cms-customer-service .std .col-1 #contactForm,
body.cms-contact .std .col-1 #contactForm {
  padding: 0;
}
body.cms-tell-a-friend .std .col-1 #contactForm .form-list,
body.cms-customer-service .std .col-1 #contactForm .form-list,
body.cms-contact .std .col-1 #contactForm .form-list {
  padding: 0;
}

@media only screen and (max-width: 770px) {
  .home-products-container ul li:last-child {
    display: none;
  }

  body.cms-contact .std .contact-form .col-1 {
    width: 95%;
  }
}
@media only screen and (max-width: 479px) {
  body.cms-contact .std .contact-form .col-1 {
    width: 100%;
  }
  body.cms-contact .std .contact-form .col-1 ul li label, body.cms-contact .std .contact-form .col-1 ul li .field label {
    width: 100%;
    float: none;
    text-align: left;
  }
  body.cms-contact .std .contact-form .col-1 ul li .input-box, body.cms-contact .std .contact-form .col-1 ul li .field .input-box {
    width: 100%;
    float: none;
  }
  body.cms-contact .std .contact-form .col-1 .recaptcha {
    margin: auto;
    width: 304px;
    float: none;
    padding-bottom: 10px;
    overflow: inherit !important;
    transform: scale(0.99);
    -webkit-transform: scale(0.99);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
}
body.cms-email-preferences h1 {
  padding-top: 0;
  margin-top: 0 !important;
}
body.cms-email-preferences ul.form-list li {
  list-style-type: none;
  padding: 0 0 15px 0;
  margin: 0;
}
body.cms-email-preferences ul.form-list li .input-box {
  display: block;
  width: 100%;
  line-height: 25px;
  padding: 0;
  margin: 0 0 5px 0;
}
body.cms-email-preferences ul.form-list li .input-box input[type=radio] {
  border: 1px solid #4f2b1c;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 25px;
  width: 25px;
  float: left;
  margin: 0 5px 0 0;
}
body.cms-email-preferences ul.form-list li .input-box input[type=radio]:checked:after {
  content: 'x';
  display: block;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
}

body.cms-all-tools .main .col-main .all-tools .container .column {
  display: inline-block;
  float: left;
  width: 32%;
}
body.cms-all-tools .main .col-main .all-tools .container .column ul li {
  list-style-type: none;
  margin-left: 0;
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
}
body.cms-all-tools .main .col-main .all-tools .container .column ul li.highlight a {
  font-weight: bold;
  font-size: 15px;
}

body.customer-account-resetpassword .fieldset {
  margin-top: 0 !important;
}
body.customer-account-resetpassword .fieldset .form-list .fields .field {
  clear: both;
  height: 50px;
  margin: 0;
}
body.customer-account-resetpassword .fieldset .form-list .fields .field label {
  padding-right: 10px;
}

.col-1 {
  float: left;
  width: 49%;
}

.col-2 {
  float: right;
  width: 49%;
}

.set-col-3.col {
  float: left;
  width: 32%;
  margin-right: 1%;
}
.set-col-3.col:last-of-type {
  margin: 0;
}
.set-col-3.col:last-of-type:after {
  content: '-';
  width: 100%;
  display: block;
  clear: both;
  text-indent: -99999px;
  padding-bottom: 25px;
}

.row-col .col-1 {
  float: left;
  width: 8.33333%;
}
.row-col .col-2 {
  float: left;
  width: 16.66667%;
}
.row-col .col-3 {
  float: left;
  width: 25%;
}
.row-col .col-4 {
  float: left;
  width: 33.33333%;
}
.row-col .col-5 {
  float: left;
  width: 41.66667%;
}
.row-col .col-6 {
  float: left;
  width: 50%;
}
.row-col .col-7 {
  float: left;
  width: 58.33333%;
}
.row-col .col-8 {
  float: left;
  width: 66.66667%;
}
.row-col .col-9 {
  float: left;
  width: 75%;
}
.row-col .col-10 {
  float: left;
  width: 83.33333%;
}
.row-col .col-11 {
  float: left;
  width: 91.66667%;
}
.row-col .col-12 {
  float: left;
  width: 100%;
}

/*
###########
Responsive
###########
*/
@media only screen and (max-width: 985px) {
  body.cms-free-catalog .std .col-1 .email-offers {
    padding-left: 0;
  }
  body.cms-free-catalog .std .col-1 .buttons-set {
    text-align: center;
    padding-left: 0;
  }
  body.cms-free-catalog .std .col-1 .recaptcha {
    width: 100%;
  }
  body.cms-free-catalog .std .col-2 {
    width: 35%;
  }
  body.cms-free-catalog .std .col-2 img {
    width: 100%;
  }
}
@media only screen and (max-width: 770px) {
  body.cms-page-view .std {
    padding: 0 10px;
  }
  body.cms-page-view .std p img {
    display: none;
  }
  body.cms-page-view .sidebar {
    display: none;
  }

  body.cms-tell-a-friend .std .col-1 {
    width: 100%;
    float: none;
    margin: 0 auto;
  }
  body.cms-tell-a-friend .std .col-1 ul li {
    line-height: normal;
    padding-bottom: 15px;
  }
  body.cms-tell-a-friend .std .col-1 ul li label {
    width: 100%;
    float: none;
    text-align: left;
    padding-bottom: 5px;
  }
  body.cms-tell-a-friend .std .col-1 ul li label span {
    float: none;
  }
  body.cms-tell-a-friend .std .col-1 ul li .input-box {
    width: 100%;
    float: none;
    padding: 0;
  }

  body.cms-email-sign-up .wrapper .page .main {
    padding-left: 10px;
    padding-right: 10px;
  }
  body.cms-email-sign-up .wrapper .page .main .breadcrumbs {
    display: block;
    margin: 10px 0 0 0 !important;
  }
  body.cms-email-sign-up .wrapper .page .main .sign-up-main-wrapper {
    width: 100%;
    float: none;
  }
  body.cms-email-sign-up .wrapper .page .main .sign-up-sidebar {
    width: 100%;
    float: none;
  }

  body.cms-all-tools .main .breadcrumbs {
    display: block;
    margin: 10px 0 0 10px !important;
  }
  body.cms-all-tools .main .col-main:before {
    content: 'All Tools';
    display: block;
    padding: 10px 0 0 10px;
    font-size: 18px;
    font-family: "Din", Arial, sans-serif;
    font-weight: 500;
  }
  body.cms-all-tools .main .col-main .all-tools .container .column {
    width: 100%;
    float: none;
    display: block;
  }
  body.cms-all-tools .main .col-main .all-tools .container .column br {
    display: none;
  }

  #all-tools-block {
    margin: 5px 0 0 0;
    padding: 0 0 0 0;
    border-top: 5px solid #4f2b1c;
    border-bottom: 5px solid #4f2b1c;
  }
  #all-tools-block .category-container {
    clear: both;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #4f2b1c;
  }
  #all-tools-block .category-container:last-of-type {
    border: 0;
  }
  #all-tools-block .category-container .category-image {
    display: none;
  }
  #all-tools-block .category-container .category-name h1 {
    color: #4f2b1c;
    text-transform: none;
    font-size: 18px;
    font-weight: bold;
    font-family: "Din", Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  #all-tools-block .category-container .category-name h1 a {
    color: #4f2b1c;
    display: block;
    position: relative;
    padding: 12px 10px 2px 10px;
    border: 0;
    line-height: 15px;
  }
  #all-tools-block .category-container .category-name h1 a:after {
    content: '>';
    display: block;
    left: auto;
    right: 10px;
    border: 0;
    width: 9px;
    height: 17px;
    background: url("../images/ico-responsive-menu-arrow.png") 0 0 no-repeat;
    position: absolute;
    top: 9px;
    text-indent: -99999px;
  }
  #all-tools-block .category-container .category-name h1 a:hover {
    background: #cac7a7;
    text-decoration: none;
  }
  #all-tools-block .category-container .subcategories {
    display: none;
    background: #dbd9c4;
    border-top: 1px solid #4f2b1c;
  }
  #all-tools-block .category-container .subcategories ul li {
    float: none;
    display: block;
    width: 100%;
    border-bottom: 1px solid #cac7a7;
  }
  #all-tools-block .category-container .subcategories ul li a {
    display: block;
    padding: 10px 10px 0 20px;
    line-height: 15px;
    font-size: 14px;
  }
  #all-tools-block .category-container.uncollapsed .category-name a {
    background: #cac7a7;
  }
  #all-tools-block .category-container.uncollapsed .category-name a:after {
    background: url("../images/ico-responsive-menu-arrow-opened.png") 0 0 no-repeat;
    width: 11px;
    height: 6px;
    top: 11px;
  }

  body.cms-free-catalog .main .page-title h1 {
    padding-left: 10px;
    padding-right: 10px;
  }
  body.cms-free-catalog .main .col-1 {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: block;
    float: none;
  }
  body.cms-free-catalog .main .col-1 .form-list li.fields .input-box, body.cms-free-catalog .main .col-1 .form-list li.captcha-input-container .input-box {
    width: 70%;
    padding-right: 20%;
  }
  body.cms-free-catalog .main .col-1 .form-list li.fields label, body.cms-free-catalog .main .col-1 .form-list li.captcha-input-container label {
    width: 30%;
  }
  body.cms-free-catalog .main .col-1 .form-list .captcha-img-container .captcha-image {
    margin: 0 20% 0 0;
  }
  body.cms-free-catalog .main .col-1:after {
    content: '-';
    display: block;
    clear: both;
    border-bottom: 1px solid #cac7a7;
    text-indent: -999999px;
  }
  body.cms-free-catalog .main .col-2 {
    width: 100%;
    margin: 0 auto;
    padding: 30px 0 30px 0;
    display: block;
    float: none;
    clear: both;
  }
}
@media only screen and (max-width: 479px) {
  body.cms-tell-a-friend .std .col-1 ul li label {
    display: block;
    text-align: left;
    width: 100%;
  }
  body.cms-tell-a-friend .std .col-1 ul li .input-box {
    width: 100%;
    float: none;
    padding: 0;
  }
  body.cms-tell-a-friend .std .col-1 ul li.captcha-img-container {
    padding-left: 0;
  }

  body.cms-free-catalog .main .col-1 .form-list li.fields, body.cms-free-catalog .main .col-1 .form-list li.captcha-input-container {
    margin: 0;
  }
  body.cms-free-catalog .main .col-1 .form-list li.fields .input-box, body.cms-free-catalog .main .col-1 .form-list li.captcha-input-container .input-box {
    width: 100%;
    padding: 0;
    float: none;
  }
  body.cms-free-catalog .main .col-1 .form-list li.fields .input-box input, body.cms-free-catalog .main .col-1 .form-list li.fields .input-box select, body.cms-free-catalog .main .col-1 .form-list li.captcha-input-container .input-box input, body.cms-free-catalog .main .col-1 .form-list li.captcha-input-container .input-box select {
    width: 100%;
  }
  body.cms-free-catalog .main .col-1 .form-list li.fields label, body.cms-free-catalog .main .col-1 .form-list li.captcha-input-container label {
    width: 100%;
    float: none;
    display: block;
    text-align: left;
  }
  body.cms-free-catalog .main .col-1 .form-list .captcha-img-container .captcha-image {
    margin: 0;
    float: none;
  }
  body.cms-free-catalog .main .col-1 .email-offers {
    padding-left: 0;
    margin: 0;
    margin-bottom: 50px;
  }
}
.sendfriend-product-send .wrapper .col-right.sidebar {
  width: 20%;
}
.sendfriend-product-send .wrapper .col-right.sidebar .block {
  width: auto;
  float: left;
}
.sendfriend-product-send .wrapper .col-right.sidebar .block:first-of-type {
  padding-top: 11px;
}
.sendfriend-product-send .wrapper .send-friend .fieldset {
  margin: 15px 0;
  float: left;
  width: 100%;
}
.sendfriend-product-send .wrapper .send-friend .fieldset h2.legend {
  margin: 0;
  margin-bottom: 0.5em;
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: none;
  border-bottom: 1px solid #CCCCCC;
  margin: 0 0 1.5em 5%;
}
.sendfriend-product-send .wrapper .send-friend .fieldset .form-list {
  padding: 0 0 0 5%;
}
.sendfriend-product-send .wrapper .send-friend .fieldset .form-list li {
  float: left;
  width: 100%;
}
.sendfriend-product-send .wrapper .send-friend .fieldset .form-list li .field {
  content: '';
  display: table;
  clear: both;
  min-height: 40px;
  width: 100%;
  display: block;
}
.sendfriend-product-send .wrapper .send-friend .fieldset .form-list li label {
  width: 30%;
  text-align: right;
  padding-right: 10px;
}
.sendfriend-product-send .wrapper .send-friend .fieldset .form-list li .input-box {
  width: 70%;
  text-align: left;
}
.sendfriend-product-send .wrapper .send-friend .fieldset .form-list li textarea.input-text {
  width: 300px;
  min-height: 76px;
}
.sendfriend-product-send .wrapper .send-friend .fieldset #recipients_options li {
  position: relative;
  margin-bottom: 10px;
}
.sendfriend-product-send .wrapper .send-friend .fieldset #recipients_options li .field:last-of-type {
  margin-bottom: 0;
}
.sendfriend-product-send .wrapper .send-friend .fieldset #recipients_options li > p {
  position: absolute;
  right: 0;
  top: 15px;
}
.sendfriend-product-send .wrapper .send-friend .fieldset #recipients_options .field {
  min-height: 32px;
}
.sendfriend-product-send .wrapper .send-friend .fieldset #recipients_options .additional-row {
  padding-top: 10px;
  border-top: 1px dotted #CCCCCC;
}
.sendfriend-product-send .wrapper .send-friend .fieldset #recipients_options .btn-remove {
  width: auto;
  height: auto;
  font-size: 12px;
  border: none;
  color: #4f2b1c;
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
.sendfriend-product-send .wrapper .send-friend .fieldset #recipients_options .btn-remove:hover {
  background-color: transparent;
}
.sendfriend-product-send .wrapper .send-friend .fieldset #recipients_options .btn-remove::after {
  display: none;
}
.sendfriend-product-send .wrapper .send-friend .fieldset .recaptcha {
  margin: 0 auto;
  padding-left: 44px;
  width: 350px;
}
.sendfriend-product-send .wrapper .send-friend .buttons-set p.back-link {
  width: 33.5%;
  padding-right: 3%;
  text-align: right;
}
.sendfriend-product-send .wrapper .send-friend .buttons-set p.back-link a {
  float: none;
  font-weight: bold;
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: #A0A0A0;
  border: 1px solid #A0A0A0;
  padding: 2px 6px 1px;
  vertical-align: middle;
}
.sendfriend-product-send .wrapper .send-friend .buttons-set p.back-link a:hover {
  text-decoration: none;
  background: #f4f4f4;
}
.sendfriend-product-send .wrapper .send-friend .buttons-set button {
  float: left;
  margin: 0 3% 0 0;
}
.sendfriend-product-send .wrapper .send-friend .buttons-set button[type=submit] {
  background-color: #cc2027;
}
.sendfriend-product-send .wrapper .send-friend .buttons-set button[type=submit] span {
  color: #FFF;
}
.sendfriend-product-send .wrapper .send-friend .buttons-set button[type=submit]:hover, .sendfriend-product-send .wrapper .send-friend .buttons-set button[type=submit]:focus {
  background-color: #a0191f;
}
.sendfriend-product-send .wrapper .send-friend .buttons-set button[type=submit]:active {
  background-color: #8a161a;
}
.sendfriend-product-send .wrapper .send-friend .buttons-set .limit {
  margin-top: 7px;
  float: right;
  font-family: "Garamond3LTPro", Arial, sans-serif;
}

/*
###########
Responsive
###########
*/
@media only screen and (max-width: 1000px) {
  /* 1000px */
}
@media only screen and (max-width: 770px) {
  /* 770px */
  body.sendfriend-product-send .wrapper .send-friend .fieldset {
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
  }
  body.sendfriend-product-send .wrapper .send-friend .fieldset h2.legend {
    font-weight: normal;
    text-transform: uppercase;
    margin-left: 0;
  }
  body.sendfriend-product-send .wrapper .send-friend .fieldset .form-list {
    padding-left: 0;
  }
  body.sendfriend-product-send .wrapper .send-friend .fieldset ~ .buttons-set {
    padding-left: 5px;
    padding-right: 5px;
  }
  body.sendfriend-product-send .wrapper .main .sidebar {
    width: 100%;
  }
  body.sendfriend-product-send .wrapper .main .sidebar .block {
    float: none;
  }
}
@media only screen and (max-width: 599px) {
  /* 599 px */
  body.sendfriend-product-send .wrapper .send-friend .fieldset .form-list .field:after {
    content: '';
    display: table;
    clear: both;
  }
  body.sendfriend-product-send .wrapper .send-friend .fieldset .form-list label {
    width: 75%;
    text-align: left;
  }
  body.sendfriend-product-send .wrapper .send-friend .fieldset .form-list div.input-box {
    width: 100%;
  }
  body.sendfriend-product-send .wrapper .send-friend .fieldset .form-list div.input-box .input-text {
    width: 100%;
    max-width: none;
  }
  body.sendfriend-product-send .wrapper .send-friend .fieldset #recipients_options li {
    margin-bottom: 20px;
  }
  body.sendfriend-product-send .wrapper .send-friend .fieldset #recipients_options li > p {
    top: 6px;
  }
  body.sendfriend-product-send .wrapper .send-friend .fieldset ~ .buttons-set {
    display: flex;
  }
}
@media only screen and (max-width: 479px) {
  /* 479px */
  body.sendfriend-product-send .wrapper .send-friend .fieldset ~ .buttons-set {
    display: flex;
    flex-direction: column-reverse;
  }
  body.sendfriend-product-send .wrapper .send-friend .fieldset ~ .buttons-set button {
    margin-top: 10px;
  }
  body.sendfriend-product-send .wrapper .send-friend .fieldset ~ .buttons-set .back-link {
    width: 100%;
    display: block;
    padding-right: 0;
    margin-top: 20px;
  }
}
.wishlist-index-index .wrapper .my-wishlist .page-title {
  margin-bottom: 3px;
}
.wishlist-index-index .wrapper .my-wishlist .page-title h1 {
  font-size: 18px;
  border-bottom-width: 6px;
  margin-bottom: 3px;
  padding-bottom: 12px;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-view-form .fieldset {
  margin-top: 4px;
  margin-bottom: 4px;
  margin-left: 0;
  width: 100%;
}
.wishlist-index-index .wrapper .my-wishlist .buttons-set .button-secondary {
  padding: 8px 15px 3px;
}
.wishlist-index-index .wrapper .my-wishlist .buttons-set .button-secondary span {
  color: #fff;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table {
  font-family: "Din", Arial, sans-serif;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table th {
  text-transform: capitalize;
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-size: 12px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr {
  border-top: 1px solid #CCCCCC;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table td {
  vertical-align: middle;
  padding: 10px 5px;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table td:first-of-type {
  padding-left: 0;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table td:last-of-type {
  padding-right: 0;
  text-align: center;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table td .product-image {
  border: none;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table td .product-name a {
  font-family: "Din", Arial, sans-serif;
  font-weight: bold;
  font-color: #4f2b1c;
  text-transform: none;
  color: #4f2b1c;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table td .product-name a:hover {
  text-decoration: underline;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table td .button, .wishlist-index-index .wrapper .my-wishlist #wishlist-table td .button span {
  font-weight: bold;
  text-transform: none;
  font-size: 16px;
  padding: 3px 5px 1px;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table td .button-secondary, .wishlist-index-index .wrapper .my-wishlist #wishlist-table td .button-secondary span {
  color: #fff;
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table td .item-manage .button {
  padding: 2px 5px;
  line-height: 20px;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table td .item-manage .button span {
  font-size: 14px;
  font-weight: normal;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table td.customer-wishlist-item-cart {
  width: auto;
  max-width: 120px;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table td .wishlist-sku {
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table td .input-text {
  font-weight: bold;
  font-size: 14px;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table td .price-box {
  text-align: right;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table td .price {
  font-family: "Din", Arial, sans-serif;
  font-weight: bold;
  color: #4f2b1c;
  display: inline-block;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table td .price::first-letter {
  font-size: 0.7em;
  letter-spacing: 1px;
  vertical-align: top;
  font-weight: bold;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table td .special-price .price {
  color: #cc2027;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table td .old-price .price {
  text-decoration: line-through;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table td .btn-remove2 {
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  background: none;
  text-indent: 0;
  width: auto;
  height: auto !important;
  line-height: auto !important;
  text-transform: none;
  display: inline;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table textarea {
  border-color: #4f2b1c;
  height: 45px;
  font-family: "Din", Arial, sans-serif;
  font-size: 13px;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table textarea::-webkit-input-placeholder {
  text-transform: none;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table textarea:-moz-placeholder {
  /* Firefox 18- */
  text-transform: none;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table textarea::-moz-placeholder {
  /* Firefox 19+ */
  text-transform: none;
}
.wishlist-index-index .wrapper .my-wishlist #wishlist-table textarea:-ms-input-placeholder {
  text-transform: none;
}

/*
###########
Responsive
###########
*/
@media only screen and (max-width: 1000px) {
  /* 1000px */
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td .button {
    min-width: 92px;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td .button span {
    padding-left: 0;
    padding-right: 0;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-image {
    width: 75px;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-image img {
    width: 70px;
    height: 70px;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-info a {
    font-size: 16px;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-remove {
    position: absolute;
    margin-top: 113px;
    right: 8%;
  }
}
@media only screen and (max-width: 770px) {
  /* 770px */
  body.customer-account.wishlist-index-index .wrapper .my-wishlist .wishlist-view-form .fieldset {
    padding: 0;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table thead {
    display: none;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr {
    display: block;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr.first {
    border-top: none;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td {
    display: inline-block;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-image {
    width: 15%;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-image img {
    width: 80px;
    height: 80px;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-info {
    width: 51%;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-quantity {
    width: 10%;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-price {
    width: 22%;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-price:after {
    content: '';
    display: table;
    clear: both;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-cart {
    width: 210px;
    max-width: none;
    float: left;
    display: block;
    clear: left;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-cart:before {
    content: '';
    display: table;
    clear: both;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-cart .cart-cell {
    float: left;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-cart p {
    float: left;
    margin-left: 3%;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-remove {
    position: static;
    margin-top: 0;
    right: 0;
    float: left;
    width: auto;
    display: block;
    margin-top: 12px;
  }
}
@media only screen and (max-width: 599px) {
  /* 599 px */
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-image {
    display: none;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-info {
    width: 61%;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-price {
    width: 27%;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table ~ .buttons-set button {
    padding: 8px 5px 3px 6px;
    min-width: 143px;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table ~ .buttons-set button.btn-update {
    margin-left: 0;
  }
}
@media only screen and (max-width: 479px) {
  /* 479px */
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-image {
    display: inline-block;
    width: 30%;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-image img {
    width: 90px;
    height: 90px;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-info {
    width: 69%;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-info:after {
    content: '';
    display: table;
    clear: both;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-quantity {
    float: left;
    display: block;
    clear: left;
    width: 15%;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-quantity:before {
    content: '';
    display: table;
    clear: both;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-price {
    width: 85%;
    float: right;
    display: block;
    clear: right;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-price div.price-box {
    margin: 4px 0 0 0;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-price div.price-box p {
    margin-bottom: 0;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table tbody tr td.customer-wishlist-item-price:before {
    display: none;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table ~ .buttons-set {
    display: block;
  }
  body.customer-account.wishlist-index-index .wrapper .my-wishlist #wishlist-table ~ .buttons-set button {
    float: none;
    width: 100%;
    display: block;
    margin: 0 0 15px 0;
  }
}
.catalog-product-compare-index .page-title .link-print, .catalog-product-compare-index .buttons-set .button {
  display: inline-block;
  padding: 3px 7px 1px;
  background-color: #cc2027;
  color: #fff;
  font-family: "Din", Arial, sans-serif;
  font-size: 14px;
  line-height: 22px;
}
.catalog-product-compare-index .page-title .link-print:hover, .catalog-product-compare-index .buttons-set .button:hover {
  text-decoration: none;
  background-color: #b61d23;
}
.catalog-product-compare-index .page-title .link-print, .catalog-product-compare-index .buttons-set .button, .catalog-product-compare-index .page-title .link-print span, .catalog-product-compare-index .buttons-set .button span {
  text-transform: uppercase;
}

.wrapper .main .sidebar .block-compare .block-title,
.wrapper .main .sidebar .block-wishlist .block-title {
  border-width: 0 0 3px;
  border-style: solid;
  border-color: #4f2b1c;
  padding-bottom: 6px;
}
.wrapper .main .sidebar .block-compare .block-title span,
.wrapper .main .sidebar .block-wishlist .block-title span {
  color: #4f2b1c;
  text-transform: none;
  font-weight: bold;
  font-size: 16px;
}
.wrapper .main .sidebar .block-compare .block-title span small,
.wrapper .main .sidebar .block-wishlist .block-title span small {
  float: right;
  color: #4f2b1c;
  font-weight: bold;
}
.wrapper .main .sidebar .block-compare .block-content #compare-items .item, .wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .item,
.wrapper .main .sidebar .block-wishlist .block-content #compare-items .item,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .item {
  padding-bottom: 2px;
  margin: 7px 0;
  border-bottom: 1px dotted #4f2b1c;
}
.wrapper .main .sidebar .block-compare .block-content #compare-items .item a.btn-remove, .wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .item a.btn-remove,
.wrapper .main .sidebar .block-wishlist .block-content #compare-items .item a.btn-remove,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .item a.btn-remove {
  border-radius: 10px;
  border-color: #4f2b1c;
  border-width: 1px;
}
.wrapper .main .sidebar .block-compare .block-content #compare-items .item a.btn-remove:hover, .wrapper .main .sidebar .block-compare .block-content #compare-items .item a.btn-remove:focus, .wrapper .main .sidebar .block-compare .block-content #compare-items .item a.btn-remove:active, .wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .item a.btn-remove:hover, .wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .item a.btn-remove:focus, .wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .item a.btn-remove:active,
.wrapper .main .sidebar .block-wishlist .block-content #compare-items .item a.btn-remove:hover,
.wrapper .main .sidebar .block-wishlist .block-content #compare-items .item a.btn-remove:focus,
.wrapper .main .sidebar .block-wishlist .block-content #compare-items .item a.btn-remove:active,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .item a.btn-remove:hover,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .item a.btn-remove:focus,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .item a.btn-remove:active {
  background-color: #4f2b1c;
}
.wrapper .main .sidebar .block-compare .block-content #compare-items .item a.btn-remove:after, .wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .item a.btn-remove:after,
.wrapper .main .sidebar .block-wishlist .block-content #compare-items .item a.btn-remove:after,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .item a.btn-remove:after {
  content: '\00D7';
  display: inline-block;
  color: #4f2b1c;
  font-weight: normal;
  font-family: "Din", Arial, sans-serif;
  font-size: 15px;
  line-height: 20px;
  width: 18px;
  height: 18px;
  text-align: center;
}
.wrapper .main .sidebar .block-compare .block-content #compare-items .item a.btn-remove:hover:after, .wrapper .main .sidebar .block-compare .block-content #compare-items .item a.btn-remove:focus:after, .wrapper .main .sidebar .block-compare .block-content #compare-items .item a.btn-remove:active:after, .wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .item a.btn-remove:hover:after, .wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .item a.btn-remove:focus:after, .wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .item a.btn-remove:active:after,
.wrapper .main .sidebar .block-wishlist .block-content #compare-items .item a.btn-remove:hover:after,
.wrapper .main .sidebar .block-wishlist .block-content #compare-items .item a.btn-remove:focus:after,
.wrapper .main .sidebar .block-wishlist .block-content #compare-items .item a.btn-remove:active:after,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .item a.btn-remove:hover:after,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .item a.btn-remove:focus:after,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .item a.btn-remove:active:after {
  color: #fff;
}
.wrapper .main .sidebar .block-compare .block-content #compare-items .product-name, .wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .product-name,
.wrapper .main .sidebar .block-wishlist .block-content #compare-items .product-name,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .product-name {
  margin-bottom: 5px;
}
.wrapper .main .sidebar .block-compare .block-content #compare-items .product-name a, .wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .product-name a,
.wrapper .main .sidebar .block-wishlist .block-content #compare-items .product-name a,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .product-name a {
  text-transform: none;
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
  font-weight: normal;
  font-size: 14px;
}
.wrapper .main .sidebar .block-compare .block-content #compare-items .product-name a:hover, .wrapper .main .sidebar .block-compare .block-content #compare-items .product-name a:focus, .wrapper .main .sidebar .block-compare .block-content #compare-items .product-name a:active, .wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .product-name a:hover, .wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .product-name a:focus, .wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .product-name a:active,
.wrapper .main .sidebar .block-wishlist .block-content #compare-items .product-name a:hover,
.wrapper .main .sidebar .block-wishlist .block-content #compare-items .product-name a:focus,
.wrapper .main .sidebar .block-wishlist .block-content #compare-items .product-name a:active,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .product-name a:hover,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .product-name a:focus,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .product-name a:active {
  text-decoration: underline;
}
.wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .link-cart,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .link-cart {
  text-transform: none;
  border: none;
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
.wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .product-name,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .product-name {
  margin-bottom: 8px;
}
.wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .product-image,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .product-image {
  margin-bottom: 5px;
}
.wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .product-image:hover,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .product-image:hover {
  border-color: #4f2b1c;
}
.wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .price-box,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .price-box {
  float: right;
}
.wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .price-box:after,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .price-box:after {
  content: '';
  display: table;
  clear: both;
}
.wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .price-box .price,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .price-box .price {
  color: #4f2b1c;
  display: inline-block;
}
.wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .price-box .price::first-letter,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .price-box .price::first-letter {
  font-size: 0.7em;
  letter-spacing: 1px;
  vertical-align: top;
  font-weight: bold;
}
.wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .price-box .special-price,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .price-box .special-price {
  padding-left: 0.5em;
}
.wrapper .main .sidebar .block-compare .block-content #wishlist-sidebar .price-box .special-price .price,
.wrapper .main .sidebar .block-wishlist .block-content #wishlist-sidebar .price-box .special-price .price {
  color: #cc2027;
}
.wrapper .main .sidebar .block-compare .block-content .actions,
.wrapper .main .sidebar .block-wishlist .block-content .actions {
  margin-top: 15px;
  border-bottom: 3px solid #4f2b1c;
  padding-bottom: 15px;
}
.wrapper .main .sidebar .block-compare .block-content .actions a,
.wrapper .main .sidebar .block-wishlist .block-content .actions a {
  line-height: 27px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
.wrapper .main .sidebar .block-compare .block-content .actions .button, .wrapper .main .sidebar .block-compare .block-content .actions .button span,
.wrapper .main .sidebar .block-wishlist .block-content .actions .button,
.wrapper .main .sidebar .block-wishlist .block-content .actions .button span {
  font-weight: bold;
  text-transform: none;
  font-size: 16px;
  padding: 3px 5px 2px;
  color: #fff;
}

.catalog-product-compare-index > div:first-child {
  display: table;
}
.catalog-product-compare-index .page-title {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #4f2b1c;
}
.catalog-product-compare-index .page-title h1 {
  display: inline-block;
  border-bottom: none;
  margin: 0 20px 0 0;
}
.catalog-product-compare-index #product_comparison * {
  font-family: "Din", Arial, sans-serif;
  text-transform: none;
  color: #4f2b1c;
}
.catalog-product-compare-index #product_comparison .btn-remove {
  border: none;
  width: auto;
  height: auto;
  font-size: 12px;
  line-height: 1.5em;
  color: #4f2b1c;
}
.catalog-product-compare-index #product_comparison .btn-remove:hover {
  background-color: transparent;
}
.catalog-product-compare-index #product_comparison .btn-remove:after {
  content: '\00D7';
  color: #4f2b1c;
  font-weight: normal;
  display: inline-block;
  line-height: 16px;
  width: 17px;
  height: 17px;
  font-size: 15px;
  text-align: center;
  margin-left: 4px;
  border-radius: 10px;
  border-color: #4f2b1c;
  border-width: 1px;
  border-style: solid;
}
.catalog-product-compare-index #product_comparison .btn-remove:hover:after, .catalog-product-compare-index #product_comparison .btn-remove:focus:after, .catalog-product-compare-index #product_comparison .btn-remove:active:after {
  background-color: #4f2b1c;
  color: #fff;
}
.catalog-product-compare-index #product_comparison td, .catalog-product-compare-index #product_comparison th {
  border-style: dotted;
  border-width: 0 1px 1px 0;
  border-color: #ccc;
}
.catalog-product-compare-index #product_comparison td.last {
  border-right: none;
}
.catalog-product-compare-index #product_comparison thead td {
  text-align: left;
}
.catalog-product-compare-index #product_comparison tbody .product-image {
  border: none;
  display: block;
}
.catalog-product-compare-index #product_comparison tbody .product-name {
  margin: 6px 0 3px 0;
}
.catalog-product-compare-index #product_comparison tbody .product-name a {
  line-height: 1.25em;
  font-size: 16px;
  font-weight: bold;
}
.catalog-product-compare-index #product_comparison tbody .product-name a:hover {
  text-decoration: underline;
}
.catalog-product-compare-index #product_comparison tbody .price-box {
  text-align: right;
}
.catalog-product-compare-index #product_comparison tbody .price-box:after {
  content: '';
  display: table;
  clear: both;
}
.catalog-product-compare-index #product_comparison tbody .price-box .price {
  color: #4f2b1c;
  display: inline-block;
  font-weight: bold;
}
.catalog-product-compare-index #product_comparison tbody .price-box .price::first-letter {
  font-size: 0.7em;
  letter-spacing: 1px;
  vertical-align: top;
  font-weight: bold;
}
.catalog-product-compare-index #product_comparison tbody .price-box .special-price .price {
  color: #cc2027;
}
.catalog-product-compare-index #product_comparison tbody .price-box p {
  float: none !important;
}
.catalog-product-compare-index #product_comparison tbody .add-to-row.last .price-box {
  margin: 0 0 10px 0;
}
.catalog-product-compare-index #product_comparison tbody .product-shop-row.top td {
  padding-bottom: 34px;
  position: relative;
}
.catalog-product-compare-index #product_comparison tbody .product-shop-row.top td .price-box {
  position: absolute;
  bottom: 0;
  right: 10px;
}
.catalog-product-compare-index #product_comparison tbody .product-shop-row.bottom td, .catalog-product-compare-index #product_comparison tbody .add-to-row.last td {
  padding-top: 10px;
}
.catalog-product-compare-index #product_comparison tbody .product-shop-row.bottom p, .catalog-product-compare-index #product_comparison tbody .add-to-row.last p {
  float: left;
}
.catalog-product-compare-index #product_comparison tbody .product-shop-row.bottom .add-to-links, .catalog-product-compare-index #product_comparison tbody .add-to-row.last .add-to-links {
  margin: 4px 0;
  float: right;
  text-align: right;
}
.catalog-product-compare-index #product_comparison tbody .product-shop-row.bottom .add-to-links a, .catalog-product-compare-index #product_comparison tbody .add-to-row.last .add-to-links a {
  padding: 0;
  font-size: 13px;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  width: auto;
}
.catalog-product-compare-index #product_comparison tbody .product-shop-row.bottom .button, .catalog-product-compare-index #product_comparison tbody .add-to-row.last .button {
  background: #cac7a7;
  height: 30px;
  padding: 0 8px;
}
.catalog-product-compare-index #product_comparison tbody .product-shop-row.bottom .button:hover, .catalog-product-compare-index #product_comparison tbody .add-to-row.last .button:hover {
  background: #c0bd97;
}
.catalog-product-compare-index #product_comparison tbody .product-shop-row.bottom .button:active, .catalog-product-compare-index #product_comparison tbody .add-to-row.last .button:active {
  background: #b7b387;
}
.catalog-product-compare-index #product_comparison tbody .product-shop-row.bottom .button:focus, .catalog-product-compare-index #product_comparison tbody .add-to-row.last .button:focus {
  box-shadow: 0 0 1px #8a161a;
}
.catalog-product-compare-index #product_comparison tbody .product-shop-row.bottom .button span, .catalog-product-compare-index #product_comparison tbody .add-to-row.last .button span {
  font-family: "Din", Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #4f2b1c;
  text-decoration: none;
  text-transform: none;
}
.catalog-product-compare-index #product_comparison tbody .std, .catalog-product-compare-index #product_comparison tbody .std * {
  font-size: 18px;
  line-height: 1.2;
  font-family: "Garamond3LTPro", Arial, sans-serif;
}
.catalog-product-compare-index .buttons-set {
  border: none;
}
.catalog-product-compare-index .buttons-set .button {
  float: left;
  margin-left: 0;
}

@media only screen and (max-width: 770px) {
  .wrapper .main .sidebar div[class^="block-"] .block-title, .wrapper .main .sidebar div[class*=" block-"] .block-title {
    z-index: 1923;
    border: none;
    padding-bottom: 0px;
  }
}
@media print {
  #product_comparison thead, .buttons-set, .link-print, .product-shop-row.bottom, .add-to-row p, .add-to-row .add-to-links {
    display: none !important;
  }
}
body.catalogsearch-result-index .note-msg {
  color: #4f2b1c;
  font-family: "Din", Arial, sans-serif;
}
body.catalogsearch-result-index .search-not-found {
  padding-top: 40px;
  color: #4f2b1c;
  font-family: "Garamond3LTPro", Arial, sans-serif;
  font-size: 20px;
}
body.catalogsearch-result-index .search-not-found #all-tools-block {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #4f2b1c;
}

body.nsearch-index-index .nxt-related {
  padding-bottom: 10px;
}
body.nsearch-index-index .products-grid {
  clear: both;
}
body.nsearch-index-index div.category-products .products-grid li .product-info .price-box .price {
  display: block;
}
body.nsearch-index-index div.category-products .products-grid li .product-info .price-box .special-price .price {
  padding-left: 5px;
}

body.cms-search-no-result .wrapper .page .main .breadcrumbs,
body.nsearch-index-index .wrapper .page .main .breadcrumbs {
  display: none !important;
}
body.cms-search-no-result .wrapper .page .main .page-title,
body.nsearch-index-index .wrapper .page .main .page-title {
  margin: 20px 0 0 0 !important;
}
body.cms-search-no-result .wrapper .page .main .page-title h1,
body.nsearch-index-index .wrapper .page .main .page-title h1 {
  border: 0;
  margin: 0 0 5px 0;
  font-size: 18px;
}
body.cms-search-no-result .wrapper .page .main .did-you-mean a,
body.nsearch-index-index .wrapper .page .main .did-you-mean a {
  font-family: "Din", Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #3399CC;
  text-decoration: none;
}
body.cms-search-no-result .wrapper .page .main .did-you-mean a span,
body.nsearch-index-index .wrapper .page .main .did-you-mean a span {
  text-decoration: underline;
}
body.cms-search-no-result .wrapper .page .main form .search label,
body.nsearch-index-index .wrapper .page .main form .search label {
  font-size: 18px;
}
body.cms-search-no-result .wrapper .page .main form .search .input-box,
body.nsearch-index-index .wrapper .page .main form .search .input-box {
  margin-top: 10px;
}
body.cms-search-no-result .wrapper .page .main form .search .input-box input.input-text,
body.nsearch-index-index .wrapper .page .main form .search .input-box input.input-text {
  width: 300px;
  border: 1px solid #4f2b1c;
  height: 31px;
  margin-right: -4px;
  color: #4f2b1c;
  font-size: 16px;
  vertical-align: middle;
  line-height: 33px;
  -moz-transition: width 0.2s;
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
}
body.cms-search-no-result .wrapper .page .main form .search .input-box button.button,
body.nsearch-index-index .wrapper .page .main form .search .input-box button.button {
  background: url("../images/btn-search.png") 0 0 no-repeat;
  width: 37px;
  height: 31px;
  border: #4f2b1c;
}
body.cms-search-no-result .wrapper .page .main form .search .input-box button.button span, body.cms-search-no-result .wrapper .page .main form .search .input-box button.button span span,
body.nsearch-index-index .wrapper .page .main form .search .input-box button.button span,
body.nsearch-index-index .wrapper .page .main form .search .input-box button.button span span {
  text-indent: -9999px;
  display: block;
}
body.cms-search-no-result .wrapper .page .main form .search .input-box button.button::before,
body.nsearch-index-index .wrapper .page .main form .search .input-box button.button::before {
  content: none;
}
body.cms-search-no-result .wrapper .page .main #recommendation-zone-wrapper,
body.nsearch-index-index .wrapper .page .main #recommendation-zone-wrapper {
  margin-top: 50px;
  padding-top: 15px;
  border-top: 5px solid #4f2b1c;
}
body.cms-search-no-result .wrapper .page .main #recommendation-zone-wrapper:before,
body.nsearch-index-index .wrapper .page .main #recommendation-zone-wrapper:before {
  border: 0;
}

/*
###########
Responsive
###########
*/
@media only screen and (max-width: 770px) {
  body.catalogsearch-result-index .main .breadcrumbs {
    display: block;
    margin: 10px 0 0 10px !important;
  }
  body.catalogsearch-result-index .main .page-title {
    margin-bottom: 0;
  }
  body.catalogsearch-result-index .main .page-title h1 {
    padding-left: 10px;
    padding-right: 10px;
  }
  body.catalogsearch-result-index .main .sidebar .block {
    margin: 0;
  }
  body.catalogsearch-result-index .main .sidebar .block .block-content {
    margin: 0;
  }
  body.catalogsearch-result-index .main .sidebar .block .block-content .block-subtitle--filter {
    color: #4f2b1c;
    font-family: "Din", Arial, sans-serif;
    text-transform: none;
    border-bottom: 1px solid #cac7a7;
    background: #FFF;
  }
  body.catalogsearch-result-index .main .sidebar .block .block-content .block-subtitle--filter:after {
    background: url("../images/ico-responsive-menu-arrow.png") center center no-repeat;
    border: 0;
    width: 9px;
    height: 11px;
    top: 15px;
  }
  body.catalogsearch-result-index .main .sidebar .block .block-content .block-subtitle--filter.active {
    background: #cac7a7;
  }
  body.catalogsearch-result-index .main .sidebar .block .block-content .block-subtitle--filter.active:after {
    background: url("../images/ico-responsive-menu-arrow-opened.png") center center no-repeat;
    width: 11px;
    height: 6px;
    top: 15px;
  }
  body.catalogsearch-result-index .main .sidebar .block .block-content dl {
    background: #dbd9c4;
    border: 0;
    padding: 0 10px;
  }
  body.catalogsearch-result-index .main .sidebar .block .block-content dl dt {
    padding-top: 0;
  }
  body.catalogsearch-result-index .main .sidebar .block .block-content dl dt:after {
    content: none;
  }
  body.catalogsearch-result-index .main .sidebar .block .block-content dl dt:hover {
    background: transparent;
    color: #4f2b1c;
  }
  body.catalogsearch-result-index .main .sidebar .block .block-content dl dd ol li a {
    background: transparent;
    padding: 5px 0 0 0;
    margin: 0;
  }
  body.catalogsearch-result-index .main .sidebar .block .block-content dl dd ol li a:hover {
    background: #cac7a7;
  }
  body.catalogsearch-result-index .main .toolbar {
    height: 80px;
  }
  body.catalogsearch-result-index .main .toolbar .count-container {
    position: absolute;
    margin: 36px 0 0 10px;
  }
  body.catalogsearch-result-index .main .toolbar .count-container p.amount {
    font-weight: normal;
    font-size: 16px;
    width: 70px;
    overflow: hidden;
    word-wrap: break-word;
    height: 24px;
  }
  body.catalogsearch-result-index .main .toolbar .sorter .sort-by {
    float: none;
    margin: 0 auto;
    padding: 0 10px;
  }
  body.catalogsearch-result-index .main .toolbar .sorter .sort-by select {
    width: 100%;
  }
  body.catalogsearch-result-index .main .toolbar .sorter .sort-by .sort-by-switcher {
    display: none;
  }
  body.catalogsearch-result-index .main .toolbar .pager {
    float: right;
    width: auto;
    margin: 0;
    padding: 0 10px;
  }
  body.catalogsearch-result-index .main .toolbar .pager .pages a.view-all {
    display: none;
  }
  body.catalogsearch-result-index .main .toolbar .pager .pages ol li a.next {
    background: url("../images/ico-responsive-menu-arrow.png") center center no-repeat;
  }
  body.catalogsearch-result-index .main .toolbar .pager .pages ol li a.next img {
    display: none;
  }
  body.catalogsearch-result-index .main .toolbar .pager .pages ol li a.previous {
    background: url("../images/ico-responsive-menu-arrow-prev.png") center center no-repeat;
  }
  body.catalogsearch-result-index .main .toolbar .pager .pages ol li a.previous img {
    display: none;
  }
  body.catalogsearch-result-index .main .products-grid span.divider {
    content: '-';
    display: inline-block;
    height: 5px;
    clear: none;
    width: 15px;
    background: #FFF;
    margin: 0;
    padding: 0;
    float: left;
  }
  body.catalogsearch-result-index .main .toolbar-bottom .sort-by, body.catalogsearch-result-index .main .toolbar-bottom .count-container {
    display: none;
  }
}
@media only screen and (max-width: 770px) {
  body.catalogsearch-result-index
  .note-msg, .search-not-found {
    padding: 20px 10px 20px 10px;
  }
}
@media only screen and (max-width: 479px) {
  body.catalogsearch-result-index .main ul.products-grid li {
    float: none;
    display: block;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #4f2b1c;
  }
  body.catalogsearch-result-index .main ul.products-grid li:hover {
    background: #cac7a7;
  }
  body.catalogsearch-result-index .main ul.products-grid li .product-image {
    width: 35%;
    display: block;
    float: left;
  }
  body.catalogsearch-result-index .main ul.products-grid li .product-image img {
    width: 100%;
    height: auto;
  }
  body.catalogsearch-result-index .main ul.products-grid li .product-info {
    width: 62%;
    float: right;
  }
  body.catalogsearch-result-index .main ul.products-grid li .product-info h2.product-name a {
    padding-top: 0;
  }
  body.catalogsearch-result-index .main ul.products-grid li .product-info .review-container {
    padding: 0;
  }
  body.catalogsearch-result-index .main ul.products-grid li .product-info .price-box {
    border: 0;
    padding: 0;
    margin: 0;
  }
  body.catalogsearch-result-index .main ul.products-grid li .product-info .actions {
    position: relative;
    line-height: 15px;
  }
  body.catalogsearch-result-index .main ul.products-grid li .product-info .actions button.btn-cart,
  body.catalogsearch-result-index .main ul.products-grid li .product-info .actions a.view-details {
    text-indent: -999999px;
    height: 0;
    width: 0;
    padding: 0;
    margin: 0;
  }
  body.catalogsearch-result-index .main ul.products-grid li .product-info .actions button.btn-cart:after,
  body.catalogsearch-result-index .main ul.products-grid li .product-info .actions a.view-details:after {
    content: 'In Stock';
    display: block;
    text-indent: 0;
    color: #cc2027;
    z-index: 1;
    position: absolute;
    text-transform: none;
    font-size: 14px;
    font-weight: normal;
    left: 0;
    text-align: left;
    margin-top: -8px;
    margin-left: -5px;
    top: 0;
  }
  body.catalogsearch-result-index .main ul.products-grid li .product-info .actions a.more-info {
    display: none;
  }
  body.catalogsearch-result-index .main ul.products-grid li .product-info .custom-info {
    display: none;
  }
  body.catalogsearch-result-index .main ul.products-grid .divider {
    display: none;
  }
  body.catalogsearch-result-index .block-viewed #recently-viewed-items .item {
    float: none;
    width: 100%;
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid;
    margin-right: 1.96%;
  }
  body.catalogsearch-result-index .block-viewed #recently-viewed-items .item .product-image {
    width: 35%;
    display: block;
    float: left;
  }
  body.catalogsearch-result-index .block-viewed #recently-viewed-items .item .product-image img {
    width: 100%;
    height: auto;
  }
  body.catalogsearch-result-index .block-viewed #recently-viewed-items .item .product-info {
    width: 62%;
    float: right;
  }
  body.catalogsearch-result-index .block-viewed #recently-viewed-items .item .product-info h2.product-name {
    border: 0;
  }
  body.catalogsearch-result-index .block-viewed #recently-viewed-items .item .product-info h2.product-name a {
    padding-top: 0;
  }
  body.catalogsearch-result-index .block-viewed #recently-viewed-items .item .product-info .review-container {
    padding: 0;
  }
  body.catalogsearch-result-index .block-viewed #recently-viewed-items .item .product-info .price-box {
    border: 0;
    padding: 0;
    margin: 0;
  }
  body.catalogsearch-result-index .block-viewed #recently-viewed-items .item .product-info .actions {
    position: relative;
    line-height: 15px;
  }
  body.catalogsearch-result-index .block-viewed #recently-viewed-items .item .product-info .actions button.btn-cart,
  body.catalogsearch-result-index .block-viewed #recently-viewed-items .item .product-info .actions a.view-details {
    text-indent: -999999px;
    height: 0;
    width: 0;
    padding: 0;
    margin: 0;
  }
  body.catalogsearch-result-index .block-viewed #recently-viewed-items .item .product-info .actions button.btn-cart:after,
  body.catalogsearch-result-index .block-viewed #recently-viewed-items .item .product-info .actions a.view-details:after {
    content: 'In Stock';
    display: block;
    text-indent: 0;
    color: #cc2027;
    z-index: 1;
    position: absolute;
    text-transform: none;
    font-size: 14px;
    font-weight: normal;
    left: 0;
    text-align: left;
    margin-top: -8px;
    margin-left: -5px;
    top: 0;
  }
  body.catalogsearch-result-index .block-viewed #recently-viewed-items .item .product-info .actions a.more-info {
    display: none;
  }
  body.catalogsearch-result-index .block-viewed #recently-viewed-items .item .product-info .custom-info {
    display: none;
  }
}
.nxt-content {
  margin-left: 0;
}

.nxt-toolbar {
  padding-left: 0;
}

.nxt-nrf-container .nxt-nrf-suggestion {
  margin-bottom: 20px;
  color: inherit;
}
.nxt-nrf-container .page-title {
  margin-bottom: 5px !important;
}
.nxt-nrf-container .page-title h1 {
  border: 0 !important;
  font-size: 18px !important;
  margin-bottom: 0 !important;
}
.nxt-nrf-container .did-you-mean .nxt-nrf-suggestion {
  font-size: 18px !important;
  color: #006599 !important;
  font-weight: bold;
  margin-bottom: 5px;
}
.nxt-nrf-container .did-you-mean .nxt-nrf-suggestion a {
  font-size: 18px !important;
  color: #006599 !important;
  font-weight: bold;
}
.nxt-nrf-container .search label {
  font-size: 18px;
  margin-bottom: 10px;
}
.nxt-nrf-container .search input.input-text {
  height: 31px;
}
.nxt-nrf-container .search button.search-button {
  background: url("/skin/frontend/garrettwade/garrettwade/images/btn-search.png") 0 0 no-repeat;
  width: 37px;
  height: 31px;
  border: #4f2b1c;
  text-indent: -99999px;
  margin-left: -4px;
}

.nsearch-mybuys-container {
  max-width: 1004px;
  margin: 0 auto;
  display: none;
}
.nsearch-mybuys-container #recommendation-zone-wrapper:before {
  content: 'May We Suggest:';
  display: block;
  text-align: left;
  margin: 0 0 0 0;
  border-top: 5px solid #4f2b1c;
  border-bottom: 0;
  padding: 0 0 2px 0;
  font-size: 18px;
  color: #4f2b1c;
  font-weight: bold;
}
.nsearch-mybuys-container #mybuyspagezone3,
.nsearch-mybuys-container #mybuyspagezone4 {
  height: 350px;
  overflow: hidden;
}
.nsearch-mybuys-container #mybuyspagezone3 .MB_KS3 div div:first-of-type, .nsearch-mybuys-container #mybuyspagezone3 .MB_KS4 div div:first-of-type,
.nsearch-mybuys-container #mybuyspagezone4 .MB_KS3 div div:first-of-type,
.nsearch-mybuys-container #mybuyspagezone4 .MB_KS4 div div:first-of-type {
  float: left;
  width: 81.5%;
}
.nsearch-mybuys-container #mybuyspagezone3 .MB_KS3 div div:last-of-type, .nsearch-mybuys-container #mybuyspagezone3 .MB_KS4 div div:last-of-type,
.nsearch-mybuys-container #mybuyspagezone4 .MB_KS3 div div:last-of-type,
.nsearch-mybuys-container #mybuyspagezone4 .MB_KS4 div div:last-of-type {
  width: 185px;
  float: left;
}
.nsearch-mybuys-container #mybuyspagezone3 .MB_KS3 div div:last-of-type .MB_PRODUCTSLOT, .nsearch-mybuys-container #mybuyspagezone3 .MB_KS4 div div:last-of-type .MB_PRODUCTSLOT,
.nsearch-mybuys-container #mybuyspagezone4 .MB_KS3 div div:last-of-type .MB_PRODUCTSLOT,
.nsearch-mybuys-container #mybuyspagezone4 .MB_KS4 div div:last-of-type .MB_PRODUCTSLOT {
  margin-right: 0;
  display: none;
}
.nsearch-mybuys-container #mybuyspagezone3 .MB_KS3 div div:last-of-type .MB_PRODUCTSLOT:first-of-type, .nsearch-mybuys-container #mybuyspagezone3 .MB_KS4 div div:last-of-type .MB_PRODUCTSLOT:first-of-type,
.nsearch-mybuys-container #mybuyspagezone4 .MB_KS3 div div:last-of-type .MB_PRODUCTSLOT:first-of-type,
.nsearch-mybuys-container #mybuyspagezone4 .MB_KS4 div div:last-of-type .MB_PRODUCTSLOT:first-of-type {
  display: block;
}
.nsearch-mybuys-container #mybuyspagezone3 .MB_KS3 div div .MB_PRODUCTSLOT, .nsearch-mybuys-container #mybuyspagezone3 .MB_KS4 div div .MB_PRODUCTSLOT,
.nsearch-mybuys-container #mybuyspagezone4 .MB_KS3 div div .MB_PRODUCTSLOT,
.nsearch-mybuys-container #mybuyspagezone4 .MB_KS4 div div .MB_PRODUCTSLOT {
  margin-right: 1.9% !important;
  width: 185px;
}
.nsearch-mybuys-container #mybuyspagezone3 .MB_KS3 div div .MB_PRODUCTSLOT div, .nsearch-mybuys-container #mybuyspagezone3 .MB_KS4 div div .MB_PRODUCTSLOT div,
.nsearch-mybuys-container #mybuyspagezone4 .MB_KS3 div div .MB_PRODUCTSLOT div,
.nsearch-mybuys-container #mybuyspagezone4 .MB_KS4 div div .MB_PRODUCTSLOT div {
  float: none;
  width: auto;
}
.nsearch-mybuys-container #mybuyspagezone3 .MB_KS3 div div .MB_PRODUCTSLOT .MB_PRODUCTNOTDISCOUNTEDPRICEWRAPPER, .nsearch-mybuys-container #mybuyspagezone3 .MB_KS4 div div .MB_PRODUCTSLOT .MB_PRODUCTNOTDISCOUNTEDPRICEWRAPPER,
.nsearch-mybuys-container #mybuyspagezone4 .MB_KS3 div div .MB_PRODUCTSLOT .MB_PRODUCTNOTDISCOUNTEDPRICEWRAPPER,
.nsearch-mybuys-container #mybuyspagezone4 .MB_KS4 div div .MB_PRODUCTSLOT .MB_PRODUCTNOTDISCOUNTEDPRICEWRAPPER {
  border: 0;
  padding: 0;
  margin: 0;
}
.nsearch-mybuys-container #mybuyspagezone3 .MB_KS3 div div .MB_PRODUCTSLOT:last-of-type, .nsearch-mybuys-container #mybuyspagezone3 .MB_KS4 div div .MB_PRODUCTSLOT:last-of-type,
.nsearch-mybuys-container #mybuyspagezone4 .MB_KS3 div div .MB_PRODUCTSLOT:last-of-type,
.nsearch-mybuys-container #mybuyspagezone4 .MB_KS4 div div .MB_PRODUCTSLOT:last-of-type {
  margin-right: 0;
}

body.nsearch-index-index:not(.catalog-category-view) .nsearch-mybuys-container {
  display: none;
}

@media only screen and (max-width: 770px) {
  .nsearch-mybuys-container {
    max-width: 100% !important;
  }
}
@media only screen and (max-width: 479px) {
  .main .mb-content .mb-category-products .category-title .nxt-results-count {
    float: none;
  }

  body.nsearch-index-index .no-result-page {
    width: 100%;
    padding: 0 10px;
  }

  body.nsearch-index-index .wrapper .page .main form .search .input-box input.input-text {
    width: calc(100% - 37px);
  }

  .nsearch-mybuys-container #mybuyspagezone4 .MB_KS4 div div:first-of-type {
    width: 100%;
  }

  .nsearch-mybuys-container #mybuyspagezone3, .nsearch-mybuys-container #mybuyspagezone4 {
    height: auto;
    margin-left: 2%;
  }

  #recommendation-zone-wrapper .MB_PRODUCTSLOT .MB_PRODUCTIMAGELINK img {
    width: 100%;
  }

  .nsearch-mybuys-container #mybuyspagezone3 .MB_KS3 div div:last-of-type,
  .nsearch-mybuys-container #mybuyspagezone4 .MB_KS4 div div:last-of-type {
    width: 100%;
    float: none;
  }

  body.cms-search-no-result .wrapper .page .main #recommendation-zone-wrapper:before,
  body.nsearch-index-index .wrapper .page .main #recommendation-zone-wrapper:before {
    padding: 20px 10px 0 10px;
  }

  .nsearch-mybuys-container #mybuyspagezone3 .MB_KS3 div div:last-of-type .MB_PRODUCTSLOT:first-of-type,
  .nsearch-mybuys-container #mybuyspagezone4 .MB_KS4 div div:last-of-type .MB_PRODUCTSLOT:first-of-type {
    display: none;
  }

  .nsearch-mybuys-container #mybuyspagezone3 .MB_KS3 div div:last-of-type,
  .nsearch-mybuys-container #mybuyspagezone4 .MB_KS4 div div:last-of-type {
    display: none;
  }

  .nsearch-mybuys-container #mybuyspagezone4 .MB_KS4 div div .MB_PRODUCTSLOT {
    width: 48%;
    padding: 0;
    margin: 0 auto 30px auto;
    float: left;
  }
  .nsearch-mybuys-container #mybuyspagezone4 .MB_KS4 div div .MB_PRODUCTSLOT div div {
    display: block !important;
  }
}
