@import url("https://fonts.googleapis.com/css?family=Roboto:400,500,700");
html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

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

// ----------------------------------------------
*/
/* ============================================ *
 * Icons
 * ============================================ */
@font-face {
  font-family: "icons";
  src: url("../fonts/icons.eot");
  src: url("../fonts/icons.eot?#iefix") format("embedded-opentype"), url("../fonts/icons.woff") format("woff"), url("../fonts/icons.ttf") format("truetype"), url("../fonts/icons.svg#untitled-font-2") format("svg");
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: "icons" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="icon"]:before,
[class*=" icon"]:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* -------------------------------------------- *
* Icons
*/
/* ============================================ *
* Modal / Popup
* ============================================ */
/*! 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: 500;
}

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

/* ============================================ *
 * Buttons
 * ============================================ */
/* Standard Buttons */
.button,
.button2,
.cart-table .button,
.sidebar .actions .button,
.button.button-secondary,
.header-subscribe .button,
.shipping .button2,
.checkout-types .button2,
.header-subscribe .actions .button,
.button.btn-loadmore,
.checkout-types .button.btn-continue,
.shipping_info #use-for-shipping {
  background: #263F6A;
  color: #FFF;
  padding: 7px 15px;
  text-decoration: none;
  display: inline-block;
  border: 0;
  font-size: 14px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  text-transform: uppercase;
  border-radius: 10px;
}
.button:hover,
.button2:hover,
.cart-table .button:hover,
.sidebar .actions .button:hover,
.button.button-secondary:hover,
.header-subscribe .button:hover,
.shipping .button2:hover,
.checkout-types .button2:hover,
.header-subscribe .actions .button:hover,
.button.btn-loadmore:hover,
.checkout-types .button.btn-continue:hover,
.shipping_info #use-for-shipping:hover {
  background: #2d4a7d;
  cursor: pointer;
  color: #FFF;
}
.button:active,
.button2:active,
.cart-table .button:active,
.sidebar .actions .button:active,
.button.button-secondary:active,
.header-subscribe .button:active,
.shipping .button2:active,
.checkout-types .button2:active,
.header-subscribe .actions .button:active,
.button.btn-loadmore:active,
.checkout-types .button.btn-continue:active,
.shipping_info #use-for-shipping:active {
  background: #335590;
  color: #FFF;
}
.button:focus,
.button2:focus,
.cart-table .button:focus,
.sidebar .actions .button:focus,
.button.button-secondary:focus,
.header-subscribe .button:focus,
.shipping .button2:focus,
.checkout-types .button2:focus,
.header-subscribe .actions .button:focus,
.button.btn-loadmore:focus,
.checkout-types .button.btn-continue:focus,
.shipping_info #use-for-shipping:focus {
  color: #FFF;
  background: #335590;
  outline: none;
}

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

/* Cart / Call to Action Buttons */
.btn-checkout.button,
.btn-cart.button,
body.checkout-twostep-index .buttons-set .button.phase-next,
body.paypal-express-review .buttons-set .button.phase-next,
.actions .button,
.action .button,
.sidebar .btn-cart.button,
.sidebar body.checkout-twostep-index .buttons-set .button.phase-next,
body.checkout-twostep-index .buttons-set .sidebar .button.phase-next,
.sidebar body.paypal-express-review .buttons-set .button.phase-next,
body.paypal-express-review .buttons-set .sidebar .button.phase-next,
.add-to-cart-buttons .button,
.checkout-types .button,
.opc .button,
.cart-table .product-cart-actions .button,
#co-shipping-method-form .buttons-set .button,
body[class*="checkout-multishipping-"] .buttons-set .button,
#footer .block-subscribe .button,
#header-account .button,
.account-login .button,
.ndisplay .view-more .button,
.blog .read-more a {
  background: #94d700;
  color: #263F6A;
  padding: 7px 30px;
  border-radius: 10px;
  font-weight: 700;
}
.btn-checkout.button:hover,
.btn-cart.button:hover,
body.checkout-twostep-index .buttons-set .button.phase-next:hover,
body.paypal-express-review .buttons-set .button.phase-next:hover,
.actions .button:hover,
.action .button:hover,
.sidebar .btn-cart.button:hover,
.sidebar body.checkout-twostep-index .buttons-set .button.phase-next:hover,
body.checkout-twostep-index .buttons-set .sidebar .button.phase-next:hover,
.sidebar body.paypal-express-review .buttons-set .button.phase-next:hover,
body.paypal-express-review .buttons-set .sidebar .button.phase-next:hover,
.add-to-cart-buttons .button:hover,
.checkout-types .button:hover,
.opc .button:hover,
.cart-table .product-cart-actions .button:hover,
#co-shipping-method-form .buttons-set .button:hover,
body[class*="checkout-multishipping-"] .buttons-set .button:hover,
#footer .block-subscribe .button:hover,
#header-account .button:hover,
.account-login .button:hover,
.ndisplay .view-more .button:hover,
.blog .read-more a:hover {
  background: #263F6A;
  cursor: pointer;
  color: #FFFFFF;
}
.btn-checkout.button:active,
.btn-cart.button:active,
body.checkout-twostep-index .buttons-set .button.phase-next:active,
body.paypal-express-review .buttons-set .button.phase-next:active,
.actions .button:active,
.action .button:active,
.sidebar .btn-cart.button:active,
.sidebar body.checkout-twostep-index .buttons-set .button.phase-next:active,
body.checkout-twostep-index .buttons-set .sidebar .button.phase-next:active,
.sidebar body.paypal-express-review .buttons-set .button.phase-next:active,
body.paypal-express-review .buttons-set .sidebar .button.phase-next:active,
.add-to-cart-buttons .button:active,
.checkout-types .button:active,
.opc .button:active,
.cart-table .product-cart-actions .button:active,
#co-shipping-method-form .buttons-set .button:active,
body[class*="checkout-multishipping-"] .buttons-set .button:active,
#footer .block-subscribe .button:active,
#header-account .button:active,
.account-login .button:active,
.ndisplay .view-more .button:active,
.blog .read-more a:active {
  background: #263F6A;
  color: #FFFFFF;
}
.btn-checkout.button:focus,
.btn-cart.button:focus,
body.checkout-twostep-index .buttons-set .button.phase-next:focus,
body.paypal-express-review .buttons-set .button.phase-next:focus,
.actions .button:focus,
.action .button:focus,
.sidebar .btn-cart.button:focus,
.sidebar body.checkout-twostep-index .buttons-set .button.phase-next:focus,
body.checkout-twostep-index .buttons-set .sidebar .button.phase-next:focus,
.sidebar body.paypal-express-review .buttons-set .button.phase-next:focus,
body.paypal-express-review .buttons-set .sidebar .button.phase-next:focus,
.add-to-cart-buttons .button:focus,
.checkout-types .button:focus,
.opc .button:focus,
.cart-table .product-cart-actions .button:focus,
#co-shipping-method-form .buttons-set .button:focus,
body[class*="checkout-multishipping-"] .buttons-set .button:focus,
#footer .block-subscribe .button:focus,
#header-account .button:focus,
.account-login .button:focus,
.ndisplay .view-more .button:focus,
.blog .read-more a:focus {
  background-color: #263F6A;
  outline: none;
  color: #FFFFFF;
}

a.button {
  text-decoration: none;
}
a.button:hover {
  text-decoration: none;
}

/* Form Buttons */
#discount-coupon-form .button2,
.discount-coupon-form .button2,
.button.phase-back {
  background: #CCC;
  color: #263F6A;
  padding: 7px 15px;
  text-decoration: none;
  display: inline-block;
  border: 0;
  font-size: 14px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  text-transform: uppercase;
  border-radius: 10px;
}
#discount-coupon-form .button2:hover,
.discount-coupon-form .button2:hover,
.button.phase-back:hover {
  background: #bfbfbf;
  cursor: pointer;
  color: #263F6A;
}
#discount-coupon-form .button2:active,
.discount-coupon-form .button2:active,
.button.phase-back:active {
  background: #b3b3b3;
  color: #263F6A;
}
#discount-coupon-form .button2:focus,
.discount-coupon-form .button2:focus,
.button.phase-back:focus {
  color: #263F6A;
  background: #b3b3b3;
  outline: none;
}

/* Cart / Call to Action Buttons - Large */
.place-order.button {
  padding: 0px 30px;
  min-height: 40px;
  line-height: 40px;
}

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

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

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

.paypal-logo img,
.paypal-or img,
.paypal-button img {
  width: auto;
  max-width: 100%;
}

/* -------------------------------------------- *
 * Button Sets
 */
.buttons-set {
  clear: both;
  margin: 15px 0 0;
  padding-top: 15px;
  border-top: 1px solid #EDEDED;
  text-align: right;
}
.buttons-set p.required {
  margin: 0;
  margin-right: 10px;
  line-height: 33px;
  float: left;
}
.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;
}
.buttons-set:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Button - Remove / Previous
 */
.btn-remove,
.btn-previous {
  display: inline-block;
  text-align: center;
  text-shadow: none;
  color: transparent;
  position: relative;
  font-size: 0;
  line-height: 0;
}
.btn-remove:hover,
.btn-previous:hover {
  text-decoration: none;
}

.btn-remove {
  display: inline-block;
  position: relative;
  font-size: 0;
  line-height: 0;
  color: transparent;
}
.btn-remove:after {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #263F6A;
  content: "C";
}
.btn-remove:hover {
  text-decoration: none;
  opacity: 0.8;
}

.btn-remove2 {
  border: none;
  vertical-align: top;
}
.btn-remove2:hover {
  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 #333333;
  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;
}

/* ============================================ *
 * FORMS - COMMON
 * ============================================ */
/* -------------------------------------------- *
 * Fieldsets
 */
.fieldset {
  position: relative;
}
.fieldset:after {
  content: '';
  display: table;
  clear: both;
}
.fieldset h2 {
  margin: 0;
  margin-bottom: 10px;
  color: #263F6A;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  font-weight: 500;
  color: #94d700;
}
.fieldset p {
  margin-bottom: 15px;
}
.fieldset p.required {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 12px;
}

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

form .legend {
  margin: 0;
  margin-bottom: 10px;
  color: #263F6A;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 7px;
  border-bottom: 1px solid #CCCCCC;
}

/* -------------------------------------------- *
 * Input Box
 */
.input-box {
  padding-top: 2px;
}
.input-box:after {
  content: '';
  display: table;
  clear: both;
}

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

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

/* -------------------------------------------- *
 * Labels
 */
label, #wishlist-table td[data-rwd-label]:before {
  display: inline-block;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #263F6A;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.required em {
  display: none;
}

label.required em, #wishlist-table td.required[data-rwd-label]:before em,
span.required em {
  display: none;
}

label.required:after,
span.required:after {
  content: ' *';
  color: #DF280A;
  font-weight: normal;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
}

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

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

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

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

/* -------------------------------------------- *
 * Textarea
 */
textarea {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  width: 100%;
  padding: 5px;
  -webkit-appearance: none;
  border-radius: 10px;
}

/* -------------------------------------------- *
 * Inputs
 */
.input-text {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #C0C0C0;
  border-radius: 10px;
  outline: none;
  background: #FFFFFF;
  font-size: 15px;
}
.input-text:focus {
  border-colour: white;
  border-radius: 10px;
  webkit-box-shadow: 0px 0px 4px #4195fc;
  -moz-box-shadow: 0px 0px 4px #4195fc;
  box-shadow: 0px 0px 4px #4195fc;
}

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

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

input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text],
select {
  height: 30px;
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  outline: none;
}

input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  padding: 0 8px;
  -webkit-appearance: none;
  border-radius: 10px;
  outline: none;
}

/* 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
 */
.radio {
  float: left;
  margin-top: 9px;
}

.checkbox {
  float: left;
  margin-top: 5px;
}

.checkbox + label, #wishlist-table .checkbox + td[data-rwd-label]:before,
.radio + label,
#wishlist-table .radio + td[data-rwd-label]:before {
  width: auto;
  max-width: 85%;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: normal;
}

/* Large Checkbox & Radio elements for mobile / touch devices */
/* -------------------------------------------- *
 * Validation
 */
p.required,
.validation-advice {
  margin: 5px 0 0;
  color: #DF280A;
  font-size: 13px;
}

/* ============================================ *
 * Form List
 * ============================================ */
.form-list > li {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  margin-right: 0;
  max-width: 690px;
  margin-bottom: 15px;
}
.form-list > li:last-child {
  margin-right: 0;
}
.form-list .fields {
  margin-bottom: 0;
}
.form-list .field,
.form-list .wide {
  margin-bottom: 15px;
}
.form-list .control {
  margin-bottom: 7px;
}
.form-list .field {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
}
.form-list .field:last-child {
  margin-right: 0;
}
.form-list .field:last-child {
  margin-right: 0;
}
.form-list .field:nth-of-type(even) {
  margin-right: 0;
}
.form-list .input-range .input-text {
  width: 74px;
}

/* Turn the label of controls (radio/checkbox) into a button style that wraps the input */
.form-list .control,
.sp-methods dt,
#checkout-shipping-method-load .sp-methods dd,
#co-shipping-method-form .sp-methods dd,
.product-options ul.options-list {
  /* When a label is next to an input that is set to not display, we should style the label in a non-clickable state */
}
.form-list .control div.input-box,
.sp-methods dt div.input-box,
#checkout-shipping-method-load .sp-methods dd div.input-box,
#co-shipping-method-form .sp-methods dd div.input-box,
.product-options ul.options-list div.input-box {
  display: inline;
  float: left;
}
.form-list .control div.input-box:after,
.sp-methods dt div.input-box:after,
#checkout-shipping-method-load .sp-methods dd div.input-box:after,
#co-shipping-method-form .sp-methods dd div.input-box:after,
.product-options ul.options-list div.input-box:after {
  display: none;
}
.form-list .control input.radio,
.form-list .control input.checkbox,
.sp-methods dt input.radio,
.sp-methods dt input.checkbox,
#checkout-shipping-method-load .sp-methods dd input.radio,
#checkout-shipping-method-load .sp-methods dd input.checkbox,
#co-shipping-method-form .sp-methods dd input.radio,
#co-shipping-method-form .sp-methods dd input.checkbox,
.product-options ul.options-list input.radio,
.product-options ul.options-list input.checkbox {
  float: left;
  margin-right: -40px;
  margin-top: 9px;
}
.form-list .control label, .form-list .control #wishlist-table td[data-rwd-label]:before, #wishlist-table .form-list .control td[data-rwd-label]:before,
.sp-methods dt label,
.sp-methods dt #wishlist-table td[data-rwd-label]:before,
#wishlist-table .sp-methods dt td[data-rwd-label]:before,
#checkout-shipping-method-load .sp-methods dd label,
#checkout-shipping-method-load .sp-methods dd #wishlist-table td[data-rwd-label]:before,
#wishlist-table #checkout-shipping-method-load .sp-methods dd td[data-rwd-label]:before,
#co-shipping-method-form .sp-methods dd label,
#co-shipping-method-form .sp-methods dd #wishlist-table td[data-rwd-label]:before,
#wishlist-table #co-shipping-method-form .sp-methods dd td[data-rwd-label]:before,
.product-options ul.options-list label,
.product-options ul.options-list #wishlist-table td[data-rwd-label]:before,
#wishlist-table .product-options ul.options-list td[data-rwd-label]:before {
  display: inline-block;
  width: auto;
  max-width: none;
  min-width: 250px;
  float: none;
  padding: 6px 10px 6px 20px;
}
.form-list .control .no-display + label, .form-list .control #wishlist-table .no-display + td[data-rwd-label]:before, #wishlist-table .form-list .control .no-display + td[data-rwd-label]:before,
.sp-methods dt .no-display + label,
.sp-methods dt #wishlist-table .no-display + td[data-rwd-label]:before,
#wishlist-table .sp-methods dt .no-display + td[data-rwd-label]:before,
#checkout-shipping-method-load .sp-methods dd .no-display + label,
#checkout-shipping-method-load .sp-methods dd #wishlist-table .no-display + td[data-rwd-label]:before,
#wishlist-table #checkout-shipping-method-load .sp-methods dd .no-display + td[data-rwd-label]:before,
#co-shipping-method-form .sp-methods dd .no-display + label,
#co-shipping-method-form .sp-methods dd #wishlist-table .no-display + td[data-rwd-label]:before,
#wishlist-table #co-shipping-method-form .sp-methods dd .no-display + td[data-rwd-label]:before,
.product-options ul.options-list .no-display + label,
.product-options ul.options-list #wishlist-table .no-display + td[data-rwd-label]:before,
#wishlist-table .product-options ul.options-list .no-display + td[data-rwd-label]:before {
  padding-left: 10px;
  background-color: transparent;
}
.form-list .control .no-display + label:hover, .form-list .control #wishlist-table .no-display + td[data-rwd-label]:hover:before, #wishlist-table .form-list .control .no-display + td[data-rwd-label]:hover:before,
.sp-methods dt .no-display + label:hover,
.sp-methods dt #wishlist-table .no-display + td[data-rwd-label]:hover:before,
#wishlist-table .sp-methods dt .no-display + td[data-rwd-label]:hover:before,
#checkout-shipping-method-load .sp-methods dd .no-display + label:hover,
#checkout-shipping-method-load .sp-methods dd #wishlist-table .no-display + td[data-rwd-label]:hover:before,
#wishlist-table #checkout-shipping-method-load .sp-methods dd .no-display + td[data-rwd-label]:hover:before,
#co-shipping-method-form .sp-methods dd .no-display + label:hover,
#co-shipping-method-form .sp-methods dd #wishlist-table .no-display + td[data-rwd-label]:hover:before,
#wishlist-table #co-shipping-method-form .sp-methods dd .no-display + td[data-rwd-label]:hover:before,
.product-options ul.options-list .no-display + label:hover,
.product-options ul.options-list #wishlist-table .no-display + td[data-rwd-label]:hover:before,
#wishlist-table .product-options ul.options-list .no-display + td[data-rwd-label]:hover:before {
  background-color: transparent;
}

.product-options ul.options-list label, .product-options ul.options-list #wishlist-table td[data-rwd-label]:before, #wishlist-table .product-options ul.options-list td[data-rwd-label]:before,
.col2-set .form-list .control label,
.col2-set .form-list .control #wishlist-table td[data-rwd-label]:before,
#wishlist-table .col2-set .form-list .control td[data-rwd-label]:before {
  min-width: inherit;
  max-width: 100%;
}

.form-list .control.remember-me-box label, .form-list .control.remember-me-box #wishlist-table td[data-rwd-label]:before, #wishlist-table .form-list .control.remember-me-box td[data-rwd-label]:before {
  width: auto;
  max-width: none;
  min-width: inherit;
}

.form-list .control label, .form-list .control #wishlist-table td[data-rwd-label]:before, #wishlist-table .form-list .control td[data-rwd-label]:before {
  float: none;
}
.form-list .control .radio,
.form-list .control .checkbox {
  margin-right: 6px;
}
.form-list .control .input-box {
  clear: none;
  display: inline-block;
  width: auto;
  padding: 0;
}

/* ============================================ *
 * Global
 * ============================================ */
html,
body {
  height: 100%;
}

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

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

body[class*="checkout-onestep-"] .wrapper,
body[class*="checkout-twostep-"] .wrapper,
body[class*="checkout-onepage-"] .wrapper,
body[class*="checkout-multishipping-"] .wrapper {
  margin-top: 0;
}

body.checkout-multishipping-login .wrapper {
  margin-top: 40px;
}

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

.conversion-tracking img {
  height: 0;
}

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

body,
button,
input,
select,
textarea {
  font-family: "Roboto", sans-serif;
  color: #333333;
  font-size: 14px;
  line-height: 1.5;
}

a {
  color: #0079bf;
  text-decoration: none;
}

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

a:focus {
  outline-color: #0071b2;
  color: black;
}

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

/* -------------------------------------------- *
* Standard Formatted Text Block
*/
.std p {
  margin: 0 0 1.5em;
}
.std a {
  text-decoration: underline;
}
.std img {
  margin-bottom: 1.5em;
}
.std ol {
  list-style: decimal outside;
  margin-bottom: 1.5em;
}
.std ol li {
  margin-left: 1em;
  padding-left: 8px;
}
.std ul {
  list-style: none;
  margin-bottom: 1.5em;
}
.std ul > li:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 12px;
  color: #94d700;
  content: "B";
  padding-right: 10px;
}
.std .note {
  color: #A0A0A0;
  font-size: 13px;
}
.std table {
  margin-bottom: 1.5em;
}
.std table td, .std table th {
  border: 1px solid #CCCCCC;
  border-collapse: collapse;
}
.std blockquote {
  background-color: #F4F4F4;
  border: 1px solid #C0C0C0;
  padding: 30px;
  margin-bottom: 1.5em;
  font-size: 16px;
  font-weight: 500;
  color: #263F6A;
  border-radius: 10px;
}
.std iframe {
  margin: 30px 0 10px;
}
.std .video-container {
  margin: 0 0 1.5em;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 35px;
  height: 0;
  overflow: hidden;
}
.std .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

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

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

body {
  background: #FFFFFF;
}

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

/* ============================================ *
 * 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;
  line-height: 1.4;
  color: #263F6A;
  font-weight: 500;
}

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

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

.data-table tbody td .item-options {
  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: 500;
  font-size: 13px;
}

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

.info-table th {
  font-weight: 500;
  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
 * ============================================ */
.linearize-table .linearize-collapse {
  display: none;
}

/* ============================================ *
 * Typography
 * ============================================ */
h1, .h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #263F6A;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
}

h2, .h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #263F6A;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
}

h3, .h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #263F6A;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

h4, .h4 {
  margin: 0;
  margin-bottom: 10px;
  color: #263F6A;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

h5, .h5 {
  margin: 0;
  margin-bottom: 10px;
  color: #263F6A;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

h6, .h6 {
  margin: 0;
  margin-bottom: 5px;
  color: #263F6A;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

/* -------------------------------------------- *
 * Page Titles
 */
.page-title h1,
.page-title h2,
.product-name h1,
.product-name .h1,
.page-popup h1 {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 7px;
  text-transform: uppercase;
}

h2.sub-title {
  font-size: 16px;
}

/* -------------------------------------------- *
 * Product Name
 */
p.product-name {
  text-transform: uppercase;
  margin-bottom: 7px;
}
p.product-name a {
  text-decoration: none;
}

/* -------------------------------------------- *
 * Page Popup
 */
.page-popup {
  padding: 20px;
  background: #FFFFFF;
  height: auto;
}
.page-popup .title-buttons {
  position: relative;
}
.page-popup .title-buttons .link-print {
  position: absolute;
  right: 0;
  top: 7px;
}
.page-popup .title-buttons .button {
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px 0;
  background: none;
}

/* ============================================ *
 * Block Modules
 * ============================================ */
.block,
.col-left-first {
  margin-bottom: 20px;
  clear: both;
}

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

.block-title {
  position: relative;
  padding: 8px 15px;
  background-color: #263F6A;
  margin: 0;
  margin-bottom: 10px;
  color: #263F6A;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 10px;
}
.block-title h2,
.block-title h3,
.block-title strong {
  margin: 0;
  margin-bottom: 10px;
  color: #263F6A;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  color: #FFF;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 500;
}
.block-title small {
  font-size: 100%;
  font-weight: normal;
}

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

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

.block-content {
  padding: 15px;
}
.block-content:after {
  content: '';
  display: table;
  clear: both;
}

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

.block-content li.item {
  padding: 2px 0;
}

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

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

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

/* -------------------------------------------- *
 * Secondary Navigation
 */
.block-cms-menu li {
  text-transform: uppercase;
}
.block-cms-menu li strong {
  font-weight: 400;
  color: #333333;
}
.block-cms-menu li a {
  color: #333333;
  text-decoration: none;
}
.block-cms-menu li a:hover {
  color: #333333;
}

/* -------------------------------------------- *
 * Breadcrumbs
 */
.breadcrumbs {
  overflow: hidden;
  padding: 10px 0;
  margin-top: -10px;
}

.breadcrumbs li {
  float: left;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}

.breadcrumbs a {
  float: left;
  color: #A0A0A0;
  text-decoration: underline;
}

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

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

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

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

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

.availability .label {
  display: none;
}

.availability.in-stock {
  color: #94d700;
}

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

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

/* -------------------------------------------- *
 * Checkout Agreements
 */
.checkout-agreements li {
  margin-bottom: 20px;
}

.checkout-agreements .agreement-content {
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #CCCCCC;
}

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

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

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

/* ============================================ *
 * Item Options
 * ============================================ */
.item-options:after {
  content: '';
  display: table;
  clear: both;
}
.item-options dt {
  float: left;
  clear: left;
  font-weight: 500;
  padding-right: 5px;
}
.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 #DDD;
  background-color: rgba(255, 255, 255, 0.95);
  top: 20px;
  left: -88px;
}
.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 #DDD;
  border-top: none;
  left: 97px;
  top: -7px;
}

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

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

/* -------------------------------------------- *
 * Printer Friendly Page
 */
.page-print {
  width: 6.5in;
  margin: 20px;
  background: #FFFFFF;
}

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

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

/* -------------------------------------------- *
 * Add to / Sharing links
 */
.add-to-links, .sharing-links {
  clear: both;
  margin: 15px 0;
  font-size: 13px;
}
.add-to-links li, .sharing-links li {
  float: left;
  margin-right: 10px;
}
.add-to-links li:last-child, .sharing-links li:last-child {
  margin-right: 0;
}
.add-to-links a, .sharing-links a {
  float: left;
  text-decoration: none;
  color: #333333;
}
.add-to-links a:hover, .sharing-links a:hover {
  opacity: 0.8;
}
.add-to-links:after, .sharing-links:after {
  content: '';
  display: table;
  clear: both;
}

.add-to-links a {
  position: relative;
  line-height: 20px;
  padding-left: 25px;
}
.add-to-links a:before {
  position: absolute;
  left: 0;
}

.cart-links a:before {
  display: none;
}

.sharing-links li {
  line-height: 35px;
  margin-right: 15px;
  margin-bottom: 10px;
}
.sharing-links a {
  font-size: 0;
  line-height: 0;
  color: transparent;
  width: 35px;
  height: 35px;
}
.sharing-links a:before {
  color: #333333;
}

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

/* -------------------------------------------- *
 * Link Icons
 */
a.link-wishlist:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #263F6A;
  content: "w";
}

a.link-compare:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #263F6A;
  content: "b";
}

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

/* ============================================ *
 * Global Messages
 * ============================================ */
.success {
  color: #94d700;
}

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

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

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

.messages li li {
  position: relative;
  margin-bottom: 7px;
  padding: 0;
  color: #333333;
  font-size: 15px;
  min-height: 40px;
  border-left: 40px solid #FFFFFF;
}

.messages li span {
  padding: 9px 15px;
  margin-left: 5px;
  display: block;
  min-height: 40px;
}

.messages li li:before {
  color: #FFFFFF;
  width: 40px;
  margin-left: -40px;
  margin-top: -17.5px;
  position: absolute;
  left: 2.5px;
  top: 50%;
}

.messages .error-msg li:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 35px;
  color: #333333;
  content: "e";
  color: #EE2D24;
}

.messages .notice-msg li:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 35px;
  color: #333333;
  content: "n";
  color: #FFBF00;
}

.messages .success-msg li:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 35px;
  color: #333333;
  content: "h";
  color: #59B200;
}

body.catalogsearch-result-index .note-msg,
body.catalog-category-view .note-msg {
  margin-left: 0;
  margin-top: 33px;
}

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

/* -------------------------------------------- *
 * Note Message
 */
.note-msg {
  padding: 9px 15px 9px 60px;
  display: block;
  min-height: 40px;
  position: relative;
}
.note-msg:before {
  color: #FFFFFF;
  width: 40px;
  margin-top: -17.5px;
  position: absolute;
  left: 0;
  top: 50%;
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 35px;
  color: #333333;
  content: "n";
  color: #FFBF00;
}

/* -------------------------------------------- *
 * Global Site Notice
 */
.global-site-notice {
  background: #263F6A;
  color: #FFFFFF;
}
.global-site-notice .notice-inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  line-height: 14px;
  min-height: 40px;
  padding-top: 13px;
  padding-bottom: 13px;
  text-align: center;
}
.global-site-notice p {
  margin-bottom: 0;
  padding-right: 15px;
}

/* -------------------------------------------- *
 * Promotional Message Banner
 */
.promo-msg {
  color: #333333;
  text-align: center;
  margin: 15px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}

/* ============================================ *
 * Price Display
 * ============================================ */
/* -------------------------------------------- *
 * Price Box - Standard
 */
.price-box {
  margin: 7px 0;
  font-family: "Roboto", sans-serif;
}

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

.price-notice {
  color: #A0A0A0;
}

.price-box .price {
  color: #F40101;
  font-size: 21px;
}

.price-box .price,
.price {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  display: inline-block;
}

.price-box .price-label {
  font-size: 16px;
  color: #A0A0A0;
  white-space: nowrap;
  text-transform: uppercase;
  display: inline-block;
}

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

/* -------------------------------------------- *
 * Price Box - Special
 */
.price-box .old-price .price {
  color: #A0A0A0;
  text-decoration: line-through;
  font-weight: 400;
  font-size: 15px;
}
.price-box .old-price .price-label {
  display: none;
}

.price-box .special-price .price {
  color: #F40101;
}
.price-box .special-price .price-label {
  display: none;
}

/* -------------------------------------------- *
 * 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 {
  padding: 7px 15px;
  background: #EEEEEE;
  border: 1px solid #EDEDED;
  margin-top: 7px;
}
.product-pricing li,
.tier-prices li,
.tier-prices-grouped li {
  font-size: 13px;
}
.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: 500;
}

/* ============================================ *
 * Tax - Full Tax Summary
 * ============================================ */
#checkout-review-table .summary-collapse,
#shopping-cart-totals-table .summary-collapse,
body.customer-account .data-table .summary-collapse {
  position: relative;
  cursor: pointer;
}
#checkout-review-table .summary-collapse:before,
#shopping-cart-totals-table .summary-collapse:before,
body.customer-account .data-table .summary-collapse:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 7px solid #3399CC;
  border-bottom: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}
#checkout-review-table .summary-collapse:hover:before,
#shopping-cart-totals-table .summary-collapse:hover:before,
body.customer-account .data-table .summary-collapse:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 7px solid #246b8f;
  border-bottom: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}
#checkout-review-table .show-details .summary-collapse:before,
#shopping-cart-totals-table .show-details .summary-collapse:before,
body.customer-account .data-table .show-details .summary-collapse:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #3399CC;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}
#checkout-review-table .show-details .summary-collapse:hover:before,
#shopping-cart-totals-table .show-details .summary-collapse:hover:before,
body.customer-account .data-table .show-details .summary-collapse:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #246b8f;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}

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

/* ============================================ *
 * Toolbar
 * ============================================ */
.toolbar {
  margin-bottom: 30px;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
}
.toolbar:after {
  content: '';
  display: table;
  clear: both;
}

.toolbar-bottom {
  margin-top: 0;
  clear: both;
}
.toolbar-bottom .toolbar {
  position: relative;
  padding: 15px 0;
  min-height: 65px;
  border-top: 0;
  border-bottom: 1px solid #CCCCCC;
}
.toolbar-bottom .toolbar .amount {
  margin: 0;
}
.toolbar-bottom .toolbar.infinite-scroll .loadmore-bottom {
  display: table;
  margin: 0 auto;
}
.toolbar-bottom .toolbar.infinite-scroll .loadmore-bottom #loadmore-loading img {
  width: 30px;
}
.toolbar-bottom .toolbar.infinite-scroll .count-container {
  position: absolute;
  right: 0;
  float: none;
}

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

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

.toolbar,
.pager {
  font-family: "Roboto", sans-serif;
  color: #333333;
  line-height: 30px;
  font-size: 14px;
}
.toolbar select,
.pager select {
  width: auto;
}
.toolbar .button,
.pager .button {
  line-height: 1.5;
}

.toolbar label, .toolbar #wishlist-table td[data-rwd-label]:before, #wishlist-table .toolbar td[data-rwd-label]:before,
.pager-no-toolbar label,
.pager-no-toolbar #wishlist-table td[data-rwd-label]:before,
#wishlist-table .pager-no-toolbar td[data-rwd-label]:before {
  font-weight: normal;
  text-transform: uppercase;
}

.sorter {
  float: left;
  margin: 7px 0;
  float: right;
}
.sorter label, .sorter #wishlist-table td[data-rwd-label]:before, #wishlist-table .sorter td[data-rwd-label]:before {
  float: left;
  margin-right: 10px;
}
.sorter label:after {
  content: ':';
}

.sorter > .sort-by {
  float: right;
  margin-right: 10px;
  height: 30px;
  position: relative;
  padding-right: 20px;
}
.sorter > .sort-by select {
  width: auto;
}
.sorter > .sort-by .sort-by-switcher {
  font-size: 0;
  line-height: 0;
  color: transparent;
}
.sorter > .sort-by .sort-by-switcher:before {
  right: 0;
  top: 5px;
  position: absolute;
}
.sorter > .sort-by .sort-by-switcher--asc:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #263F6A;
  content: "q";
}
.sorter > .sort-by .sort-by-switcher--desc:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #263F6A;
  content: "d";
}

.sorter > .view-mode {
  float: right;
  height: 30px;
  position: relative;
  padding-right: 40px;
  margin-right: 15px;
}
.sorter > .view-mode label, .sorter > .view-mode #wishlist-table td[data-rwd-label]:before, #wishlist-table .sorter > .view-mode td[data-rwd-label]:before {
  display: none;
  display: block;
}
.sorter > .view-mode .grid,
.sorter > .view-mode .list {
  font-size: 0;
  line-height: 0;
  color: transparent;
}
.sorter > .view-mode .grid:before,
.sorter > .view-mode .list:before {
  position: absolute;
  top: 5px;
  display: block;
}
.sorter > .view-mode a.grid:before,
.sorter > .view-mode a.list:before {
  color: #A0A0A0;
}
.sorter > .view-mode .grid:before,
.sorter > .view-mode strong.grid:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #A0A0A0;
  content: "k";
  right: 25px;
}
.sorter > .view-mode .list:before,
.sorter > .view-mode strong.list:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #A0A0A0;
  content: "o";
  right: 0;
}
.sorter > .view-mode strong.grid:before,
.sorter > .view-mode strong.list:before {
  color: #94d700;
}

.pager {
  float: right;
  overflow: hidden;
}
.pager > .count-container {
  float: left;
}
.pager > .count-container strong {
  font-weight: normal;
}
.pager .amount {
  float: left;
  font-family: "Roboto", sans-serif;
  white-space: nowrap;
  margin: 0;
}
.pager .limiter {
  float: left;
  height: 30px;
  line-height: 30px;
  margin-right: 15px;
}
.pager .limiter > label, .pager #wishlist-table .limiter > td[data-rwd-label]:before, #wishlist-table .pager .limiter > td[data-rwd-label]:before {
  padding-right: 5px;
}
.pager .limiter > label:after {
  content: ':';
}
.pager .amount,
.pager .limiter,
.pager .pages {
  margin: 7px 0;
}
.pager .pages {
  margin-left: 15px;
}

.pages {
  float: right;
  overflow: hidden;
}
.pages strong {
  display: none;
}

.pages li {
  float: left;
  height: 30px;
}

.pages a,
.pages .current {
  display: block;
  border: 0;
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  line-height: 30px;
  height: 30px;
  padding: 0 8px;
  margin-left: 3px;
  color: #333333;
  font-family: "Roboto", sans-serif;
  border: 1px solid #CCCCCC;
}

.pages .current,
.pages .current:hover {
  color: #333333;
  background-color: #FFFFFF;
  cursor: default;
}

.pages .next,
.pages .previous {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
  position: relative;
  width: 30px;
}
.pages .next:before,
.pages .previous:before {
  position: absolute;
  right: 5px;
  top: 5px;
  color: #333333;
}

.pages .next:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #263F6A;
  content: "r";
}

.pages .previous:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #263F6A;
  content: "l";
}

/* -------------------------------------------- *
 * Infinite Scroll - Toolbar
 */
.toolbar-bottom.infinite-scroll .pager {
  position: absolute;
  right: 0;
}

/* ============================================ *
* Neat Grid Settings
* ============================================ */
/* ============================================ *
* Layout Containers
* ============================================ */
.main,
section > .row,
nav > .row {
  content: '';
  display: table;
  clear: both;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1260px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  padding-left: 30px;
  padding-right: 30px;
  /* ============================================ *
  * Default Column Layouts
  * ============================================ */
}
.main .row:after,
section > .row .row:after,
nav > .row .row:after {
  content: '';
  display: table;
  clear: both;
}
.main .col-3,
.main .col-4,
.main .col-6,
.main .col-12,
section > .row .col-3,
section > .row .col-4,
section > .row .col-6,
section > .row .col-12,
nav > .row .col-3,
nav > .row .col-4,
nav > .row .col-6,
nav > .row .col-12 {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
}
.main .col-3:last-child,
.main .col-4:last-child,
.main .col-6:last-child,
.main .col-12:last-child,
section > .row .col-3:last-child,
section > .row .col-4:last-child,
section > .row .col-6:last-child,
section > .row .col-12:last-child,
nav > .row .col-3:last-child,
nav > .row .col-4:last-child,
nav > .row .col-6:last-child,
nav > .row .col-12:last-child {
  margin-right: 0;
}
.main .col-3,
section > .row .col-3,
nav > .row .col-3 {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 23.23176%;
}
.main .col-3:last-child,
section > .row .col-3:last-child,
nav > .row .col-3:last-child {
  margin-right: 0;
}
.main .col-4,
section > .row .col-4,
nav > .row .col-4 {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
}
.main .col-4:last-child,
section > .row .col-4:last-child,
nav > .row .col-4:last-child {
  margin-right: 0;
}
.main .col-6,
section > .row .col-6,
nav > .row .col-6 {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
}
.main .col-6:last-child,
section > .row .col-6:last-child,
nav > .row .col-6:last-child {
  margin-right: 0;
}

.main {
  display: block;
}

/* -------------------------------------------- *
 * Column Layouts
 */
.page {
  background-color: #FFF;
}

.main {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #FFF;
  padding-top: 45px;
  padding-bottom: 45px;
}

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

.col-left,
.col-right {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 23.23176%;
}
.col-left:last-child,
.col-right:last-child {
  margin-right: 0;
}

.col-left {
  float: left;
  clear: left;
}

.col-right {
  float: right;
}

.col-main {
  position: relative;
  float: left;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
}
.col-main:last-child {
  margin-right: 0;
}

.col1-layout .col-main {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  margin-right: 0;
}
.col1-layout .col-main:last-child {
  margin-right: 0;
}

.col2-left-layout .col-main,
.col2-right-layout .col-main {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 74.41059%;
}
.col2-left-layout .col-main:last-child,
.col2-right-layout .col-main:last-child {
  margin-right: 0;
}

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

.col2-right-layout .col-right {
  margin-right: 0;
}

.col3-layout .col-right {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 23.23176%;
  margin-right: 0;
}
.col3-layout .col-right:last-child {
  margin-right: 0;
}
.col3-layout .col-wrapper {
  float: left;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 74.41059%;
}
.col3-layout .col-wrapper:last-child {
  margin-right: 0;
}
.col3-layout .col-wrapper .col-main {
  float: left;
  display: block;
  margin-right: 3.16844%;
  width: 65.61052%;
  float: right;
  margin-right: 0;
}
.col3-layout .col-wrapper .col-main:last-child {
  margin-right: 0;
}
.col3-layout .col-wrapper .col-left {
  float: left;
  display: block;
  margin-right: 3.16844%;
  width: 31.22104%;
}
.col3-layout .col-wrapper .col-left:last-child {
  margin-right: 0;
}

/* -------------------------------------------- *
 * Column Fixes
 */
body.catalog-category-view .col3-layout .col-main,
body.catalog-category-view .col2-left-layout .col-main,
body.catalogsearch-result-index .col3-layout .col-main,
body.catalogsearch-result-index .col2-left-layout .col-main,
body.solrsearch-index-index .col3-layout .col-main,
body.solrsearch-index-index .col2-left-layout .col-main {
  margin-top: -73px;
}
body.catalog-category-view .col3-layout .col-right,
body.catalog-category-view .col2-left-layout .col-right,
body.catalogsearch-result-index .col3-layout .col-right,
body.catalogsearch-result-index .col2-left-layout .col-right,
body.solrsearch-index-index .col3-layout .col-right,
body.solrsearch-index-index .col2-left-layout .col-right {
  margin-top: -73px;
}
body.catalog-category-view .col2-right-layout .col-right,
body.catalogsearch-result-index .col2-right-layout .col-right,
body.solrsearch-index-index .col2-right-layout .col-right {
  margin-top: -73px;
}

/* Content Columns */
.col2-set {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  margin-right: 0;
}
.col2-set:last-child {
  margin-right: 0;
}
.col2-set .col-1,
.col2-set .col-2 {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
  padding: 15px 30px;
}
.col2-set .col-1:last-child,
.col2-set .col-2:last-child {
  margin-right: 0;
}
.col2-set .col-1 {
  float: left;
  padding-left: 0;
}
.col2-set .col-2 {
  float: right;
  padding-right: 0;
  margin-right: 0;
}
.col2-set .narrow {
  width: 33%;
}
.col2-set .wide {
  width: 65%;
}
.col2-set:after {
  content: '';
  display: table;
  clear: both;
}

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

/* -------------------------------------------- *
 * Empty container clear
 */
.buttons-set:empty,
.col-left:empty,
.col-right:empty {
  display: none;
}

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

/* ============================================ *
 * Header Sections
 * ============================================ */
#header section[role=top] {
  background: #94d700;
  color: #263F6A;
  font-weight: 500;
  height: 40px;
  line-height: 1;
  padding-top: 5px;
  padding-bottom: 5px;
  z-index: 9999;
  width: 100%;
}
#header section[role=top] a.top-link {
  color: #263F6A;
}
#header section[role=top] a.top-link:hover, #header section[role=top] a.top-link:before {
  color: #263F6A;
}
#header section[role=top] .col-12 {
  padding: 0;
}
#header section[role=top] .customer-links {
  position: relative;
  float: right;
  height: 30px;
}
#header section[role=top] .top-links {
  position: relative;
}
#header section[role=top] .icon:before {
  line-height: 30px;
}
#header section[role=top] .skip-link {
  padding-left: 10px;
  padding-left: 20px;
}
#header section[role=top] .skip-content {
  line-height: 1.5;
}

#header section[role=main] {
  background-color: #FFF;
  color: #263F6A;
}
#header section[role=main] .row {
  background-color: #FFF;
}
#header section[role=main] .col-12 {
  position: relative;
  padding: 0;
}
#header section[role=main] .main-top {
  position: relative;
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
#header section[role=main] .skip-link .icon {
  font-size: 30px;
  font-weight: 500;
  margin-right: 0;
}
#header section[role=main] .main-top {
  border-bottom: 0;
  margin: auto;
}

#header nav[role=main-menu] {
  background-color: #263F6A;
}
#header nav[role=main-menu] .row {
  background-color: none;
}

/* ============================================ *
 * Skip Links
 * ============================================ */
.skip-links {
  clear: both;
  overflow: hidden;
}

.skip-link {
  display: inline-block;
  text-transform: uppercase;
  line-height: 30px;
}
.skip-link .icon {
  display: inline-block;
  height: 30px;
  vertical-align: middle;
}
.skip-link .icon:before {
  text-align: center;
}
.skip-link .label {
  display: none;
  font-size: 16px;
  font-weight: 500;
  display: inline;
}

#header section[role=main] .skip-link {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  display: block;
  margin-top: -25px;
  line-height: 40px;
}
#header section[role=main] .skip-link .icon,
#header section[role=main] .skip-link .label {
  display: block;
  text-align: center;
  font-size: 15px;
}
#header section[role=main] .skip-link .icon {
  height: 40px;
}
#header section[role=main] .skip-link .icon,
#header section[role=main] .skip-link .label {
  display: inline-block;
  text-align: left;
}

a.skip-link,
a.skip-link:focus {
  color: inherit;
  text-decoration: none;
}

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

/* ============================================ *
 * Skip Content
 * ============================================ */
.skip-content {
  display: none;
}
.skip-content.skip-active {
  display: block;
  background: rgba(255, 255, 255, 0.95);
  padding: 30px 15px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(228, 228, 228, 0.1) inset;
  padding: 20px 30px;
  border-top: 0;
}

/* ============================================ *
* Logo
* ============================================ */
.logo {
  display: inline-block;
  vertical-align: middle;
  width: auto;
}
.logo .small,
.logo .large {
  width: auto;
  padding: 0 0 15px;
  margin-top: -6px;
  width: 271px;
  height: 80px;
}
.logo .large {
  display: none;
}
.logo .small,
.logo .large {
  margin-top: -9px;
  width: 305px;
  height: 90px;
}
.logo .small {
  display: none;
}
.logo .large {
  display: block;
}

/* ============================================ *
 * Header Checkout
 * ============================================ */
.header-checkout .col-12 {
  border-bottom: 1px solid #CCCCCC;
  margin-top: 40px;
}
.header-checkout h1 {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 7px;
  text-transform: uppercase;
  position: absolute;
  right: 0;
  top: 50%;
  padding: 15px 0;
  border: 0;
  margin-top: -27px;
  margin-bottom: 0 !important;
  color: #333;
}

/* ============================================ *
 * Header - Nav
 * ============================================ */
.skip-nav {
  right: 15px;
}
.skip-nav .icon:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 30px;
  color: #263F6A;
  content: "m";
}

#header section[role=main] .skip-nav {
  display: none;
}

#header-nav.skip-active {
  padding-top: 0;
  padding-bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 200;
}

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

/* ============================================ *
 * Nav Primary
 * ============================================ */
.nav-primary {
  display: block;
}

/* ============================================ *
 * General Navigation Styles
 * ============================================ */
.nav-primary a {
  text-decoration: none;
  position: relative;
  display: block;
  color: #263F6A;
  font-size: 15px;
  font-weight: 500;
  line-height: 55px;
  text-transform: uppercase;
  outline: none;
}
.nav-primary a:hover, .nav-primary a:active {
  color: #94d700;
}
.nav-primary li {
  position: relative;
}
.nav-primary li.active > a {
  color: #94d700;
}
.nav-primary li.level0 a {
  line-height: 40px;
}
.nav-primary li.level1 a {
  line-height: 30px;
}

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

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

/* ============================================ *
 * Small Viewports - Accordion Style Menu
 * ============================================ */
/* ============================================ *
 * Large Viewports - Dropdown Menu
 * ============================================ */
.nav-primary {
  /* Default styles for 1+ drop-down menus */
  /* Level 2+ */
  /* Class for js to add briefly to evaluate element positioning. */
  /* Correct menus that will hang off the page (class added by js) */
  /* Level 1+ */
}
.nav-primary a.level0 {
  padding: 0 20px;
  color: #FFFFFF;
}
.nav-primary a.level0:hover, .nav-primary a.level0:active {
  color: #94d700;
}
.nav-primary li.level0,
.nav-primary a.level0 {
  display: inline-block;
  line-height: 65px;
  font-size: 18px;
}
.nav-primary li.level0 {
  border-right: 1px solid #2d4a7d;
}
.nav-primary li.level0:last-child {
  border-right: none;
}
.nav-primary li:last-child > a {
  border-bottom: none;
  border-right: none;
}
.nav-primary .menu-active {
  z-index: 200;
}
.nav-primary li.level0 ul {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(228, 228, 228, 0.1) inset;
  background: rgba(255, 255, 255, 0.95);
  position: absolute;
  left: 0;
  top: 65px;
  /* Height of ".nav-primary a.level0" */
  z-index: 10;
  width: 250px;
  padding: 15px;
  display: none;
  /* Hide until displayed. */
}
.nav-primary li.level1 ul {
  left: 150px;
  top: 0;
}
.nav-primary li.level0 ul.level0.position-test {
  display: block;
}
.nav-primary li.level0 ul.level0.spill {
  right: 0;
  left: auto;
}
.nav-primary li.level0 ul.level0.spill li.level1 ul {
  left: auto;
  right: 50px;
  top: 20px;
}
.nav-primary li.level0 li.parent > a {
  position: relative;
}
.nav-primary li.level0 li.parent > a:after {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 16px;
  color: #94d700;
  content: "r";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -8px;
}

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

/* ============================================ *
 * Header - Search
 * ============================================ */
.skip-search {
  position: absolute;
  top: 50%;
  left: 15px;
  margin-top: -20px;
  display: none;
}
.skip-search .icon:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 30px;
  color: #263F6A;
  content: "s";
}

/* ============================================ *
 * Search - Content
 * ============================================ */
#header-search {
  display: block;
  background: #263F6A;
  padding: 15px;
  height: 40px;
  left: 330px;
  top: 50%;
  margin-top: -25px;
  position: absolute;
  width: 28%;
  background: none;
  padding: 0;
  border-bottom: 0;
  z-index: 200;
  left: 350px;
  width: 31%;
}

/* ============================================ *
 * Search Input
 * ============================================ */
#search {
  width: 100%;
  height: 50px;
  padding: 0 45px 0 15px;
  font-family: "Roboto", sans-serif;
  border-radius: 10px;
  outline: none;
}

#search_mini_form .input-box {
  position: relative;
  padding-top: 0;
}
#search_mini_form label, #search_mini_form #wishlist-table td[data-rwd-label]:before, #wishlist-table #search_mini_form td[data-rwd-label]:before {
  display: none;
}
#search_mini_form .search-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border: 0;
  background: none;
  color: #333;
  font-size: 30px;
  padding: 0;
}

#search_mini_form .search-button:before {
  position: absolute;
  right: 5px;
  top: 7px;
  font-weight: 500;
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 35px;
  color: #263F6A;
  content: "s";
}

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

/* ============================================ *
 * Header - Contact
 * ============================================ */
.top-link {
  float: right;
  padding-right: 30px;
  color: inherit;
  text-transform: uppercase;
  line-height: 30px;
}
.top-link .icon {
  display: inline-block;
  height: 30px;
  vertical-align: middle;
}
.top-link .label {
  display: inline;
}
.top-link:hover, .top-link:focus {
  color: #263F6A;
  text-decoration: none;
}
.top-link.help {
  float: left;
  margin-left: 80px;
  display: none;
  display: block;
}
.top-link.help .icon:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 25px;
  color: #263F6A;
  content: "Q";
}
.top-link.postage {
  float: left;
  display: none;
  display: block;
  margin-left: 40px;
  margin-left: 110px;
}
.top-link.postage .icon:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 25px;
  color: #263F6A;
  content: "D";
}
.top-link.contact {
  display: none;
  display: block;
}
.top-link.contact .icon:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 25px;
  color: #263F6A;
  content: "x";
}
.top-link.phone {
  padding-right: 0;
}
.top-link.phone .icon:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 25px;
  color: #263F6A;
  content: "j";
}

/* ============================================ *
 * Header - Account Links
 * ============================================ */
.skip-account {
  display: none;
}
.skip-account .icon:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 25px;
  color: #263F6A;
  content: "a";
}

#header section[role=main] .skip-account {
  right: 180px;
  right: 90px;
  right: 135px;
  margin-top: -20px;
}
#header section[role=main] .skip-account .icon:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 35px;
  color: #263F6A;
  content: "a";
}

#header-account.skip-active {
  display: block;
  position: absolute;
  z-index: 200;
  top: 195px;
  left: -15px;
  box-sizing: content-box;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}
#header-account.skip-active .account-wrapper {
  position: relative;
  padding-bottom: 20px;
}
#header-account.skip-active .btn-login {
  margin-bottom: 15px;
  text-align: center;
}
#header-account.skip-active .btn-login:hover {
  color: #FFFFFF;
}
#header-account.skip-active .new-account {
  display: inline-block;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 15px;
  text-align: right;
  width: 100%;
}
#header-account.skip-active .new-account a {
  display: inline;
  margin-left: 10px;
  border-bottom: 0;
}
#header-account.skip-active .close {
  display: block;
  width: 20px;
  height: 25px;
  position: absolute;
  bottom: -5px;
  right: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  border-bottom: 0;
}
#header-account.skip-active .close:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 25px;
  color: #333333;
  content: "u";
}

#header-account a {
  position: relative;
  display: block;
  padding: 9px 0;
  outline: none;
  text-transform: uppercase;
  text-decoration: none;
  text-align: right;
  color: #263F6A;
  line-height: 1.5;
  border-bottom: 1px solid #CCCCCC;
}

#header-account li.last > a {
  border-bottom: 0;
}

#header section[role=top] .skip-account {
  display: none;
}

#header-account a {
  padding: 2px 0;
  border-bottom: 0;
}

#header-account.skip-active {
  width: 300px;
  top: 115px;
  left: auto;
  right: 0;
  margin: 0;
  box-sizing: border-box;
  padding: 20px 30px;
  border-top: 0;
}
#header-account.skip-active .new-account {
  margin-bottom: 15px;
}
#header-account.skip-active .close {
  bottom: -10px;
}

/* ============================================ *
 * Header - Cart
 * ============================================ */
.skip-cart {
  display: none;
}
.skip-cart .icon:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 25px;
  color: #263F6A;
  content: "c";
}

#header section[role=main] .skip-cart {
  right: 90px;
  right: 0;
  margin-top: -20px;
}
#header section[role=main] .skip-cart .icon:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 35px;
  color: #263F6A;
  content: "c";
}

#header-cart.skip-active {
  display: block;
  position: absolute;
  z-index: 200;
  top: 195px;
  left: -15px;
  width: 100%;
  box-sizing: content-box;
  padding-bottom: 0;
}

#header section[role=top] .skip-cart {
  display: none;
}

#header-cart.skip-active {
  width: 360px;
  top: 115px;
  left: auto;
  right: 0;
  margin: 0;
  box-sizing: border-box;
  padding: 20px 30px;
  padding-bottom: 0;
  border: 1px solid #DDD;
  border-top: 0;
}

/* -------------------------------------------- *
 * Skip Cart Notifier
 */
.skip-cart .count {
  position: static;
  background: none;
  margin-left: 0px;
  font-size: 14px;
  width: auto;
}
.skip-cart .count:before {
  content: '(';
}
.skip-cart .count:after {
  content: ')';
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================ *
 * Nav Mega Menu
 * ============================================ */
.megamenu {
  /* ============================================ *
   * Mobile Viewports - Accordian Menu
   * ============================================ */
  /* ============================================ *
   * Large Viewports - Dropdown Menu
   * ============================================ */
  position: relative;
  /* Default styles for 1+ drop-down menus */
}
.megamenu .menu-item {
  line-height: 40px;
  color: #FFFFFF;
}
.megamenu .menu-item:hover, .megamenu .menu-item.menu-active {
  color: #FFFFFF;
}
.megamenu a,
.megamenu .block-title {
  text-decoration: none;
  position: relative;
  display: block;
  color: #263F6A;
  line-height: 30px;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}
.megamenu .view-all {
  border-bottom: 1px solid #DDD;
}
.megamenu .block-title {
  background: none;
  padding: 0;
}
.megamenu .col > .col {
  margin-bottom: 10px;
}
.megamenu .menu-item {
  padding: 0 50px 0 0;
}
.megamenu > li {
  display: inline-block;
}
.megamenu a:hover,
.megamenu li:hover > a {
  color: #333333;
}
.megamenu .block-title {
  font-weight: 500;
}
.megamenu li .container {
  background: #FBFBFB;
  border: solid 1px #CCCCCC;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 200;
  padding: 20px;
  display: none;
}
.megamenu li .container.hide {
  display: none;
}
.megamenu li .container > .col {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 23.23176%;
}
.megamenu li .container > .col:last-child {
  margin-right: 0;
}

/* ============================================ *
 * Header Subscribe
 * ============================================ */
#header .block-subscribe {
  display: none;
  float: left;
  margin-bottom: 0;
  display: block;
}
#header .block-subscribe .block-title {
  display: none;
}
#header .block-subscribe .form-subscribe-header {
  display: none;
  float: left;
  color: inherit;
  line-height: 30px;
  display: block;
}
#header .block-subscribe .form-subscribe-header label, #header .block-subscribe .form-subscribe-header #wishlist-table td[data-rwd-label]:before, #wishlist-table #header .block-subscribe .form-subscribe-header td[data-rwd-label]:before {
  padding-right: 18px;
}
#header .block-subscribe .form-subscribe-header label:empty, #header .block-subscribe .form-subscribe-header #wishlist-table td[data-rwd-label]:empty:before, #wishlist-table #header .block-subscribe .form-subscribe-header td[data-rwd-label]:empty:before {
  padding: 0;
}
#header .block-subscribe .block-content {
  margin: 0;
  padding: 0;
}
#header .block-subscribe .block-content .input-box {
  position: relative;
}
#header .block-subscribe .block-content .input-box .validation-advice {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  padding: 5px 7px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #DDD;
}
#header .block-subscribe .block-content .input-box .validation-advice:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #DDD;
  border-top: none;
  left: 49%;
  top: -6px;
}
#header .block-subscribe .block-content .input-text {
  border: 0;
}
#header .block-subscribe .block-content .input-box {
  position: relative;
}
#header .block-subscribe .block-content .actions {
  margin-left: 6px;
  padding: 0;
}
#header .block-subscribe .block-content .actions .button {
  background: #263F6A;
  color: #FFF;
}

/* ============================================ *
 * Footer
 * ============================================ */
#footer {
  /* -------------------------------------------- *
  *  Footer Callout
  */
  /* -------------------------------------------- *
  *  Footer Main
  */
  /* -------------------------------------------- *
  *  Footer Bottom
  */
  /* -------------------------------------------- *
  *  Footer Global
  */
  text-transform: uppercase;
  /* -------------------------------------------- *
  *  Footer Element Layout
  */
  /* -------------------------------------------- *
  * Store Contact
  */
  /* -------------------------------------------- *
  * Social Links
  */
  /* -------------------------------------------- *
  * Payment
  */
  /* -------------------------------------------- *
  * Footer Subscribe
  */
  /* -------------------------------------------- *
  *   Footer - Bottom
  */
}
#footer section {
  background-color: #FFF;
  color: #333;
}
#footer section a, #footer section a:hover, #footer section a:before, #footer section .phone:before {
  color: #333;
}
#footer section .col-12 {
  padding: 30px 0;
}
#footer section[role=callout] {
  background-color: #94d700;
  border-bottom: 20px solid #FFE800;
  text-align: right;
  text-align: center;
}
#footer section[role=callout] .row {
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}
#footer section[role=callout] img {
  position: absolute;
  bottom: 0;
  left: -50%;
  width: 80%;
}
#footer section[role=callout] h2,
#footer section[role=callout] .button {
  display: inline-block;
}
#footer section[role=callout] h2 {
  font-size: 24px;
  font-weight: 700;
  text-transform: none;
  width: 100%;
  margin-bottom: 10px;
}
#footer section[role=callout] .button {
  background-color: #FFE800;
  padding: 13px 30px;
  font-weight: 700;
  font-size: 16px;
  color: #263F6A;
}
#footer section[role=callout] .button:hover, #footer section[role=callout] .button:active {
  background-color: #263F6A;
  color: #FFFFFF;
}
#footer section[role=callout] img {
  left: -20%;
  width: 55%;
}
#footer section[role=callout] .row {
  padding-top: 30px;
  padding-bottom: 30px;
}
#footer section[role=callout] img {
  left: -25%;
  width: 50%;
}
#footer section[role=callout] h2 {
  font-size: 32px;
}
#footer section[role=callout] img {
  left: -25%;
  width: 40%;
}
#footer section[role=callout] h2 {
  width: auto;
  margin-bottom: 0;
  font-size: 40px;
}
#footer section[role=callout] .button {
  margin-top: -19px;
  margin-left: 30px;
}
#footer section[role=main] .row {
  background-color: #FFF;
}
#footer section[role=bottom] {
  background-color: #263F6A;
  color: #FFF;
}
#footer section[role=bottom] a, #footer section[role=bottom] a:hover {
  color: #FFF;
}
#footer section[role=bottom] .row {
  background-color: none;
}
#footer h4 {
  font-weight: 500;
  color: #333;
}
#footer .block-title {
  border-bottom: 0;
  padding: 0 0 5px;
  color: inherit;
}
#footer .block-title strong {
  font-weight: normal;
  color: #333;
}
#footer .links {
  text-transform: uppercase;
  font-size: 12px;
}
#footer .links {
  float: left;
  width: 17%;
  padding: 0 30px 0 0;
  margin-bottom: 30px;
}
#footer .links li {
  word-break: break-all;
  line-height: 1.4;
  padding: 4px 0;
}
#footer .links a {
  color: inherit;
}
#footer .links a:hover {
  color: inherit;
}
#footer .col1,
#footer .col3 {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 23.23176%;
}
#footer .col1:last-child,
#footer .col3:last-child {
  margin-right: 0;
}
#footer .col1:last-child,
#footer .col3:last-child {
  margin-right: 0;
}
#footer .col1:nth-child(4n),
#footer .col3:nth-child(4n) {
  margin-right: 0;
}
#footer .col1:nth-child(4n+1),
#footer .col3:nth-child(4n+1) {
  clear: left;
}
#footer .col2 {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
}
#footer .col2:last-child {
  margin-right: 0;
}
#footer .col2:last-child {
  margin-right: 0;
}
#footer .footer-links,
#footer .visit-us {
  float: left;
  display: block;
  margin-right: 4.82916%;
  width: 47.58542%;
}
#footer .footer-links:last-child,
#footer .visit-us:last-child {
  margin-right: 0;
}
#footer .phone,
#footer .social,
#footer .opening-hours,
#footer .payment {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
}
#footer .phone:last-child,
#footer .social:last-child,
#footer .opening-hours:last-child,
#footer .payment:last-child {
  margin-right: 0;
}
#footer .phone:last-child,
#footer .social:last-child,
#footer .opening-hours:last-child,
#footer .payment:last-child {
  margin-right: 0;
}
#footer .phone:last-child,
#footer .social:last-child,
#footer .opening-hours:last-child,
#footer .payment:last-child {
  margin-right: 0;
}
#footer .phone,
#footer .opening-hours {
  padding-bottom: 15px;
}
#footer .contact .phone {
  position: relative;
  padding-left: 40px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
}
#footer .contact .phone a {
  text-decoration: none;
}
#footer .contact .phone a:hover {
  text-decoration: none;
}
#footer .contact .phone:before {
  position: absolute;
  left: 0;
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 30px;
  color: #94d700;
  content: "j";
}
#footer .visit-us address {
  padding-bottom: 7px;
}
#footer .visit-us a {
  display: block;
  outline: none;
  color: #0079bf;
  position: relative;
  padding-left: 30px;
  text-decoration: underline;
  padding-bottom: 15px;
}
#footer .visit-us a:before {
  position: absolute;
  left: 0;
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #94d700;
  content: "L";
}
#footer .visit-us a:hover {
  color: #004973;
}
#footer .social li span,
#footer .social li a {
  float: left;
  display: block;
  margin: 0 10px 10px 0;
  color: transparent;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
}
#footer .social li span img,
#footer .social li a img {
  width: 35px;
  height: 35px;
  width: 50px;
  height: 50px;
}
#footer .social li span.link-likeus img,
#footer .social li a.link-likeus img {
  width: 95px;
  width: 135px;
}
#footer .payment li {
  float: left;
  margin: 0 10px 10px 0;
}
#footer .payment li.visa img, #footer .payment li.mastercard img {
  width: 65px;
}
#footer .payment li.paypal img {
  width: 100px;
}
#footer .payment li img {
  height: 35px;
}
#footer section[role=subscribe] .col-12 {
  border-top: 1px solid #CCCCCC;
}
#footer section[role=subscribe] .block-subscribe {
  width: 100%;
  margin: 0 auto;
  width: 50%;
}
#footer section[role=subscribe] .block-subscribe .block-title {
  background: none;
  text-align: center;
  position: relative;
  display: table;
  margin: 0 auto;
}
#footer section[role=subscribe] .block-subscribe .block-title strong {
  font-weight: 500;
  padding-left: 50px;
}
#footer section[role=subscribe] .block-subscribe .block-title:before {
  position: absolute;
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 35px;
  color: #94d700;
  content: "x";
  margin-top: -8px;
}
#footer section[role=subscribe] .block-subscribe label, #footer section[role=subscribe] .block-subscribe #wishlist-table td[data-rwd-label]:before, #wishlist-table #footer section[role=subscribe] .block-subscribe td[data-rwd-label]:before {
  padding-bottom: 7px;
}
#footer section[role=subscribe] .block-subscribe .block-content {
  padding: 0;
}
#footer section[role=subscribe] .block-subscribe .block-content:after {
  content: '';
  display: table;
  clear: both;
}
#footer section[role=subscribe] .block-subscribe .input-box {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 65.88078%;
  margin-right: 0;
}
#footer section[role=subscribe] .block-subscribe .input-box:last-child {
  margin-right: 0;
}
#footer section[role=subscribe] .block-subscribe .input-box input[type=email] {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
#footer section[role=subscribe] .block-subscribe .actions {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
  margin: 0;
}
#footer section[role=subscribe] .block-subscribe .actions:last-child {
  margin-right: 0;
}
#footer section[role=subscribe] .block-subscribe .actions .button {
  width: 100%;
  padding: 7px 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
#footer .bottom-links {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 65.88078%;
}
#footer .bottom-links:last-child {
  margin-right: 0;
}
#footer .bottom-links:last-child {
  margin-right: 0;
}
#footer .bottom-links .bottom-menu {
  padding-bottom: 10px;
}
#footer .bottom-links li {
  float: left;
  padding-right: 5px;
  font-size: 13px;
}
#footer .bottom-links li a:after {
  content: "|";
  padding-left: 5px;
}
#footer .bottom-links li:last-child a:after {
  content: "";
  padding-left: 0;
}
#footer .copyright {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
  text-align: right;
  font-size: 13px;
  text-transform: uppercase;
}
#footer .copyright:last-child {
  margin-right: 0;
}
#footer .copyright:last-child {
  margin-right: 0;
}
#footer .form-language,
#footer .currency-switcher,
#footer .store-switcher {
  clear: both;
  margin-bottom: 10px;
}
#footer .form-language,
#footer .currency-switcher {
  display: none;
}
#footer .links {
  width: 22.65625%;
  padding-right: 0;
  margin-right: 3.125%;
}
#footer .links:nth-child(4) {
  margin-right: 0;
}

/* ================================================= *
 * General Product List Styles (not module-specific)
 * ================================================= */
/* -------------------------------------------- *
 * Product List General
 */
body.catalog-category-view .page-title,
body.catalog-category-view .breadcrumbs,
body.catalogsearch-result-index .page-title,
body.catalogsearch-result-index .breadcrumbs,
body.solrsearch-index-index .page-title,
body.solrsearch-index-index .breadcrumbs {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 23.23176%;
  float: none;
  margin-right: 0;
}
body.catalog-category-view .page-title:last-child,
body.catalog-category-view .breadcrumbs:last-child,
body.catalogsearch-result-index .page-title:last-child,
body.catalogsearch-result-index .breadcrumbs:last-child,
body.solrsearch-index-index .page-title:last-child,
body.solrsearch-index-index .breadcrumbs:last-child {
  margin-right: 0;
}
body.catalog-category-view .breadcrumbs li,
body.catalogsearch-result-index .breadcrumbs li,
body.solrsearch-index-index .breadcrumbs li {
  display: none;
}
body.catalog-category-view .breadcrumbs li:first-child, body.catalog-category-view .breadcrumbs li:nth-last-child(2),
body.catalogsearch-result-index .breadcrumbs li:first-child,
body.catalogsearch-result-index .breadcrumbs li:nth-last-child(2),
body.solrsearch-index-index .breadcrumbs li:first-child,
body.solrsearch-index-index .breadcrumbs li:nth-last-child(2) {
  display: inline;
}
body.catalog-category-view .category-title h1,
body.catalog-category-view .page-title h1,
body.catalogsearch-result-index .category-title h1,
body.catalogsearch-result-index .page-title h1,
body.solrsearch-index-index .category-title h1,
body.solrsearch-index-index .page-title h1 {
  border-bottom: none;
  margin-bottom: 15px;
}
body.catalog-category-view .category-title .link-rss,
body.catalog-category-view .page-title .link-rss,
body.catalogsearch-result-index .category-title .link-rss,
body.catalogsearch-result-index .page-title .link-rss,
body.solrsearch-index-index .category-title .link-rss,
body.solrsearch-index-index .page-title .link-rss {
  font-size: 12px;
  text-transform: uppercase;
  color: #A0A0A0;
}

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

/* -------------------------------------------- *
 * Product Name
 */
h2.product-name,
h3.product-name,
h4.product-name,
h5.product-name {
  margin: 0;
  margin-bottom: 0.5em;
  color: #263F6A;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.4;
}
h2.product-name a,
h3.product-name a,
h4.product-name a,
h5.product-name a {
  color: #333333;
}
h2.product-name a:hover,
h3.product-name a:hover,
h4.product-name a:hover,
h5.product-name a:hover {
  color: #333333;
  text-decoration: none;
}

.products-grid .product-name,
.products-list .product-name {
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}
.products-grid .product-name a,
.products-list .product-name a {
  font-weight: 700;
}

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

/* ============================================ *
 * Product Grid
 * ============================================ */
.products-grid {
  position: relative;
  padding-top: gutter(9);
  padding-top: 0;
}
.products-grid:after {
  content: '';
  display: table;
  clear: both;
}

.products-grid > li {
  position: relative;
  margin-bottom: 30px;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 23.23176%;
}
.products-grid > li:last-child {
  margin-right: 0;
}
.products-grid > li:nth-child(2n) {
  margin-right: 0;
}
.products-grid > li:nth-child(2n+1) {
  clear: left;
}
.products-grid > li:last-child {
  margin-right: 0;
}
.products-grid > li:nth-child(2n) {
  margin-right: 2.35765%;
}
.products-grid > li:nth-child(2n+1) {
  clear: none;
}
.products-grid > li:nth-child(3n) {
  margin-right: 0;
}
.products-grid > li:nth-child(3n+1) {
  clear: left;
}
.products-grid > li:last-child {
  margin-right: 0;
}
.products-grid > li:nth-child(3n) {
  margin-right: 2.35765%;
}
.products-grid > li:nth-child(3n+1) {
  clear: none;
}
.products-grid > li:nth-child(4n) {
  margin-right: 0;
}
.products-grid > li:nth-child(4n+1) {
  clear: left;
}
.products-grid > li:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * 1-column grid layout
 */
.col1-layout .products-grid > li {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
  /* iPad Landscape */
}
.col1-layout .products-grid > li:last-child {
  margin-right: 0;
}
.col1-layout .products-grid > li:nth-child(2n) {
  margin-right: 2.35765%;
}
.col1-layout .products-grid > li:nth-child(2n+1) {
  clear: none;
}
.col1-layout .products-grid > li:nth-child(3n) {
  margin-right: 0;
}
.col1-layout .products-grid > li:nth-child(3n+1) {
  clear: left;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  .col1-layout .products-grid > li {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%;
  }
  .col1-layout .products-grid > li:last-child {
    margin-right: 0;
  }
}

/* -------------------------------------------- *
 * 2-columns left or right grid layout
 */
.col2-left-layout .products-grid > li,
.col2-right-layout .products-grid > li {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 23.23176%;
}
.col2-left-layout .products-grid > li:last-child,
.col2-right-layout .products-grid > li:last-child {
  margin-right: 0;
}
.col2-left-layout .products-grid > li:nth-child(2n),
.col2-right-layout .products-grid > li:nth-child(2n) {
  margin-right: 2.35765%;
}
.col2-left-layout .products-grid > li:nth-child(2n+1),
.col2-right-layout .products-grid > li:nth-child(2n+1) {
  clear: none;
}
.col2-left-layout .products-grid > li:nth-child(3n),
.col2-right-layout .products-grid > li:nth-child(3n) {
  margin-right: 0;
}
.col2-left-layout .products-grid > li:nth-child(3n+1),
.col2-right-layout .products-grid > li:nth-child(3n+1) {
  clear: left;
}
.col2-left-layout .products-grid > li:last-child,
.col2-right-layout .products-grid > li:last-child {
  margin-right: 0;
}
.col2-left-layout .products-grid > li:nth-child(3n),
.col2-right-layout .products-grid > li:nth-child(3n) {
  margin-right: 2.35765%;
}
.col2-left-layout .products-grid > li:nth-child(3n+1),
.col2-right-layout .products-grid > li:nth-child(3n+1) {
  clear: none;
}
.col2-left-layout .products-grid > li:nth-child(4n),
.col2-right-layout .products-grid > li:nth-child(4n) {
  margin-right: 0;
}
.col2-left-layout .products-grid > li:nth-child(4n+1),
.col2-right-layout .products-grid > li:nth-child(4n+1) {
  clear: left;
}

/* -------------------------------------------- *
 * col3-layout grid
 */
.col3-layout .products-grid > li {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
}
.col3-layout .products-grid > li:last-child {
  margin-right: 0;
}
.col3-layout .products-grid > li:nth-child(2n) {
  margin-right: 2.35765%;
}
.col3-layout .products-grid > li:nth-child(2n+1) {
  clear: none;
}
.col3-layout .products-grid > li:nth-child(3n) {
  margin-right: 0;
}
.col3-layout .products-grid > li:nth-child(3n+1) {
  clear: left;
}

/* -------------------------------------------- *
 * Grid item styles
 */
.products-grid .product-image {
  width: 100%;
  margin-bottom: 15px;
}

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

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

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

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

.products-grid .price-box {
  margin: 0 0 5px;
}

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

/* ============================================ *
 * Product List
 * ============================================ */
.products-list > li {
  position: relative;
  padding: 0 0 15px;
  margin-bottom: 30px;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  border-bottom: 1px solid #EDEDED;
}
.products-list > li:last-child {
  margin-right: 0;
}
.products-list > li .product-image {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 40.29137%;
}
.products-list > li .product-image:last-child {
  margin-right: 0;
}
.products-list > li .product-image img {
  width: 100%;
  max-width: 100%;
}
.products-list > li .product-shop {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
  margin-right: 0;
}
.products-list > li .product-shop:last-child {
  margin-right: 0;
}
.products-list > li .product-shop .action {
  float: left;
}
.products-list > li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.products-list > li:after {
  content: '';
  display: table;
  clear: both;
}
.products-list > li:first-child {
  padding-top: 0;
}
.products-list > li .product-image {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 23.23176%;
}
.products-list > li .product-image:last-child {
  margin-right: 0;
}
.products-list > li .product-shop {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 74.41059%;
  margin-right: 0;
}
.products-list > li .product-shop:last-child {
  margin-right: 0;
}

.products-list .product-shop .ratings {
  margin: 0;
}
.products-list .product-shop .ratings .rating-box,
.products-list .product-shop .ratings .rating-links {
  float: left;
  margin-right: 7px;
}
.products-list .product-shop .ratings .rating-links {
  margin-top: 4px;
}
.products-list .product-shop .price-box {
  margin-top: 0;
}
.products-list .product-shop .price-box .price {
  font-size: 18px;
}
.products-list .product-shop .desc {
  display: none;
}
.products-list .product-shop .action,
.products-list .product-shop .desc {
  margin: 0 0 15px;
}
.products-list .product-shop .desc {
  display: block;
}
.products-list .product-shop .ratings {
  float: left;
  margin: 10px 0;
}
.products-list .product-shop .ratings .amount {
  display: none;
}
.products-list .product-shop .add-to-links {
  float: right;
  clear: none;
}

.products-list .product-name a {
  font-size: 18px;
}

/* ============================================ *
 * Mini Product List
 * ============================================ */
.mini-products-list {
  float: left;
  width: 100%;
}
.mini-products-list .product-left {
  float: left;
  width: 30%;
  padding-right: 15px;
}
.mini-products-list .product-details {
  float: right;
  width: 70%;
  padding-right: 30px;
}
.mini-products-list li {
  margin-bottom: 10px;
  clear: both;
}
.mini-products-list .product-image {
  float: left;
}

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

/* ============================================ *
 * Category Information
 * ============================================ */
body.catalog-category-view .nbanner,
body.catalogsearch-result-index .nbanner,
body.solrsearch-index-index .nbanner {
  padding-bottom: 30px;
}

.page.department .col2-left-layout .main,
.page.department .col2-left-layout .col-main {
  padding-bottom: 0;
  margin-bottom: 0;
}
.page.department .col1-layout .main {
  padding-top: 0;
}

.content-top .about-link {
  position: relative;
  line-height: 25px;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #A0A0A0;
  text-decoration: underline;
}
.content-top .about-link:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 25px;
  color: #94d700;
  content: "R";
  position: absolute;
  left: 0;
}
.content-top .about-content {
  padding-bottom: 15px;
}

.category-products {
  padding-bottom: 30px;
  clear: both;
}
.category-products:empty {
  padding: 0;
}

.category-info {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  margin-right: 0;
}
.category-info:last-child {
  margin-right: 0;
}
.category-info .title h2 {
  position: relative;
  text-align: center;
  color: #333333;
  font-weight: 700;
  margin-bottom: 30px;
}
.category-info .title h2:before {
  content: "";
  display: block;
  border-top: solid 1px #CCCCCC;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.category-info .title h2 div {
  display: inline-block;
  background: #FFFFFF;
  padding: 0 30px;
  position: relative;
  z-index: 5;
}
.category-info .category-description,
.category-info .category-block {
  margin-bottom: 15px;
  width: 100%;
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Layered Navigation
 * ============================================ */
.block-layered-nav .block-subtitle--filter {
  display: none;
  -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 15px;
  position: relative;
  cursor: pointer;
}
.block-layered-nav .block-subtitle--filter:after {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #94d700;
  content: "v";
  float: right;
  top: 50%;
}

.block-layered-nav .block-content {
  padding: 0;
}
.block-layered-nav .block-content .toggle-tabs {
  display: none;
}
.block-layered-nav .block-content > dl > dt {
  -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 15px;
  position: relative;
  display: block;
}
.block-layered-nav .block-content > dl > dt:after {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #94d700;
  content: "v";
  float: right;
  top: 50%;
}
.block-layered-nav .block-content > dl > dd {
  padding: 15px;
  margin: 0 0 15px;
}
.block-layered-nav .block-content > dl > dd:last-child {
  border-width: 0 1px 1px 1px;
}
.block-layered-nav .block-content > dl > dt {
  color: #94d700;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  padding: 7px 10px;
}
.block-layered-nav .block-content > dl > dd {
  padding: 0 10px;
}
.block-layered-nav .block-content > dl > dd ol > li > span,
.block-layered-nav .block-content > dl > dd ol > li > a {
  padding: 2px 0;
  display: block;
  color: #333333;
  font-weight: 500;
  text-decoration: none;
}

.block-layered-nav .block-content > dl > dt:after {
  display: none;
}

.block-layered-nav .block-title {
  position: relative;
  padding: 8px 15px;
  background-color: #263F6A;
  margin: 0;
  margin-bottom: 10px;
  color: #263F6A;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 10px;
  margin-bottom: 15px;
}
.block-layered-nav .block-title strong {
  font-weight: 500;
}

.block-layered-nav .currently .block-subtitle {
  position: relative;
  padding: 8px 15px;
  background-color: #263F6A;
  margin: 0;
  margin-bottom: 10px;
  color: #263F6A;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 10px;
  display: block;
}
.block-layered-nav .currently ol {
  padding: 15px 10px;
}
.block-layered-nav .currently ol li {
  padding: 2px 0;
}
.block-layered-nav .currently ol li .label {
  font-weight: 500;
  text-transform: uppercase;
}
.block-layered-nav .currently ol li:after {
  content: '';
  display: table;
  clear: both;
}

.block-layered-nav .actions {
  text-align: right;
  padding-left: 10px;
}

/* ============================================ *
 * Main Banner
 * ============================================ */
.main-banner > li {
  padding: 0;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  margin-right: 0;
}
.main-banner > li:last-child {
  margin-right: 0;
}
.main-banner > li:empty {
  display: none;
}

.nbanner.backforward .carousel-nav .carousel-control {
  background: #FFFFFF;
}
.nbanner.backforward .carousel-nav .carousel-control.active {
  background: #94d700;
}
.nbanner.backforward .carousel-control.right:before {
  border-left: 15px solid #FFFFFF;
}
.nbanner.backforward .carousel-control.left:before {
  border-right: 15px solid #FFFFFF;
}

/* ============================================ *
 * Teasers
 * ============================================ */
.teasers-col2 > li,
.teasers-col1 > li {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
}
.teasers-col2 > li:last-child,
.teasers-col1 > li:last-child {
  margin-right: 0;
}
.teasers-col2 > li:empty,
.teasers-col1 > li:empty {
  display: none;
}

.teasers-col1 {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
}
.teasers-col1:last-child {
  margin-right: 0;
}
.teasers-col1:last-child {
  margin-right: 0;
}
.teasers-col1 > li {
  padding: 5px 0;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
  padding: 10px 0;
  float: left;
  display: block;
  margin-right: 4.82916%;
  width: 47.58542%;
}
.teasers-col1 > li:last-child {
  margin-right: 0;
}
.teasers-col1 > li:nth-child(2n) {
  margin-right: 0;
}
.teasers-col1 > li:nth-child(2n+1) {
  clear: left;
}
.teasers-col1 > li:last-child {
  margin-right: 0;
}
.teasers-col1 > li:nth-child(-n+2) {
  padding-bottom: 5px;
  padding-bottom: 1%;
  padding-bottom: 1.8%;
  padding-bottom: 2.6%;
}

.teasers-col2 {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
}
.teasers-col2:last-child {
  margin-right: 0;
}
.teasers-col2:last-child {
  margin-right: 0;
}
.teasers-col2 > li {
  padding: 10px 0;
}

section[role=banner] {
  background-color: #FFF;
}
section[role=banner] .main-banner {
  background-color: #FFF;
}

section[role=teasers] {
  background-color: #FFF;
}
section[role=teasers] .main-teasers {
  background-color: #FFF;
  padding-top: 15px;
  padding-bottom: 15px;
}

section[role=bottom-teasers] {
  background-color: #FFF;
}
section[role=bottom-teasers] .row {
  background-color: #FFF;
}

/* ============================================ *
* Newsletter Subscribe - Popup
* ============================================ */
.subscribe-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(69, 69, 69, 0.6);
  z-index: 99999;
}
.subscribe-modal .modal-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 85%;
  max-width: 600px;
  max-height: 85%;
  overflow-y: auto;
  z-index: 1000;
  padding: 15px;
  background: #FFFFFF;
  -moz-box-shadow: 0 0 20px #333;
  box-shadow: 0 0 20px #333;
  border-radius: 10px;
}
.subscribe-modal .modal-close:before {
  position: absolute;
  right: 5px;
  top: 8px;
  display: block;
  cursor: pointer;
  z-index: 999;
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 30px;
  color: #263F6A;
  content: "C";
  color: #333333;
  padding: 5px;
  line-height: 14px;
}

.ndisplay {
  width: 100%;
  content: '';
  display: table;
  clear: both;
  margin-bottom: 30px;
}
.ndisplay .title a {
  text-decoration: none;
}
.ndisplay .title h2 {
  border-top: 1px solid #CCCCCC;
  padding: 30px 0 7px;
  text-align: center;
  margin-bottom: 15px;
  text-transform: none;
  font-weight: 700;
  color: #333;
}
.ndisplay .products-grid > li .actions {
  min-height: 50px;
}
.ndisplay .view-more {
  text-align: center;
}
.ndisplay .title h2 {
  margin-bottom: 30px;
}

.product-collateral .ndisplay {
  border-bottom: 0;
}
.product-collateral .ndisplay .title h2 {
  display: none;
}

body.cms-index-index .ndisplay .title {
  background: #94d700;
}
body.cms-index-index .ndisplay .title h2 {
  border-top: 0;
  padding: 15px 0;
  color: #263F6A;
  font-size: 30px;
  padding: 30px 0;
}
body.cms-index-index .ndisplay .product-display {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
}
body.cms-index-index .ndisplay .product-display:last-child {
  margin-right: 0;
}

/* ============================================ *
 * Brand Slider
 * ============================================ */
.brand-display .title {
  background: #94d700;
}
.brand-display .title h2 {
  border-top: 0;
  padding: 15px 0;
  color: #263F6A;
  text-transform: none;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  padding: 30px 0;
}
.brand-display .row {
  display: block;
}
.brand-display .row .brand-slider {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
}
.brand-display .row .brand-slider:last-child {
  margin-right: 0;
}
.brand-display .slick-slider {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  position: relative;
  padding: 30px 0;
}
.brand-display .slick-slider:last-child {
  margin-right: 0;
}
.brand-display .slick-slider .slick-list {
  width: 80%;
  margin: 0 10%;
  width: 94%;
  margin: 0 3%;
}
.brand-display .slick-slider .slick-list .slick-slide {
  text-align: center;
  outline: none;
  margin: 0 15px;
}
.brand-display .slick-slider .slick-list .slick-slide img {
  text-align: center;
  margin: 0 auto;
}
.brand-display .slick-slider .slick-arrow {
  position: absolute;
  background: none;
  border: 0;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.brand-display .slick-slider .slick-arrow:active, .brand-display .slick-slider .slick-arrow:hover {
  border: 0;
  outline: none;
}
.brand-display .slick-slider .slick-arrow.slick-prev {
  left: 0;
}
.brand-display .slick-slider .slick-arrow.slick-prev:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 35px;
  color: #333333;
  content: "l";
}
.brand-display .slick-slider .slick-arrow.slick-next {
  right: 0;
}
.brand-display .slick-slider .slick-arrow.slick-next:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 35px;
  color: #333333;
  content: "r";
}

.nlabel img {
  width: auto !important;
  max-width: 100%;
  border: 0 !important;
  position: absolute;
  z-index: 100;
}
.nlabel img.v-center {
  top: 50%;
}
.nlabel img.v-top {
  top: 0;
}
.nlabel img.v-bottom {
  bottom: 0;
}
.nlabel img.h-center {
  left: 50%;
}
.nlabel img.h-right {
  right: 0;
}
.nlabel img.h-left {
  left: 0;
}

.product-img-box .nproductzoom.more-views {
  display: none;
  display: block;
}

/* ============================================ *
 * Lightbox
 * ============================================ */
a.fancybox-close {
  top: 8px;
  right: 8px;
  text-decoration: none;
  background: #FFFFFF;
  border-radius: 20px;
}
a.fancybox-close:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 35px;
  color: #94d700;
  content: "C";
}

/* ============================================ *
 * Slider / Swiper
 * ============================================ */
.slidesjs-pagination {
  display: table;
  margin: -3px auto 0;
}
.slidesjs-pagination .slidesjs-pagination-item {
  display: inline;
}
.slidesjs-pagination .slidesjs-pagination-item a {
  display: inline-block;
  margin: 0 3px;
  width: 15px;
  height: 15px;
  background: #A0A0A0;
  border-radius: 15px;
  font-size: 0;
  color: transparent;
  text-decoration: none !important;
}
.slidesjs-pagination .slidesjs-pagination-item a.active {
  background: #94d700;
}

a.slidesjs-previous,
a.slidesjs-next {
  text-decoration: none !important;
  outline: none;
}

.slidesjs-previous,
.slidesjs-next {
  position: absolute;
  z-index: 999;
  margin-top: 0;
  background-image: none;
  width: auto;
  height: auto;
  font-size: 0;
  color: transparent;
  text-decoration: none;
}
.slidesjs-previous:before,
.slidesjs-next:before {
  font-size: 50px;
  line-height: 0;
  color: #A0A0A0;
  vertical-align: top;
  text-decoration: none;
}

.slidesjs-previous {
  float: left;
  left: -10px;
}
.slidesjs-previous:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 35px;
  color: #263F6A;
  content: "l";
}

.slidesjs-next {
  float: right;
  right: -10px;
}
.slidesjs-next:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 35px;
  color: #263F6A;
  content: "r";
}

.slidesjs-pagination {
  display: none;
}

.slidesjs-next,
.slidesjs-previous {
  top: 50%;
  margin-top: -18px;
}

.slidesjs-previous {
  left: 0;
}

.slidesjs-next {
  right: 0;
}

body[class*="neotheme-blog-"] {
  /* Blog Roll */
  /* Toolbar */
  /* Blog Commenting */
  /* Sidebar Blocks - Categories / Latest Posts / RSS */
  /* Widget: Latest Posts */
}
body[class*="neotheme-blog-"] .blog-summary {
  margin-bottom: 60px;
}
body[class*="neotheme-blog-"] article.post {
  padding-bottom: 15px;
  /* Post Title */
  /* Post Meta */
  /* Post Summary */
  /* Post Info */
}
body[class*="neotheme-blog-"] article.post .post-title h1, body[class*="neotheme-blog-"] article.post .post-title h2 {
  margin-bottom: 0;
}
body[class*="neotheme-blog-"] article.post .post-title h1 a, body[class*="neotheme-blog-"] article.post .post-title h2 a {
  text-decoration: none;
}
body[class*="neotheme-blog-"] article.post .post-metadata {
  padding: 10px 0 30px;
  color: #263F6A;
  font-weight: 500;
}
body[class*="neotheme-blog-"] article.post .post-summary .read-more {
  margin-top: 30px;
  padding-bottom: 5px;
}
body[class*="neotheme-blog-"] article.post .post-summary .read-more a {
  text-decoration: none;
}
body[class*="neotheme-blog-"] article.post .post-info {
  width: 100%;
  border-bottom: 1px solid #CCCCCC;
  content: '';
  display: table;
  clear: both;
  padding: 30px 0 10px;
  color: #263F6A;
  font-weight: 500;
}
body[class*="neotheme-blog-"] article.post .post-info a {
  color: #263F6A;
}
body[class*="neotheme-blog-"] article.post .post-info ul.post-categories {
  float: left;
}
body[class*="neotheme-blog-"] article.post .post-info ul.post-categories > li {
  display: inline;
  line-height: 35px;
}
body[class*="neotheme-blog-"] article.post .post-info ul.post-comments {
  float: right;
  display: none;
}
body[class*="neotheme-blog-"] article.post .post-info ul.sharing-links {
  float: right;
  clear: none;
  margin: 0;
}
body[class*="neotheme-blog-"] .toolbar {
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
}
body[class*="neotheme-blog-"] .toolbar .pager {
  margin: 15px 0 10px;
}
body[class*="neotheme-blog-"] .toolbar .pager .limiter {
  margin-right: 15px;
}
body[class*="neotheme-blog-"] .blog-detail .comments-list h2 {
  font-size: 18px;
}
body[class*="neotheme-blog-"] .blog-detail .comments-list li {
  border-bottom: 1px solid #efefef;
  padding: 10px 0px 20px;
  margin-bottom: 10px;
}
body[class*="neotheme-blog-"] .blog-detail .comments-list .comment-metadata {
  margin-bottom: 10px;
}
body[class*="neotheme-blog-"] .blog-detail .comments-list .comment-metadata h4 {
  display: inline;
}
body[class*="neotheme-blog-"] .blog-detail .comments-list .comment-metadata li {
  display: inline;
  border: none;
}
body[class*="neotheme-blog-"] .blog-detail .comment-form .fieldset {
  margin-top: 30px;
}
body[class*="neotheme-blog-"] .blog-detail .comment-form .fieldset h2.legend {
  border-bottom: 0;
  margin-bottom: 0;
  font-size: 18px;
}
body[class*="neotheme-blog-"] .blog-detail .comment-form .fb_iframe_widget,
body[class*="neotheme-blog-"] .blog-detail .comment-form .fb_iframe_widget span,
body[class*="neotheme-blog-"] .blog-detail .comment-form .fb_iframe_widget span iframe[style] {
  min-width: 100% !important;
  width: 100% !important;
}
body[class*="neotheme-blog-"] .block-blog .block-content li {
  padding-bottom: 7px;
}
body[class*="neotheme-blog-"] .widget-blog-link {
  display: block;
  text-align: left;
}

div.sbs_autocomplete_inner {
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(228, 228, 228, 0.1) inset;
  left: -15px;
  position: absolute;
  top: 16px;
  width: 100%;
  box-sizing: content-box;
  left: 0;
  top: 2px;
  padding: 15px 30px;
  border-top: 0;
  box-sizing: border-box;
}
div.sbs_autocomplete_inner .sbs_autocomplete_close_button {
  display: none;
}
div.sbs_autocomplete_inner .suggest_divider {
  padding: 20px 0 5px;
  font-weight: 500;
  font-size: 15px;
  color: #263F6A;
}
div.sbs_autocomplete_inner .suggest_divider:first-child {
  padding: 5px 0;
}
div.sbs_autocomplete_inner .suggest_divider:first-letter {
  text-transform: uppercase;
}
div.sbs_autocomplete_inner .suggest_divider b {
  font-weight: 500;
  color: #94d700;
}
div.sbs_autocomplete_inner .suggest_divider span.view-all-category,
div.sbs_autocomplete_inner .suggest_divider span.view-all-brand {
  float: right;
  font-size: 11px;
}
div.sbs_autocomplete_inner .suggested-item {
  text-transform: uppercase;
  padding: 5px;
  color: #263F6A;
  font-weight: 700;
}
div.sbs_autocomplete_inner .suggested-item strong {
  font-weight: 500;
  color: #94d700;
}
div.sbs_autocomplete_inner .suggested-item.selected {
  background: rgba(242, 242, 242, 0.95);
  cursor: pointer;
}
div.sbs_autocomplete_inner .suggested-item:after {
  content: '';
  display: table;
  clear: both;
}
div.sbs_autocomplete_inner .suggested-item.product .sbs_search_suggest_thumb {
  float: left;
  width: 20%;
  margin-right: 5%;
}
div.sbs_autocomplete_inner .suggested-item.product .sbs_search_suggest_thumb img {
  width: auto;
  max-width: 100%;
}
div.sbs_autocomplete_inner .suggested-item.product .sbs_search_suggest_item_title,
div.sbs_autocomplete_inner .suggested-item.product .sbs_search_suggest_item_subtitle {
  float: right;
  width: 75%;
}
div.sbs_autocomplete_inner .suggested-item.product .sbs_search_suggest_item_subtitle {
  display: none;
}
div.sbs_autocomplete_inner .suggested-item.product .price,
div.sbs_autocomplete_inner .suggested-item.product .special-price {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  display: inline-block;
}
div.sbs_autocomplete_inner .suggested-item.product .price {
  color: #F40101;
}
div.sbs_autocomplete_inner .suggested-item.product .old-price {
  color: #A0A0A0;
  text-decoration: line-through;
  font-weight: 400;
}
div.sbs_autocomplete_inner .suggested-item.product .special-price {
  color: #F40101;
}
div.sbs_autocomplete_inner .sbs_search_autocomplete_box_bottom {
  clear: both;
  padding-top: 20px;
}

body.storelocator-index-index {
  /* Store Locator Filter */
  /* Content Section */
  /* Legacy Styles */
  /* tab_content */
}
body.storelocator-index-index .col2-set .col-1,
body.storelocator-index-index .col2-set .col-2 {
  padding: 0;
}
body.storelocator-index-index .store-locator-filtering {
  background: #EEE;
  margin-bottom: 15px;
  padding: 15px;
  /* Form Elements */
  /* Store Tags */
}
body.storelocator-index-index .store-locator-filtering .fieldset {
  padding: 0;
}
body.storelocator-index-index .store-locator-filtering .legend {
  font-size: 16px;
  text-transform: uppercase;
  color: #94d700;
}
body.storelocator-index-index .store-locator-filtering .legend a {
  font-size: 12px;
  text-decoration: none;
  float: right;
  line-height: 20px;
}
body.storelocator-index-index .store-locator-filtering .store-locator-list {
  position: relative;
  margin-bottom: 15px;
}
body.storelocator-index-index .store-locator-filtering .store-locator-list label, body.storelocator-index-index .store-locator-filtering .store-locator-list #wishlist-table td[data-rwd-label]:before, #wishlist-table body.storelocator-index-index .store-locator-filtering .store-locator-list td[data-rwd-label]:before {
  line-height: 30px;
}
body.storelocator-index-index .store-locator-filtering .store-locator-list .input-text {
  float: right;
  width: 100%;
}
body.storelocator-index-index .store-locator-filtering .store-locator-list .input-text#radius:disabled {
  background: #CCC;
  height: 30px;
}
body.storelocator-index-index .store-locator-filtering .store-locator-list .btn-search {
  position: absolute;
  top: 30px;
  right: 0;
  border: 0;
  display: block;
  width: 40px;
  height: 30px;
  background: #94d700;
  color: #263F6A;
  cursor: pointer;
}
body.storelocator-index-index .store-locator-filtering .store-locator-list .input-text {
  width: 75%;
}
body.storelocator-index-index .store-locator-filtering .store-locator-list .btn-search {
  top: 0;
}
body.storelocator-index-index .store-locator-filtering .store-tags {
  margin-top: 15px;
  margin-top: 0;
}
body.storelocator-index-index .store-locator-filtering .store-tags .form-list {
  position: relative;
  content: '';
  display: table;
  clear: both;
  padding-bottom: 30px;
}
body.storelocator-index-index .store-locator-filtering .store-tags .form-list .store-locator-tag {
  width: auto;
}
body.storelocator-index-index .store-locator-filtering .store-tags .form-list .store-locator-tag a {
  float: left;
  background: #263F6A;
  color: #FFF;
  margin-right: 10px;
  display: block;
  text-decoration: none;
  padding: 0 15px;
  height: 30px;
  line-height: 30px;
}
body.storelocator-index-index .store-locator-filtering .store-tags .form-list .store-locator-tag a.tag_active {
  background: #94d700;
}
body.storelocator-index-index .store-locator-filtering .store-tags .form-list .store-locator-tag.online-stores a {
  background: #94d700;
  position: absolute;
  bottom: 0;
  left: 0;
}
body.storelocator-index-index #store-content {
  /* Map */
  /* Store List */
}
body.storelocator-index-index #store-content #map {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  height: 400px;
  margin-bottom: 15px;
}
body.storelocator-index-index #store-content #map:last-child {
  margin-right: 0;
}
body.storelocator-index-index #store-content .store-box {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  height: 530px;
  margin-right: 0;
}
body.storelocator-index-index #store-content .store-box:last-child {
  margin-right: 0;
}
body.storelocator-index-index #store-content .store-box .store-title {
  position: relative;
  padding: 8px 15px;
  background-color: #263F6A;
  margin: 0;
  margin-bottom: 10px;
  color: #263F6A;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 10px;
  margin-bottom: 15px;
}
body.storelocator-index-index #store-content .store-box #list-store {
  height: 480px;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 15px;
  border-bottom: 1px solid #CCCCCC;
}
body.storelocator-index-index #store-content .store-box #list-store li.item {
  min-height: 100px;
  height: auto;
  margin-bottom: 10px;
  border: 1px solid #CCCCCC;
  padding: 7px;
  list-style: none;
  position: relative;
  cursor: pointer;
}
body.storelocator-index-index #store-content .store-box #list-store li.item:hover, body.storelocator-index-index #store-content .store-box #list-store li.item.active {
  background: #EEE;
}
body.storelocator-index-index #store-content .store-box #list-store li.item p {
  font-size: 12px;
}
body.storelocator-index-index #store-content .store-box #list-store li.item .btn-drop {
  position: absolute;
  top: 5px;
  right: 5px;
}
body.storelocator-index-index #store-content .store-box #list-store li.item .btn-drop:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 25px;
  color: #94d700;
  content: "v";
}
body.storelocator-index-index #store-content .store-box #list-store li.item .btn-drop.active:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 25px;
  color: #94d700;
  content: "u";
}
body.storelocator-index-index #store-content #map {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 65.88078%;
  margin-bottom: 0;
  height: 530px;
}
body.storelocator-index-index #store-content #map:last-child {
  margin-right: 0;
}
body.storelocator-index-index #store-content .store-box {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
  margin-right: 0;
}
body.storelocator-index-index #store-content .store-box:last-child {
  margin-right: 0;
}
body.storelocator-index-index #store-content #map {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 74.41059%;
  margin-bottom: 0;
}
body.storelocator-index-index #store-content #map:last-child {
  margin-right: 0;
}
body.storelocator-index-index #store-content .store-box {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 23.23176%;
  margin-right: 0;
}
body.storelocator-index-index #store-content .store-box:last-child {
  margin-right: 0;
}
body.storelocator-index-index #store-content .store_name {
  color: #94d700;
  font-size: 13px;
  font-weight: 500;
}
body.storelocator-index-index #store-content .store-hours {
  font-size: 12px;
  margin-top: 10px;
}
body.storelocator-index-index #store-content .store-hours h3 {
  font-size: 12px;
  margin-bottom: 3px;
}
body.storelocator-index-index .btn-directions {
  display: block;
  background: #0091ce;
  color: #FFF;
  padding: 5px 10px;
  cursor: pointer;
  margin: 10px 0;
  font-weight: 500;
  border-radius: 15px;
  text-align: center;
  width: 80px;
}
body.storelocator-index-index .btn-directions.active {
  background: #0091ce;
  color: #FFF;
}
body.storelocator-index-index #map .store_popup {
  width: 350px;
}
body.storelocator-index-index #map .store_popup .store_navigation {
  padding-right: 30px;
}
body.storelocator-index-index .store-pickup-image {
  float: left;
  margin-right: 5px;
}
body.storelocator-index-index .locator-main-outer .locator-image-small {
  border: 2px solid #DDDDDD;
  float: left;
  height: 56px;
  overflow: hidden;
  width: 56px;
}
body.storelocator-index-index .locator-image-main {
  margin: 0 0 13px;
}
body.storelocator-index-index .locator-main-outer .more-views h2 {
  border-bottom: 1px solid #CCCCCC;
  font-size: 11px;
  margin: 0 0 8px;
  text-transform: uppercase;
  font-weight: 500;
}
body.storelocator-index-index .store-locator-title {
  color: #de5400;
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 5px;
  display: block;
}
body.storelocator-index-index .more-views ul li {
  float: left;
  padding: 3px;
  margin: 1px;
  border: 1px solid #e6e6e6;
}
body.storelocator-index-index .magestore-map-image:hover img {
  box-shadow: 0 0 5px #9b9494;
}
body.storelocator-index-index .locator-image-small:hover img {
  border: 1px solid #ccc;
}
body.storelocator-index-index #description {
  overflow: auto;
  max-height: 250px;
}
body.storelocator-index-index .magestore-storelocator-getdirection {
  border: 1px solid #E5E6E3;
  background-color: #FFFFFF;
  margin-top: -10px;
  margin-bottom: 10px;
  width: 104%;
}
body.storelocator-index-index .magestore-storelocator-navigation {
  margin-left: 3px;
  margin-top: 5px;
  margin-bottom: 5px;
  display: block;
}
body.storelocator-index-index #list-store {
  display: none;
}
body.storelocator-index-index #list-store .up {
  background-position: -16px 0px;
}
body.storelocator-index-index #list-store .store_navigation {
  display: none;
}
body.storelocator-index-index .store-locator-tag .tag_active {
  background: #B6DA25;
}
body.storelocator-index-index .store-locator-view-detail {
  float: left;
  width: 40%;
}
body.storelocator-index-index .store-locator-span-tag {
  font-weight: 500;
  border: 1px solid #E5E5E5;
  position: absolute;
  top: -10px;
  padding: 2px;
  background-color: #F1F0F0;
  background: url(storelocator/tag-bg.png) repeat;
}
body.storelocator-index-index #store_information {
  margin: 20px 0 0 0;
  min-height: 280px;
}
body.storelocator-index-index .open_hour_title {
  background: #E6E6E6 5px;
  text-align: center;
  line-height: 30px;
  height: 30px;
  color: #161166;
}
body.storelocator-index-index #open_hour {
  float: left;
  width: 100%;
  margin: 0 0 10px 0;
}
body.storelocator-index-index #open_hour ul li {
  width: 100%;
  float: left;
}
body.storelocator-index-index ul#travel-modes {
  width: 150px;
  margin: 0 auto;
}
body.storelocator-index-index ul#travel-modes li {
  float: left;
}
body.storelocator-index-index ul#travel-modes li input[type="radio"]:checked + label, body.storelocator-index-index ul#travel-modes li #wishlist-table input[type="radio"]:checked + td[data-rwd-label]:before, #wishlist-table body.storelocator-index-index ul#travel-modes li input[type="radio"]:checked + td[data-rwd-label]:before {
  background-color: #2a8a15;
}
body.storelocator-index-index ul#travel-modes li input[type="radio"] {
  visibility: hidden;
  position: absolute;
}
body.storelocator-index-index ul#travel-modes li label, body.storelocator-index-index ul#travel-modes li #wishlist-table td[data-rwd-label]:before, #wishlist-table body.storelocator-index-index ul#travel-modes li td[data-rwd-label]:before {
  cursor: pointer;
  display: block;
  height: 28px;
  width: 40px;
  background-color: #d0d0d0;
  color: #fff;
  text-indent: -9999px;
  margin-right: 10px;
}
body.storelocator-index-index ul#travel-modes li label, body.storelocator-index-index ul#travel-modes li #wishlist-table td[data-rwd-label]:before, #wishlist-table body.storelocator-index-index ul#travel-modes li td[data-rwd-label]:before, body.storelocator-index-index #directionsForm ol.form li.swap-locations-wrapper button#swap-locations {
  background-image: url("../../images/storelocator/sl-directions-form-atlas.png");
  background-repeat: no-repeat;
  background-position: left top;
}
body.storelocator-index-index ul#travel-modes li.transit label, body.storelocator-index-index ul#travel-modes li.transit #wishlist-table td[data-rwd-label]:before, #wishlist-table body.storelocator-index-index ul#travel-modes li.transit td[data-rwd-label]:before {
  background-position: -40px top;
}
body.storelocator-index-index ul#travel-modes li.walking label, body.storelocator-index-index ul#travel-modes li.walking #wishlist-table td[data-rwd-label]:before, #wishlist-table body.storelocator-index-index ul#travel-modes li.walking td[data-rwd-label]:before {
  background-position: -80px top;
}
body.storelocator-index-index ul#travel-modes li.bicycling label, body.storelocator-index-index ul#travel-modes li.bicycling #wishlist-table td[data-rwd-label]:before, #wishlist-table body.storelocator-index-index ul#travel-modes li.bicycling td[data-rwd-label]:before {
  background-position: -120px top;
}
body.storelocator-index-index .directions-type {
  float: left;
  margin-bottom: 20px;
  width: 100%;
  background: #E6E6E6;
}
body.storelocator-index-index .directions-input {
  margin-bottom: 10px;
  clear: both;
}
body.storelocator-index-index .directions-input label, body.storelocator-index-index .directions-input #wishlist-table td[data-rwd-label]:before, #wishlist-table body.storelocator-index-index .directions-input td[data-rwd-label]:before {
  background: black;
  color: white;
  width: 25px;
  height: 25px;
  float: left;
  text-align: center;
  line-height: 25px;
}
body.storelocator-index-index .directions-input input {
  height: 21px;
  width: 80%;
}
body.storelocator-index-index .error {
  display: none;
}
body.storelocator-index-index .swap-locations-wrapper {
  height: 0;
  position: absolute;
  right: 3px;
  bottom: 87px;
}
body.storelocator-index-index .swap-locations-wrapper button {
  background-image: url("../../images/storelocator/sl-directions-form-atlas.png");
  background-repeat: no-repeat;
  text-indent: -9999px;
  background-position: -157px top;
  height: 40px;
  width: 28px;
  border: 0;
}
body.storelocator-index-index #get_direction {
  background: green;
  border: 1px green;
  padding: 5px;
  color: white;
}
body.storelocator-index-index .ui-tabs .ui-tabs-nav li {
  width: 48%;
}
body.storelocator-index-index .adp-directions {
  float: left;
  width: 100%;
}
body.storelocator-index-index .adp-summary {
  float: left;
  width: 100%;
}
body.storelocator-index-index .adp-summary span {
  width: 30%;
  float: left;
  text-align: center;
}
body.storelocator-index-index .directions {
  width: 70%;
}
body.storelocator-index-index .adp-legal-hide {
  background: url(../../images/storelocator/direct-hidden.png) no-repeat;
  height: 50px !important;
  width: 229px !important;
}
body.storelocator-index-index .adp table {
  clear: both;
}
body.storelocator-index-index #tabs-1, body.storelocator-index-index #tabs-2 {
  display: none;
}
@media screen and (max-width: 700px) {
  body.storelocator-index-index #map, body.storelocator-index-index .store-box, body.storelocator-index-index .store-locator-view-detail {
    width: 100%;
    clear: both;
  }
}
body.storelocator-index-index .tab_wrap {
  border: 1px solid #999;
  width: 100%;
}
body.storelocator-index-index .tabs {
  width: 100%;
  margin: auto;
  overflow: hidden;
  background: #F9F9F9;
}
body.storelocator-index-index .tabs ul {
  list-style: none;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
body.storelocator-index-index .tabs li a {
  text-align: center;
  width: 49.8%;
  color: #444444;
  display: block;
  float: left;
  font-weight: 500;
  padding: 10px 0;
  text-align: center;
  text-decoration: none;
  border: none;
  border-left: 1px solid #d9d9d9;
}
body.storelocator-index-index .tabs li a:hover {
  color: #7d7d7d;
  background: #FFFFFF;
}
body.storelocator-index-index .tabs li:first-child a {
  border-left: none;
}
body.storelocator-index-index .tabs li a.active {
  background: #FFFFFF;
  border: none;
  border-left: 1px solid #d9d9d9;
}
body.storelocator-index-index .tabs li:first-child a.active {
  border: none;
  border-bottom: 1px solid #FFFFFF;
}
body.storelocator-index-index .tabs li:last-child a.active {
  border: none;
  border-left: 1px solid #d9d9d9;
  border-bottom: 1px solid #FFFFFF;
}
body.storelocator-index-index .tab_content {
  background: #FFF;
  padding: 0;
  display: none;
  position: relative;
}
body.storelocator-index-index .tab_content.active {
  display: block;
}
body.storelocator-index-index .tab_content ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
body.storelocator-index-index .tab_content li {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #d6dde0;
}
body.storelocator-index-index .tab_content li:last-child {
  border-bottom: none;
}
body.storelocator-index-index .tab_content li a {
  display: block;
  list-style: none;
  overflow: hidden;
  padding: 10px;
  text-decoration: none;
  color: #444444;
}
body.storelocator-index-index .tab_content li a:hover {
  color: #000000;
  background: #F5F5F5;
}
body.storelocator-index-index .tab_content li small {
  color: #AAAAAA;
  font-size: 11px;
  font-style: italic;
}
body.storelocator-index-index .tab_content li a:hover small {
  color: #AAAAAA;
}
@media print {
  body.storelocator-index-index .store-locator-search-box {
    display: none;
  }
  body.storelocator-index-index .store-locator-content-bottom {
    display: none;
  }
  body.storelocator-index-index #store_info {
    display: none;
  }
  body.storelocator-index-index .store_info {
    display: none;
  }
}

.featured-categories {
  float: left;
  width: 100%;
  padding: 30px 0;
}
.featured-categories h2 {
  position: relative;
  text-align: center;
  color: #333333;
  font-weight: 700;
  margin-bottom: 30px;
}
.featured-categories h2:before {
  content: "";
  display: block;
  border-top: solid 1px #CCCCCC;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.featured-categories h2 div {
  display: inline-block;
  background: #FFFFFF;
  padding: 0 30px;
  position: relative;
  z-index: 5;
}
.featured-categories li.item {
  position: relative;
  margin-left: 0;
}
.featured-categories li.item .product-image {
  margin-bottom: 0;
}
.featured-categories li.item h3 {
  -webkit-transform: skew(-25deg);
  -moz-transform: skew(-25deg);
  -o-transform: skew(-25deg);
  background-color: #263F6A;
  width: 80%;
  margin: 0 0 0 20px;
  border-top-right-radius: 10px;
  position: absolute;
  bottom: 0;
}
.featured-categories li.item h3 span {
  -webkit-transform: skew(25deg);
  -moz-transform: skew(25deg);
  -o-transform: skew(25deg);
  background-color: #263F6A;
  margin-left: -20px;
  width: 100%;
  display: block;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  color: #FFFFFF;
  padding: 10px;
}
.featured-categories li.item h3 span:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 16px;
  color: #94d700;
  content: "B";
  font-size: 12px;
  padding-right: 10px;
}

/* -------------------------------------------- *
 * 1-column grid layout
 */
.col1-layout .featured-categories .products-grid > li {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
}
.col1-layout .featured-categories .products-grid > li:last-child {
  margin-right: 0;
}
.col1-layout .featured-categories .products-grid > li:last-child {
  margin-right: 0;
}
.col1-layout .featured-categories .products-grid > li:nth-child(3n) {
  margin-right: 2.35765%;
}
.col1-layout .featured-categories .products-grid > li:nth-child(3n+1) {
  clear: none;
}
.col1-layout .featured-categories .products-grid > li:nth-child(2n) {
  margin-right: 0;
}
.col1-layout .featured-categories .products-grid > li:nth-child(2n+1) {
  clear: left;
}
.col1-layout .featured-categories .products-grid > li:last-child {
  margin-right: 0;
}
.col1-layout .featured-categories .products-grid > li:nth-child(2n) {
  margin-right: 2.35765%;
}
.col1-layout .featured-categories .products-grid > li:nth-child(2n+1) {
  clear: none;
}
.col1-layout .featured-categories .products-grid > li:nth-child(3n) {
  margin-right: 0;
}
.col1-layout .featured-categories .products-grid > li:nth-child(3n+1) {
  clear: left;
}

/* ============================================ *
 * Catalog - Product
 * ============================================ */
.product-view .product-essential .product-name,
.product-view .product-essential .price-info,
.product-view .product-essential .product-notifications,
.product-view .product-essential .short-description {
  margin-bottom: 15px;
  clear: both;
}
.product-view .product-essential .ratings {
  float: left;
  margin: 0 0 15px;
}
.product-view .product-essential .ratings .amount {
  float: right;
  margin: 2px 0;
}
.product-view .product-essential .ratings .rating-box {
  float: left;
  margin: 2px 10px 2px 0;
}
.product-view .product-essential .ratings:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .product-essential .price-box {
  margin-top: 0;
}
.product-view .product-essential .price-box .old-price,
.product-view .product-essential .price-box .special-price,
.product-view .product-essential .price-box .regular-price {
  padding-right: 0;
  line-height: 1.2;
}
.product-view .product-essential .price-box .special-price .price-label {
  font-size: 16px;
  text-transform: uppercase;
}
.product-view .product-essential .price-box .special-price span.weee {
  color: #333333;
}
.product-view .product-essential .price-box .special-price span.weee span.price {
  font-size: 16px;
}
.product-view .product-essential .price-box .price-excluding-tax,
.product-view .product-essential .price-box .price-including-tax {
  display: block;
  line-height: 1.2;
  color: #333333;
}
.product-view .product-essential .price-box .price-excluding-tax .label,
.product-view .product-essential .price-box .price-including-tax .label {
  font-size: 16px;
  font-weight: 400;
}
.product-view .product-essential .price-box .price-excluding-tax .price,
.product-view .product-essential .price-box .price-including-tax .price {
  font-size: 20px;
}
.product-view .product-essential .product-notifications {
  padding-bottom: 7px;
  border-bottom: 1px solid #CCCCCC;
}
.product-view .product-essential .product-notifications .availability {
  float: left;
  font-size: 16px;
}
.product-view .product-essential .product-notifications .product-alerts {
  float: right;
  text-align: right;
}
.product-view .product-essential .product-notifications .product-alerts .alert-price,
.product-view .product-essential .product-notifications .product-alerts .alert-stock {
  line-height: 35px;
  display: block;
}
.product-view .product-essential .product-notifications:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .product-essential:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .product-shop .product-name .h1,
.product-view .product-img-box .product-name h1 {
  color: #333333;
  margin-bottom: 10px;
  border: 0;
}
.product-view .product-top {
  border-bottom: 1px solid #CCCCCC;
}
.product-view .product-info-top {
  margin-bottom: 30px;
}
.product-view .product-info-top .product-name {
  border-bottom: 1px solid #CCCCCC;
}
.product-view .product-bottom {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  margin-right: 0;
  margin-bottom: 30px;
}
.product-view .product-bottom:last-child {
  margin-right: 0;
}
.product-view .product-bottom:empty {
  display: none;
}
.product-view .product-bottom .product-options {
  margin-top: 0;
  padding-top: 0;
}
.product-view .product-shop {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 40.29137%;
  float: right;
  margin-right: 0;
}
.product-view .product-shop:last-child {
  margin-right: 0;
}
.product-view .product-shop .product-info {
  display: none;
}
.product-view .product-shop .short-description {
  padding-bottom: 15px;
}
.product-view .product-shop .add-to-links {
  clear: none;
  margin: 0 0 15px;
}
.product-view .product-shop .add-to-links a {
  line-height: 25px;
  padding-left: 30px;
  margin-bottom: 7px;
}
.product-view .product-shop .add-to-links a.link-wishlist:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 25px;
  color: #263F6A;
  content: "w";
}
.product-view .price-box.map-info a {
  display: inherit;
}
.product-view .old-price .price-label {
  display: none;
}
.product-view .add-to-cart-wrapper,
.product-view .block-related {
  width: 50%;
  float: right;
  clear: right;
}
.product-view .sharing-links {
  margin: 30px 0;
}

.product-img-box {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
}
.product-img-box:last-child {
  margin-right: 0;
}
.product-img-box:after {
  content: '';
  display: table;
  clear: both;
}
.product-img-box .product-name h1 {
  border: 0;
}
.product-img-box .product-image,
.product-img-box .more-views {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
}
.product-img-box .product-image:last-child,
.product-img-box .more-views:last-child {
  margin-right: 0;
}
.product-img-box .more-views .product-image-thumbs {
  text-align: center;
  margin: 30px 0 0;
}
.product-img-box .more-views h2 {
  display: none;
}
.product-img-box .more-views li {
  margin-bottom: 10px;
  text-align: center;
}
.product-img-box .more-views li img {
  border: 2px solid #CCCCCC;
  border-radius: 5px;
}

.product-image-gallery {
  position: relative;
  text-align: center;
  margin: 15px 0 0;
}
.product-image-gallery .gallery-image {
  display: none;
  width: auto !important;
  max-height: 500px !important;
  position: relative !important;
}
.product-image-gallery .gallery-image.visible {
  display: inline-block;
  margin: 0 auto !important;
  position: relative !important;
}
.product-image-gallery .gallery-image.visible.hidden {
  visibility: hidden;
}
.product-image-gallery:before, .product-image-gallery:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.product-image-gallery:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
.product-image-gallery:after {
  background-image: url("../images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.product-image-gallery.loading {
  position: relative;
}
.product-image-gallery.loading:before, .product-image-gallery.loading:after {
  display: block;
}
.product-image-gallery .slidesjs-container,
.product-image-gallery .slidesjs-control {
  height: 500px !important;
  margin-bottom: 15px;
}

.product-image-thumbs li {
  display: inline-block;
}
.product-image-thumbs li:first-child {
  margin-left: -1px;
}

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

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

.product-img-box {
  margin-bottom: 30px;
}

.product-view {
  /* Set a min-height so that the floated elements break appropriately */
}
.product-view .add-to-box:after,
.product-view .add-to-cart:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .add-to-cart {
  margin-bottom: 30px;
}
.product-view .add-to-cart .qty-wrapper,
.product-view .product-options-bottom .price-box,
.product-view .add-to-cart-buttons {
  min-height: 40px;
}
.product-view .product-options-bottom .price-box,
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart-buttons .button,
.product-view .add-to-cart-buttons .paypal-logo {
  margin-bottom: 15px;
}
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart .qty-wrapper label,
.product-view .add-to-cart .qty-wrapper #wishlist-table td[data-rwd-label]:before,
#wishlist-table .product-view .add-to-cart .qty-wrapper td[data-rwd-label]:before {
  margin-right: 7px;
  float: left;
}
.product-view .add-to-cart .qty-wrapper label, .product-view .add-to-cart .qty-wrapper #wishlist-table td[data-rwd-label]:before, #wishlist-table .product-view .add-to-cart .qty-wrapper td[data-rwd-label]:before {
  line-height: 40px;
}
.product-view .add-to-cart .qty-wrapper .qty {
  float: left;
  height: 40px;
}
.product-view .add-to-cart-buttons {
  float: left;
  margin-right: 10px;
  max-width: 100%;
}
.product-view .add-to-cart-buttons .paypal-logo {
  clear: left;
  text-align: center;
}
.product-view .add-to-cart-buttons .paypal-logo .paypal-button {
  margin: 0 auto;
  display: block;
  width: 170px;
}
.product-view .add-to-cart-buttons .paypal-logo .bml_button {
  display: block;
  width: 174px;
  margin: 0 auto;
}
.product-view .add-to-cart-buttons .paypal-logo .bml_button a {
  text-align: center;
}
.product-view .add-to-cart-buttons .paypal-logo .paypal-or {
  display: block;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
  line-height: 1;
  text-align: center;
}
.product-view .add-to-cart-buttons .button {
  min-height: 40px;
  line-height: 40px;
  font-size: 16px;
  padding: 0px 30px;
  float: left;
  min-width: 160px;
  width: 100%;
  white-space: normal;
}

.product-collateral {
  clear: both;
  width: 100%;
  content: '';
  display: table;
  clear: both;
}
.product-collateral .tab-content > h2 {
  display: none;
}

.box-collateral {
  clear: both;
}

.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget span iframe[style] {
  min-width: 100% !important;
  width: 100% !important;
}

.product-collateral .toggle-tabs {
  display: block;
  width: 100%;
  float: left;
  position: relative;
}
.product-collateral .toggle-tabs li {
  float: left;
  border: 1px solid #CCCCCC;
  border-bottom: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-right: 7px;
}
.product-collateral .toggle-tabs li > span {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  display: inline-block;
  padding: 0 30px;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  bottom: 0;
}
.product-collateral .toggle-tabs li.current {
  background: #263F6A;
}
.product-collateral .toggle-tabs li.current > span {
  z-index: 5;
}
.product-collateral .toggle-tabs li.current span,
.product-collateral .toggle-tabs li.current:hover span {
  color: #FFFFFF;
}
.product-collateral .toggle-tabs:after {
  content: '';
  display: table;
  clear: both;
}
.product-collateral > dl {
  width: 100%;
}
.product-collateral > dl > dt {
  display: none;
}
.product-collateral > dl > dd {
  width: 100%;
  float: left;
  display: none;
  padding: 30px;
  border: 1px solid #CCCCCC;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  clear: both;
}
.product-collateral > dl > dd.current {
  display: block;
}

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

.product-img-box .product-info-top {
  display: none;
}

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

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

/* -------------------------------------------- *
 * Catalog - Grouped Product List
 */
.grouped-items-table-wrapper {
  border: solid 1px #C0C0C0;
  border-left: 0;
  border-right: 0;
  width: 100%;
  padding: 0;
  margin-bottom: 15px;
}
.grouped-items-table-wrapper tbody tr:last-child td {
  border-bottom: none;
}

.grouped-items-table .name-wrapper {
  color: #333333;
  font-family: "Roboto", sans-serif;
}
.grouped-items-table .qty-wrapper {
  padding-top: 7px;
}
.grouped-items-table .qty-label {
  margin-left: 7px;
}
.grouped-items-table td {
  padding: 15px 4px;
}
.grouped-items-table td:last-child {
  width: 30%;
  text-align: left;
}
.grouped-items-table .price-box {
  text-align: right;
}

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

.product-options p.required {
  position: absolute;
  top: 6px;
  right: 0;
  text-align: right;
  font-size: 12px;
}

.product-options dt {
  margin: 10px 0 3px;
  font-weight: normal;
}

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

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

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

.product-options dd .qty-holder label, .product-options dd .qty-holder #wishlist-table td[data-rwd-label]:before, #wishlist-table .product-options dd .qty-holder td[data-rwd-label]:before {
  vertical-align: middle;
}

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

.product-options dd {
  padding: 0 0 10px 0;
  margin: 0 0 5px;
}

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

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

.product-options dd .input-box {
  padding-top: 0;
}

.product-options dd input.datetime-picker {
  width: 150px;
}

.product-options dd .time-picker {
  display: inline-block;
  padding: 2px 0;
  vertical-align: middle;
}

.product-options dd textarea {
  width: 98%;
  height: 8em;
}

.product-options dd select {
  width: 330px;
  max-width: 100%;
}

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

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

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

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

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

.product-options ul.options-list label, .product-options ul.options-list #wishlist-table td[data-rwd-label]:before, #wishlist-table .product-options ul.options-list td[data-rwd-label]:before {
  font-weight: normal;
}

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

.product-options-bottom {
  padding: 15px 0 0;
  border-top: 0;
  margin-bottom: 15px;
}

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

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

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

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

/* "display: none" should be removed if products on site have a long list of product options and those product options */
/*  affect the price so that the customer can see the updated price close to the "Add to Cart" button */
.product-options-bottom .price-box {
  display: none;
  float: right;
  margin: 0 0 10px;
  padding: 0;
}

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

/* -------------------------------------------- *
 * Related Products
 */
/* Block: Related */
.block-related li {
  margin-bottom: 7px;
}
.block-related .block-title {
  border-bottom: none;
}
.block-related .block-title h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #263F6A;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  margin-bottom: 0;
}
.block-related .block-subtitle {
  margin-bottom: 7px;
}
.block-related .product {
  margin-left: 20px;
  position: relative;
}
.block-related .checkbox {
  float: left;
  margin-top: 36px;
}
.block-related .product-details {
  margin-left: 90px;
}
.block-related .product-name {
  margin-bottom: 3px;
}
.block-related .product-details .price-box {
  margin: 2px 0 3px;
}
.block-related .product-details .price-box a,
.block-related .product-details .price-box p,
.block-related .product-details .price-box span {
  float: left;
  margin-left: 3px;
}
.block-related .product-details .price-box a:first-child,
.block-related .product-details .price-box p:first-child,
.block-related .product-details .price-box span:first-child {
  margin-left: 0;
  font-size: 16px;
  padding-right: 5px;
  padding-left: 5px;
}
.block-related .product-details .price-box:after {
  content: '';
  display: table;
  clear: both;
}
.block-related .link-wishlist {
  display: none;
}

/* -------------------------------------------- *
 * Upsell Products
 */
.box-up-sell > h2,
.box-up-sell .ratings {
  display: none;
}

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

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

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

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

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

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

.compare-table thead th {
  border-bottom: 0;
}
.compare-table thead td {
  background: #F4F4F4;
}
.compare-table .product-shop-row.top td {
  padding-top: 15px;
  padding-bottom: 0;
  border-bottom: 0;
}
.compare-table .product-shop-row.bottom td {
  padding-top: 0;
}

/* ============================================ *
 * Checkout - Layout
 * ============================================ */
.cart-contents {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 57.35098%;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
}
.cart-contents:last-child {
  margin-right: 0;
}
.cart-contents:last-child {
  margin-right: 0;
}
.cart-contents:after {
  content: '';
  display: table;
  clear: both;
}

.cart-right {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 40.29137%;
  margin-right: 0;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  padding-top: 30px;
}
.cart-right:last-child {
  margin-right: 0;
}
.cart-right:last-child {
  margin-right: 0;
}

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

.cart-totals,
.cart-forms {
  padding: 15px 30px;
}

.cart-table,
.cart-totals,
.cart-forms {
  margin-bottom: 15px;
}

.cart-forms {
  border: 1px solid #CCCCCC;
  border-left: 0;
  border-right: 0;
}
.cart-forms:empty {
  border: 0;
  padding: 0;
  margin: 0;
}

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

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

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

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

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

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

.cart-table {
  font-family: "Roboto", sans-serif;
}
.cart-table th,
.cart-table td,
.cart-table tbody td {
  border-bottom: none;
  vertical-align: top;
}
.cart-table th {
  font-size: 18px;
  font-weight: 500;
  color: #94d700;
  padding: 0 5px 10px;
  background-color: transparent;
}
.cart-table th:first-child {
  padding-left: 0;
}
.cart-table h2 {
  margin-bottom: 0;
}
.cart-table tbody td {
  background-color: transparent;
  padding: 15px 5px;
  font-family: "Roboto", sans-serif;
  color: #263F6A;
}
.cart-table .product-cart-info,
.cart-table .product-cart-actions {
  padding-left: 15px;
}
.cart-table tr {
  border-bottom: 1px solid #C0C0C0;
}
.cart-table tfoot tr {
  background: none;
  border-bottom: 0;
}
.cart-table tfoot td {
  padding: 15px 0;
  padding: 30px 0;
}
.cart-table tfoot tr > td:after {
  content: '';
  display: table;
  clear: both;
}
.cart-table span.or {
  font-size: 9px;
  padding: 0 5px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}
.cart-table .product-cart-image .cart-links,
.cart-table .product-cart-info .btn-remove,
.cart-table .product-cart-actions .button {
  display: none;
}
.cart-table .product-cart-image {
  padding-left: 0;
  padding-right: 0;
}
.cart-table .product-cart-image .product-image img {
  max-width: 100%;
  width: 100%;
}
.cart-table .product-cart-image a.cart-edit {
  display: none;
}
.cart-table .product-cart-sku {
  font-size: 12px;
  margin: 5px 0 12px;
}
.cart-table .product-cart-sku .label {
  font-weight: 500;
}
.cart-table .btn-continue {
  float: left;
  margin-left: 0;
}
.cart-table .product-cart-total,
.cart-table .product-cart-price {
  text-align: center;
}
.cart-table .cart-tax-total {
  position: relative;
  cursor: pointer;
}
.cart-table .cart-tax-total:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #333333;
  border-left: none;
  position: absolute;
  top: 3px;
  right: -11px;
}
.cart-table .cart-tax-total.cart-tax-total-expanded:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #333333;
  border-bottom: none;
  right: -15px;
  top: 6px;
}
.cart-table .cart-links > li {
  white-space: nowrap;
  margin-bottom: 5px;
  min-width: 65px;
  font-size: 13px;
}
.cart-table .cart-links > li > a {
  display: block;
}
.cart-table .cart-links > li:last-child {
  margin-bottom: 0;
}
.cart-table .product-cart-actions {
  min-width: 60px;
  text-align: center;
}
.cart-table .product-cart-actions .qty {
  height: 30px;
  border-color: #C0C0C0;
  margin-bottom: 10px;
  text-align: center;
  width: 3.2em;
}
.cart-table .product-cart-actions .button {
  margin-bottom: 5px;
}

/* ============================================ *
 * Checkout - Estimate Shipping and Tax
 * ============================================ */
.shipping {
  margin-top: 30px;
}
.shipping h2 {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 5px;
}
.shipping select {
  max-width: 100%;
  height: 30px;
  display: block;
  border: 1px solid #C0C0C0;
}
.shipping select.validation-failed {
  border-color: #DF280A;
}
.shipping .input-box {
  position: relative;
}
.shipping .input-box .validation-advice {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  padding: 5px 7px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #DDD;
}
.shipping .input-box .validation-advice:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #DDD;
  border-top: none;
  left: 49%;
  top: -6px;
}
.shipping .shipping-desc {
  display: none;
}
.shipping .buttons-set {
  border: none;
  margin: 0;
  padding: 0;
}
.shipping .buttons-set .button2 {
  padding: 5px 15px;
  line-height: 20px;
}
.shipping .form-list:after {
  content: '';
  display: table;
  clear: both;
}
.shipping .form-list li {
  float: left;
  margin: 5px 2% 10px 0;
}
.shipping .form-list .shipping-country {
  width: 37%;
}
.shipping .form-list .shipping-region {
  width: 41%;
}
.shipping .form-list .shipping-postcode {
  margin-right: 0;
  width: 18%;
}
.shipping .form-list .shipping-postcode input {
  margin-top: 4px;
}
.shipping .form-list .input-box {
  padding-top: 0;
}
.shipping .form-list input {
  height: 30px;
  margin-top: 4px;
}
.shipping .form-list label, .shipping .form-list #wishlist-table td[data-rwd-label]:before, #wishlist-table .shipping .form-list td[data-rwd-label]:before {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}
.shipping .sp-methods {
  padding: 10px 0 0;
  text-align: left;
}
.shipping .sp-methods dd {
  margin-bottom: 10px;
}
.shipping .sp-methods label, .shipping .sp-methods #wishlist-table td[data-rwd-label]:before, #wishlist-table .shipping .sp-methods td[data-rwd-label]:before {
  min-width: 100px;
}
.shipping .sp-methods label span, .shipping .sp-methods #wishlist-table td[data-rwd-label]:before span, #wishlist-table .shipping .sp-methods td[data-rwd-label]:before span {
  font-weight: 500;
}
.shipping #co-shipping-method-form .buttons-set .button {
  float: left;
  margin-left: 0;
}
.shipping #co-shipping-method-form .sp-methods dd label, .shipping #co-shipping-method-form .sp-methods dd #wishlist-table td[data-rwd-label]:before, #wishlist-table .shipping #co-shipping-method-form .sp-methods dd td[data-rwd-label]:before {
  min-width: 220px;
}

.cart .cart-totals-wrapper h3 {
  font-weight: 500;
  color: #94d700;
}

.cart .cart-totals {
  text-align: left;
  background-color: #f6f6f6;
}
.cart .cart-totals:after {
  content: '';
  display: table;
  clear: both;
}
.cart .cart-totals table {
  text-transform: uppercase;
  width: 100%;
}
.cart .cart-totals table .a-right {
  text-align: left;
}
.cart .cart-totals table td {
  padding: 2px 0px;
  color: #263F6A;
}
.cart .cart-totals table td:last-child {
  width: 40%;
}
.cart .cart-totals table tfoot td {
  vertical-align: top;
}
.cart .cart-totals table tfoot td strong {
  font-weight: 700;
}
.cart .cart-totals table tfoot tr:last-child {
  font-size: 21px;
}
.cart .cart-totals table tfoot tr:last-child td {
  color: #333333;
}

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

#discount-coupon-form,
.cart .giftcard {
  margin-top: -80px;
}
#discount-coupon-form h2,
.cart .giftcard h2 {
  display: none;
}
#discount-coupon-form label, #discount-coupon-form #wishlist-table td[data-rwd-label]:before, #wishlist-table #discount-coupon-form td[data-rwd-label]:before,
.cart .giftcard label,
.cart .giftcard #wishlist-table td[data-rwd-label]:before,
#wishlist-table .cart .giftcard td[data-rwd-label]:before {
  font-size: 14px;
  font-weight: 500;
  min-width: 105px;
  display: inline-block;
  margin-right: 10px;
}
#discount-coupon-form .field-wrapper,
#discount-coupon-form .input-box,
.cart .giftcard .field-wrapper,
.cart .giftcard .input-box {
  display: inline-block;
  padding-top: 0;
}
#discount-coupon-form .input-box,
.cart .giftcard .input-box {
  position: relative;
}
#discount-coupon-form .input-box .validation-advice,
.cart .giftcard .input-box .validation-advice {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  padding: 5px 7px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #DDD;
}
#discount-coupon-form .input-box .validation-advice:after,
.cart .giftcard .input-box .validation-advice:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #DDD;
  border-top: none;
  left: 49%;
  top: -6px;
}
#discount-coupon-form .button-wrapper,
.cart .giftcard .button-wrapper {
  display: inline-block;
  vertical-align: bottom;
}
#discount-coupon-form .button-wrapper .button2,
.cart .giftcard .button-wrapper .button2 {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-left: -5px;
}
#discount-coupon-form .input-text,
.cart .giftcard .input-text {
  height: 35px;
  width: 190px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

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

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

/* ============================================ *
 * Checkout - Cart Cross sell
 * ============================================ */
.crosssell {
  clear: both;
}
.crosssell h2 {
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 7px;
  margin-bottom: 15px;
  color: #333;
}
.crosssell .actions {
  min-height: 50px;
}

/* ============================================ *
 * Checkout - One Page
 * ============================================ */
/* -------------------------------------------- *
 * Section Styling - Default
 */
.opc .section {
  float: left;
  width: 100%;
}
.opc .section:after {
  content: '';
  display: table;
  clear: both;
}

.opc .section .step-title {
  float: left;
  width: 100%;
  border-top: 1px solid #ECECEC;
  position: relative;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

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

/* Using .no-touch since touch devices emulate hover, thereby making steps look active that are not */
.opc .section.active .step-title {
  border-bottom: 1px solid #ECECEC;
}

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

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

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

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

.opc .section.allow .step-title .number {
  background-color: #939fb5;
}

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

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

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

.opc .section .step {
  clear: both;
  padding: 30px;
}
.opc .section .step .col-1, .opc .section .step .col-2 {
  padding-left: 0;
}
.opc .section .step .col-1, .opc .section .step .col-2 {
  padding-top: 0;
  padding-bottom: 0;
}
.opc .section .step:after {
  content: '';
  display: table;
  clear: both;
}

.opc h3 {
  font-weight: 500;
}

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

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

.opc #opc-login .description {
  margin-bottom: 15px;
}

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

/* -------------------------------------------- *
 * Shipping and Payment methods
 */
.sp-methods {
  margin: 0 0 8px;
}
.sp-methods dt {
  font-weight: 500;
}
.sp-methods dd:after {
  content: '';
  display: table;
  clear: both;
}
.sp-methods img {
  float: left;
  margin-right: 10px;
  width: auto;
  max-width: 100%;
}
.sp-methods a {
  margin-top: 6px;
  float: left;
  clear: both;
}
.sp-methods .price {
  font-weight: 500;
}
.sp-methods .form-list {
  padding: 7px 20px;
}
.sp-methods .form-list li {
  margin: 0 0 10px;
}
.sp-methods .form-list:after {
  content: '';
  display: table;
  clear: both;
}
.sp-methods select.month {
  width: 120px;
  margin-right: 10px;
}
.sp-methods select.year {
  width: 96px;
}
.sp-methods input.cvv {
  width: 4em !important;
}
.sp-methods #advice-validate-cc-exp-ccsave_expiration {
  max-width: 130px;
}
.sp-methods .checkmo-list li {
  margin: 0 0 5px;
  content: '';
  display: table;
  clear: both;
}
.sp-methods .checkmo-list label, .sp-methods .checkmo-list #wishlist-table td[data-rwd-label]:before, #wishlist-table .sp-methods .checkmo-list td[data-rwd-label]:before {
  width: 165px;
  padding-right: 15px;
  text-align: right;
  float: left;
}
.sp-methods .checkmo-list address {
  float: left;
}
.sp-methods .release-amounts {
  margin: 0.5em 0;
}
.sp-methods .release-amounts button {
  float: left;
  margin: 5px 10px 0 0;
}

/* One Page Checkout */
.block-progress {
  border: 0;
  margin: 0;
  border-left: 1px solid #CCCCCC;
  padding-left: 20px;
}
.block-progress .block-content {
  font-size: 13px;
}
.block-progress dt {
  padding-top: 6px;
  margin: 0;
  margin-bottom: 10px;
  color: #263F6A;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: normal;
  color: #A0A0A0;
}
.block-progress dt.complete {
  color: #333333;
}
.block-progress dd {
  padding-left: 15px;
  margin-bottom: 10px;
}
.block-progress #payment-progress-opcheckout .subtitle {
  margin-bottom: 3px;
}
.block-progress .payment-info dt {
  padding: 0;
  margin: 0 0 3px 0;
  color: #333333;
  font-family: Georgia, Times, "Times New Roman", serif;
  text-transform: none;
  float: left;
  clear: both;
  font-size: 13px;
}
.block-progress .payment-info dt:after {
  content: ': ';
}
.block-progress .payment-info dd {
  float: left;
  margin-bottom: 3px;
  font-size: 13px;
}
.block-progress .payment-info:after {
  content: '';
  display: table;
  clear: both;
}

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

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

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

/* -------------------------------------------- *
  * Agreement Modal
  */
.opc .agreement-item {
  padding: 0 0 7px;
}

.opc .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(69, 69, 69, 0.6);
  z-index: 99999;
}
.opc .modal .modal-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 85%;
  max-width: 600px;
  max-height: 85%;
  overflow-y: auto;
  z-index: 1000;
  padding: 15px;
  background: #FFFFFF;
  -moz-box-shadow: 0 0 20px #333;
  box-shadow: 0 0 20px #333;
  border-radius: 10px;
}
.opc .modal .modal-close:before {
  position: absolute;
  right: 5px;
  top: 8px;
  display: block;
  cursor: pointer;
  z-index: 999;
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 30px;
  color: #263F6A;
  content: "C";
  color: #333333;
  padding: 5px;
  line-height: 14px;
}
.opc .modal .modal-box .agreement-decline.modal-close:before {
  top: 15px;
}
.opc .modal .modal-box .agreement-text {
  max-height: 300px;
  overflow-y: scroll;
  padding-right: 15px;
}

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

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

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

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

/* Gift options */
.gift-messages h3 {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
}

.gift-messages-form {
  padding: 7px 0;
}
.gift-messages-form p {
  margin-bottom: 7px;
}
.gift-messages-form .item {
  content: '';
  display: table;
  clear: both;
  margin-top: 15px;
}
.gift-messages-form .item h5 {
  font-weight: 500;
}
.gift-messages-form .item .product-img-box {
  width: auto;
  float: left;
  padding-right: 15px;
}
.gift-messages-form .item .details {
  float: left;
}

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

/* ============================================ *
 * Checkout - Success
 * ============================================ */
.checkout-onepage-success .page-title h1 {
  position: relative;
  padding-left: 50px;
}
.checkout-onepage-success .page-title h1:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 30px;
  color: #94d700;
  content: "h";
  position: absolute;
  left: 0;
}
.checkout-onepage-success h2.sub-title {
  font-size: 14px;
}
.checkout-onepage-success .buttons-set {
  margin: 30px 0;
}
.checkout-onepage-success .buttons-set button {
  float: left;
  margin-right: 10px;
  margin-left: 0;
}

/* ============================================ *
* Checkout - Two Step
* ============================================ */
body.checkout-twostep-index,
body.paypal-express-review {
  /* -------------------------------------------- *
  * Breadcrumbs
  */
  /* -------------------------------------------- *
  * Account Login
  */
  /* -------------------------------------------- *
  * Postage & Payment
  */
  /* -------------------------------------------- *
  * Order Summary
  */
  /* -------------------------------------------- *
  * Checkout Options
  */
  /* -------------------------------------------- *
  * Coupon Codes
  */
  /* -------------------------------------------- *
  * Newsletter Subscribe
  */
  /* -------------------------------------------- *
  * Authority to leave
  */
  /* -------------------------------------------- *
  * PayPal Express Review Page
  */
  /* -------------------------------------------- *
  * Cart / Order Items
  */
  /* -------------------------------------------- *
  * Messages Modal
  */
}
body.checkout-twostep-index .col-left,
body.paypal-express-review .col-left {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 57.35098%;
}
body.checkout-twostep-index .col-left:last-child,
body.paypal-express-review .col-left:last-child {
  margin-right: 0;
}
body.checkout-twostep-index .col-right,
body.paypal-express-review .col-right {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 40.29137%;
  margin-right: 0;
}
body.checkout-twostep-index .col-right:last-child,
body.paypal-express-review .col-right:last-child {
  margin-right: 0;
}
body.checkout-twostep-index .phase,
body.paypal-express-review .phase {
  position: relative;
}
body.checkout-twostep-index .phase:after,
body.paypal-express-review .phase:after {
  content: '';
  display: table;
  clear: both;
}
body.checkout-twostep-index .phase .step-title,
body.checkout-twostep-index .section .step-title,
body.checkout-twostep-index .section.active .step-title,
body.paypal-express-review .phase .step-title,
body.paypal-express-review .section .step-title,
body.paypal-express-review .section.active .step-title {
  border-color: #CCCCCC;
  border-top: 0;
}
body.checkout-twostep-index .phase .step-title h2,
body.checkout-twostep-index .section .step-title h2,
body.checkout-twostep-index .section.active .step-title h2,
body.paypal-express-review .phase .step-title h2,
body.paypal-express-review .section .step-title h2,
body.paypal-express-review .section.active .step-title h2 {
  margin-left: 0;
  font-size: 16px;
  font-weight: 700;
  color: #263F6A;
}
body.checkout-twostep-index .phase .step,
body.checkout-twostep-index .section .step,
body.checkout-twostep-index .section.active .step,
body.paypal-express-review .phase .step,
body.paypal-express-review .section .step,
body.paypal-express-review .section.active .step {
  padding: 15px 0;
}
body.checkout-twostep-index .phase .step:after,
body.checkout-twostep-index .section .step:after,
body.checkout-twostep-index .section.active .step:after,
body.paypal-express-review .phase .step:after,
body.paypal-express-review .section .step:after,
body.paypal-express-review .section.active .step:after {
  content: '';
  display: table;
  clear: both;
}
body.checkout-twostep-index .please-wait,
body.paypal-express-review .please-wait {
  margin: 0 0 15px;
}
body.checkout-twostep-index .buttons-set .right,
body.paypal-express-review .buttons-set .right {
  float: right;
}
body.checkout-twostep-index .buttons-set button.button,
body.paypal-express-review .buttons-set button.button {
  margin-right: 0 !important;
}
body.checkout-twostep-index .buttons-set .please-wait,
body.paypal-express-review .buttons-set .please-wait {
  margin: 5px 0 0 10px;
}
body.checkout-twostep-index .phase-breadcrumbs,
body.paypal-express-review .phase-breadcrumbs {
  border-bottom: 1px solid #CCCCCC;
  padding: 10px 0;
  margin-bottom: 20px;
}
body.checkout-twostep-index .phase-breadcrumbs > li,
body.paypal-express-review .phase-breadcrumbs > li {
  display: inline;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: #A0A0A0;
  border-color: #A0A0A0;
  padding: 0 35px 0 40px;
  cursor: pointer;
  white-space: nowrap;
}
body.checkout-twostep-index .phase-breadcrumbs > li.current,
body.paypal-express-review .phase-breadcrumbs > li.current {
  color: #94d700;
  border-color: #333333;
}
body.checkout-twostep-index .phase-breadcrumbs > li:after,
body.paypal-express-review .phase-breadcrumbs > li:after {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 30px;
  color: #333333;
  content: "r";
  position: absolute;
  margin-top: -1px;
}
body.checkout-twostep-index .phase-breadcrumbs > li:last-child:after,
body.paypal-express-review .phase-breadcrumbs > li:last-child:after {
  content: '';
}
body.checkout-twostep-index .phase-breadcrumbs > li .number,
body.paypal-express-review .phase-breadcrumbs > li .number {
  border: 2px solid;
  font-weight: 500;
  border-radius: 30px;
  display: inline-block;
  text-align: center;
  width: 28px;
  height: 28px;
  position: absolute;
  left: 0;
  line-height: 24px;
}
body.checkout-twostep-index .checkout-step-login dl > dt h2,
body.paypal-express-review .checkout-step-login dl > dt h2 {
  font-size: 14px;
  text-transform: capitalize;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  text-decoration: underline;
  color: #0079bf;
}
body.checkout-twostep-index .checkout-step-login dl > dt h2:hover,
body.paypal-express-review .checkout-step-login dl > dt h2:hover {
  color: #004973;
}
body.checkout-twostep-index .checkout-step-login dl > dt h2:before,
body.paypal-express-review .checkout-step-login dl > dt h2:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  content: "r";
  position: absolute;
  left: 0;
  background-color: #263F6A;
  color: #FFFFFF;
  border-radius: 20px;
  margin-top: -2px;
}
body.checkout-twostep-index .checkout-step-login .messages,
body.paypal-express-review .checkout-step-login .messages {
  margin-bottom: 15px;
}
body.checkout-twostep-index .checkout-step-login .messages:empty,
body.paypal-express-review .checkout-step-login .messages:empty {
  margin: 0;
}
body.checkout-twostep-index .checkout-step-login .onestep-login-span,
body.paypal-express-review .checkout-step-login .onestep-login-span {
  display: inline;
  margin-left: 7px;
  cursor: pointer;
}
body.checkout-twostep-index .section.shipping_info,
body.checkout-twostep-index .section.shipping_method,
body.paypal-express-review .section.shipping_info,
body.paypal-express-review .section.shipping_method {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
  padding: 15px 0;
}
body.checkout-twostep-index .section.shipping_info:last-child,
body.checkout-twostep-index .section.shipping_method:last-child,
body.paypal-express-review .section.shipping_info:last-child,
body.paypal-express-review .section.shipping_method:last-child {
  margin-right: 0;
}
body.checkout-twostep-index .section.shipping_info:last-child,
body.checkout-twostep-index .section.shipping_method:last-child,
body.paypal-express-review .section.shipping_info:last-child,
body.paypal-express-review .section.shipping_method:last-child {
  margin-right: 0;
}
body.checkout-twostep-index .section.shipping_info:last-child,
body.checkout-twostep-index .section.shipping_method:last-child,
body.paypal-express-review .section.shipping_info:last-child,
body.paypal-express-review .section.shipping_method:last-child {
  margin-right: 0;
}
body.checkout-twostep-index .section.shipping_info:nth-child(even),
body.checkout-twostep-index .section.shipping_method:nth-child(even),
body.paypal-express-review .section.shipping_info:nth-child(even),
body.paypal-express-review .section.shipping_method:nth-child(even) {
  margin-right: 0;
}
body.checkout-twostep-index .section.shipping_info h3,
body.checkout-twostep-index .section.shipping_method h3,
body.paypal-express-review .section.shipping_info h3,
body.paypal-express-review .section.shipping_method h3 {
  font-size: 14px;
  margin-bottom: 0;
  border-bottom: 0;
}
body.checkout-twostep-index .section.shipping_info .message-label,
body.paypal-express-review .section.shipping_info .message-label {
  margin-top: 10px;
  font-weight: 500;
}
body.checkout-twostep-index .section.shipping_info .button,
body.paypal-express-review .section.shipping_info .button {
  margin-top: 10px;
}
body.checkout-twostep-index .section.shipping_info .button label, body.checkout-twostep-index .section.shipping_info .button #wishlist-table td[data-rwd-label]:before, #wishlist-table body.checkout-twostep-index .section.shipping_info .button td[data-rwd-label]:before,
body.paypal-express-review .section.shipping_info .button label,
body.paypal-express-review .section.shipping_info .button #wishlist-table td[data-rwd-label]:before,
#wishlist-table body.paypal-express-review .section.shipping_info .button td[data-rwd-label]:before {
  color: #FFFFFF;
}
body.checkout-twostep-index .section.shipping_method,
body.paypal-express-review .section.shipping_method {
  margin-right: 0;
}
body.checkout-twostep-index .section#shipping-address-form,
body.paypal-express-review .section#shipping-address-form {
  clear: both;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
}
body.checkout-twostep-index .section#shipping-address-form:last-child,
body.paypal-express-review .section#shipping-address-form:last-child {
  margin-right: 0;
}
body.checkout-twostep-index #checkout-shipping-method-load h5,
body.paypal-express-review #checkout-shipping-method-load h5 {
  margin: 0;
}
body.checkout-twostep-index #checkout-shipping-method-load dt,
body.paypal-express-review #checkout-shipping-method-load dt {
  margin: 7px 0;
}
body.checkout-twostep-index .review .section .step-title,
body.paypal-express-review .review .section .step-title {
  border-bottom: 0;
}
body.checkout-twostep-index .review .section .step-title h2,
body.paypal-express-review .review .section .step-title h2 {
  font-size: 18px;
  line-height: 47px;
  height: 47px;
  font-weight: 500;
  color: #94d700;
}
body.checkout-twostep-index .review .buttons-set,
body.paypal-express-review .review .buttons-set {
  border-top: 0;
  text-align: right;
}
body.checkout-twostep-index .review .buttons-set .place-order,
body.paypal-express-review .review .buttons-set .place-order {
  float: none;
}
body.checkout-twostep-index .discount-coupon-form,
body.checkout-twostep-index .osc-comments,
body.checkout-twostep-index .osc-dropoff,
body.paypal-express-review .discount-coupon-form,
body.paypal-express-review .osc-comments,
body.paypal-express-review .osc-dropoff {
  width: 100%;
  margin-bottom: 15px;
}
body.checkout-twostep-index .discount-coupon-form h5,
body.checkout-twostep-index .osc-comments h5,
body.checkout-twostep-index .osc-dropoff h5,
body.paypal-express-review .discount-coupon-form h5,
body.paypal-express-review .osc-comments h5,
body.paypal-express-review .osc-dropoff h5 {
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
}
body.checkout-twostep-index .newsletter-subscribe,
body.checkout-twostep-index .osc-agreements,
body.checkout-twostep-index .osc-dropoff,
body.paypal-express-review .newsletter-subscribe,
body.paypal-express-review .osc-agreements,
body.paypal-express-review .osc-dropoff {
  margin-bottom: 15px;
}
body.checkout-twostep-index .discount-form:after,
body.paypal-express-review .discount-form:after {
  content: '';
  display: table;
  clear: both;
}
body.checkout-twostep-index .discount-coupon-form h2,
body.paypal-express-review .discount-coupon-form h2 {
  display: none;
}
body.checkout-twostep-index .discount-coupon-form label, body.checkout-twostep-index .discount-coupon-form #wishlist-table td[data-rwd-label]:before, #wishlist-table body.checkout-twostep-index .discount-coupon-form td[data-rwd-label]:before,
body.paypal-express-review .discount-coupon-form label,
body.paypal-express-review .discount-coupon-form #wishlist-table td[data-rwd-label]:before,
#wishlist-table body.paypal-express-review .discount-coupon-form td[data-rwd-label]:before {
  font-size: 16px;
  font-weight: 700;
  min-width: 105px;
  display: inline-block;
  margin-right: 10px;
}
body.checkout-twostep-index .discount-coupon-form .field-wrapper,
body.checkout-twostep-index .discount-coupon-form .input-box,
body.paypal-express-review .discount-coupon-form .field-wrapper,
body.paypal-express-review .discount-coupon-form .input-box {
  display: inline-block;
  padding-top: 0;
}
body.checkout-twostep-index .discount-coupon-form .input-box,
body.paypal-express-review .discount-coupon-form .input-box {
  position: relative;
}
body.checkout-twostep-index .discount-coupon-form .input-box .validation-advice,
body.paypal-express-review .discount-coupon-form .input-box .validation-advice {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  padding: 5px 7px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #DDD;
}
body.checkout-twostep-index .discount-coupon-form .input-box .validation-advice:after,
body.paypal-express-review .discount-coupon-form .input-box .validation-advice:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #DDD;
  border-top: none;
  left: 49%;
  top: -6px;
}
body.checkout-twostep-index .discount-coupon-form .button-wrapper,
body.paypal-express-review .discount-coupon-form .button-wrapper {
  display: inline-block;
  vertical-align: bottom;
}
body.checkout-twostep-index .discount-coupon-form .button-wrapper .button2,
body.paypal-express-review .discount-coupon-form .button-wrapper .button2 {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-left: -5px;
}
body.checkout-twostep-index .discount-coupon-form .input-text,
body.paypal-express-review .discount-coupon-form .input-text {
  height: 35px;
  width: 170px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  padding: 0 8px;
}
body.checkout-twostep-index .discount-coupon-form .input-box.applied,
body.paypal-express-review .discount-coupon-form .input-box.applied {
  position: relative;
}
body.checkout-twostep-index .discount-coupon-form .input-box.applied:before,
body.paypal-express-review .discount-coupon-form .input-box.applied:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 25px;
  color: #333333;
  content: "h";
  color: #59B200;
  position: absolute;
  top: 8px;
  right: 5px;
}
body.checkout-twostep-index .discount-coupon-form .please-wait,
body.paypal-express-review .discount-coupon-form .please-wait {
  margin: 0;
  margin-top: 7px;
}
body.checkout-twostep-index .newsletter-subscribe label, body.checkout-twostep-index .newsletter-subscribe #wishlist-table td[data-rwd-label]:before, #wishlist-table body.checkout-twostep-index .newsletter-subscribe td[data-rwd-label]:before,
body.paypal-express-review .newsletter-subscribe label,
body.paypal-express-review .newsletter-subscribe #wishlist-table td[data-rwd-label]:before,
#wishlist-table body.paypal-express-review .newsletter-subscribe td[data-rwd-label]:before {
  font-size: 15px;
  text-transform: uppercase;
  padding-left: 40px;
  position: relative;
}
body.checkout-twostep-index .newsletter-subscribe label:before, body.checkout-twostep-index .newsletter-subscribe #wishlist-table td[data-rwd-label]:before, #wishlist-table body.checkout-twostep-index .newsletter-subscribe td[data-rwd-label]:before,
body.paypal-express-review .newsletter-subscribe label:before,
body.paypal-express-review .newsletter-subscribe #wishlist-table td[data-rwd-label]:before,
#wishlist-table body.paypal-express-review .newsletter-subscribe td[data-rwd-label]:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 35px;
  color: #94d700;
  content: "x";
  position: absolute;
  left: 0;
  top: -7px;
}
body.checkout-twostep-index .newsletter-subscribe .input-box,
body.paypal-express-review .newsletter-subscribe .input-box {
  display: inline-block;
  margin-left: 10px;
}
body.checkout-twostep-index .newsletter-subscribe .checkbox,
body.checkout-twostep-index .agreement-item .checkbox,
body.paypal-express-review .newsletter-subscribe .checkbox,
body.paypal-express-review .agreement-item .checkbox {
  margin-top: 9px;
}
body.checkout-twostep-index .osc-dropoff .radio,
body.paypal-express-review .osc-dropoff .radio {
  float: none;
}
body.checkout-twostep-index .osc-dropoff a,
body.paypal-express-review .osc-dropoff a {
  color: #263F6A;
  text-decoration: underline;
}
body.checkout-twostep-index .osc-dropoff > label, body.checkout-twostep-index #wishlist-table .osc-dropoff > td[data-rwd-label]:before, #wishlist-table body.checkout-twostep-index .osc-dropoff > td[data-rwd-label]:before,
body.paypal-express-review .osc-dropoff > label,
body.paypal-express-review #wishlist-table .osc-dropoff > td[data-rwd-label]:before,
#wishlist-table body.paypal-express-review .osc-dropoff > td[data-rwd-label]:before {
  font-size: 15px;
  padding-left: 45px;
  margin: 7px 0;
  position: relative;
}
body.checkout-twostep-index .osc-dropoff > label:before, body.checkout-twostep-index #wishlist-table .osc-dropoff > td[data-rwd-label]:before, #wishlist-table body.checkout-twostep-index .osc-dropoff > td[data-rwd-label]:before,
body.paypal-express-review .osc-dropoff > label:before,
body.paypal-express-review #wishlist-table .osc-dropoff > td[data-rwd-label]:before,
#wishlist-table body.paypal-express-review .osc-dropoff > td[data-rwd-label]:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 35px;
  color: #94d700;
  content: "D";
  position: absolute;
  left: 0;
  top: -7px;
}
body.checkout-twostep-index .checkout-options-paypal,
body.paypal-express-review .checkout-options-paypal {
  margin-top: 30px;
}
body.checkout-twostep-index .order-items dt.items-title,
body.paypal-express-review .order-items dt.items-title {
  -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 15px;
  position: relative;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  font-weight: 700;
  color: #263F6A;
  position: relative;
  border-bottom: 1px solid #CCCCCC;
  cursor: pointer;
}
body.checkout-twostep-index .order-items dt.items-title:after,
body.paypal-express-review .order-items dt.items-title:after {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #94d700;
  content: "v";
  float: right;
  top: 50%;
}
body.checkout-twostep-index .order-items dt.items-title.active:after,
body.paypal-express-review .order-items dt.items-title.active:after {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #263F6A;
  content: "u";
}
body.checkout-twostep-index .order-items dt.items-title:after,
body.paypal-express-review .order-items dt.items-title:after {
  float: none;
  top: 10px;
  margin-left: 15px;
  position: absolute;
  color: #263F6A;
}
body.checkout-twostep-index .order-items dd .info-wrapper,
body.paypal-express-review .order-items dd .info-wrapper {
  margin-bottom: 7px;
}
body.checkout-twostep-index .order-items dd td:first-child,
body.paypal-express-review .order-items dd td:first-child {
  padding-left: 0;
  width: 20%;
}
body.checkout-twostep-index .order-items dd td:first-child img,
body.paypal-express-review .order-items dd td:first-child img {
  width: auto;
  max-width: 100%;
}
body.checkout-twostep-index .modal,
body.paypal-express-review .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(69, 69, 69, 0.6);
  z-index: 99999;
}
body.checkout-twostep-index .modal .modal-box,
body.paypal-express-review .modal .modal-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 85%;
  max-width: 600px;
  max-height: 85%;
  overflow-y: auto;
  z-index: 1000;
  padding: 15px;
  background: #FFFFFF;
  -moz-box-shadow: 0 0 20px #333;
  box-shadow: 0 0 20px #333;
  border-radius: 10px;
}
body.checkout-twostep-index .modal .modal-close:before,
body.paypal-express-review .modal .modal-close:before {
  position: absolute;
  right: 5px;
  top: 8px;
  display: block;
  cursor: pointer;
  z-index: 999;
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 30px;
  color: #263F6A;
  content: "C";
  color: #333333;
  padding: 5px;
  line-height: 14px;
}
body.checkout-twostep-index .modal .modal-box .messages,
body.paypal-express-review .modal .modal-box .messages {
  margin-bottom: 0;
}
body.checkout-twostep-index .modal .modal-box .messages li li,
body.paypal-express-review .modal .modal-box .messages li li {
  margin-bottom: 0;
}
body.checkout-twostep-index .modal .modal-box #ncheckout-message,
body.paypal-express-review .modal .modal-box #ncheckout-message {
  margin: -15px;
}
body.checkout-twostep-index .modal .modal-box #ncheckout-message.submit-msg li,
body.paypal-express-review .modal .modal-box #ncheckout-message.submit-msg li {
  background: #EEEEEE url(../images/opc-ajax-loader.gif) no-repeat 10px;
  background-size: 30px;
  border-left: 0;
}
body.checkout-twostep-index .modal .modal-box #ncheckout-message.submit-msg li span,
body.paypal-express-review .modal .modal-box #ncheckout-message.submit-msg li span {
  margin-left: 40px;
}
body.checkout-twostep-index .modal .modal-box .agreement-decline.modal-close:before,
body.paypal-express-review .modal .modal-box .agreement-decline.modal-close:before {
  top: 15px;
}
body.checkout-twostep-index .modal .modal-box .agreement-text,
body.paypal-express-review .modal .modal-box .agreement-text {
  max-height: 300px;
  overflow-y: scroll;
  padding-right: 15px;
}

/* ============================================ *
* Checkout - One Step
* ============================================ */
body.checkout-onestep-index {
  /* -------------------------------------------- *
  * Postage & Payment
  */
  /* -------------------------------------------- *
  * Order Review
  */
  /* -------------------------------------------- *
  * Coupon Codes
  */
  /* -------------------------------------------- *
  * Subscribe / Agreements
  */
  /* -------------------------------------------- *
  * Messages Modal
  */
}
body.checkout-onestep-index .col-left {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 57.35098%;
}
body.checkout-onestep-index .col-left:last-child {
  margin-right: 0;
}
body.checkout-onestep-index .col-right {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 40.29137%;
  margin-right: 0;
}
body.checkout-onestep-index .col-right:last-child {
  margin-right: 0;
}
body.checkout-onestep-index .section .step-title,
body.checkout-onestep-index .section.active .step-title {
  border-color: #CCCCCC;
  border-top: 0;
}
body.checkout-onestep-index .section .step-title h2,
body.checkout-onestep-index .section.active .step-title h2 {
  margin-left: 35px;
  font-size: 16px;
}
body.checkout-onestep-index .section .step-title .number,
body.checkout-onestep-index .section.active .step-title .number {
  left: 0;
}
body.checkout-onestep-index .section .step,
body.checkout-onestep-index .section.active .step {
  padding: 15px 0;
}
body.checkout-onestep-index .section .step:after,
body.checkout-onestep-index .section.active .step:after {
  content: '';
  display: table;
  clear: both;
}
body.checkout-onestep-index .ajax-loader {
  float: left;
  width: 30px;
  height: 20px !important;
  background: url(../images/opc-ajax-loader.gif) no-repeat left top;
  background-size: contain;
}
body.checkout-onestep-index .checkout-step-login .messages:empty {
  margin: 0;
}
body.checkout-onestep-index .checkout-step-login .onestep-login-span {
  display: inline;
  margin-left: 7px;
}
body.checkout-onestep-index .section.shipping_method,
body.checkout-onestep-index .section.payment {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
}
body.checkout-onestep-index .section.shipping_method:last-child,
body.checkout-onestep-index .section.payment:last-child {
  margin-right: 0;
}
body.checkout-onestep-index .section.shipping_method:last-child,
body.checkout-onestep-index .section.payment:last-child {
  margin-right: 0;
}
body.checkout-onestep-index .section.shipping_method:nth-child(odd),
body.checkout-onestep-index .section.payment:nth-child(odd) {
  margin-right: 0;
}
body.checkout-onestep-index #checkout-shipping-method-load h5 {
  margin: 0;
}
body.checkout-onestep-index #checkout-shipping-method-load dt {
  margin: 7px 0;
}
body.checkout-onestep-index .osc-review .section .step-title {
  border-bottom: 0;
}
body.checkout-onestep-index .osc-review .section .step-title h2 {
  margin-left: 0;
  font-weight: 500;
}
body.checkout-onestep-index .osc-review .section .cart-totals td, body.checkout-onestep-index .osc-review .section .cart-totals th {
  padding: 10px;
}
body.checkout-onestep-index .osc-review .section .cart-totals td:first-child, body.checkout-onestep-index .osc-review .section .cart-totals th:first-child {
  padding-left: 0;
}
body.checkout-onestep-index .osc-review .section .cart-totals td .options-link, body.checkout-onestep-index .osc-review .section .cart-totals th .options-link {
  font-size: 13px;
}
body.checkout-onestep-index .osc-review .section .cart-totals #checkout-review-table thead > tr > th {
  display: table-cell;
  font-weight: 500;
}
body.checkout-onestep-index .osc-review .section .cart-totals tfoot td {
  padding: 7px 10px;
}
body.checkout-onestep-index .osc-review .section .cart-totals tfoot tr {
  background: none;
}
body.checkout-onestep-index .osc-review .section .cart-totals tfoot tr.last td {
  padding: 0 10px;
}
body.checkout-onestep-index .osc-review .section .cart-totals tfoot tr.last td:first-child {
  padding-left: 0;
}
body.checkout-onestep-index .osc-review .section .checkbox {
  margin-top: 9px;
}
body.checkout-onestep-index .osc-review .section .buttons-set {
  text-align: right;
  border-top: 0;
}
body.checkout-onestep-index .osc-review .section .buttons-set .btn-checkout {
  line-height: 40px;
  padding: 0 30px;
  float: none;
  margin-right: 0;
}
body.checkout-onestep-index .discount-form:after {
  content: '';
  display: table;
  clear: both;
}
body.checkout-onestep-index .discount-coupon-form h2 {
  display: none;
}
body.checkout-onestep-index .discount-coupon-form label, body.checkout-onestep-index .discount-coupon-form #wishlist-table td[data-rwd-label]:before, #wishlist-table body.checkout-onestep-index .discount-coupon-form td[data-rwd-label]:before {
  font-size: 14px;
  font-weight: 500;
  min-width: 105px;
  display: inline-block;
  margin-right: 10px;
  text-transform: none;
}
body.checkout-onestep-index .discount-coupon-form .field-wrapper,
body.checkout-onestep-index .discount-coupon-form .input-box {
  display: inline-block;
}
body.checkout-onestep-index .discount-coupon-form .input-box {
  position: relative;
}
body.checkout-onestep-index .discount-coupon-form .input-box .validation-advice {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 12px;
  line-height: 1;
  padding: 5px 7px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #DDD;
}
body.checkout-onestep-index .discount-coupon-form .input-box .validation-advice:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #DDD;
  border-top: none;
  left: 49%;
  top: -6px;
}
body.checkout-onestep-index .discount-coupon-form .button-wrapper {
  display: inline-block;
  vertical-align: bottom;
}
body.checkout-onestep-index .discount-coupon-form .button-wrapper .button2 {
  float: left;
  padding: 5px 15px;
  line-height: 20px;
}
body.checkout-onestep-index .discount-coupon-form .input-box.applied {
  position: relative;
}
body.checkout-onestep-index .discount-coupon-form .input-box.applied:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 25px;
  color: #333333;
  content: "h";
  color: #59B200;
  position: absolute;
  top: 8px;
  right: 5px;
}
body.checkout-onestep-index .discount-coupon-form .input-box .input-text {
  position: relative;
  border-radius: 0;
  height: 30px;
  margin: 4px 0 0;
  width: 190px;
}
body.checkout-onestep-index .discount-coupon-form .input-box .ajax-loader {
  position: absolute;
  right: 0;
  top: 11px;
}
body.checkout-onestep-index .discount-coupon-form .please-wait {
  margin: 0;
  margin-top: 7px;
}
body.checkout-onestep-index .osc-agreements,
body.checkout-onestep-index .osc-agreements .buttons-set {
  margin-top: 0;
}
body.checkout-onestep-index .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(69, 69, 69, 0.6);
  z-index: 99999;
}
body.checkout-onestep-index .modal .modal-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 85%;
  max-width: 600px;
  max-height: 85%;
  overflow-y: auto;
  z-index: 1000;
  padding: 15px;
  background: #FFFFFF;
  -moz-box-shadow: 0 0 20px #333;
  box-shadow: 0 0 20px #333;
  border-radius: 10px;
}
body.checkout-onestep-index .modal .modal-close:before {
  position: absolute;
  right: 5px;
  top: 8px;
  display: block;
  cursor: pointer;
  z-index: 999;
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 30px;
  color: #263F6A;
  content: "C";
  color: #333333;
  padding: 5px;
  line-height: 14px;
}
body.checkout-onestep-index .modal .modal-box .messages {
  margin-bottom: 0;
}
body.checkout-onestep-index .modal .modal-box .messages li li {
  margin-bottom: 0;
}
body.checkout-onestep-index .modal .modal-box #ncheckout-message {
  margin: -15px;
}
body.checkout-onestep-index .modal .modal-box #ncheckout-message.submit-msg li {
  background: #EEEEEE url(../images/opc-ajax-loader.gif) no-repeat 10px;
  background-size: 30px;
  border-left: 0;
}
body.checkout-onestep-index .modal .modal-box #ncheckout-message.submit-msg li span {
  margin-left: 40px;
}
body.checkout-onestep-index .modal .modal-box .agreement-text {
  max-height: 300px;
  overflow-y: scroll;
  padding-right: 15px;
}

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

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

.swatch-link {
  border: 1px solid #CCCCCC;
  margin: 0;
}
.swatch-link:hover {
  cursor: pointer;
  text-decoration: none;
}
.swatch-link .x {
  display: none;
  text-indent: -999em;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../images/bg_x.png) center no-repeat transparent;
  z-index: 10;
}
.swatch-link.has-image .swatch-label {
  position: relative;
}

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

.configurable-swatch-list {
  zoom: 1;
  -webkit-transform: translateZ(0px);
}
.configurable-swatch-list li {
  zoom: 1;
  margin: 0 0 0 5px;
  display: inline-block;
}
.products-grid .configurable-swatch-list li {
  display: inline-block;
  float: none;
  margin: 0;
  vertical-align: top;
}
.configurable-swatch-list .not-available .x {
  display: block;
}
.configurable-swatch-list .not-available .swatch-link {
  border-color: #EDEDED;
  position: relative;
}
.configurable-swatch-list .not-available .swatch-link.has-image img {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
.configurable-swatch-list .not-available .swatch-label {
  color: #aaa;
  background: #fff;
}
.configurable-swatch-list .wide-swatch .swatch-label {
  padding: 0 6px;
}
.configurable-swatch-list .not-available a:focus {
  outline: 0;
}

.products-grid .configurable-swatch-list,
.products-list .configurable-swatch-list {
  padding: 0;
  margin: 7px 0;
}

#narrow-by-list dd .configurable-swatch-list li {
  margin: 0 0 0 3px;
  width: 47%;
}
#narrow-by-list dd .swatch-link {
  border: none;
  line-height: 25px;
  margin-right: 2px;
  text-align: left;
}
#narrow-by-list dd .swatch-link.has-image {
  line-height: inherit;
}
#narrow-by-list dd .swatch-link:hover .swatch-label {
  border-color: #777777;
}
#narrow-by-list dd .swatch-label {
  border: 1px solid #CCCCCC;
  display: block;
  float: left;
  line-height: 1.5em;
  margin: 0 5px 0 0;
  padding: 1px 5px;
  white-space: nowrap;
}
#narrow-by-list dd .has-image .swatch-label {
  padding: 0;
}

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

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

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

/* CUSTOM */
.product-view .product-options .swatch-attr {
  float: none;
  display: block;
  clear: both;
  border: 0;
}
.product-view .product-options .swatch-attr label, .product-view .product-options .swatch-attr #wishlist-table td[data-rwd-label]:before, #wishlist-table .product-view .product-options .swatch-attr td[data-rwd-label]:before {
  display: block;
}
.product-view .product-options .swatch-attr .select-label {
  display: inline;
  font-weight: normal;
  color: #333333;
  padding-left: 5px;
}
.product-view .product-options dd .input-box {
  width: auto;
  height: auto;
}
.product-view .product-options .select-label {
  display: none;
}
.product-view .add-to-cart button.out-of-stock {
  background-position: -80px -362px;
  cursor: default;
}

/* ============================================ *
 * Swatch Slider - Category Pages
 * ============================================ */
.products-grid .slick-slider,
.products-list .slick-slider {
  position: relative;
}
.products-grid .slick-slider .slick-list,
.products-list .slick-slider .slick-list {
  width: 84%;
  margin: 0 8%;
  width: 80%;
  margin: 0 10%;
}
.products-grid .slick-slider .slick-list .slick-slide,
.products-list .slick-slider .slick-list .slick-slide {
  text-align: center;
  outline: none;
  margin-right: 2px;
}
.products-grid .slick-slider .slick-list .slick-slide img,
.products-list .slick-slider .slick-list .slick-slide img {
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.products-grid .slick-slider .slick-arrow,
.products-list .slick-slider .slick-arrow {
  position: absolute;
  background: none;
  border: 0;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.products-grid .slick-slider .slick-arrow:active, .products-grid .slick-slider .slick-arrow:hover,
.products-list .slick-slider .slick-arrow:active,
.products-list .slick-slider .slick-arrow:hover {
  border: 0;
  outline: none;
}
.products-grid .slick-slider .slick-arrow.slick-prev,
.products-list .slick-slider .slick-arrow.slick-prev {
  left: -8px;
}
.products-grid .slick-slider .slick-arrow.slick-prev:before,
.products-list .slick-slider .slick-arrow.slick-prev:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 25px;
  color: #263F6A;
  content: "l";
}
.products-grid .slick-slider .slick-arrow.slick-next,
.products-list .slick-slider .slick-arrow.slick-next {
  right: -8px;
}
.products-grid .slick-slider .slick-arrow.slick-next:before,
.products-list .slick-slider .slick-arrow.slick-next:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 25px;
  color: #263F6A;
  content: "r";
}

/* ============================================ *
 * Customer
 * ============================================ */
.customer-account-login h2,
.checkout-multishipping-login h2 {
  font-size: 18px;
  font-weight: 500;
  color: #94d700;
}
.customer-account-login .scaffold-form label:first-child, .customer-account-login .scaffold-form #wishlist-table td[data-rwd-label]:first-child:before, #wishlist-table .customer-account-login .scaffold-form td[data-rwd-label]:first-child:before,
.checkout-multishipping-login .scaffold-form label:first-child,
.checkout-multishipping-login .scaffold-form #wishlist-table td[data-rwd-label]:first-child:before,
#wishlist-table .checkout-multishipping-login .scaffold-form td[data-rwd-label]:first-child:before {
  width: 115px;
}
.customer-account-login .form-list > li input,
.checkout-multishipping-login .form-list > li input {
  max-width: 365px;
}
.customer-account-login .col2-set .col-1,
.customer-account-login .col2-set .col-2,
.checkout-multishipping-login .col2-set .col-1,
.checkout-multishipping-login .col2-set .col-2 {
  padding: 0;
  padding-bottom: 15px;
}
.customer-account-login .col2-set .buttons-set,
.checkout-multishipping-login .col2-set .buttons-set {
  text-align: left;
  border-top: 0;
}
.customer-account-login .col2-set .buttons-set button,
.customer-account-login .col2-set .buttons-set .button,
.checkout-multishipping-login .col2-set .buttons-set button,
.checkout-multishipping-login .col2-set .buttons-set .button {
  float: none;
  margin: 0;
}
.customer-account-login .col2-set .col-1 ul,
.checkout-multishipping-login .col2-set .col-1 ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0 20px 0;
}

.customer-account-create .scaffold-form label:first-child, .customer-account-create .scaffold-form #wishlist-table td[data-rwd-label]:first-child:before, #wishlist-table .customer-account-create .scaffold-form td[data-rwd-label]:first-child:before {
  width: 140px;
}

.opc #opc-login p:not(.required) {
  font-size: 13px;
  color: #A0A0A0;
}

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

.remember-me-popup {
  display: none;
  border: 1px solid #CCCCCC;
  padding: 15px;
  position: relative;
}
.remember-me-popup.show {
  display: block;
}
.remember-me-popup p {
  font-family: "Roboto", sans-serif;
}
.remember-me-popup .remember-me-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  font-size: 12px;
}
.remember-me-popup .remember-me-popup-close-button {
  display: none;
}

.customer-account-create .fieldset .hidden {
  display: none;
}
.customer-account-create #remember-me-popup {
  max-width: 455px;
}

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

/* ============================================ *
 * My Account Global Styles
 * ============================================ */
body.customer-account .block-account .block-content {
  padding: 15px 0;
}
body.customer-account .block-account .block-content li {
  padding: 0 0 10px;
}
body.customer-account .block-account .block-content li strong {
  font-weight: normal;
  color: #94d700;
  font-weight: 500;
}
body.customer-account .block-account .block-content li a {
  position: relative;
  color: #333333;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  padding-left: 30px;
}
body.customer-account .block-account .block-content li a:before {
  position: absolute;
  left: 0;
}
body.customer-account .block-account .block-content li a[href*="customer/account/"]:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #94d700;
  content: "E";
}
body.customer-account .block-account .block-content li a[href*="edit/"]:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #94d700;
  content: "a";
}
body.customer-account .block-account .block-content li a[href*="address/"]:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #94d700;
  content: "A";
}
body.customer-account .block-account .block-content li a[href*="sales/order/history/"]:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #94d700;
  content: "O";
}
body.customer-account .block-account .block-content li a[href*="wishlist/"]:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #94d700;
  content: "w";
}
body.customer-account .block-account .block-content li a[href*="review/customer/"]:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #94d700;
  content: "z";
}
body.customer-account .block-account .block-content li a[href*="newsletter/manage/"]:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #94d700;
  content: "N";
}
body.customer-account .my-account .page-title h1 {
  border: 0;
  text-align: left;
  margin-bottom: 15px;
}
body.customer-account .my-account .title-buttons {
  position: relative;
  text-align: right;
}
body.customer-account .my-account .title-buttons h1 {
  text-align: left;
}
body.customer-account .my-account .title-buttons .button {
  position: absolute;
  right: 0;
  top: 0;
}
body.customer-account .my-account .title-buttons a,
body.customer-account .my-account .title-buttons span.separator {
  position: relative;
  top: -42px;
}
body.customer-account .my-account .fieldset h2,
body.customer-account .my-account .addresses-list h2,
body.customer-account .my-account .order-details h2 {
  font-size: 16px;
  width: 100%;
  display: inline-block;
}
body.customer-account .my-account .addresses-list h3 {
  font-size: 14px;
  font-weight: 500;
}
body.customer-account .my-account .fieldset {
  margin-top: 15px;
  margin-bottom: 15px;
}
body.customer-account .data-table {
  margin-top: 5px;
}
body.customer-account .data-table td a {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-style: normal;
  font-size: 13px;
}
body.customer-account .data-table span.nobr {
  white-space: normal;
}
body.customer-account .data-table span.nobr a {
  white-space: nowrap;
}
body.customer-account .data-table td.view a {
  display: block;
}
body.customer-account .data-table .separator {
  display: none;
}
body.customer-account .sidebar .block-cart .summary {
  margin-bottom: 15px;
}

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

/* ============================================ *
 * Dashboard
 * ============================================ */
.dashboard .page-title {
  display: none;
}
.dashboard .box-head {
  margin-top: 30px;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 7px;
}
.dashboard .box-head h2 {
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0;
}
.dashboard .box-head a {
  padding: 15px;
}
.dashboard .box-title a,
.dashboard .box-head a {
  text-transform: uppercase;
  font-size: 12px;
  display: inline;
  text-align: right;
  color: #3399CC;
  text-decoration: underline;
}
.dashboard .box-account {
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 30px;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
}
.dashboard .box-account:last-child {
  margin-right: 0;
}
.dashboard .col2-set .col-1 .box-title,
.dashboard .col2-set .col-2 .box-title {
  position: relative;
  padding-bottom: 10px;
}
.dashboard .col2-set .col-1 .box-title h2,
.dashboard .col2-set .col-1 .box-title h3,
.dashboard .col2-set .col-2 .box-title h2,
.dashboard .col2-set .col-2 .box-title h3 {
  display: inline;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 0;
  margin-right: 10px;
}
.dashboard .col2-set .col-1 .box-title a,
.dashboard .col2-set .col-2 .box-title a {
  line-height: 19.6px;
}
.dashboard .box-reviews.box-account {
  padding-bottom: 0;
}
.dashboard .box-reviews li {
  padding: 15px 0;
  border-top: 1px solid #EDEDED;
}
.dashboard .box-reviews li:first-child {
  border-top: 0;
}
.dashboard .box-reviews li .number {
  margin-right: -20px;
  float: left;
  line-height: 1.4;
  font-size: 13px;
}
.dashboard .box-reviews li .details {
  margin-left: 20px;
}
.dashboard .box-reviews li .details .ratings {
  content: '';
  display: table;
  clear: both;
  margin-bottom: 0;
}
.dashboard .box-reviews li .details .ratings strong {
  float: left;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  margin-right: 5px;
}
.dashboard .box-reviews li .details .ratings .rating-box {
  float: left;
  margin: 3px 0 0 0;
}

/* ============================================ *
 * Address Book
 * ============================================ */
.my-account .addresses-list .item {
  margin: 0 0 30px 0;
}
.my-account .addresses-list .item p {
  margin-top: 15px;
}

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

.order-date {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}

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

.order-details {
  position: relative;
  clear: both;
}
.order-details .order-links {
  position: absolute;
  top: 0;
  right: 0;
}

.tracking-table {
  margin: 15px 0 30px;
}

.table-caption {
  font-size: 16px;
}

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

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

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

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

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

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

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

/* ============================================ *
 * Contacts
 * ============================================ */
.contacts-index-index .contact-details,
.contacts-index-index .details-map,
.contacts-index-index .details-container,
.contacts-index-index .contact-form {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  margin-bottom: 15px;
}
.contacts-index-index .contact-details:last-child,
.contacts-index-index .details-map:last-child,
.contacts-index-index .details-container:last-child,
.contacts-index-index .contact-form:last-child {
  margin-right: 0;
}
.contacts-index-index .contact-form,
.contacts-index-index .details-container,
.contacts-index-index .opening-hours,
.contacts-index-index .useful-links {
  margin-bottom: 30px;
}
.contacts-index-index .details-map iframe {
  width: 100% !important;
  height: 286px !important;
}
.contacts-index-index .details-container,
.contacts-index-index .opening-hours {
  text-transform: uppercase;
}
.contacts-index-index .details-container p,
.contacts-index-index .opening-hours p {
  position: relative;
  padding-left: 45px;
  margin-bottom: 15px;
}
.contacts-index-index .details-container p:before,
.contacts-index-index .opening-hours p:before {
  position: absolute;
  left: 0;
}
.contacts-index-index .details-container a,
.contacts-index-index .opening-hours a {
  color: #333333;
}
.contacts-index-index .details-container .phone:before,
.contacts-index-index .opening-hours .phone:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 30px;
  color: #94d700;
  content: "j";
}
.contacts-index-index .details-container .address:before,
.contacts-index-index .opening-hours .address:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 30px;
  color: #94d700;
  content: "L";
}
.contacts-index-index .details-container .email:before,
.contacts-index-index .opening-hours .email:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 30px;
  color: #94d700;
  content: "x";
}
.contacts-index-index .details-container .clock:before,
.contacts-index-index .opening-hours .clock:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 30px;
  color: #94d700;
  content: "T";
}
.contacts-index-index .useful-links h4 {
  text-transform: none;
}
.contacts-index-index .useful-links a {
  text-decoration: underline;
}
.contacts-index-index .details-map {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
  margin-bottom: 30px;
}
.contacts-index-index .details-map:last-child {
  margin-right: 0;
}
.contacts-index-index .details-container {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 40.29137%;
  margin-left: 8.5298%;
}
.contacts-index-index .details-container:last-child {
  margin-right: 0;
}
.contacts-index-index .contact-details {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
}
.contacts-index-index .contact-details:last-child {
  margin-right: 0;
}
.contacts-index-index .contact-form {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 40.29137%;
  margin-left: 8.5298%;
}
.contacts-index-index .contact-form:last-child {
  margin-right: 0;
}

#dynamic-react-root {
  display: inline !important;
}

/* ============================================ *
 * Subscribe
 * ============================================ */
.block-subscribe {
  font-size: 12px;
}

.block-subscribe .input-box {
  float: left;
  padding-top: 0;
}

.block-subscribe .input-text {
  width: 100%;
}

.block-subscribe .block-content {
  padding-top: 7px;
}
.block-subscribe .block-content:after {
  content: '';
  display: table;
  clear: both;
}

.block-subscribe .actions {
  float: left;
  margin: 0;
}

.block-subscribe .actions .button {
  height: 30px;
  line-height: 17px;
}

.block-subscribe {
  clear: both;
  float: none;
  margin: 0 auto 30px auto;
}

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

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

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

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

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

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

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

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

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

/* ============================================ *
 * Review - Customer
 * ============================================ */
#customer-reviews {
  width: auto;
  float: none;
}
#customer-reviews .review-heading {
  border-bottom: 1px solid #CCCCCC;
  padding: 10px 0 5px;
}
#customer-reviews .review-heading:after {
  content: '';
  display: table;
  clear: both;
}
#customer-reviews .review-heading h2 {
  display: block;
}
#customer-reviews .review-heading .pager {
  clear: none;
  float: right;
  width: auto;
}
#customer-reviews .review-heading .pager .count-container .limiter {
  margin-bottom: 0;
}
#customer-reviews .review-heading .pager .count-container .limiter label, #customer-reviews .review-heading .pager .count-container .limiter #wishlist-table td[data-rwd-label]:before, #wishlist-table #customer-reviews .review-heading .pager .count-container .limiter td[data-rwd-label]:before {
  font-size: 10px;
  text-transform: uppercase;
}
#customer-reviews .review-heading .pager .amount {
  display: none;
}
#customer-reviews h2 {
  font-size: 15px;
  text-transform: uppercase;
}
#customer-reviews h2 span {
  color: #333333;
}
#customer-reviews h3 {
  font-size: 16px;
  font-weight: normal;
  text-transform: uppercase;
}
#customer-reviews h3 span {
  font-weight: 500;
}
#customer-reviews .form-add h2 {
  display: none;
}
#customer-reviews .fieldset {
  padding-top: 10px;
}
#customer-reviews .fieldset h4 {
  border-bottom: 1px solid #CCCCCC;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 7px;
}
#customer-reviews .fieldset h4 em {
  display: none;
}
#customer-reviews .fieldset .form-list {
  font-size: 12px;
  font-weight: normal;
  margin: 15px 0;
  text-transform: uppercase;
}
#customer-reviews .fieldset .form-list:after {
  content: '';
  display: table;
  clear: both;
}
#customer-reviews .fieldset .form-list .inline-label:after {
  content: '';
  display: table;
  clear: both;
}
#customer-reviews .fieldset .form-list label, #customer-reviews .fieldset .form-list #wishlist-table td[data-rwd-label]:before, #wishlist-table #customer-reviews .fieldset .form-list td[data-rwd-label]:before {
  font-size: 12px;
  font-weight: normal;
}
#customer-reviews .fieldset .form-list textarea {
  border: 1px solid #CCCCCC;
  border-radius: 0;
  min-width: 100%;
  -webkit-appearance: none;
}
#customer-reviews .fieldset .form-list input {
  border: 1px solid #CCCCCC;
  border-radius: 0;
}
#customer-reviews .fieldset .form-list input[type="text"] {
  width: 100%;
}
#customer-reviews .buttons-set {
  border: none;
  margin: 0;
}
#customer-reviews dl {
  font-size: 14px;
  font-weight: normal;
  margin: 10px 0 30px;
}
#customer-reviews dl dt {
  margin: 15px 0 0;
  text-transform: uppercase;
}
#customer-reviews dl dd {
  font-size: 14px;
  padding: 15px 0;
  border-bottom: 1px solid #CCCCCC;
}
#customer-reviews dl dd .ratings-table {
  font-size: 13px;
  width: 100%;
}
#customer-reviews dl dd .ratings-table tr {
  margin-right: 15px;
}
#customer-reviews dl dd .ratings-table .review-label {
  width: 300px;
  max-width: 70%;
}
#customer-reviews dl dd table {
  margin: 15px 0;
}
#customer-reviews dl dd .review-meta {
  color: #333333;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
}

.review-summary-table {
  border-bottom: 1px solid #CCCCCC;
  margin: 0 0 10px;
}
.review-summary-table thead {
  background: transparent;
}
.review-summary-table thead th {
  background: transparent;
  border: none;
  text-align: center;
}
.review-summary-table tbody th {
  background: #FFFFFF;
}
.review-summary-table tbody td {
  border: none;
  text-align: center;
  padding: 0;
}
.review-summary-table tbody td label, .review-summary-table tbody td #wishlist-table td[data-rwd-label]:before, #wishlist-table .review-summary-table tbody td td[data-rwd-label]:before {
  width: 100%;
  display: block;
}
.review-summary-table tbody td .radio {
  float: none;
}
.review-summary-table .rating-box .rating-number {
  display: none;
}

/* ============================================ *
 * Ratings - Global
 * ============================================ */
.ratings-table {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
.ratings-table th {
  padding-right: 10px;
}

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

/* -------------------------------------------- *
 * Ratings
 */
.ratings {
  margin: 0 0 7px;
}

.rating-box,
.rating-links {
  margin: 5px 0;
}

.rating-box {
  width: 100px;
  height: 20px;
  position: relative;
  overflow: hidden;
}
.rating-box:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #94d700;
  content: "z";
  content: "zzzzz";
}

.rating-box .rating {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  overflow: hidden;
}
.rating-box .rating:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #94d700;
  content: "z";
  content: "zzzzz";
}

.amount {
  display: block;
  margin: 5px auto;
}

.rating-links .separator {
  margin: 0 3px;
}

/* ============================================ *
 * Wishlist
 * ============================================ */
#wishlist-table th {
  text-align: center;
}
#wishlist-table.clean-table {
  text-transform: uppercase;
  width: 100%;
}
#wishlist-table.clean-table th {
  border-bottom: 1px solid #C0C0C0;
  font-size: 18px;
  font-weight: 600;
  padding: 0 5px 10px;
}
#wishlist-table.clean-table th:first-child {
  padding-left: 0;
}
#wishlist-table.clean-table th.customer-wishlist-item-image {
  text-align: left;
}
#wishlist-table.clean-table td {
  padding: 15px;
  vertical-align: top;
}
#wishlist-table.clean-table td:first-child {
  padding-left: 0;
}
#wishlist-table.clean-table td:last-child {
  padding-right: 0;
}
#wishlist-table.clean-table thead th {
  text-transform: uppercase;
}
#wishlist-table .product-name {
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}
#wishlist-table .product-name a {
  color: #0079bf;
}
#wishlist-table .wishlist-sku {
  display: none;
}
#wishlist-table textarea {
  border: 1px solid #C0C0C0;
  width: 100%;
  height: 45px;
  font-size: 11px;
  font-family: "Roboto", sans-serif;
}
#wishlist-table textarea::-webkit-input-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:-moz-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea::-moz-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:-ms-input-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:focus {
  border: 1px solid #3399CC;
}
#wishlist-table .item-manage {
  text-align: right;
  max-width: 450px;
  padding-top: 5px;
}
#wishlist-table .item-manage .button {
  font-size: 11px;
  padding: 3px 5px;
}
#wishlist-table .cart-cell {
  text-align: center;
}
#wishlist-table td.customer-wishlist-item-image {
  width: 113px;
}
#wishlist-table td.customer-wishlist-item-quantity {
  width: 3em;
}
#wishlist-table td.customer-wishlist-item-price {
  width: 120px;
  text-align: center;
}
#wishlist-table td.customer-wishlist-item-cart {
  width: 150px;
}
#wishlist-table td.customer-wishlist-item-cart .button {
  font-size: 12px;
  margin-bottom: 10px;
  padding: 3px 5px;
  width: 100%;
}
#wishlist-table td.customer-wishlist-item-cart .truncated {
  text-align: center;
  margin-bottom: 10px;
}
#wishlist-table td.customer-wishlist-item-cart > p {
  margin-bottom: 0;
}
#wishlist-table td.customer-wishlist-item-cart .remove-whishlist-item {
  text-align: center;
}
#wishlist-table td.customer-wishlist-item-cart .btn-remove {
  vertical-align: top;
}
#wishlist-table td.customer-wishlist-item-remove {
  width: 20px;
}
#wishlist-table td .button,
#wishlist-table td button {
  white-space: normal;
}
#wishlist-table .price-box {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  margin: 0;
}
#wishlist-table .price-box .price {
  color: #333333;
  line-height: 1;
}
#wishlist-table .giftregisty-add {
  margin-top: 5px;
}
#wishlist-table .giftregisty-add .change {
  display: none;
}
#wishlist-table .giftregisty-add li {
  cursor: pointer;
  color: #333333;
  margin-bottom: 3px;
}
#wishlist-table .truncated .details {
  background: none;
  color: #333333;
}
#wishlist-table td[data-rwd-label]:before {
  line-height: 1.5;
}

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

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

/* ============================================ *
 * Checkout - Mini cart
 * ============================================ */
.header-minicart .block {
  margin-bottom: 0;
}
.header-minicart .minicart-message {
  display: block;
  padding: 15px;
}
.header-minicart .empty {
  padding: 15px 0;
}
.header-minicart .minicart-wrapper {
  clear: both;
  position: relative;
  padding-bottom: 40px;
}
.header-minicart .minicart-wrapper:before, .header-minicart .minicart-wrapper:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.header-minicart .minicart-wrapper:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
.header-minicart .minicart-wrapper:after {
  background-image: url("../images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.header-minicart .minicart-wrapper.loading {
  position: relative;
}
.header-minicart .minicart-wrapper.loading:before, .header-minicart .minicart-wrapper.loading:after {
  display: block;
}
.header-minicart .block-cart {
  display: none;
}
.header-minicart .block-subtitle {
  margin-bottom: 7px;
  font-weight: 500;
  font-size: 15px;
}
.header-minicart .block-subtitle .close {
  display: block;
  width: 20px;
  height: 25px;
  position: absolute;
  bottom: 5px;
  right: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
}
.header-minicart .block-subtitle .close:before {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 25px;
  color: #263F6A;
  content: "u";
}
.header-minicart .block-subtitle .close:hover {
  text-decoration: none;
}
.header-minicart .mini-products-list {
  margin-bottom: 15px;
}
.header-minicart .mini-products-list li {
  padding: 7px 0;
  border-bottom: 1px solid #DDDDDD;
  position: relative;
  float: left;
  width: 100%;
}
.header-minicart .mini-products-list li a {
  color: #263F6A;
}
.header-minicart .mini-products-list li a:hover, .header-minicart .mini-products-list li a:before {
  color: #263F6A;
}
.header-minicart .mini-products-list li .product-details {
  position: relative;
}
.header-minicart .mini-products-list li .product-image {
  margin-bottom: 7px;
}
.header-minicart .mini-products-list li .btn-remove {
  position: absolute;
  top: 7px;
  right: 0;
  z-index: 100;
}
.header-minicart .mini-products-list li .btn-edit {
  display: block;
  text-align: center;
  text-decoration: none;
}
.header-minicart .info-wrapper {
  margin-bottom: 0.5em;
}
.header-minicart .info-wrapper th {
  text-transform: uppercase;
  padding-right: 10px;
  font-size: 13px;
}
.header-minicart .info-wrapper td {
  color: #333333;
  clear: right;
}
.header-minicart .info-wrapper .qty-wrapper td {
  height: 33px;
  line-height: 33px;
}
.header-minicart .info-wrapper .qty {
  padding-left: 4px;
  padding-right: 4px;
  margin-right: 2px;
  width: 3.2em;
  text-align: center;
  height: 30px;
}
.header-minicart .block-content {
  padding: 0;
}
.header-minicart .subtotal {
  text-align: left;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
}
.header-minicart .subtotal .label,
.header-minicart .subtotal .price {
  margin-right: 30px;
}
.header-minicart .minicart-actions {
  padding: 15px 0 0;
  margin-top: 0px;
  overflow: hidden;
  position: relative;
}
.header-minicart .minicart-actions .checkout-types.minicart {
  float: none;
  text-align: left;
  padding: 0;
}
.header-minicart .minicart-actions .checkout-types.minicart li {
  margin-left: 0;
}
.header-minicart .minicart-actions .paypal-button {
  margin-bottom: 7px;
}
.header-minicart .minicart-actions .paypal-logo {
  float: left;
}
.header-minicart .minicart-actions .paypal-logo .paypal-or {
  line-height: 1.6;
}
.header-minicart .minicart-actions .checkout-types.minicart.bottom > li {
  float: left;
  width: 42%;
}
.header-minicart .minicart-actions .checkout-types.minicart.bottom > li:last-child {
  float: right;
  width: 56%;
}
.header-minicart .minicart-actions .checkout-types.minicart.bottom .cart-link {
  float: right;
  color: #FFF;
}
.header-minicart .minicart-actions .checkout-types.minicart.bottom .checkout-button {
  color: #263F6A;
  padding: 7px 15px;
}
.header-minicart .minicart-actions .checkout-types.minicart.bottom .checkout-button:hover, .header-minicart .minicart-actions .checkout-types.minicart.bottom .checkout-button:active, .header-minicart .minicart-actions .checkout-types.minicart.bottom .checkout-button:focus {
  color: #FFFFFF;
}
.header-minicart #minicart-error-message {
  text-align: center;
  color: red;
  display: none;
}
.header-minicart #minicart-success-message {
  text-align: center;
  color: green;
  display: none;
}
.header-minicart .jcarousel-control-prev,
.header-minicart .jcarousel-control-next {
  display: none;
}

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

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

/* ============================================ *
 * Search - Auto Suggest
 * ============================================ */
.search-autocomplete {
  left: 0 !important;
  overflow: visible !important;
  position: relative !important;
  top: -1px !important;
  width: 100% !important;
  z-index: 800;
}
.search-autocomplete ul {
  background-color: #FFFFFF;
  border: 1px solid #CCCCCC;
  left: 0;
  padding: 15px;
  position: absolute;
  top: 0;
  width: 100%;
}
.search-autocomplete ul li {
  color: #0079bf;
  cursor: pointer;
  padding: 2px 0;
  text-align: left;
  text-transform: uppercase;
}
.search-autocomplete ul li .amount {
  float: right;
  font-weight: 500;
  margin: 0;
}
.search-autocomplete ul li:last-child {
  border-bottom: none;
}

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

/* ============================================ *
 * Account - Reviews
 * ============================================ */
#my-reviews-table .rating-box {
  margin: 0;
}
#my-reviews-table tr.first td {
  border-top: 1px solid #CCCCCC;
}

.product-review .product-img-box {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 31.76157%;
}
.product-review .product-img-box:last-child {
  margin-right: 0;
}
.product-review .product-img-box .product-image {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
  margin-bottom: 15px;
}
.product-review .product-img-box .product-image:last-child {
  margin-right: 0;
}
.product-review .product-img-box .product-image:after {
  content: '';
  display: table;
  clear: both;
}
.product-review .product-img-box p.label {
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.product-review .product-img-box .rating-box {
  margin: 15px 0;
}
.product-review .product-details {
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 65.88078%;
  margin-right: 0;
}
.product-review .product-details:last-child {
  margin-right: 0;
}
.product-review .product-details h2 {
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.product-review .ratings-table {
  font-family: "Roboto", sans-serif;
}
.product-review .ratings-table th {
  padding-right: 10px;
}
.product-review .ratings-table tr {
  float: left;
  font-size: 12px;
  margin-right: 10px;
  text-transform: uppercase;
}
.product-review .ratings-description dt {
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
  padding: 10px 0;
  text-transform: uppercase;
}
.product-review .ratings-description dd {
  padding: 15px 0;
}

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

/* ============================================ *
 * CMS Pages
 * ============================================ */
.cms-page-view .std img,
.cms-no-route .std img {
  max-width: 100%;
}
.cms-page-view .std p,
.cms-no-route .std p {
  color: #333333;
  font-size: 14px;
  line-height: 24px;
}
.cms-page-view .std h1,
.cms-no-route .std h1 {
  color: #333333;
}
.cms-page-view .std h2,
.cms-no-route .std h2 {
  color: #333333;
}
.cms-page-view .std li,
.cms-no-route .std li {
  color: #333333;
  font-size: 14px;
  line-height: 24px;
}
.cms-page-view .col-left:after,
.cms-no-route .col-left:after {
  content: '';
  display: table;
  clear: both;
}

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

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

#accordion .toggle-tabs {
  display: none;
}
#accordion > dl > dt {
  -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 15px;
  position: relative;
  display: block;
}
#accordion > dl > dt:after {
  font-family: "icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333333;
  font-size: 20px;
  color: #94d700;
  content: "v";
  float: right;
  top: 50%;
}
#accordion > dl > dd {
  padding: 15px;
  margin: 0 0 15px;
}
#accordion > dl > dd:last-child {
  border-width: 0 1px 1px 1px;
}
#accordion li {
  position: relative;
  overflow: hidden;
}
#accordion li .plusimage h2 {
  margin-right: 10px;
}

.page-sitemap .pager {
  float: none;
  border-top: 1px solid #CCCCCC;
}
.page-sitemap .links {
  display: block;
  text-align: right;
  margin: 0 0 15px;
}
.page-sitemap .links a {
  position: relative;
}
.page-sitemap .sitemap {
  margin: 15px 0;
}
.page-sitemap .sitemap li {
  margin: 3px 0;
}

/* ============================================ *
 * Pricing Conditions
 * ============================================ */
.price-box .minimal-price-link {
  text-decoration: none;
}
.price-box .minimal-price-link .label {
  text-transform: uppercase;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.customer-account-create .scaffold-form .captcha-input-container label:first-child, .customer-account-create .scaffold-form .captcha-input-container #wishlist-table td[data-rwd-label]:first-child:before, #wishlist-table .customer-account-create .scaffold-form .captcha-input-container td[data-rwd-label]:first-child:before {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

#recurring_start_date_trig {
  display: inline;
}

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

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

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

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

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

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

.widget {
  clear: both;
}
.widget .widget-title h2 {
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 7px;
  margin-bottom: 15px;
}
.widget .widget-products ul li {
  list-style: none;
  margin-left: 0;
}

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

/* ============================================ *
 * Checkout - Multiple Addresses
 * ============================================ */
body[class*="checkout-multishipping-"] .checkout-progress {
  width: 100%;
  float: left;
  margin-bottom: 25px;
}
body[class*="checkout-multishipping-"] .checkout-progress > li {
  float: left;
  width: 19%;
  text-align: center;
  padding: 8px 1% 6px;
  margin-right: 1%;
  background: #ECECEC;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
  border-radius: 10px;
}
body[class*="checkout-multishipping-"] .checkout-progress > li.active {
  background-color: #94d700;
  color: #FFFFFF;
}
body[class*="checkout-multishipping-"] .multiple-checkout > h2 {
  text-transform: none;
  font-size: 17px;
  margin-bottom: 15px;
}
body[class*="checkout-multishipping-"] .messages {
  float: left;
  width: 100%;
}
body[class*="checkout-multishipping-"] .col-2.col-wide {
  width: 66%;
}
body[class*="checkout-multishipping-"] .col-1.col-narrow {
  width: 30%;
}
body[class*="checkout-multishipping-"] .actions {
  margin-bottom: 10px;
}
body[class*="checkout-multishipping-"] .grand-total {
  text-align: right;
  font-size: 16px;
  font-weight: 400;
}
body[class*="checkout-multishipping-"] #checkout-review-submit {
  float: right;
}
body[class*="checkout-multishipping-"] #review-buttons-container {
  float: right;
  text-align: right;
}

.checkout-multishipping-addresses #multiship-addresses-table th select, .checkout-multishipping-addresses #multiship-addresses-table td select {
  min-width: 200px;
  min-width: 500px;
}
.checkout-multishipping-addresses #multiship-addresses-table td.last {
  width: 0;
}
.checkout-multishipping-addresses .btn-remove2 {
  display: none;
}

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

.checkout-multishipping-addresses .page-title,
.checkout-multishipping-shipping .page-title,
.checkout-multishipping-billing .page-title,
.checkout-multishipping-overview .page-title {
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
.checkout-multishipping-addresses .page-title h1,
.checkout-multishipping-shipping .page-title h1,
.checkout-multishipping-billing .page-title h1,
.checkout-multishipping-overview .page-title h1 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #263F6A;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  border: 0 none;
  float: left;
  margin-top: 2px;
  margin-right: 2%;
}
.checkout-multishipping-addresses .page-title .button,
.checkout-multishipping-shipping .page-title .button,
.checkout-multishipping-billing .page-title .button,
.checkout-multishipping-overview .page-title .button {
  float: right;
}

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

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

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

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

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