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

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

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

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

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

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

// ----------------------------------------------
*/
/*! normalize.css v2.0.1 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

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

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

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Sets default font family to sans-serif.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

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

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

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

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

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

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

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

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

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

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

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

/*
 * 1. Corrects color not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/*
 * Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/*
 * Re-set default cursor for disabled elements.
 */
button[disabled],
input[disabled] {
  cursor: default;
}

/*
 * 1. Addresses box sizing set to `content-box` in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/*
 * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Removes inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE 8/9.
 * 2. Improves readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

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

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

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

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

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

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

address {
  font-style: normal;
}

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

img {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

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

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

/* ============================================ *
 * Base Styles
 * ============================================ */
/* Generated by Font Squirrel (http://www.fontsquirrel.com) on September 11, 2014 */
@font-face {
  font-family: 'allerbold';
  src: url("../fonts/aller_std_bd-webfont.eot");
  src: url("../fonts/aller_std_bd-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/aller_std_bd-webfont.woff2") format("woff2"), url("../fonts/aller_std_bd-webfont.woff") format("woff"), url("../fonts/aller_std_bd-webfont.svg#allerbold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'alleritalic';
  src: url("../fonts/aller_std_it-webfont.eot");
  src: url("../fonts/aller_std_it-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/aller_std_it-webfont.woff2") format("woff2"), url("../fonts/aller_std_it-webfont.woff") format("woff"), url("../fonts/aller_std_it-webfont.svg#alleritalic") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'allerbold_italic';
  src: url("../fonts/aller_std_bdit-webfont.eot");
  src: url("../fonts/aller_std_bdit-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/aller_std_bdit-webfont.woff2") format("woff2"), url("../fonts/aller_std_bdit-webfont.woff") format("woff"), url("../fonts/aller_std_bdit-webfont.svg#allerbold_italic") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'allerregular';
  src: url("../fonts/aller_std_rg-webfont.eot");
  src: url("../fonts/aller_std_rg-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/aller_std_rg-webfont.woff2") format("woff2"), url("../fonts/aller_std_rg-webfont.woff") format("woff"), url("../fonts/aller_std_rg-webfont.svg#allerregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'allerlight_italic';
  src: url("../fonts/aller_std_ltit-webfont.eot");
  src: url("../fonts/aller_std_ltit-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/aller_std_ltit-webfont.woff2") format("woff2"), url("../fonts/aller_std_ltit-webfont.woff") format("woff"), url("../fonts/aller_std_ltit-webfont.svg#allerlight_italic") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'aller_displayregular';
  src: url("../fonts/allerdisplay_std_rg-webfont.eot");
  src: url("../fonts/allerdisplay_std_rg-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/allerdisplay_std_rg-webfont.woff2") format("woff2"), url("../fonts/allerdisplay_std_rg-webfont.woff") format("woff"), url("../fonts/allerdisplay_std_rg-webfont.svg#aller_displayregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'allerlight';
  src: url("../fonts/aller_std_lt-webfont.eot");
  src: url("../fonts/aller_std_lt-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/aller_std_lt-webfont.woff2") format("woff2"), url("../fonts/aller_std_lt-webfont.woff") format("woff"), url("../fonts/aller_std_lt-webfont.svg#allerlight") format("svg");
  font-weight: normal;
  font-style: normal;
}
a:focus {
  outline: none;
}

@-ms-viewport {
  width: device-width;
}
@-o-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
a, button {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

body,
button,
input,
select,
table,
textarea {
  font-family: allerregular;
  color: #636363;
  font-size: 14px;
  line-height: 1.5;
}

a {
  color: #3399CC;
  text-decoration: none;
}

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

a:focus {
  outline-color: #3091c2;
  color: #143d52;
}

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

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

h2, .h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #636363;
  font-family: allerregular;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
}

h3, .h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: allerregular;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

h4, .h4 {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: allerregular;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

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

h6, .h6 {
  margin: 0;
  margin-bottom: 5px;
  color: #636363;
  font-family: allerregular;
  font-size: 12px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

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

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

.availability .label {
  display: none;
}

.availability.in-stock {
  color: #73be44;
}

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

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

/* HENRY TRAN */
.hidden {
  display: none;
}

.nav-1 .hidden {
  display: block !important;
}

#nav .specialcat {
  display: block;
  width: auto;
  padding: 0 10px;
  background: #eeeeee;
}

.home_green_bg a {
  color: white;
}

/* -------------------------------------------- *
 * Page Titles
 */
.page-title h1,
.page-title h2,
.product-name h1,
.product-name .h1 {
  color: #383838;
  font-size: 17px;
  font-weight: normal;
  font-family: allerregular;
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 3px;
  margin-bottom: 15px;
  text-transform: uppercase;
  border-bottom: 0;
}

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

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

.block-title {
  position: relative;
  padding: 10px 0 0;
  margin-bottom: 5px;
  border-top: 1px solid #CCCCCC;
}
.block-title h2,
.block-title h3,
.block-title strong {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: allerregular;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  color: #1697ca;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: normal;
}
.block-title small {
  font-size: 100%;
  font-weight: normal;
  color: #A0A0A0;
}

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

.page {
  margin: 0 auto;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

/* Primary Buttons */
.button,
.cart-table .product-cart-actions .button,
#co-shipping-method-form .buttons-set .button,
.footer .button {
  background: none;
  border: 1px solid #73be44;
  display: inline-block;
  padding: 4px 15px 3px 15px;
  color: #73be44;
  font-size: 13px;
  font-weight: bold;
  font-family: Arial;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
}
.button:hover,
.cart-table .product-cart-actions .button:hover,
#co-shipping-method-form .buttons-set .button:hover,
.footer .button:hover {
  background: #73be44;
  cursor: pointer;
  color: #fff;
}
.button:active,
.cart-table .product-cart-actions .button:active,
#co-shipping-method-form .buttons-set .button:active,
.footer .button:active {
  background: #73be44;
  color: #fff;
}
.button:focus,
.cart-table .product-cart-actions .button:focus,
#co-shipping-method-form .buttons-set .button:focus,
.footer .button:focus {
  background-color: #73be44;
  outline: none;
  color: #fff;
}

a.button {
  text-decoration: none;
}

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

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

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

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

.button2:focus {
  outline: none;
}

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

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

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

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

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

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

.paypal-button img {
  display: inline;
}

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

/* -------------------------------------------- *
 * Icons
 */
.icon-sprite, .sorter > .sort-by .sort-by-switcher, .sorter > .view-mode .grid,
.sorter > .view-mode .list, .product-view .sharing-links a, .review-summary-table .rating-box .rating-number:after {
  background-image: url(../images/icon_sprite.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
}

.sprite_icon_tab, .skip-nav .icon, .skip-search .icon, .skip-cart .icon {
  background-image: url(../images/sprite_icon_tab.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 4 / 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .sprite_icon_tab, .skip-nav .icon, .skip-search .icon, .skip-cart .icon {
    background-image: url(../images/sprite_icon_tab@2x.png);
    background-size: 100px 700px;
  }
}
.sprite_icon, .btn-remove2, .pages .next, .pages .previous, .header_top_txt li, .header-language-background, #search_mini_form .search-button:before, .skip-account .icon, .footer .links.social-media ul a em, .products-grid .add-to-links .link-wishlist span, .block-layered-nav ol li, .about_category h1:before, .wp-sidebar .block-blog-search #blog-search-form .input-box .search-button:before, .wp-sidebar .block-instagram h3, .wordpress-post-view.is-blog .post-comment-share .comment_link a, .wordpress-post-view.is-blog .blog_top_social li a, .product-view .product-shop .social-media .social-media-email, .product-view .product-shop .social-media .social-media-print, .cart-table .btn-continue, .cart-table .btn-continue:hover, .add_to_cart_msg, #checkout-payment-method-load.sp-methods dl .add_remove_giftcard a {
  background-image: url(../images/sprite_icon.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 4 / 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .sprite_icon, .btn-remove2, .pages .next, .pages .previous, .header_top_txt li, .header-language-background, #search_mini_form .search-button:before, .skip-account .icon, .footer .links.social-media ul a em, .products-grid .add-to-links .link-wishlist span, .block-layered-nav ol li, .about_category h1:before, .wp-sidebar .block-blog-search #blog-search-form .input-box .search-button:before, .wp-sidebar .block-instagram h3, .wordpress-post-view.is-blog .post-comment-share .comment_link a, .wordpress-post-view.is-blog .blog_top_social li a, .product-view .product-shop .social-media .social-media-email, .product-view .product-shop .social-media .social-media-print, .cart-table .btn-continue, .cart-table .btn-continue:hover, .add_to_cart_msg, #checkout-payment-method-load.sp-methods dl .add_remove_giftcard a {
    background-image: url(../images/sprite_icon@2x.png);
    background-size: 100px 1630px;
  }
}
/* -------------------------------------------- *
 * Breadcrumbs
 */
.breadcrumbs {
  overflow: hidden;
  margin: 0px 0 10px;
}

.breadcrumbs li {
  float: left;
  font-size: 12px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}

.breadcrumbs li.search_value {
  padding-left: 5px;
}

.breadcrumbs a {
  float: left;
  color: #737373;
  font-family: Arial;
  font-size: 12px;
  text-decoration: underline;
}

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

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

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

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

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

.btn-remove2 {
  background-position: -81px -1131px;
  border: none;
  vertical-align: top;
}
.btn-remove2:after {
  display: none;
}
.btn-remove2:hover {
  background-color: transparent;
  background-position: -41px -1131px;
}

.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 #3399CC;
  border-left: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -2px;
  margin-top: -4px;
}
.btn-previous:hover:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #FFFFFF;
  border-left: none;
}

.block-layered-nav .currently .btn-remove,
.block-layered-nav .currently .btn-previous,
.mini-products-list .btn-remove,
.mini-products-list .btn-previous,
#compare-items .btn-remove,
#compare-items .btn-previous {
  float: right;
  margin-left: 6px;
}

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

.checkout-agreements .agreement-content {
  /*overflow-y: auto;
  max-width: 670px;
  max-height: 125px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid $c-module-border;
  background: $c-module-background;*/
}

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

/* -------------------------------------------- *
 * Container
 */
.main-container,
.footer-container {
  padding: 0;
}

.main-container,
.footer-container {
  position: relative;
  max-width: 1000px;
  width: 1000px;
  display: block;
  clear: both;
  margin: 0 auto;
  padding: 0;
  text-align: left;
}
.main-container:after,
.footer-container:after {
  content: '';
  display: table;
  clear: both;
}

.main-container,
.footer-container {
  max-width: 100%;
}

.footer-container {
  padding-top: 0px;
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin: 40px 0 0;
  display: inline-block;
}

/* -------------------------------------------- *
 * Column Layouts
 */
.main {
  margin: 15px 0 0;
  float: left;
  width: 100%;
  min-height: 300px;
}

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

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

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

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

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

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

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

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

.blog-col2-right-layout .col-main {
  width: 66%;
  padding: 0px;
}
.blog-col2-right-layout .col-right {
  width: 32%;
  padding-left: 0px;
}

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

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

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

/* -------------------------------------------- *
 * Global Site Notice
 */
.global-site-notice {
  background: #676157;
  color: #E6E6E6;
  font-size: 11px;
}
.global-site-notice .notice-inner {
  padding-left: 120px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  line-height: 11px;
  min-height: 40px;
  padding-top: 14.5px;
  padding-bottom: 14.5px;
  background-image: url("../images/demo-logo.png");
  background-position: left;
  background-repeat: no-repeat;
}
.global-site-notice p {
  margin-bottom: 0;
}

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

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

/* -------------------------------------------- *
 * Messages
 */
.success {
  color: #73be44;
}

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

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

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

.messages li li {
  position: relative;
  margin-bottom: 5px;
  padding: 14px 17px 13px;
  background: #F4F4F4;
  font-family: allerregular;
  text-transform: uppercase;
  font-size: 14px;
}

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

.messages .error-msg li {
  /*border-left: 5px solid $c-danger;*/
  color: red;
}

.messages .error-msg li:before {
  /*@include triangle(right, 6px, $c-danger);*/
}

.messages .notice-msg li {
  /*border-left: 5px solid $c-warn;*/
}

.messages .notice-msg li:before {
  /*@include triangle(right, 6px, $c-warn);*/
}

.messages .success-msg li {
  /*border-left: 5px solid $c-success;*/
  color: #1697ca;
}

.messages .success-msg li:before {
  /*@include triangle(right, 6px, $c-success);*/
}

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

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

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

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

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

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

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

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

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

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

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

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

/* -------------------------------------------- *
 * Please Wait (Loading Indicator)
 */
.please-wait {
  display: inline-block;
  font-family: allerregular;
  margin-left: 10px;
  margin-top: 5px;
  line-height: 24px;
  height: 24px;
  white-space: nowrap;
  /* Prevent the linebreak in the HTML from causing layout issues */
}
.please-wait img {
  float: left;
  margin-right: 5px;
  width: 24px;
}

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

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

.price-notice {
  color: #A0A0A0;
}

.price-box .price {
  color: #5ebad8;
  font-size: 16px;
  font-weight: bold;
  font-family: Arial;
}

.price-box .price,
.price {
  white-space: nowrap;
  font-family: Arial;
}

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

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

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

.price-box .old-price .price {
  color: #7c7c7c;
  font-weight: normal;
  text-decoration: line-through;
}

/*****/
.price-to .price-label,
.price-from .price-label,
.price-as-configured .price-label {
  font-family: allerlight;
  color: #383838;
}
.price-to .price,
.price-from .price,
.price-as-configured .price {
  font-family: allerlight;
  color: #383838;
  font-size: 13px;
  font-weight: normal;
}

/*****/
.price-box .special-price {
  color: #3399CC;
  padding-left: 1em;
}
.price-box .special-price .price-label {
  color: #D84D3C;
}

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

/* -------------------------------------------- *
 * Tier Prices
 */
.product-pricing,
.tier-prices,
.tier-prices-grouped {
  display: inline-block;
  padding: 4px 8px;
  background: #FBF4DE;
  border: 1px solid #E2D4C7;
  margin-top: 7px;
}
.product-pricing li,
.tier-prices li,
.tier-prices-grouped li {
  font-size: 12px;
}
.product-pricing .benefit,
.tier-prices .benefit,
.tier-prices-grouped .benefit {
  font-style: italic;
}
.product-pricing .price,
.tier-prices .price,
.tier-prices-grouped .price {
  font-weight: bold;
}

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

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

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

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

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

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

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

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

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

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

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

/* -------------------------------------------- *
 * Ratings
 */
.ratings {
  margin: 7px 0;
}
.ratings .rating-box,
.ratings .rating-links {
  margin: 5px 0;
}
.ratings .rating-box {
  background: url(../images/rating_star.png) repeat-x;
  width: 128px;
  height: 18px;
  background-repeat: repeat-x;
  background-position: 0 -25px;
  text-indent: -999em;
  overflow: hidden;
}
.ratings .rating-box .rating {
  background: url(../images/rating_star.png) repeat-x;
  float: left;
  height: 18px;
  text-indent: -999em;
  background-repeat: repeat-x;
  background-position: 0 0px;
}
.ratings .amount {
  display: block;
  margin: 5px auto;
}
.ratings .rating-links .separator {
  margin: 0 3px;
}

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

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

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

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

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

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

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

/* -------------------------------------------- *
 * Toolbar
 */
.toolbar {
  margin-top: 0;
  float: left;
  width: 100%;
  margin-bottom: 15px;
  border: none;
  background: #5ebad8;
  padding: 7px 4px 6px;
}
.toolbar:after {
  content: '';
  display: table;
  clear: both;
}
.toolbar .pager_sorter {
  float: right;
}
.toolbar .list_cat_ttl {
  font-family: allerlight;
  color: #fff;
  font-size: 18px;
  float: left;
  margin: 6px 0 0 10px;
  text-transform: uppercase;
}
.toolbar .limiter > ul li {
  border-right: 2px solid #f4f4f4;
  float: left;
  line-height: 13px;
  padding: 0 6px;
}
.toolbar .limiter > ul li a {
  color: #fff;
  font-family: allerbold;
  font-size: 15px;
}
.toolbar .limiter > ul li a:hover {
  text-decoration: none;
  color: #afdeee;
}
.toolbar .limiter > ul li a.active {
  color: #afdeee;
}
.toolbar .limiter > ul li.last {
  border-right: none;
}

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

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

.toolbar,
.pager {
  font-family: allerbold;
  color: #fff;
  font-size: 12px;
}

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

.sorter {
  float: right;
  margin: 0px 0 0 15px;
}
.sorter label {
  float: left;
  margin: 6px 5px 0 0;
  font-family: allerbold;
  font-size: 15px;
}
.sorter label:after {
  content: ':';
}

.sorter > .sort-by {
  float: left;
  /*margin-right: 5px;
  height: 30px;*/
  width: 193px;
}
.sorter > .sort-by .selectboxit-container {
  width: 76%;
}
.sorter > .sort-by .selectboxit-container .selectboxit {
  border: none;
  height: 35px;
}
.sorter > .sort-by .sort-by-switcher {
  width: 30px;
  height: 30px;
  display: inline-block;
}
.sorter > .sort-by .sort-by-switcher--asc {
  background-position: 4px -542px;
}
.sorter > .sort-by .sort-by-switcher--asc:hover {
  background-position: -46px -542px;
}
.sorter > .sort-by .sort-by-switcher--desc {
  background-position: 4px -567px;
}
.sorter > .sort-by .sort-by-switcher--desc:hover {
  background-position: -46px -567px;
}

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

.pager {
  float: left;
  overflow: hidden;
}
.pager > .count-container {
  float: right;
  border-right: 1px solid #9ed6e8;
  border-left: 1px solid #9ed6e8;
  padding: 8px 10px 6px 10px;
  margin: 3px 0 0;
}
.pager .amount {
  float: left;
  font-family: allerbold;
  white-space: nowrap;
  text-transform: uppercase;
  margin: 0 15px 0 0;
}
.pager .limiter {
  float: left;
}
.pager .limiter > label {
  padding-right: 5px;
  font-family: allerbold;
}
.pager .limiter > label:after {
  content: ':';
}
.pager .amount,
.pager .limiter,
.pager .pages {
  /*margin-bottom: 5px;*/
}

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

.pages li {
  float: left;
}

.pages a,
.pages .current {
  display: inline-block;
  border: 0;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  line-height: 26px;
  width: 20px;
  height: 26px;
  padding: 0;
  font-size: 15px;
  color: #fff;
}
.pages a:hover,
.pages .current:hover {
  color: #272727;
  text-decoration: none;
}

.pages .current,
.pages .current:hover {
  color: #272727;
  text-decoration: none;
  /*border: 1px solid $c-module-border;*/
  width: 20px;
  /*background-color: #FFFFFF;*/
  cursor: default;
}

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

.pages .next {
  background-position: -86px -723px;
  text-indent: 0;
}

.pages .previous {
  background-position: -43px -723px;
  text-indent: 0;
}

.toolbar .view-mode > label {
  display: none;
}

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

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

/* ============================================ *
 * Widgets
 * ============================================ */
.widget .pager {
  float: none;
  width: 100%;
}

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

/***account section**/
.block-account .block-title strong {
  padding-bottom: 5px;
  font-family: allerlight;
  background-color: transparent;
  color: #383838;
  font-size: 17px;
  font-weight: normal;
  border: none;
  display: inline-block;
  border-bottom: 1px solid #d0d0d0;
  width: 100%;
}
.block-account .block-content ul li {
  padding: 9px 0 9px 0;
  margin: 0;
  border-bottom: 1px solid #d7d7d7;
}
.block-account .block-content ul li strong {
  font-family: allerlight;
}
.block-account .block-content ul li.pre_last {
  border-bottom: 0;
}
.block-account .block-content ul li.last {
  border-bottom: 0;
  display: none;
}
.block-account .block-content ul li a {
  /*@extend .sprite_icon;
  text-indent:0;
  background-position: -93px -828px;*/
  color: #5c5c5c;
  padding: 9px 0 7px 0px;
  font-size: 14px;
  font-family: allerlight;
  text-indent: 0;
}
.block-account .block-content ul li a img {
  margin: 0 0 0 0;
}
.block-account .block-content ul li a:hover {
  color: #9e9d9d;
  text-decoration: none;
}

.send-friend .buttons-set .button {
  margin-left: 10px;
}
.send-friend .input-box .input-text {
  height: 44px;
  line-height: 44px;
  border-color: #d0d0d;
  font-family: allerlight_italic;
  color: #636363;
  font-size: 12px;
  width: 100%;
}
.send-friend .fieldset {
  margin-bottom: 30px;
}

/*.sendfriend-product-send {*/
.mini-products-list li.item {
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #d0d0d0;
}
.mini-products-list li.item .product-image {
  border: 1px solid #d0d0d0;
}
.mini-products-list li.last {
  border-bottom: 0;
}
.mini-products-list .product-name a {
  font-family: allerregular;
  text-transform: none;
}

.block-wishlist .block-title small {
  color: #3399cc;
}
.block-wishlist .block-subtitle {
  font-weight: normal;
  font-family: allerregular;
}
.block-wishlist .mini-products-list .link-cart {
  background: #5ebad8;
  border: medium none;
  color: white;
  font-family: allerregular;
  font-size: 12px;
  font-weight: normal;
  margin: 0;
  padding: 5px 10px 4px 10px;
}
.block-wishlist .mini-products-list .link-cart:hover {
  text-decoration: none;
  background: #1697ca;
}

/*}*/
@media only screen and (min-width: 1px) and (max-width: 770px) {
  .sidebar .block-viewed .block-title strong {
    border-bottom: 1px solid #fff !important;
  }

  .block-wishlist .block-title small {
    color: #fff;
  }

  .block-account .block-content ul li.last {
    display: block;
  }

  .block-account .block-content ul li.pre_last {
    border-bottom: 1px solid #5ebad8;
  }
}
@media only screen and (min-width: 1px) and (max-width: 500px) {
  .send-friend .buttons-set .button {
    margin-bottom: 10px;
  }
}
/* ============================================ *
 * FORMS - COMMON
 * ============================================ */
/* -------------------------------------------- *
 * Fieldsets
 */
.fieldset p {
  margin-bottom: 7px;
}
.fieldset p.required {
  margin-bottom: 5px;
  float: right;
  font-size: 12px;
  margin-top: 0px;
}

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

form .legend {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: allerregular;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 7px;
  border-bottom: 1px solid #d0d0d0;
}

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

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

/* -------------------------------------------- *
 * Labels
 */
label {
  display: inline-block;
  font-size: 13px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 600;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

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

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

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

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

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

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

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

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

.input-text.validation-failed {
  border-color: #FF0000 !important;
}

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

input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  height: 30px;
  padding: 0 8px;
}

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

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

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

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

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

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

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

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

/* ============================================ *
 * Form List
 * ============================================ */
.form-list > li {
  margin-bottom: 10px;
}
.form-list select {
  margin-top: 4px;
  width: 365px;
  max-width: 100%;
}
.form-list .input-range .input-text {
  width: 74px;
}
.form-list .field,
.form-list .wide,
.form-list .control {
  margin-bottom: 10px;
}

/* Turn the label of controls (radio/checkbox) into a button style that wraps the input */
.form-list .control,
.sp-methods dt,
#checkout-shipping-method-load .sp-methods dd,
#co-shipping-method-form .sp-methods dd,
.product-options ul.options-list {
  /* When a label is next to an input that is set to not display, we should style the label in a non-clickable state */
}
.form-list .control div.input-box,
.sp-methods dt div.input-box,
#checkout-shipping-method-load .sp-methods dd div.input-box,
#co-shipping-method-form .sp-methods dd div.input-box,
.product-options ul.options-list div.input-box {
  display: inline;
  float: left;
}
.form-list .control div.input-box:after,
.sp-methods dt div.input-box:after,
#checkout-shipping-method-load .sp-methods dd div.input-box:after,
#co-shipping-method-form .sp-methods dd div.input-box:after,
.product-options ul.options-list div.input-box:after {
  display: none;
}
.form-list .control input.radio,
.form-list .control input.checkbox,
.sp-methods dt input.radio,
.sp-methods dt input.checkbox,
#checkout-shipping-method-load .sp-methods dd input.radio,
#checkout-shipping-method-load .sp-methods dd input.checkbox,
#co-shipping-method-form .sp-methods dd input.radio,
#co-shipping-method-form .sp-methods dd input.checkbox,
.product-options ul.options-list input.radio,
.product-options ul.options-list input.checkbox {
  float: left;
  margin-right: -40px;
  margin-top: 10px;
  /*margin-left: 15px;*/
}
.form-list .control label,
.sp-methods dt label,
#checkout-shipping-method-load .sp-methods dd label,
#co-shipping-method-form .sp-methods dd label,
.product-options ul.options-list label {
  /*@include touch-button;*/
  display: inline-block;
  width: auto;
  max-width: none;
  min-width: 250px;
  float: none;
  padding: 6px 10px 6px 25px;
  font-family: allerregular;
  font-weight: normal;
  font-size: 14px;
  color: #383838;
}
.form-list .control label:hover,
.sp-methods dt label:hover,
#checkout-shipping-method-load .sp-methods dd label:hover,
#co-shipping-method-form .sp-methods dd label:hover,
.product-options ul.options-list label:hover {
  /*background-color: shade($c-module-background, 5%);*/
}
.form-list .control .no-display + label,
.sp-methods dt .no-display + label,
#checkout-shipping-method-load .sp-methods dd .no-display + label,
#co-shipping-method-form .sp-methods dd .no-display + label,
.product-options ul.options-list .no-display + label {
  padding-left: 10px;
  background-color: transparent;
}
.form-list .control .no-display + label:hover,
.sp-methods dt .no-display + label:hover,
#checkout-shipping-method-load .sp-methods dd .no-display + label:hover,
#co-shipping-method-form .sp-methods dd .no-display + label:hover,
.product-options ul.options-list .no-display + label:hover {
  background-color: transparent;
}

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

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

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

form .form-instructions {
  font-style: italic;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 13px;
  color: #A0A0A0;
}

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

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

.data-table td,
.data-table th {
  padding: 10px;
  vertical-align: top;
  font-size: 14px;
  font-family: allerlight;
}

.data-table th {
  background: #F4F4F4;
  text-transform: uppercase;
  font-family: allerlight;
  line-height: 1.4;
  white-space: nowrap;
}

.data-table thead,
.data-table tbody {
  border: 1px solid #d0d0d0;
}

.data-table thead th,
.data-table tbody td {
  border-bottom: 1px solid #d0d0d0;
  font-size: 14px;
  font-family: allerregular;
}

.data-table tbody td,
.data-table tfoot td {
  font-size: 14px;
  font-family: allerlight;
}
.data-table tbody td .price,
.data-table tfoot td .price {
  font-family: allerlight;
}

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

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

/* ============================================ *
 * Zebra-Stripe Table
 * ============================================ */
.zebra-table tr:first-child,
.zebra-table th:first-child {
  border-top: 1px solid #d0d0d0;
}
.zebra-table td,
.zebra-table th {
  border-bottom: 1px solid #d0d0d0;
  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;
}

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

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

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

/* ============================================ *
 * Header
 * ============================================ */
.page-header {
  max-width: 1000px;
  width: 100%;
  display: block;
  text-align: left;
  margin: 0 auto;
}

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

.header-language-container,
.page-header {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* ============================================ *
 * Language switcher + welcome message
 * ============================================ */
.header_top_txt {
  float: left;
  left: 0;
  position: absolute;
  top: -41px;
}
.header_top_txt li {
  float: left;
  font-family: Arial;
  line-height: 19px;
  text-indent: 0;
  margin: 0 17px 0 0px;
  color: #fff;
  cursor: pointer;
}
.header_top_txt li a {
  color: #fff;
}
.header_top_txt .free_del {
  background-position: -83px -55px;
  padding: 0 0 0 24px;
}
.header_top_txt .same_day {
  background-position: -82px -97px;
  padding: 0 0 0 25px;
}
.header_top_txt .free_sample {
  background-position: -78px -145px;
  padding: 0 0 1px 32px;
}

.header-language-background {
  text-indent: 0;
  background-position: 0 0;
  background-repeat: repeat-x !important;
  text-align: center;
  margin: 0 auto;
  height: 51px;
}
.header-language-background .header-language-container {
  max-width: 1000px;
  width: 100%;
  display: inline-block;
}
.header-language-background:after {
  content: '';
  display: table;
  clear: both;
}
.header-language-background .form-language,
.header-language-background .currency-switcher {
  float: left;
  margin-right: 10px;
}
.header-language-background .welcome-msg {
  float: right;
}

.page-header-container .store-language-container {
  float: right;
  max-width: 35%;
  padding: 13px 15px 10px 10px;
}
.page-header-container .store-language-container label {
  display: none;
}
.page-header-container .store-language-container select {
  max-width: 100%;
}

.header-language-background,
.header-language-background a {
  color: #E6E6E6;
}

/* ============================================ *
 * Logo
 * ============================================ */
.logo {
  display: block;
  float: left;
  margin: 26px 0 23px 20px;
    /*
width: 65%;
    min-width: 100px;
    min-height: 44px;
*/
  text-align: center;
    /*
padding: $gap;
*/
}
.logo img {
  max-width: 100%;
}
.logo .small {
  display: block;
}
.logo .large {
  display: none;
}

.logo {
  max-width: 300px;
  min-height: 57px;
  margin: 23px 0 0 1px;
}
.logo .small {
  display: none;
}
.logo .large {
  display: block;
}

/* ============================================ *
 * Skip Links
 * ============================================ */
.skip-links {
  /*clear: both;*/
  float: right;
  overflow: visible;
  border-top: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
}

.skip-links {
  border: 0;
  position: absolute;
  right: 0;
  top: -51px;
}

/* -------------------------------------------- *
 * Skip - Link
 */
.skip-link {
  position: relative;
  float: left;
  width: 25%;
  /*height: 44px;*/
  background: none;
  color: #636363;
  /*line-height: 42px;*/
  text-align: center;
}

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

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

.skip-link {
  width: 25%;
}

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

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

.skip-link .icon {
  margin-right: 3px;
}

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

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

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

.skip-content.skip-active {
  display: inline-block;
  width: 100%;
  background: #EDEDED;
}

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

/*.skip-nav .label {
    display: inline;
}*/
.skip-nav .icon {
  background-position: -70px -132px;
}

.skip-nav {
  width: 25%;
}

.skip-nav {
  display: none;
}

/* ============================================ *
 * Nav - Skip Content
 * ============================================ */
#header-nav {
  display: block;
  /* Force visibility */
  width: 100%;
  float: left;
  margin: 24px 0 0;
}

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

/* ============================================ *
 * General Navigation Styles
 * ============================================ */
.nav-primary {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
.nav-primary a {
  text-decoration: none;
  position: relative;
  display: block;
  color: #343434;
  line-height: 30px;
  font-family: allerlight;
  font-size: 15px;
}
.nav-primary li {
  /*position: relative;*/
}
.nav-primary li .arrow-pointer {
  display: none;
}
.nav-primary li.level1 a {
  border-bottom: 1px solid #CCCCCC;
}

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

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

/* ============================================ *
 * Small Viewports - Accordion Style Menu
 * ============================================ */
/* ============================================ *
 * Large Viewports - Dropdown Menu
 * ============================================ */
.level0 .all-brands {
  margin: 7px 0 0;
}
.level0 .all-brands a {
  background: #eeeeee;
  width: auto;
  padding: 0 10px;
}
.level0 .all-brands a:hover {
  background: #eeeeee;
}

.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: 9px 17px 7px 17px;
  margin: 0px 0px 0px 0;
  z-index: 1111;
  background: #fff;
}
.nav-primary .active a {
  color: #343434;
}
.nav-primary a.level0:hover {
  background: #e8e8e8;
  color: #343434;
}
.nav-primary .level0.last {
  /*background: #e8e8e8;*/
  float: right;
}
.nav-primary .level0.last a {
  margin: 0;
  /*min-width: 131px;*/
  float: right;
  padding: 9px 30px 7px;
  text-align: center;
  background: #e8e8e8;
}
.nav-primary li.level0,
.nav-primary a.level0 {
  display: inline-block;
}
.nav-primary li:last-child > a {
  border-bottom: none;
}
.nav-primary a:hover,
.nav-primary li:hover > a {
  color: #5ebad8;
  /*background:#e8e8e8;*/
}
.nav-primary .parent:hover .has-children {
  padding: 9px 17px 8px 17px;
}
.nav-primary .menu-active,
.nav-primary li.level0:hover {
  z-index: 200;
}
.nav-primary li.level0 ul {
  background: #fff;
  border: solid 1px #CCCCCC;
  position: absolute;
  left: 0;
  top: 46px;
  /* Height of ".nav-primary a.level0" */
  z-index: 999;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  display: none;
  /* Hide until displayed. */
}
.nav-primary li.level0 ul .inner-leval {
  display: block;
}
.nav-primary .level0.full_nav {
  padding: 23px 20px 30px 20px;
}
.nav-primary .level0.full_nav .level1 {
  float: left;
  position: relative;
  width: 25%;
  padding: 0 10px 0 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.nav-primary .level0.full_nav .level1 .inner-leval {
  position: relative;
  float: left;
  width: 100%;
  left: 0;
  top: 0;
  border: none;
  padding: 0;
}
.nav-primary .level0.full_nav .level1 .inner-leval li {
  float: left;
  width: 100%;
}
.nav-primary .level0.full_nav .level1 .inner-leval li a:hover,
.nav-primary .level0.full_nav .level1 .inner-leval li li:hover > a {
  color: #5ebad8;
  background: none;
}
.nav-primary .level0.full_nav .level1 .inner-leval li a {
  float: left;
  width: 100%;
  border: none;
  line-height: 31px;
  background: none;
}
.nav-primary .level0.full_nav .level1 .inner-leval .menu-product-attributes {
  margin: 7px 0 0;
}
.nav-primary .level0.full_nav .level1 .inner-leval .menu-product-attributes a {
  background: #eeeeee;
  width: auto;
  padding: 0 10px;
}
.nav-primary .level0.full_nav .level1 .inner-leval .menu-product-attributes a:hover {
  background: #eeeeee;
}
.nav-primary li.level1 ul {
  left: 60px;
  top: 15px;
}
.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 {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #ccc;
  border-right: none;
  right: 5px;
  top: 50%;
  margin-top: -3px;
}

.no-touch li:hover > ul {
  display: block;
  /* Force display */
}

.sticky-navigation {
  position: fixed;
  top: 0;
  z-index: 9999999;
  background: #EDEDED;
  max-width: 100%;
  width: 100%;
  background: url(../images/sticky_nav_bg.jpg) repeat-x;
  left: 0;
}
.sticky-navigation .logo {
  width: 91px;
  height: 26px;
  min-height: 26px;
  margin: 0;
  overflow: hidden;
  margin: 13px 0 0;
}
.sticky-navigation .full_width {
  top: 0;
  z-index: 9999;
}
.sticky-navigation .page-header-container {
  margin: 0 auto;
  position: relative;
  max-width: 1000px;
}
.sticky-navigation #header-nav {
  background: #fff;
  margin: 0;
  padding: 12px 0 0;
}
.sticky-navigation .skip-link.skip-account {
  color: #282828;
}
.sticky-navigation #header-search {
  margin: 10px 321px 1px 0;
}
.sticky-navigation .head_account {
  margin: 10px 0 0 0;
}
.sticky-navigation #header-account.skip-active {
  top: 51px;
  background: #EDEDED;
  width: 183px;
}
.sticky-navigation #header-account.skip-active a {
  color: #282828;
  padding: 7px 13px 7px 20px;
}
.sticky-navigation #header-account.skip-active a:hover {
  color: #63b6d7;
}
.sticky-navigation .skip-account {
  padding: 7px 7px 4px 10px;
}
.sticky-navigation .skip-account:not(.skip-active) .icon {
  background-position: 7px -184px;
}
.sticky-navigation .skip-account .icon {
  background-position: 7px -144px;
}
.sticky-navigation .skip-cart {
  padding: 20px 36px 20px 24px;
  min-width: 0;
}
.sticky-navigation .skip-cart .total {
  display: none;
}
.sticky-navigation .skip-cart .count {
  position: absolute;
  text-indent: 0;
  height: 20px;
  width: 20px;
  line-height: 18px;
  border: 1px solid #828282;
  border-radius: 50%;
  margin: 0;
  top: 9px;
  right: 8px;
  padding: 0px 0 0 0;
  font-size: 11px;
}
.sticky-navigation .skip-cart .count:after {
  content: "";
}
.sticky-navigation .skip-cart .count:before {
  content: "";
}
.sticky-navigation .skip-cart .top-cart-total-items {
  display: none;
}
.sticky-navigation .skip-cart.no-count .count {
  display: block;
}
.sticky-navigation #search {
  background: #fff;
  border: 1px solid #a6a6a6;
  margin-left: -1px;
}
.sticky-navigation #search_mini_form .search-button {
  border: 1px solid #a6a6a6;
  border-left: none;
}
.sticky-navigation #header-cart.skip-active {
  top: 61px;
}

@media only screen and (min-width: 1px) and (max-width: 770px) {
  .nav-primary li .arrow-pointer {
    display: block;
    height: 35px;
    position: absolute;
    width: 24px;
    z-index: 999999;
  }
}
/* ============================================ *
 * Search - Skip Link
 * ============================================ */
.skip-search:not(.skip-active):hover .icon {
  background-position: -70px -269px;
}
.skip-search .icon {
  background-position: -70px -269px;
}

.skip-search {
  display: none;
}

/* ============================================ *
 * Search - Skip Content
 * ============================================ */
#header-search {
  padding: 20px;
}

#header-search {
  display: block;
  position: relative;
  width: 25.4%;
  float: right;
  height: 50px;
  padding: 0;
  margin: 34px 0 0;
}

/* ============================================ *
 * Search Input
 * ============================================ */
#search_mini_form .input-box {
  position: relative;
  padding-top: 0;
}
#search_mini_form .input-box:hover #search {
  border: 1px solid #a6a6a6;
  margin-left: -1px;
}
#search_mini_form .input-box:hover button {
  background: #a5a5a5;
}

#search_mini_form label {
  display: none;
}

#search {
  width: 100%;
  height: 41px;
  padding: 0 40px 0 11px;
  font-family: Arial;
  font-size: 12px;
  border: none;
  border-radius: 0;
  background: #EDEDED;
}

#advice-required-entry-search.validation-advice {
  display: none;
}

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

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

/*
#search_mini_form .search-button:hover:before {
    opacity: 0.8;
}
*/
/*#search_mini_form .search-button:active:before {
    margin-top: -15px + 2px;
    margin-left: -15px + 2px;
}*/
@media only screen and (min-width: 320px) and (max-width: 770px) {
  #search_mini_form .input-box #search {
    border: 1px solid #a6a6a6;
    margin-left: -1px;
  }
  #search_mini_form .input-box button {
    background: #a5a5a5;
  }
}
/* ============================================ *
 * Header - Account
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Account
 */
.skip-account:not(.skip-active) .icon {
  background-position: -76px -184px;
}
.skip-account .icon {
  background-position: -36px -184px;
  margin: 0 3px 0 1px;
  float: right;
}
.skip-account .label {
  float: left;
  margin: 3px 4px 0 0;
}

.head_account {
  float: left;
  position: relative;
}

.skip-account {
  position: relative;
  width: auto;
  padding: 7px 11px 4px 10px;
  font-family: Arial;
  font-size: 15px;
  color: #fff;
}

#header-account.skip-active {
  background: #fff;
  border: solid 1px #CCCCCC;
  background: url(../images/account_bg.jpg) repeat;
  border: none;
  display: block;
  position: absolute;
  z-index: 2222;
  top: 41px;
  right: 0;
  width: 188px;
}

#header-account a {
  display: block;
  padding: 5px 10px;
  font-family: Arial;
  color: #fff;
  font-size: 16px;
  line-height: 2;
}

#header-account a:hover {
  color: #63b6d7;
  text-decoration: none;
}

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

#header-account a {
  position: relative;
  display: block;
  padding: 7px 18px 7px 20px;
  line-height: 21px;
  text-align: left;
}

/*
#header-account a:hover {
    color: $c-action;
}
*/
/* ============================================ *
 * Header - Cart
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Cart
 */
.skip-cart:not(.skip-active):hover .icon {
  background-position: -70px -178px;
}
.skip-cart .icon {
  background-position: -70px -178px;
  display: inline-block;
  /*float: left;*/
}

.skip-cart .icon {
  display: none;
}

.header-minicart {
  float: left;
  margin: 0px 0 0 0;
  background: #282828;
  position: relative;
  z-index: 9999;
}

.skip-cart {
  position: relative;
  width: auto;
  padding: 10px 20px 20px;
  min-width: 255px;
  text-align: right;
  font-family: Arial;
  font-size: 14px;
}
.skip-cart .label {
  font-family: allerbold;
  font-size: 13px;
  color: #4b95ad;
  padding: 0px 0px 0 12px;
}
.skip-cart .label:hover {
  color: #5ebad8;
}

#header-cart.skip-active {
  background: #fff;
  border: solid 1px #CCCCCC;
  display: block;
  position: absolute;
  z-index: 200;
  top: 51px;
  right: 0;
  border: 1px solid #d0d0d0;
  width: 436px;
  background: white;
}

/* -------------------------------------------- *
 * Skip Cart Notifier
 */
.skip-cart .count {
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  display: inline-block;
  top: -6px;
  position: relative;
  z-index: 5;
  width: 22px;
  height: 22px;
  background: rgba(51, 153, 204, 0.9);
  color: #FFFFFF;
  font-size: 11px;
  line-height: 22px;
  text-align: center;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}

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

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

.skip-cart {
  color: #3399CC;
  text-transform: uppercase;
}
.skip-cart:hover {
  text-decoration: none;
}
.skip-cart .count {
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  color: #fff;
  position: static;
  display: inline;
  background: none;
  margin-left: 0px;
  margin-right: 12px;
  font-family: Arial;
  font-size: 13px;
  line-height: 18px;
}
.skip-cart .count:before {
  content: '(';
}
.skip-cart .count:after {
  content: ')';
}

.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: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

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

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

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

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

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

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

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

/* ============================================ *
 * Footer
 * ============================================ */
/* -------------------------------------------- *
 * Footer
 */
.footer,
.footer button {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}

.footer {
  clear: both;
  width: 100%;
  padding: 0 0 0px 0;
  background: #363636;
  color: #fff;
  float: left;
  min-height: 435px;
  font-family: allerlight;
  /* -------------------------------------------- *
   * Social icons
   */
}
.footer .block-title {
  border-bottom: 0;
  padding: 10px 0 9px;
  margin: 0 0 14px;
  border-top: 1px solid #545454;
  border-bottom: 1px solid #545454;
}
.footer .block-title strong {
  color: #fff;
  font-family: Arial;
}
.footer .block-title strong {
  font-weight: normal;
}
.footer .block-title,
.footer address {
  color: #3399CC;
}
.footer .links {
  float: left;
  width: 17%;
  padding: 30px 20px 0 0;
}
.footer .links li {
  word-break: break-all;
  line-height: 1.4;
  padding: 2px 0 4px;
}
.footer .links .view_all_btn {
  background: #2e2e2e;
  border: 1px solid #497684;
  font-family: allerlight;
  color: #5ebad8;
  font-size: 12px;
  padding: 5px 25px 5px 25px;
  margin: 11px 0 0;
  text-transform: uppercase;
  float: left;
}
.footer .links .view_all_btn:hover {
  background: #242323;
  color: #5ebad8;
  text-decoration: none;
}
.footer .links a {
  color: #fff;
  font-size: 14px;
  font-family: allerlight;
}
.footer .links a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer .block-subscribe {
  float: right;
  width: 320px;
  margin-bottom: 30px;
  margin: 0;
}
.footer .links {
  font-size: 12px;
}
.footer .myform {
  margin: 0px 0 0 0;
  float: right;
}
.footer .myform .footer-payment-logo {
  clear: both;
  float: left;
  background: #fff;
  width: 100%;
  padding: 19px 20px 15px;
  border-top: 1px solid #f1f1f1;
}
.footer .myform .footer-payment-logo .block-title {
  display: none;
}
.footer .myform .footer-payment-logo ul {
  clear: both;
  float: left;
}
.footer .myform .footer-payment-logo ul li {
  float: left;
  margin: 0px 5px 5px 0;
}
.footer .myform .footer-payment-logo .all_price_display {
  clear: both;
  color: #262626;
  font-size: 13px;
  padding: 11px 0 0 1px;
}
.footer .form-subscribe-header {
  display: none;
}
.footer .links.social-media ul {
  float: left;
  margin: -2px 0 0 1px;
}
.footer .links.social-media ul li {
  float: left;
  padding: 0 0 14px;
  line-height: 23px;
}
.footer .links.social-media ul a {
  float: left;
  font-size: 13px;
}
.footer .links.social-media ul a em {
  font-family: Arial;
  line-height: 19px;
  text-indent: 0;
  width: 24px;
  height: 24px;
  float: left;
  margin: 0 15px 0 0px;
  color: #fff;
}
.footer .links.social-media ul a .instagram {
  background-position: -76px -290px;
}
.footer .links.social-media ul a .facebook {
  background-position: -76px -328px;
}
.footer .links.social-media ul a .twitter {
  background-position: -76px -367px;
}
.footer .links.social-media ul a .pinterest {
  background-position: -75px -404px;
}
.footer .links.social-media ul a:hover .instagram {
  background-position: -26px -290px;
}
.footer .links.social-media ul a:hover .facebook {
  background-position: -26px -328px;
}
.footer .links.social-media ul a:hover .twitter {
  background-position: -26px -367px;
}
.footer .links.social-media ul a:hover .pinterest {
  background-position: -25px -404px;
}
.footer .links.social-media ul a:hover {
  text-decoration: none;
}
.footer .block-subscribe .input-box {
  float: left;
  width: 65.625%;
  padding-top: 0;
}
.footer .block-subscribe .input-text {
  width: 100%;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.footer .block-subscribe .block-content {
  padding-top: 7px;
}
.footer .block-subscribe .block-content:after {
  content: '';
  display: table;
  clear: both;
}
.footer .block-subscribe .actions {
  float: left;
  width: 34.375%;
  margin: 0;
}
.footer .block-subscribe .actions .button {
  height: 30px;
  line-height: 17px;
  float: left;
}
.footer .bugs,
.footer address {
  clear: both;
}
.footer .bugs {
  display: none;
}
.footer .form-language,
.footer .currency-switcher,
.footer .store-switcher {
  clear: both;
  margin-bottom: 10px;
}
.footer .form-language,
.footer .currency-switcher {
  display: none;
}
.footer .contact-here {
  background: #2d2d2d;
  margin: 20px 0 0;
  padding: 9px 0 0 9px;
  width: 150px;
  height: 64px;
  font-size: 14px;
}
.footer .contact-here span {
  font-size: 18px;
}

.block-subscribe {
  font-size: 12px;
  background: #5ebad8;
  padding: 27px 20px 31px;
}
.block-subscribe .block-title {
  border: none;
  margin: 0 0 5px;
}
.block-subscribe .block-title strong {
  font-family: Arial;
}
.block-subscribe label {
  font-family: allerlight;
  font-weight: normal;
  padding: 0 0 5px 2px;
}
.block-subscribe input {
  height: 47px;
  margin: 0 0 16px;
  border-radius: 0;
  border: 1px solid #bbbcbc;
}
.block-subscribe input:hover {
  border-color: #626262;
}
.block-subscribe .input-text.validation-failed {
  margin: 0;
}
.block-subscribe button {
  background: #7ec8e0;
  border: none;
  font-family: allerbold;
  font-size: 13px;
  color: #fff;
  padding: 7px 19px 8px 21px;
  margin: 4px 0 0 1px;
  text-transform: uppercase;
}
.block-subscribe button:hover {
  background: #4b95ad;
}

.footer_box {
  max-width: 1000px;
  width: 100%;
  display: inline-block;
  text-align: left;
  padding: 0 0 0px 0;
  margin: 0 0 -7px 0;
}

.footer_copy {
  max-width: 1000px;
  width: 100%;
  display: inline-block;
  text-align: left;
  padding: 13px 0 15px 0;
}
.footer_copy .copyright-links {
  float: left;
  width: 100%;
}
.footer_copy .copyright-links ul {
  float: left;
  padding: 0 0 0 2px;
}
.footer_copy .copyright-links ul li {
  float: left;
}
.footer_copy .copyright-links ul li a {
  font-family: Arial;
  font-size: 12px;
  color: #231f20;
  margin: 0 22px 0 0;
}
.footer_copy .copyright-links .digital_agency {
  float: right;
  font-family: Arial;
  font-size: 12px;
  color: #231f20;
  margin: 4px 0 0 0;
}
.footer_copy .copyright-links .digital_agency a {
  color: #231f20;
}
.footer_copy address {
  float: left;
  width: 100%;
  font-family: Arial;
  font-size: 12px;
  color: #4b4b4b;
  padding: 10px 0 0 2px;
}

/*
@media only screen and (min-width:1px) and (max-width:600px) {
  .footer .block-subscribe ul li.last {
    clear: none;
  }
}
*/
/* ================================================= *
 * General Product List Styles (not module-specific)
 * ================================================= */
/* -------------------------------------------- *
 * Product List General
 */
.category-title h1,
body.catalogsearch-result-index .page-title h1 {
  border-bottom: none;
}

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

/* -------------------------------------------- *
 * Product Name
 */
h2.product-name,
h3.product-name,
h4.product-name,
h5.product-name,
p.product-name {
  margin: 0;
  margin-bottom: 0.5em;
  color: #636363;
  font-family: allerregular;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  font-size: 13px;
  font-family: Arial;
  font-weight: normal;
  line-height: 1.4;
}
h2.product-name a,
h3.product-name a,
h4.product-name a,
h5.product-name a,
p.product-name a {
  color: #636363;
}
h2.product-name a:hover,
h3.product-name a:hover,
h4.product-name a:hover,
h5.product-name a:hover,
p.product-name a:hover {
  color: #3399CC;
  text-decoration: none;
}

.products-grid .product-name,
.products-list .product-name {
  text-transform: none;
  margin-bottom: 5px;
  line-height: 20px;
  min-height: 60px;
  font-size: 16px;
  font-family: allerlight;
  color: #363636;
}
.products-grid .product-name a,
.products-list .product-name a {
  font-weight: 500;
  font-size: 16px;
  font-family: allerlight;
  color: #363636;
}
.products-grid .product-name a:hover,
.products-list .product-name a:hover {
  color: #363636;
  text-decoration: underline;
}

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

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

.products-grid li .availability.out-of-stock {
  font-family: allerlight;
}

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

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

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

.products-grid .product-info {
  position: relative;
}
.products-grid .product-info .old-price .price-label {
  display: none;
}

.products-grid .actions {
  padding-top: 20px;
  bottom: 0px;
  width: 100%;
}
.products-grid .actions .button {
  min-width: 158px;
}

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

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

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

.products-grid .add-to-links {
  margin-bottom: 0;
  position: absolute;
  display: none;
  top: 0;
  right: 0;
  z-index: 9999;
}
.products-grid .add-to-links .link-wishlist {
  padding: 7px 41px 0 0;
  font-family: allerlight;
  color: #383838;
  font-size: 12px;
}
.products-grid .add-to-links .link-wishlist:hover {
  text-decoration: none;
}
.products-grid .add-to-links .link-wishlist:hover span {
  background-color: #d78089;
}
.products-grid .add-to-links .link-wishlist span {
  text-indent: 0;
  background-position: -75px -441px;
  background-color: #d75f6b;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  float: left;
  position: absolute;
  right: 0;
  top: 0;
}

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

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

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

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

/* Config: Three columns + flexible gutter */
.products-grid {
  /* Undo two-column config */
  /* Set three-column config */
}
.products-grid > li:nth-child(odd) {
  clear: none;
}
.products-grid > li:nth-child(even) {
  margin-right: 3.7037%;
}
.products-grid > li {
  width: 30.8642%;
  margin-right: 3.7037%;
}
.products-grid > li:nth-child(3n+1) {
  clear: left;
}
.products-grid > li:nth-child(3n) {
  margin-right: 0;
}

/* Config: Columns + flexible gutter */
/* Undo three-column config */
.products-grid--max-4-col > li:nth-child(odd) {
  clear: none;
}

.products-grid--max-4-col > li:nth-child(3n+1) {
  clear: none;
}

.products-grid--max-4-col > li:nth-child(even),
.products-grid--max-4-col > li:nth-child(3n) {
  margin-right: 2.22222%;
}

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

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

.products-grid--max-4-col > li:nth-child(4n+1) {
  clear: left;
}

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

/* Config: Columns + flexible gutter */
/* Undo three-column config */
.products-grid--max-5-col > li:nth-child(odd) {
  clear: none;
}

.products-grid--max-5-col > li:nth-child(3n+1) {
  clear: none;
}

.products-grid--max-5-col > li:nth-child(even),
.products-grid--max-5-col > li:nth-child(3n) {
  margin-right: 2.22222%;
}

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

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

.products-grid--max-5-col > li:nth-child(5n+1) {
  clear: left;
}

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

/* Config: Columns + flexible gutter */
/* Undo three-column config */
.products-grid--max-6-col > li:nth-child(odd) {
  clear: none;
}

.products-grid--max-6-col > li:nth-child(3n+1) {
  clear: none;
}

.products-grid--max-6-col > li:nth-child(even),
.products-grid--max-6-col > li:nth-child(3n) {
  margin-right: 2.22222%;
}

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

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

.products-grid--max-6-col > li:nth-child(6n+1) {
  clear: left;
}

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

/* ============================================ *
 * Product List
 * ============================================ */
.mobilepages {
  display: none;
}

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

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

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

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

/* ============================================ *
 * Mini Product List
 * ============================================ */
.mini-products-list .product-image {
  float: left;
  min-width: 50px;
}
.mini-products-list .product-details {
  margin-left: 60px;
}
.mini-products-list .product-details .product-name {
  padding-top: 10px;
}
.mini-products-list li {
  margin-bottom: 10px;
  clear: both;
}
.mini-products-list li:after {
  content: '';
  display: table;
  clear: both;
}

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

/* ============================================ *
 * Catalog - List
 * ============================================ */
.category-image {
  border: 1px solid #CCCCCC;
  padding: 10px;
}
.category-image img {
  width: 100%;
  max-width: 100%;
}
.category-image img:hidden {
  display: none;
}

/* ============================================ *
 * Layered Navigation
 * ============================================ */
.block-layered-nav .block-subtitle--filter {
  display: none;
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: allerregular;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  color: #939393;
  font-family: Arial;
  font-size: 13px;
  margin-bottom: 1px;
  padding: 12px 10px 11px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #F0F0F0;
  position: relative;
  background-color: #F0F0F0;
  cursor: pointer;
}
.block-layered-nav .block-subtitle--filter:after {
  /*left: 10px;*/
  /*top: 50%;*/
  /*margin-top: -3px;*/
}

.block-layered-nav .block-content .toggle-tabs {
  display: none;
}
.block-layered-nav .block-content > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: allerregular;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  color: #939393;
  font-family: Arial;
  font-size: 13px;
  margin-bottom: 1px;
  padding: 12px 10px 11px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #F0F0F0;
  position: relative;
  background-color: #F0F0F0;
  display: block;
}
.block-layered-nav .block-content > dl > dt:after {
  /*left: 10px;*/
  /*top: 50%;*/
  /*margin-top: -3px;*/
}
.block-layered-nav .block-content > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #F0F0F0;
}
.block-layered-nav .block-content > dl > dd:last-child {
  border-width: 0 1px 1px 1px;
}

.block-layered-nav dl dd {
  margin-bottom: 10px;
  margin-top: 10px;
}
.block-layered-nav dl dd ol > li > span, .block-layered-nav dl dd ol > li > a {
  padding: 5px 15px;
  display: block;
}
.block-layered-nav dl dd ol > li > a .count {
  color: #A0A0A0;
}

.block-layered-nav .block-content > dl > dt {
  padding-left: 0px;
  font-family: allerlight;
  background-color: transparent;
  color: #383838;
  font-size: 17px;
  border: none;
  border-bottom: 1px solid #d0d0d0;
  margin-bottom: 0;
}
.block-layered-nav .block-content > dl > dt:after {
  display: none;
}

.block-layered-nav .currently .block-subtitle {
  display: block;
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: allerregular;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}
.block-layered-nav .currently ol {
  padding-left: 10px;
  margin-bottom: 10px;
}
.block-layered-nav .currently ol li {
  margin-bottom: 5px;
}
.block-layered-nav .currently ol li .label {
  font-weight: bold;
}
.block-layered-nav .currently ol li:after {
  content: '';
  display: table;
  clear: both;
}

.block-layered-nav .actions {
  text-align: right;
  margin: 0px 0 0px 0;
  width: 100%;
  clear: both;
}
.block-layered-nav .actions a {
  text-transform: uppercase;
  font-size: 12px;
  float: right;
}

/* ============================================ *
 * Catalog Event
 * ============================================ */
.event-container {
  clear: both;
  border: 1px solid #3399CC;
  position: relative;
  z-index: 2;
  border-width: 1px 1px;
  margin-top: 7px;
  height: 59px;
}
.event-container:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #3399CC;
  border-bottom: none;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
}
.event-container .event {
  padding-bottom: 18px;
  margin-bottom: -18px;
  padding-top: 5px;
  height: 52px;
  line-height: 50px;
  text-align: center;
  width: auto;
  position: relative;
  z-index: 2;
  border-bottom: 0 !important;
}
.event-container .event .event-ticker {
  display: inline;
  font-size: 28px;
  height: auto;
}
.event-container .event .event-ticker span {
  line-height: 50px;
  height: 50px;
  padding: 0;
}
.event-container .container {
  display: inline;
  margin: 0;
  padding: 0;
  background: none;
}
.event-container .status {
  display: inline;
  margin: 0 10px 0 0;
  background: none;
  font-size: 22px;
}
.event-container .event-dates {
  display: inline;
  font-size: 22px;
  height: auto;
}
.event-container .event-dates div,
.event-container .event-dates p {
  display: inline;
}
.event-container .event-dates .time-part {
  font-size: 14px;
}

.cat_banner_top {
  background: #9cbd64;
  color: #fff;
  font-family: allerlight;
  font-size: 31px;
  padding: 22px 30px 20px 63px;
  float: left;
  width: 100%;
}
.cat_banner_top span {
  float: left;
  line-height: 46px;
}
.cat_banner_top:hover {
  color: #fff;
}
.cat_banner_top .list_tell_more_btn {
  color: #fff;
  float: right;
  font-size: 12px;
  display: inline-block;
  font-family: allerbold;
  text-transform: uppercase;
  border: 1px solid #fff;
  padding: 5px 31px 3px 31px;
  margin: 9px 0px 0px 0px;
}
.cat_banner_top .list_tell_more_btn:hover {
  text-decoration: none;
  background: url("../images/btn_hover_bg.png") repeat;
}

.products-grid {
  margin: 20px 0 0 0;
  float: left;
  width: 100%;
}
.products-grid .sale_label {
  background: #d75f6b;
  color: #fff;
  font-size: 12px;
  padding: 5px;
  font-family: allerlight;
  float: left;
  position: absolute;
  left: 0;
  top: 0;
  padding: 6px 11px 4px;
  z-index: 1;
}

.category-products .ratings {
  display: none;
}

@media only screen and (min-width: 1px) and (max-width: 600px) {
  .products-grid .product-name a,
  .products-list .product-name a {
    font-size: 13px;
  }

  .price-box .price {
    font-size: 13px;
  }
}
.block-layered-nav .block-content > dl > dd {
  padding: 0;
  border: none;
}

.block-layered-nav ol li {
  border-bottom: 1px solid #d7d7d7;
  padding: 12px 0 7px 15px;
  text-indent: 0;
  background-position: -93px -828px;
  color: #5c5c5c;
  font-size: 14px;
  font-family: allerlight;
  /*span {
    float: left;

  }*/
}
.block-layered-nav ol li:hover {
  color: #9e9d9d;
}
.block-layered-nav ol li #amshopby-price-from {
  float: left;
  width: 40%;
  border: 1px solid #d0d0d0;
  border-radius: 0;
  color: #1697ca;
  font-family: Arial;
  font-size: 12px;
}
.block-layered-nav ol li #amshopby-price-to {
  float: right;
  width: 40%;
  border: 1px solid #d0d0d0;
  border-radius: 0;
  color: #1697ca;
  font-family: Arial;
  font-size: 12px;
}

.block-layered-nav ol li.last {
  border-bottom: none;
}

.block-layered-nav ol.shop_by_price li {
  background: none;
  padding: 10px 0 0;
  border: none;
  text-align: center;
}
.block-layered-nav ol.shop_by_price li span {
  padding: 0;
  float: none;
  display: inline-block;
}

.block-layered-nav dl dd ol > li > a {
  color: #5c5c5c;
  font-size: 11px;
  font-family: allerlight;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}
.block-layered-nav dl dd ol > li > a:hover {
  text-decoration: none;
  color: #9e9d9d;
}

.list_left_block {
  background: #9cbd64;
  color: #fff;
  text-align: center;
  font-size: 27px;
  font-family: allerlight;
  padding: 4px;
  line-height: 34px;
  float: left;
  width: 100%;
}
.list_left_block .list_left_block_txt {
  float: left;
  clear: both;
  width: 100%;
  padding: 20px 0;
}
.list_left_block img {
  display: inline-block;
}

ol.left_checkbox li {
  background: none;
  padding-left: 0;
}
ol.left_checkbox li .attribute_count {
  padding: 0 0 0 5px;
}

.about_category {
  width: 100%;
  float: left;
  font-family: Arial;
  font-size: 14px;
  padding: 0 0 40px 0;
}
.about_category h1 {
  color: #1697ca;
  font-size: 18px;
  font-family: Arial;
  font-weight: normal;
  border-top: 1px solid #99cee5;
  padding: 22px 0 0 0;
  margin: 17px 0 9px;
  position: relative;
}
.about_category h1:before {
  /*background:#fff url("../images/sprite_icon.png") no-repeat -58px -494px;*/
  background-position: -58px -494px;
  background-color: #fff;
  content: "";
  height: 20px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: -10px;
  width: 47px;
}
.about_category p.first {
  font-size: 18px;
  font-family: allerlight;
}
.about_category p {
  margin-bottom: 10px;
}

.title_tab {
  display: none;
}

.mob_per_page, .total_pages_mob, .mob_previos, .mob_next {
  display: none;
}

@media only screen and (min-width: 1px) and (max-width: 770px) {
  .cat_banner_top {
    font-size: 28px;
    font-family: Arial;
    padding: 22px 28px 20px 57px;
  }

  .block-layered-nav .block-title,
  .list_cat_ttl,
  .list_left_block {
    display: none;
  }

  .title_tab {
    display: block;
    font-family: allerregular;
    color: #1697ca;
    font-size: 24px;
    text-transform: none;
  }

  .block-layered-nav .block-content > dl > dt {
    background: #8ecfe4;
    margin: 0;
    color: #fff;
    font-family: allerbold;
    font-size: 15px;
    border-left: 0;
    border-right: 0;
    padding: 16px 10px 11px 20px;
    /***/
    /***/
  }
  .block-layered-nav .block-content > dl > dt:hover {
    color: #fff;
  }

  .col2-left-layout .sorter {
    width: auto;
    float: left;
  }

  .pager_sorter {
    width: 100%;
  }

  .col2-left-layout .pager {
    width: auto;
    float: right;
  }
  .col2-left-layout .pager .count-container {
    border-right: none;
  }

  .block-layered-nav .block-content > dl > dt.last {
    border-bottom: 0;
  }

  .block-layered-nav ol li #amshopby-price-to,
  .block-layered-nav ol li #amshopby-price-from {
    width: 70px;
  }

  .odd.current > ol {
    display: block !important;
  }

  .accordion-open .current > ol.shop_by_price {
    /*padding: 0px 20px 20px 20px;*/
  }

  .odd.current > ol li.amshopby-cat a {
    background: none;
  }

  .odd.current > ol li a.amshopby-attr {
    color: #5c5c5c;
    font-family: Arial;
    text-transform: uppercase;
    font-size: 14px;
    min-width: 150px;
  }

  .block-layered-nav li .attribute_count {
    float: left;
    font-size: 15px;
    color: #5c5c5c;
    font-family: Arial;
  }

  dt.amshopby-collapsed ~ dd {
    border: 1px solid red;
  }

  .even.current > ol li,
  .odd.current > ol li {
    background: none;
    padding: 16px 20px 11px 20px;
    border-color: #8ecfe4;
  }
  .even.current > ol li a,
  .odd.current > ol li a {
    /*background: none;*/
    color: #5ebad8;
    font-family: allerbold;
    font-size: 15px;
    /*&:hover {
      background: none;
    }*/
  }

  .block-layered-nav .block-content.accordion-open > dl > dt.current:after,
  .block-layered-nav .block-content > dl > dt:after,
  .block-layered-nav .block-content > dl > dt:before {
    background-color: #fff;
  }

  .toolbar .mob_per_page {
    float: left;
    margin: 7px 0 0;
    font-size: 15px;
    display: block;
  }
  .toolbar .pager > .count-container {
    border: none;
    padding: 8px 0px 6px;
  }
  .toolbar .pages {
    display: none;
  }

  .toolbar-bottom .toolbar {
    background: none;
  }
  .toolbar-bottom .pager_sorter {
    text-align: center;
  }
  .toolbar-bottom .pager {
    display: inline-block;
    float: none;
    margin: 0 auto;
  }
  .toolbar-bottom .total_pages_mob {
    float: left;
    color: #3e3e3e;
    font-size: 14px;
    font-family: allerregular;
    padding: 9px 20px 0 0;
    display: block;
  }
  .toolbar-bottom .mob_previos, .toolbar-bottom .mob_next {
    float: left;
    display: block;
  }
  .toolbar-bottom .mob_previos a, .toolbar-bottom .mob_next a {
    background: #5ebad8 url(../images/sprite_icon_tab.png) no-repeat;
    float: left;
    color: #fff;
    font-family: allerbold;
    font-size: 15px;
    text-transform: uppercase;
    width: 95px;
  }
  .toolbar-bottom .mob_previos a:hover, .toolbar-bottom .mob_next a:hover {
    text-decoration: none;
  }
  .toolbar-bottom .mob_previos a {
    background-position: -69px -659px;
    padding: 8px 0 6px 18px;
  }
  .toolbar-bottom .mob_next a {
    background-position: -23px -609px;
    padding: 8px 14px 6px 0;
  }
  .toolbar-bottom .count-container,
  .toolbar-bottom .pages,
  .toolbar-bottom .mob_per_page,
  .toolbar-bottom .sorter {
    display: none;
  }
  .toolbar-bottom .mobilepages {
    display: block;
    min-width: 96px;
    float: left;
    margin: 0 20px;
  }

  .products-grid > li:hover .add-to-links {
    display: none;
  }
}
@media only screen and (min-width: 1px) and (max-width: 500px) {
  .cat_banner_top {
    padding: 22px 20px 18px 20px;
    font-size: 16px;
    text-align: center;
  }
  .cat_banner_top .list_tell_more_btn,
  .cat_banner_top span {
    float: none;
  }

  .cat_banner_top.cat_btn_hide .list_tell_more_btn {
    display: none;
  }

  .products-grid .product-name,
  .products-list .product-name {
    min-height: 60px;
    line-height: 16px;
  }

  .block-layered-nav li .attribute_count {
    float: right;
  }

  .toolbar .pager_sorter {
    text-align: center;
  }
  .toolbar .pager_sorter .sorter {
    display: inline-block;
    width: 100%;
    margin: 0;
  }
  .toolbar .pager_sorter .sorter .sort-by {
    float: none;
    margin: 0 auto;
    text-align: center;
  }
  .toolbar .pager {
    display: none;
  }

  .toolbar-bottom .toolbar {
    padding: 0;
  }
  .toolbar-bottom .pager_sorter .sorter {
    display: none;
  }
  .toolbar-bottom .pager {
    display: block;
  }
  .toolbar-bottom .mob_previos, .toolbar-bottom .mob_next {
    float: left;
    display: block;
  }
  .toolbar-bottom .mob_previos a {
    background-position: -76px -659px;
    padding: 8px 0 6px 0px;
    width: 37px;
    text-indent: -999em;
  }
  .toolbar-bottom .mob_next {
    float: right;
  }
  .toolbar-bottom .mob_next a {
    background-position: -75px -609px;
    padding: 8px 0px 6px 0;
    width: 37px;
    text-indent: -999em;
  }
  .toolbar-bottom .mobilepages {
    min-width: 74px;
    margin: 0 15px;
  }
}
@media only screen and (min-width: 1px) and (max-width: 600px) {
  .cat_banner_top {
    padding: 22px 0px 18px 0px;
    text-align: center;
  }
  .cat_banner_top .list_tell_more_btn,
  .cat_banner_top span {
    float: none;
  }
}
/*
// ----------------------------------------------
// 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; }
}

// ----------------------------------------------
*/
.blog-title h1 {
  font-size: 32px;
  color: #1697ca;
  line-height: normal;
  margin-bottom: 27px;
}

.post-title h1 {
  font-size: 24px;
  color: #1697ca;
  text-transform: none;
  margin: 0px;
}

.blog-banner-container {
  margin-bottom: 40px;
}

.post-view {
  color: #404040;
}

.wp-sidebar .block-blog {
  margin-bottom: 34px;
}
.wp-sidebar .block-blog .block-title {
  border-top: 1px solid #ECECEC;
  border-bottom: 1px solid #ECECEC;
  padding: 8px 0px 8px 0px;
  margin-bottom: 0px;
  background: none;
}
.wp-sidebar .block-blog .block-title strong {
  font-weight: 400;
  font-size: 17px;
  color: #5ebad8;
  font-family: allerregular;
}
.wp-sidebar .block-blog .block-content {
  margin-top: 17px;
}
.wp-sidebar .block-blog .block-content li {
  margin: 0px 0 17px 0;
  font-size: 14px;
  text-transform: uppercase;
  background: url(../images/arrow-right.png) left 3px no-repeat;
  padding: 0px 0px 0px 15px;
  float: none;
  font-family: allerregular;
}
.wp-sidebar .block-blog .block-content li a {
  color: #383838;
}
.wp-sidebar .block-blog .block-content li a:hover {
  text-decoration: none;
  color: #9e9d9d;
}
.wp-sidebar .block-tags .block-content {
  margin-top: 0;
}
.wp-sidebar .block-tags .block-content .tags-list {
  margin: 0 -5px;
  font-size: 0;
  line-height: 0;
}
.wp-sidebar .block-tags .block-content .tags-list li {
  display: inline-block;
  vert-align: top;
  margin: 10px 5px 0;
  padding: 0;
  line-height: 18px;
  text-transform: none;
  background: none;
}
.wp-sidebar .block-tags .block-content .tags-list li a {
  display: block;
  border: 1px solid #ECECEC;
  padding: 2px 8px;
}
.wp-sidebar .block-blog-search {
  margin-bottom: 40px;
}
.wp-sidebar .block-blog-search .block-content {
  margin-top: 0px;
}
.wp-sidebar .block-blog-search #blog-search-form .input-box {
  position: relative;
  padding: 0px;
}
.wp-sidebar .block-blog-search #blog-search-form .input-box:hover #search {
  border: 1px solid #a6a6a6;
}
.wp-sidebar .block-blog-search #blog-search-form .input-box:hover button {
  background: #a5a5a5;
}
.wp-sidebar .block-blog-search #blog-search-form .input-box label {
  display: none;
}
.wp-sidebar .block-blog-search #blog-search-form .input-box #search {
  width: 100%;
  height: 41px;
  padding: 0 40px 0 11px;
  font-family: Arial;
  font-size: 12px;
  border: 1px solid #d0d0d0;
  border-radius: 0;
  background: #fff;
  margin: 0px;
}
.wp-sidebar .block-blog-search #blog-search-form .input-box .search-button {
  text-indent: -9999px;
  position: absolute;
  top: 0;
  right: 0;
  width: 41px;
  height: 41px;
  border: 0;
  background: #e4e4e4;
}
.wp-sidebar .block-blog-search #blog-search-form .input-box .search-button:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  background-position: -76px -229px;
}
.wp-sidebar .block-blog-search #blog-search-form .input-box .search-button:active:before {
  margin-top: -13px;
  margin-left: -13px;
}
.wp-sidebar .block-recent-posts .block-title {
  background: none;
  padding: 8px 0px 8px 0px;
  float: none;
}
.wp-sidebar .block-recent-posts .block-title strong {
  font-weight: 400;
  font-size: 17px;
  color: #5ebad8;
  padding: 0px;
  font-family: allerregular;
}
.wp-sidebar .block-recent-posts .block-content li.item {
  float: none;
  text-transform: none;
  background: url(../images/arrow-right.png) left 5px no-repeat;
}
.wp-sidebar .block-recent-posts .block-content li.last {
  margin-bottom: 0px;
}
.wp-sidebar .block-instagram {
  background: #e7f5f9;
  padding: 20px;
  float: left;
}
.wp-sidebar .block-instagram h3 {
  color: #0094c9;
  font-size: 17px;
  text-indent: 0;
  background-position: -75px -1451px;
  padding: 0 0 2px 34px;
  margin: 0 0 20px 0;
}
.wp-sidebar .block-instagram li.insta_image {
  float: left;
  width: 67px;
  margin: 0px 2px 10px 0px;
  height: 67px;
}
.wp-sidebar .block-instagram li.insta_image.insta_3,
.wp-sidebar .block-instagram li.insta_image.insta_7,
.wp-sidebar .block-instagram li.insta_image.insta_11,
.wp-sidebar .block-instagram li.insta_image.insta_15 {
  margin-right: 0;
}

.post-list {
  color: #404040;
}
.post-list li.item {
  margin-bottom: 50px;
  float: left;
  width: 100%;
}
.post-list li.item h2 {
  font-size: 18px;
  text-transform: none;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: allerlight;
}
.post-list li.item h2 a {
  color: #1697ca;
}
.post-list .post-list-item {
  font-family: allerregular;
}
.post-list .post-list-item .featured-image {
  float: left;
  width: 22.72727%;
  border: none;
  margin: 0px 0 0 0;
}
.post-list .post-list-item .post-entry {
  float: right;
  width: 74.24242%;
  text-align: left;
}
.post-list .post-list-item .post-entry h2 {
  font-size: 18px;
  text-transform: none;
  font-weight: 400;
  margin-bottom: 8px;
  font-family: allerlight;
}
.post-list .post-list-item .post-entry h2 a {
  color: #1697ca;
}
.post-list .post-list-item .post-entry .post-meta {
  font-size: 12px;
  color: #8a8a8a;
  font-style: normal;
  margin-bottom: 5px;
}
.post-list .post-list-item .post-entry .post-meta .post-date {
  float: left;
  margin: 0px 10px 0px 0px;
}
.post-list .post-list-item .post-entry .post-meta .post-date:after {
  content: " | ";
}
.post-list .post-list-item .post-entry .post-meta .post-category {
  margin: 0px 0px 0px 0px;
}
.post-list .post-list-item .post-entry .post-meta a {
  color: #8a8a8a;
}
.post-list .post-list-item .post-entry .blog {
  color: #404040;
  font-size: 14px;
}

.product-view .block-recent-posts {
  width: 100%;
  float: left;
  padding: 20px 0 0;
}
.product-view .block-recent-posts .block-content {
  float: left;
  margin: 29px 0 0 0;
}
.product-view .block-recent-posts .block-content ul {
  margin: 0;
  width: 100%;
}
.product-view .block-recent-posts .block-content ul li {
  float: left;
  width: 50%;
  margin: 0 0 10px 0;
  background: none;
  padding: 0px;
}
.product-view .block-recent-posts .block-content ul li .post-image {
  float: left;
  width: 50%;
}
.product-view .block-recent-posts .block-content ul li .post-image img {
  width: 100%;
}
.product-view .block-recent-posts .block-content ul li .blog_desc_box {
  float: left;
  width: 50%;
  padding: 0 0 0 10px;
}
.product-view .block-recent-posts .block-content ul li .blog_desc_box .blog_name {
  color: #1697ca;
  line-height: 22px;
  font-family: allerlight;
  font-size: 18px;
  float: left;
  margin: -4px 0 11px;
}
.product-view .block-recent-posts .block-content ul li .blog_desc_box .blog_name:hover {
  text-decoration: none;
  color: #4b95ad;
}
.product-view .block-recent-posts .block-content ul li .blog_desc_box p {
  line-height: 18px;
  font-family: Arial;
  font-size: 14px;
  color: #404040;
  margin: 0 0 25px;
  clear: both;
}
.product-view .block-recent-posts .block-content ul li .blog_desc_box .read_more_link {
  color: #1697ca;
  font-family: allerlight;
  font-size: 13px;
  text-transform: uppercase;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  padding: 9px 0 7px 0;
  float: left;
}
.product-view .block-recent-posts .block-content ul li .blog_desc_box .read_more_link:hover {
  text-decoration: none;
  color: #4b95ad;
}

.comments-list-wrapper {
  background: #ededee;
  padding: 25px 20px;
  margin-bottom: 40px;
}
.comments-list-wrapper h2 {
  font-size: 20px;
  text-transform: none;
  color: #404040;
  margin-bottom: 30px;
}
.comments-list-wrapper .comment-list .comment {
  border-bottom: 1px solid #d7d7d7;
  padding: 0px 0px 25px 0px;
  margin: 0px 0px 30px 0px;
}
.comments-list-wrapper .comment-list .comment .comment-inner .gravatar {
  float: left;
  width: 60px;
}
.comments-list-wrapper .comment-list .comment .comment-inner .gravatar img {
  border: 1px solid #d7d7d7;
  width: 40px;
  height: 40px;
}
.comments-list-wrapper .comment-list .comment .comment-inner .comment-date, .comments-list-wrapper .comment-list .comment .comment-inner .comment-entry, .comments-list-wrapper .comment-list .comment .comment-inner .reply {
  margin-left: 60px;
  font-size: 14px;
  line-height: 22px;
  font-family: allerregular;
}
.comments-list-wrapper .comment-list .comment .comment-inner .comment-date {
  font-family: allerbold;
  font-size: 14px;
  margin-bottom: 8px;
}
.comments-list-wrapper .comment-list .comment .comment-inner .comment-date a {
  color: #404040;
}
.comments-list-wrapper .comment-list .comment .comment-inner .comment-date .comment-url {
  font-family: allerbold;
}
.comments-list-wrapper .comment-list .comment .comment-inner .comment-date .comment-url:after {
  content: " on ";
  font-family: allerregular;
}
.comments-list-wrapper .comment-list .comment .comment-inner .comment-date .comment-when:after {
  content: " said: ";
  font-family: allerregular;
}
.comments-list-wrapper .comment-list .comment .comment-inner .comment-entry {
  margin-bottom: 12px;
}
.comments-list-wrapper .comment-list .comment .comment-inner .reply {
  text-transform: uppercase;
}
.comments-list-wrapper .comment-list .comment .comment-inner .reply span {
  display: none;
}
.comments-list-wrapper .comment-list .comment .comment-inner .reply a {
  color: #1697ca;
}
.comments-list-wrapper .comment-list .comment:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0px;
}
.comments-list-wrapper .comment-list .comment .children {
  margin: 20px 0 0 60px;
  padding: 20px 0 0;
  border-top: 1px solid #d7d7d7;
}

.read_more_link {
  border-bottom: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
  color: #1697ca;
  float: left;
  font-family: allerregular;
  font-size: 13px;
  padding: 9px 0 7px;
  text-transform: uppercase;
}
.read_more_link:hover {
  text-decoration: none;
}

.post-date {
  font-style: italic;
  font-size: 98%;
  margin-bottom: 10px;
}

.post-meta {
  font-style: italic;
}

.post-entry p {
  margin-bottom: 1em;
}

.featured-image {
  margin-bottom: 25px;
}

.featured-image.right {
  margin: 2px 0 4px 10px;
}

.is-blog .toolbar {
  margin: 0 0 10px;
}

.post-list h2 {
  line-height: 1em;
  margin-bottom: 1em;
}

.blog-toolbar {
  width: 100%;
}

.blog_pages {
  width: 100%;
}
.blog_pages .recent_post a {
  font-size: 13px;
  font-family: allerbold;
  text-transform: uppercase;
  border: 1px solid #63b6d7;
  min-width: 160px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  color: #63b6d7;
}
.blog_pages .recent_post a:hover {
  text-decoration: none;
  color: #3399cc;
  border: 1px solid #3399cc;
}
.blog_pages .recent_post a.i-previous span {
  background: url(../images/arrow-left.jpg) left 3px no-repeat;
  padding-left: 12px;
}
.blog_pages .recent_post a.i-next span {
  background: url(../images/arrow-right.jpg) right 3px no-repeat;
  padding-right: 12px;
}
.blog_pages .recent_post.next_post {
  float: right;
}
.blog_pages .recent_post.previous_post {
  float: left;
}

.blog-home .pager {
  background: none;
  padding: 0;
}
.blog-home .pager .pages {
  width: 100%;
  margin: 0;
  text-align: center;
}
.blog-home .pager ol li {
  float: none;
  display: inline-block;
}
.blog-home .pager ol li a {
  color: #63b6d7;
}
.blog-home .pager ol li .previous {
  height: auto;
  line-height: 18px;
  text-indent: 0;
  width: auto;
  font-family: allerbold;
  font-size: 13px;
  background-position: -63px -1347px;
  padding: 11px 30px 9px 43px;
  border: 1px solid #63b6d7;
  float: left;
}
.blog-home .pager ol li .previous:hover {
  background-color: #63b6d7;
  background-position: -63px -1321px;
  color: #fff;
}
.blog-home .pager ol li .next {
  height: auto;
  line-height: 18px;
  text-indent: 0;
  width: auto;
  font-family: allerbold;
  font-size: 13px;
  background-position: 29px -1398px;
  padding: 12px 40px 8px 30px;
  border: 1px solid #63b6d7;
  float: right;
}
.blog-home .pager ol li .next:hover {
  background-color: #63b6d7;
  background-position: 29px -1372px;
  color: #fff;
}
.blog-home .pager li.previous {
  float: left;
}
.blog-home .pager li.next {
  float: right;
}

.blog_home_banner {
  border: 1px solid #d9d9d9;
  margin: 0 0 40px 0;
  float: left;
  width: 100%;
}
.blog_home_banner .slideshow-container {
  margin: 0;
  overflow: hidden;
}
.blog_home_banner .slideshow-container .slideshow-pager {
  text-align: left;
  bottom: 10px;
  left: 10px;
  float: left;
}
.blog_home_banner .slideshow-container .blog_slider_img {
  float: right;
}
.blog_home_banner .slideshow-container .slideshow > li img {
  width: auto;
}
.blog_home_banner .blog_home_bnr_readmore_box {
  float: left;
  width: 335px;
  font-family: allerregular;
  color: #404040;
  padding: 25px 20px 10px 20px;
}
.blog_home_banner .blog_home_bnr_readmore_box .date_n_category_details {
  color: #8a8a8a;
  font-size: 12px;
  padding: 0 0 10px 0;
}
.blog_home_banner .blog_home_bnr_readmore_box .date_n_category_details a {
  color: #8a8a8a;
  font-size: 12px;
}
.blog_home_banner .blog_home_bnr_readmore_box h3 {
  font-family: allerlight;
  font-size: 23px;
  text-transform: none;
  font-weight: normal;
}
.blog_home_banner .blog_home_bnr_readmore_box h3 a:hover {
  color: #4b95ad;
  text-decoration: none;
}
.blog_home_banner .blog_home_bnr_readmore_box p {
  float: left;
  clear: both;
  padding: 0 0 10px 0;
}

.wordpress-post-view.is-blog {
  /****Blog Social****/
}
.wordpress-post-view.is-blog .page-title.post-title h1 {
  font-family: allerlight;
  font-size: 24px;
}
.wordpress-post-view.is-blog .post-date.when {
  font-family: allerregular;
  color: #8a8a8a;
  font-size: 12px;
  font-style: normal;
  margin: 15px 0 20px;
}
.wordpress-post-view.is-blog .post-date.when a {
  color: #8a8a8a;
  font-size: 12px;
}
.wordpress-post-view.is-blog .post-comment-share {
  padding: 0px 0 20px 0;
  float: left;
  width: 100%;
}
.wordpress-post-view.is-blog .post-comment-share .comment_link {
  float: left;
}
.wordpress-post-view.is-blog .post-comment-share .comment_link a {
  background-position: -84px -1527px;
  padding: 0 0 0 22px;
  font-family: allerregular;
  color: #1697ca;
  text-transform: uppercase;
  font-size: 14px;
}
.wordpress-post-view.is-blog .post-comment-share .comment_link a:hover {
  color: #5ebad8;
  background-position: -84px -1507px;
  text-decoration: none;
}
.wordpress-post-view.is-blog .comments-wrapper {
  float: left;
  width: 100%;
}
.wordpress-post-view.is-blog .post-entry.entry.std {
  font-family: allerlight;
  float: left;
  width: 100%;
  color: #404040;
  clear: both;
}
.wordpress-post-view.is-blog .post-entry.entry.std p strong {
  font-family: allerbold;
  font-size: 17px;
  font-weight: normal;
}
.wordpress-post-view.is-blog #respond .buttons-set {
  border: 0;
}
.wordpress-post-view.is-blog #respond .buttons-set button {
  float: left;
}
.wordpress-post-view.is-blog #respond .fieldset .legend {
  font-family: allerlight;
  font-size: 24px;
  text-transform: none;
  border: 0;
  margin: 0;
}
.wordpress-post-view.is-blog #respond .fieldset .email-notice strong {
  color: #404040;
  font-family: allerbold;
  font-size: 14px;
  font-weight: normal;
}
.wordpress-post-view.is-blog #respond .fieldset .form-list label {
  font-family: allerlight;
  font-size: 13px;
  color: #383838;
}
.wordpress-post-view.is-blog #respond .fieldset .form-list .input-box input {
  border: 1px solid #d3d3d3;
  height: 35px;
  line-height: 35px;
}
.wordpress-post-view.is-blog #respond .fieldset .form-list .input-box input:hover {
  border: 1px solid #a6a6a6;
}
.wordpress-post-view.is-blog #respond .fieldset .form-list .input-box textarea {
  border: 1px solid #d3d3d3;
}
.wordpress-post-view.is-blog .blog_top_social {
  float: left;
  margin: 13px 0 20px 0;
}
.wordpress-post-view.is-blog .blog_top_social li {
  float: left;
  list-style: none;
  font-family: allerlight;
  text-transform: uppercase;
  line-height: 15px;
  color: #1697ca;
  margin: 0;
}
.wordpress-post-view.is-blog .blog_top_social li a {
  width: 17px;
  height: 14px;
  float: left;
  margin: 0 5px;
  cursor: pointer;
}
.wordpress-post-view.is-blog .blog_top_social .blog_fb a {
  background-position: -5px -1589px;
}
.wordpress-post-view.is-blog .blog_top_social .blog_fb a:hover {
  background-position: -5px -1564px;
}
.wordpress-post-view.is-blog .blog_top_social .blog_twiter a {
  background-position: -31px -1589px;
}
.wordpress-post-view.is-blog .blog_top_social .blog_twiter a:hover {
  background-position: -31px -1564px;
}
.wordpress-post-view.is-blog .blog_top_social .blog_pinterest a {
  background-position: -58px -1589px;
}
.wordpress-post-view.is-blog .blog_top_social .blog_pinterest a:hover {
  background-position: -58px -1564px;
}
.wordpress-post-view.is-blog .blog_top_social .blog_gplus a {
  background-position: -84px -1589px;
}
.wordpress-post-view.is-blog .blog_top_social .blog_gplus a:hover {
  background-position: -84px -1564px;
}
.wordpress-post-view.is-blog .post-comment-share .blog_top_social {
  float: right;
  margin: 0px 0 0;
}
.wordpress-post-view.is-blog .tag_list_container {
  float: left;
  width: 100%;
  margin: 0 0 20px;
}
.wordpress-post-view.is-blog .tag_list_container li {
  float: left;
  font-family: allerregular;
  color: #8a8a8a;
  font-size: 12px;
  margin: 0 0 0 3px;
}
.wordpress-post-view.is-blog .tag_list_container li a {
  font-family: allerregular;
  color: #8a8a8a;
  font-size: 12px;
}

/****/
@media only screen and (min-width: 1px) and (max-width: 770px) {
  .blog_home_banner .slideshow-prev,
  .blog_home_banner .slideshow-next {
    display: none;
  }

  .blog-col2-right-layout .col-right {
    width: 100%;
    float: left;
    clear: both;
  }
  .blog-col2-right-layout .col-right .wp-sidebar {
    border-top: 1px solid #5ebad8;
  }

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

  .block.block-blog.block-blog-tag-cloud.block-tags {
    border-bottom: 1px solid #5ebad8;
  }

  .wp-sidebar .block-instagram {
    width: 100%;
  }

  .sidebar .wp-sidebar .block-blog .block-title {
    border-bottom: 1px solid #fff;
  }
  .sidebar .wp-sidebar .block-blog .block-title.active {
    border-bottom: 0;
  }
  .sidebar .wp-sidebar .block-tags .block-title {
    border-bottom: 0;
  }

  .post-list .post-list-item .featured-image {
    width: 29%;
  }

  .post-list .post-list-item .post-entry {
    width: 69%;
  }

  /**/
  .featured-image.left {
    text-align: center;
  }
  .featured-image.left img {
    display: inline-block;
  }

  .featured-image.left > img {
    display: inline-block;
  }

  .post-entry p {
    text-align: justify;
  }

  .fb-like-box.fb_iframe_widget iframe {
    margin: 20px 0 0;
    width: 100% !important;
  }

  .blog_home_banner .blog_home_bnr_readmore_box {
    width: 40%;
  }

  .blog_home_banner .slideshow-container .blog_slider_img {
    width: 60%;
  }
  .blog_home_banner .slideshow-container .blog_slider_img img {
    float: right;
  }

  .wordpress-post-view.is-blog #respond .fieldset .form-list .input-box input {
    width: 100%;
  }
}
/****/
@media only screen and (min-width: 320px) and (max-width: 500px) {
  .blog_home_banner .blog_home_bnr_readmore_box {
    width: 40%;
  }

  .blog_home_banner .slideshow-container .blog_slider_img {
    width: 60%;
  }
  .blog_home_banner .slideshow-container .blog_slider_img img {
    float: right;
  }
}
@media only screen and (min-width: 1px) and (max-width: 320px) {
  .post-list .post-list-item .featured-image {
    width: 100%;
  }

  .blog_home_banner .slideshow-container .slideshow-pager {
    text-align: center;
    left: 0;
  }

  .post-list li.item {
    margin-bottom: 10px;
  }

  .post-list .post-list-item .post-entry {
    width: 100%;
    margin: 20px 0 0;
  }

  .featured-image.left img {
    width: 100%;
  }

  .blog_home_banner .blog_home_bnr_readmore_box {
    width: 100%;
  }

  .blog_home_banner .slideshow-container .slideshow .cycle-slide > a {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .blog_home_banner .slideshow-container .slideshow .cycle-slide > a img {
    float: none !important;
    display: inline-block;
  }

  .blog_home_banner .slideshow-container .slideshow .cycle-slide div a {
    float: none;
    margin: 0;
  }
}
/* ============================================ *
 * Catalog - Product
 * ============================================ */
.product-view .product-collateral {
  margin-bottom: 40px;
}
.product-view .product-essential .extra-info .ratings .rating-box,
.product-view .product-essential .extra-info .ratings .amount {
  float: left;
}
.product-view .product-essential .extra-info .ratings .rating-box {
  margin-top: 8px;
  margin-right: 10px;
}
.product-view .product-essential .extra-info .ratings:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .product-essential:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .product-shop .product-name .h1,
.product-view .product-img-box .product-name h1 {
  color: #3399CC;
  margin-bottom: 10px;
  border: 0;
}
.product-view .product-shop {
  width: 50%;
  float: right;
}
.product-view .product-shop .social-media {
  float: right;
  color: #5ebad8;
  margin: 16px 0 0;
  font: 14px Arial;
  text-transform: uppercase;
}
.product-view .product-shop .social-media .twitter-share-button {
  float: left;
  margin-right: 12px;
}
.product-view .product-shop .social-media .pinit_button {
  float: left;
  margin-right: 12px;
}
.product-view .product-shop .social-media a {
  float: left;
}
.product-view .product-shop .social-media .social-media-email {
  background-position: -74px -537px;
  float: left;
  padding: 1px 0 3px 34px;
  margin-right: 6px;
  text-indent: 0;
}
.product-view .product-shop .social-media .social-media-print {
  background-position: -74px -577px;
  float: left;
  padding: 4px 0 5px 34px;
  margin: -3px 0 0;
  text-indent: 0;
}
.product-view .product-shop .view_name_box {
  float: left;
  width: 65%;
  margin: 0 0px 0 0;
  padding: 0 0 10px 0;
  /*min-height:172px;*/
}
.product-view .product-shop .view_name_box img {
  margin-bottom: 22px;
}
.product-view .product-shop .view_price_box {
  float: right;
  width: 35%;
  padding: 0 0 0 25px;
  border-left: 1px solid #d0d0d0;
}
.product-view .product-shop .stock_notify {
  float: left;
  width: 100%;
  padding: 20px 20px 18px 20px;
  margin: 0 0 15px 0;
  background: #e9e9ea;
}
.product-view .product-shop .stock_notify .link-stock-alert a {
  color: #1697ca;
  font-family: allerlight;
  font-size: 15px;
}
.product-view .product-shop .stock_notify label {
  float: left;
  font-family: Arial;
  font-size: 12px;
  font-weight: normal;
  color: #535353;
  width: 135px;
  margin: 0 21px 0 1px;
}
.product-view .product-shop .stock_notify .form-list li {
  float: left;
  margin: 0;
}
.product-view .product-shop .stock_notify .form-list li .input-box {
  padding: 0;
}
.product-view .product-shop .stock_notify .form-list li .input-box input {
  width: 214px;
  height: 36px;
  /*line-height: 36px;*/
  border-radius: 0;
  border-color: #d0d0d0;
  font-family: Arial;
  font-size: 12px;
  color: #535353;
}
.product-view .product-shop .stock_notify .form-list li .button {
  float: left;
  margin: 9px 0 0 15px;
  padding: 0;
  border: none;
  background: transparent;
  color: #1697ca;
  font-family: allerlight;
  font-weight: normal;
  font-size: 13px;
}
.product-view .product-shop .product-name {
  display: block;
  float: left;
}
.product-view .product-shop .product-name .h1 {
  float: left;
  margin-bottom: 5px;
  color: #1697ca;
  font-size: 24px;
  font-weight: normal;
  text-transform: none;
  font-family: allerlight;
}
.product-view .product-shop .extra-info {
  float: left;
  /*padding-right: $trim/2;*/
  padding-top: 15px;
  clear: left;
  width: 100%;
  max-width: 100%;
  border-top: 1px solid #d0d0d0;
}
.product-view .product-shop .price-info {
  float: left;
  padding-left: 0;
  text-align: left;
}
.product-view .product-shop .extra-info,
.product-view .product-shop .price-info {
  /*max-width: 50%;*/
  /*margin-bottom: $box-spacing;*/
}
.product-view .product-shop .short-description {
  margin-bottom: 10px;
  clear: both;
}
.product-view .product-shop .brand-description {
  font-family: Arial;
  font-size: 13px;
  line-height: 17px;
  margin: 0 0 10px;
  padding: 0 0 14px;
  border-bottom: 1px solid #d0d0d0;
}
.product-view .product-shop .ratings {
  margin: 0px 0 18px;
  padding: 0px 0 18px 0;
  border-bottom: 1px solid #d0d0d0;
}
.product-view .product-shop .availability {
  font-size: 12px;
  float: left;
  clear: both;
  background: #c61b1b;
  font-family: Arial;
  text-transform: uppercase;
  padding: 4px 4px 3px 3px;
  margin: 3px 0 0;
}
.product-view .product-shop .availability span {
  color: #fff;
}
.product-view .product-shop .price-box {
  margin-top: -5px;
}
.product-view .product-shop .price-box .regular-price .price,
.product-view .product-shop .price-box .special-price .price {
  color: #1697ca;
  font-size: 24px;
  font-weight: normal;
  font-family: allerlight;
}
.product-view .product-shop .price-box .old-price {
  padding-bottom: 17px;
}
.product-view .product-shop .price-box .old-price .price {
  font-size: 13px;
  font-family: allerlight;
  color: #383838;
}
.product-view .product-shop .price-box .old-price,
.product-view .product-shop .price-box .special-price,
.product-view .product-shop .price-box .regular-price {
  padding-right: 0;
  line-height: 1.2;
  padding-left: 0;
}
.product-view .product-shop .price-box .regular-price .price,
.product-view .product-shop .price-box .special-price .price,
.product-view .product-shop .price-box .full-product-price .price {
  color: #3399CC;
  font-size: 24px;
}
.product-view .product-shop .price-box .special-price .price-label {
  font-size: 16px;
  text-transform: uppercase;
}
.product-view .product-shop .price-box .price-excluding-tax,
.product-view .product-shop .price-box .price-including-tax {
  display: block;
  line-height: 1.2;
}
.product-view .product-shop .price-box .price-excluding-tax .label,
.product-view .product-shop .price-box .price-including-tax .label {
  font-size: 16px;
  font-weight: 300;
}
.product-view .product-shop .price-box .price-excluding-tax .price,
.product-view .product-shop .price-box .price-including-tax .price {
  font-size: 20px;
}
.product-view .product-shop .giftcard-info {
  padding: 0 0 20px;
}
.product-view .old-price .price-label {
  display: inline-block;
  font-size: 13px;
  font-family: allerlight;
  color: #383838;
}
.product-view .add-to-cart-wrapper,
.product-view .block-related {
  /*width: 50%;*/
  width: 100%;
  float: right;
  clear: right;
}
.product-view .you-save .price,
.product-view .you-save {
  font-size: 13px;
  font-family: allerlight;
  color: #383838;
}

.product-img-box {
  width: 50%;
  float: left;
}
.product-img-box .more-views h2 {
  display: none;
}
.product-img-box .more-views .product-image-thumbs {
  margin: 0 auto;
  text-align: center;
}
.product-img-box .product-name {
  display: none;
}
.product-img-box .product-name h1 {
  border: 0;
}
.product-img-box .product-image {
  margin-bottom: 10px;
}
.product-img-box .product-image img {
  max-width: 100%;
  max-height: 750px;
  margin: 0px auto;
}

.product-image-gallery {
  position: relative;
}
.product-image-gallery .gallery-image {
  display: none;
}
.product-image-gallery .gallery-image.visible {
  display: block;
}
.product-image-gallery .gallery-image.visible.hidden {
  visibility: hidden;
}
.product-image-gallery:before, .product-image-gallery:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.product-image-gallery:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
.product-image-gallery:after {
  background-image: url("../images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.product-image-gallery.loading {
  position: relative;
}
.product-image-gallery.loading:before, .product-image-gallery.loading:after {
  display: block;
}

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

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

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

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

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

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

.product-view {
  /* Set a min-height so that the floated elements break appropriately */
}
.product-view .add-to-box:after,
.product-view .add-to-cart:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .add-to-cart {
  /*padding-top: 10px;*/
}
.product-view .add-to-cart .product_dispatch {
  border-top: 1px solid #d0d0d0;
  padding: 12px 0 0px 0;
  margin: 10px 0 0;
  font-family: Arial;
  font-size: 18px;
  color: #1697ca;
}
.product-view .add-to-cart .product_dispatch .small_txt {
  font-family: Arial;
  font-size: 15px;
  color: #3e3e3e;
}
.product-view .add-to-cart .qty-wrapper,
.product-view .product-options-bottom .price-box,
.product-view .add-to-cart-buttons {
  min-height: 40px;
}
.product-view .product-options-bottom .price-box,
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart-buttons .button,
.product-view .add-to-cart-buttons .paypal-logo {
  margin-bottom: 10px;
}
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart .qty-wrapper label {
  margin-right: 7px;
  float: left;
}
.product-view .add-to-cart .qty-wrapper label {
  line-height: 40px;
}
.product-view .add-to-cart .qty-wrapper .qty {
  float: left;
  height: 40px;
}
.product-view .add-to-cart-buttons {
  float: left;
  width: 100%;
  margin: 13px 0 0;
}
.product-view .add-to-cart-buttons .link-wishlist {
  border: 1px solid #63b6d7;
  color: #5ebad8;
  padding: 12px 10px 11px 10px;
  margin: 0 8px 0 0;
  text-transform: uppercase;
  font-family: Arial;
  font-size: 13px;
  float: left;
}
.product-view .add-to-cart-buttons .link-wishlist:hover {
  text-decoration: none;
  background: #eef5f8;
}
.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: 145px;
}
.product-view .add-to-cart-buttons .paypal-logo .bml_button {
  display: block;
  width: 150px;
  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 {
  height: 45px;
  line-height: 45px;
  font-size: 17px;
  font-weight: normal;
  font-family: allerbold;
  padding: 0px 30px;
  float: right;
  min-width: 336px;
  /*width: 100%;*/
  background: #5ebad8;
  color: #fff;
  border: none;
}
.product-view .add-to-cart-buttons .button:hover {
  background: #1697ca;
}

.advanced_profile_notification {
  background: #5ebad8;
  color: #fff;
  font-family: allerregular;
  font-size: 13px;
  text-align: center;
  padding: 11px 10px 10px 10px;
  width: 336px;
  float: right;
  line-height: 18px;
}
.advanced_profile_notification a {
  color: #fff;
  text-decoration: underline;
}
.advanced_profile_notification a:hover {
  text-decoration: none;
}

.product-view .add-to-cart-buttons .link-wishlist.complete_advanced_profile {
  padding: 19px 10px 16px;
}

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

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

.product-view .sharing-links {
  float: left;
}
.product-view .sharing-links:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .sharing-links li {
  float: left;
  padding: 0px 7px 7px;
}
.product-view .sharing-links a {
  text-indent: -9999px;
  display: block;
  width: 26px;
  height: 26px;
}
.product-view .sharing-links a:hover {
  opacity: 0.8;
}
.product-view .sharing-links a.link-wishlist {
  background-position: 0px -225px;
}
.product-view .sharing-links a.link-compare {
  background-position: 0px -250px;
}
.product-view .sharing-links a.link-email-friend {
  background-position: 0px -322px;
}
.product-view .sharing-links a.link-facebook {
  background-position: 0px -425px;
}
.product-view .sharing-links a.link-twitter {
  background-position: 0px -372px;
}

.product-collateral {
  clear: both;
}

.collateral-tabs dd h2 {
  display: none;
}
.collateral-tabs .tab-content {
  font-size: 12px;
  line-height: 18px;
  color: #404040;
  font-family: Arial;
}
.collateral-tabs .tab-content .view_tab_des h3,
.collateral-tabs .tab-content .view_tab_ingrad h3,
.collateral-tabs .tab-content .view_ship_info h3 {
  color: #4c4c4c;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 3px 0 5px 0;
}
.collateral-tabs .tab-content .view_tab_des li,
.collateral-tabs .tab-content .view_tab_ingrad li,
.collateral-tabs .tab-content .view_ship_info li {
  list-style: square;
  margin: 0 0 0 15px;
  padding: 0 0 0 0px;
}
.collateral-tabs .tab-content #review-form {
  margin: 10px 0 0 0;
  padding: 10px 0 0 0;
}
.collateral-tabs .tab-content #review-form h3 {
  font-family: allerlight;
  font-size: 17px;
  margin: 0 0 5px;
  font-weight: normal;
  text-transform: none;
  font-weight: normal;
}
.collateral-tabs .tab-content #review-form h3 span {
  color: #e4bf3d;
  font-weight: normal;
}
.collateral-tabs .tab-content #review-form .fieldset h4 {
  color: #1697ca;
  font-family: allerlight;
  font-size: 15px;
  font-weight: normal;
  text-transform: none;
  margin: 0px 0 5px 0;
}
.collateral-tabs .tab-content #review-form .fieldset .form-list li {
  margin: 0 0 10px 0;
  float: left;
  width: 48%;
}
.collateral-tabs .tab-content #review-form .fieldset .form-list li label {
  color: #1697ca;
  font-family: allerlight;
  font-size: 15px;
  font-weight: normal;
  text-transform: none;
  margin: 0px 0 5px 0;
}
.collateral-tabs .tab-content #review-form .fieldset .form-list li .input-box .input-text {
  width: 100%;
  border-radius: 0;
}
.collateral-tabs .tab-content #review-form .fieldset .form-list li .input-box textarea {
  border: 1px solid #ccc;
}
.collateral-tabs .tab-content #review-form .fieldset .form-list li.inline-label {
  float: right;
}
.collateral-tabs .tab-content #review-form .buttons-set {
  margin: 10px 0 0;
  padding-top: 15px;
}
.collateral-tabs .tab-content #review-form .buttons-set button {
  background: #5ebad8;
  border: none;
  color: white;
  font-family: allerbold;
  font-size: 17px;
  font-weight: normal;
  height: 45px;
  line-height: 45px;
  padding: 0 30px 0 27px;
}
.collateral-tabs .tab-content #review-form .buttons-set button:hover {
  background: #1697ca;
}

.box-collateral {
  clear: both;
}

.product-collateral .toggle-tabs {
  display: block;
  width: 100%;
  position: relative;
  border: 1px solid #CCCCCC;
  background-color: #F4F4F4;
  /*li:first-child {
      border-left: none;
  }*/
}
.product-collateral .toggle-tabs li {
  float: left;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
}
.product-collateral .toggle-tabs li > span {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  display: inline-block;
  padding: 0 30px;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 13px;
  position: relative;
  bottom: -1px;
  color: #383838;
  font-family: Arial;
}
.product-collateral .toggle-tabs li.current {
  border-right: 1px solid #CCCCCC;
  border-left: 1px solid #CCCCCC;
}
.product-collateral .toggle-tabs li.current > span {
  background-color: #FFFFFF;
  z-index: 5;
  margin-top: -1px;
}
.product-collateral .toggle-tabs li.current span {
  color: #3399CC;
}
.product-collateral .toggle-tabs li:hover span {
  color: #000000;
  background: #e1e1e1;
}
.product-collateral .toggle-tabs:after {
  content: '';
  display: table;
  clear: both;
}
.product-collateral > dl {
  width: 100%;
}
.product-collateral > dl > dt {
  display: none;
}
.product-collateral > dl > dd {
  width: 100%;
  display: none;
  padding: 15px;
  border: 1px solid #CCCCCC;
  border-top: 0;
}
.product-collateral > dl > dd.current {
  display: block;
}

.product-collateral .toggle-tabs {
  border-top: none;
  border-left: none;
  border-right: none;
}

.product-collateral .toggle-tabs li.current {
  border-top: 1px solid #ccc;
}

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

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

.product-view .ratings .rating-links {
  float: left;
  margin: 7px 0 0px 6px;
  color: #3e3e3e;
  font-size: 14px;
  font-family: Arial;
}
.product-view .ratings .rating-links a {
  color: #1697ca;
  text-decoration: underline;
  margin: 0 0 0 11px;
}

#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 $c-table-border;*/
  width: 100%;
  /*padding: $box-spacing;*/
  margin-bottom: 15px;
}
.grouped-items-table-wrapper tbody tr:last-child td {
  border-bottom: none;
}

.grouped-items-table .name-wrapper {
  color: #363636;
  font-family: allerlight;
  font-size: 16px;
}
.grouped-items-table .qty-wrapper {
  padding-top: 7px;
}
.grouped-items-table .qty-label {
  margin-left: 7px;
  text-transform: uppercase;
  font-family: allerlight;
  font-weight: normal;
}
.grouped-items-table td {
  padding: 10px;
}

/* -------------------------------------------- *
 * Catalog - Product Options
 */
.product-options {
  width: 100%;
  margin: 0px 0 0;
  display: inline-block;
  padding: 0px 0px 0px;
  clear: both;
  position: relative;
}
.product-options .hide_select_colour {
  display: none;
}
.product-options .product_options_box.first {
  border-bottom: 1px solid #d0d0d0;
  margin-bottom: 21px;
  padding-bottom: 21px;
}
.product-options .product_options_box.first dd {
  float: right;
  width: 69%;
}
.product-options .product_options_box.first dd select {
  /*width: $full_width;*/
}
.product-options .product_options_box {
  float: left;
  width: 100%;
}
.product-options .product_options_box dd {
  min-width: 96px;
  position: relative;
  font-family: Arial;
  font-size: 15px;
  color: #3e3e3e;
}
.product-options .product_options_box dd .input-box {
  width: 96px;
}
.product-options .product_options_box dd .input-box .validation-advice {
  left: 0;
  position: absolute;
  margin: 2px 0 0;
  font-size: 11px;
  right: 0;
}
.product-options .product_options_box dt label {
  margin: 10px 21px 3px 0;
}
.product-options .product_options_box .label_option_box.first {
  float: right;
  /*width: 50%;*/
}
.product-options .product_options_box .label_option_box.first dd {
  width: auto;
}
.product-options .product_options_box .label_option_box.first label {
  margin-right: 10px;
}
.product-options .product_options_box .label_option_box.first .input-box {
  width: 112px;
}
.product-options .product_options_box .label_option_box.last {
  float: left;
  /*width: 50%;*/
}
.product-options .product_options_box .label_option_box.last label {
  /*margin-right: 21px;*/
}
.product-options .product_options_box .label_option_box.last .input-box {
  width: 96px;
}

.product-options p.required {
    /*
left: 0;
    position: absolute;
    top: 13px;
*/
  display: none;
}

.product-options dt {
  font: 18px arial;
  color: #1697ca;
  margin-right: 6px;
  float: left;
  clear: left;
}
.product-options dt label {
  font: inherit;
  color: inherit;
}

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

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

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

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

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

.product-options dd {
  padding: 0 0 0px 0;
  float: left;
  margin: 0 0 0px;
}

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

/****/
.super-attribute-select .test {
  border: 4px solid pink;
}

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

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

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

.product-options dd select {
  /*max-width: 100%;*/
  border: 1px solid #d0d0d0;
  padding: 7px 10px 8px 10px;
}

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

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

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

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

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

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

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

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

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

.product-options-bottom .product-pricing,
.product-options-bottom .tier-prices {
  float: right;
  margin: 0;
  padding: 0 0 10px;
  border: 0;
  background: 0;
  color: #636363;
}

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

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

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

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

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

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

@media only screen and (min-width: 1px) and (max-width: 770px) {
  .main {
    padding: 0 20px;
  }

  .advanced_profile_notification {
    width: 100%;
    margin: 10px 0 0 0;
  }

  .product-view .product-shop {
    width: 59%;
    float: right;
    padding-right: 0;
    padding-left: 0;
  }
  .product-view .product-shop .view_name_box {
    min-height: 0;
  }
  .product-view .product-shop .view_price_box {
    width: 100%;
    padding: 0 0 10px;
    border-left: 0;
  }
  .product-view .product-shop .view_price_box .price-box .old-price {
    padding: 4px 0 0 8px;
  }
  .product-view .product-shop .view_price_box .price-box .old-price {
    float: right;
  }
  .product-view .product-shop .view_price_box .price-box .special-price {
    float: left;
  }
  .product-view .product-shop .view_price_box .price-info {
    float: left;
  }
  .product-view .product-shop .view_price_box .price-box {
    float: left;
  }
  .product-view .product-shop .view_price_box .rewardpoints-product-view-earning {
    border: 0 none;
    clear: none;
    float: right;
    margin: 0;
    padding: 0;
    width: 95px;
  }
  .product-view .product-shop .view_price_box .you-save {
    clear: both;
  }
  .product-view .product-shop .product-options dt label {
    font-size: 14px;
    font-weight: normal;
  }
  .product-view .product-shop .product-options .product_options_box .label_option_box dd {
    clear: both;
    width: 100%;
  }
  .product-view .product-shop .product-options .product_options_box .label_option_box.first {
    float: left;
    width: 48%;
  }
  .product-view .product-shop .product-options .product_options_box .label_option_box.first dd {
    width: 100%;
  }
  .product-view .product-shop .product-options .product_options_box .label_option_box.first dd .input-box {
    width: 100%;
  }
  .product-view .product-shop .product-options .product_options_box .label_option_box.last {
    float: right;
    width: 48%;
  }
  .product-view .product-shop .product-options .product_options_box .label_option_box.last dd {
    width: 100%;
  }
  .product-view .product-shop .product-options .product_options_box .label_option_box.last dd .input-box {
    width: 100%;
  }
  .product-view .product-shop .add-to-cart-buttons .button {
    min-width: 0;
    width: 50%;
  }
  .product-view .product-shop .social-media {
    float: left;
  }
  .product-view .product-shop .amshopby-links-wrapper {
    padding: 0 0 0px;
  }
  .product-view .product-shop .amshopby-links-wrapper .label {
    font-size: 14px;
    font-weight: normal;
    padding: 0 0 6px;
  }
  .product-view .product-shop .detail_col_box {
    display: none;
  }
  .product-view .product-shop .add-to-cart .product_dispatch {
    border-top: 0;
    padding-top: 0;
  }
  .product-view .product-shop .product-options .product_options_box.first {
    border: 0;
    padding-bottom: 10px;
    margin-bottom: 0px;
  }
  .product-view .product-collateral {
    margin: 25px 0 30px 0;
  }
  .product-view .tab-container .tab-content .review-summary-table thead {
    display: none;
  }
  .product-view .related_products li.last4,
  .product-view .related_products li.last5,
  .product-view .related_products li.last6 {
    display: none;
  }

  .product-img-box {
    width: 39%;
    float: left;
    padding-right: 0;
    padding-left: 0;
  }

  .product-view .product-shop .view_name_box {
    border: none;
    width: 100%;
    margin: 0;
  }

  .more-views .product-image-thumbs {
    width: 100%;
  }
  .more-views .product-image-thumbs li {
    width: 23%;
  }
  .more-views .product-image-thumbs li img {
    width: 100%;
    height: auto;
  }

  .item.blog_post_3 {
    display: none;
  }

  .product-view .block-recent-posts .block-content ul li {
    width: 100%;
  }
  .product-view .block-recent-posts .block-content ul li .post-image {
    width: 30%;
  }
  .product-view .block-recent-posts .block-content ul li .blog_desc_box {
    width: 70%;
    padding: 0 0 0 10px;
  }
  .product-view .block-recent-posts .block-content ul li .blog_desc_box p {
    float: left;
  }
  .product-view .block-recent-posts .block-content ul li img {
    width: 100%;
  }

  .cart .cross_sell .products-grid li.item4,
  .cart .cross_sell .products-grid li.item5,
  .cart .cross_sell .products-grid li.item6 {
    display: none;
  }

  .zoomContainer .zoomLens,
  .zoomContainer .zoomWindowContainer {
    display: none !important;
  }
}
@media only screen and (min-width: 1px) and (max-width: 600px) {
  /******For Mobile rating*****/
  .review-summary-table tbody td label:after {
    color: #9c9c9c;
    font-family: allerlight;
    font-size: 12px;
    margin: 13px 0 0 -11px;
    position: absolute;
  }

  .review-summary-table tbody td label.Rating_1:after {
    content: "1";
  }

  .review-summary-table tbody td label.Rating_2:after {
    content: "2";
  }

  .review-summary-table tbody td label.Rating_3:after {
    content: "3";
  }

  .review-summary-table tbody td label.Rating_4:after {
    content: "4";
  }

  .review-summary-table tbody td label.Rating_5:after {
    content: "5";
  }

  /**********/
}
@media only screen and (min-width: 1px) and (max-width: 500px) {
  .breadcrumbs {
    overflow: visible;
    display: inline-block;
  }

  .product-view .block-recent-posts .block-content ul li {
    width: 100%;
  }
  .product-view .block-recent-posts .block-content ul li .post-image {
    width: 50%;
  }
  .product-view .block-recent-posts .block-content ul li .blog_desc_box {
    width: 50%;
    padding: 0 0 0 10px;
  }
  .product-view .block-recent-posts .block-content ul li .blog_desc_box p {
    float: left;
  }
  .product-view .block-recent-posts .block-content ul li img {
    width: 100%;
  }

  .collateral-tabs .tab-content #review-form .fieldset .form-list li {
    width: 100%;
  }

  .product-view .related_products li.last4 {
    display: block;
  }
  .product-view .product-shop {
    width: 100%;
    margin: 0;
  }
  .product-view .product-shop .product-name {
    clear: both;
  }
  .product-view .product-shop .product-name .h1 {
    font-size: 20px;
  }
  .product-view .product-shop .view_price_box .regular-price .price,
  .product-view .product-shop .view_price_box .special-price .price {
    font-size: 20px;
  }
  .product-view .product-shop .product_dispatch {
    text-align: center;
    font-size: 14px;
  }
  .product-view .product-shop .product_dispatch .small_txt {
    font-size: 14px;
  }
  .product-view .product-shop .add-to-cart-buttons .button {
    width: 100%;
    text-align: center;
    clear: both;
  }
  .product-view .product-shop .add-to-cart-buttons .link-wishlist {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .product-view .product-shop .social-media {
    float: left;
    width: 100%;
    padding: 20px 0 10px 0;
    margin: 0 0 20px;
    border-bottom: 1px solid #d0d0d0;
    text-align: center;
  }
  .product-view .product-shop .social-media .twitter-share-button,
  .product-view .product-shop .social-media .pinit_button,
  .product-view .product-shop .social-media .social-media-email,
  .product-view .product-shop .social-media .social-media-print {
    float: none;
    vertical-align: top;
    margin-bottom: 10px;
    display: inline-block;
  }
  .product-view .product-shop .brand-img-desc-container {
    width: 100%;
    float: left;
    padding: 20px 0 20px 0;
    border-bottom: 1px solid #d0d0d0;
  }
  .product-view .product-shop .brand-img-desc-container .brand-description {
    float: right;
    width: 68%;
    border-bottom: 0;
  }
  .product-view .product-shop .brand-img-desc-container img {
    float: left;
    width: 30%;
  }
  .product-view .product-shop .amshopby-links-wrapper {
    border: none;
    padding: 10px 0 10px;
  }
  .product-view .product-shop .ratings {
    width: 100%;
    float: left;
    margin: 0 auto;
    text-align: center;
  }
  .product-view .product-shop .ratings .rating-box {
    display: inline-block;
    float: none;
    margin: 0;
  }
  .product-view .product-shop .ratings .rating-links {
    float: none;
    margin: 2px 0 0 0;
  }
  .product-view .product-shop .ratings .product-collateral {
    margin: 0 0 30px;
  }
  .product-view .product-img-box {
    width: 100%;
    margin: 0 0 10px;
    position: relative;
  }
  .product-view .product-img-box .more-views,
  .product-view .product-img-box .gallery-image.visible {
    display: none;
  }
  .product-view .product-img-box .slideshow-container,
  .product-view .product-img-box .slideshow-container .slideshow {
    border: none;
  }
  .product-view .product-img-box .slideshow-pager {
    bottom: 9px;
  }
  .product-view .product-img-box .slideshow-pager span {
    width: 13px;
    height: 13px;
    margin: 0 3px;
  }
  .product-view .product-img-box .slideshow-pager span:before {
    background: #d0d0d0;
    border-radius: 50%;
    width: 13px;
    height: 13px;
  }
  .product-view .product-img-box .slideshow-pager span.cycle-pager-active:before {
    background: #5ebad8;
  }
  .product-view .product-img-box .slideshow-prev, .product-view .product-img-box .slideshow-next {
    background: url(../images/sprite_icon_tab.png) no-repeat;
    height: 29px;
    width: 26px;
    top: 50%;
    display: block;
  }
  .product-view .product-img-box .slideshow-prev:before, .product-view .product-img-box .slideshow-next:before {
    content: "";
    display: none;
  }
  .product-view .product-img-box .slideshow-prev {
    background-position: -79px -510px;
    left: 10px;
  }
  .product-view .product-img-box .slideshow-next {
    background-position: -79px -549px;
    right: 10px;
    left: auto;
  }

  .zoomLens {
    display: none;
  }

  .cart .cross_sell .products-grid li.item4 {
    display: block;
  }
}
/* ============================================ *
 * Brand
 * ============================================ */
/*
// ----------------------------------------------
// 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; }
}

// ----------------------------------------------
*/
.brand-banner-top {
  margin-bottom: 15px;
}

.cms-page-view .std .list_tell_more_btn {
  text-decoration: none;
}

.admin_block_box .brand-block-content {
  padding: 0px 0px 0 0px;
}
.admin_block_box ul.all_brands {
  list-style: none;
  /*li.last{
      margin-right:0;
    }*/
}
.admin_block_box ul.all_brands li.item {
  list-style: none;
  float: none;
  display: inline-block;
  margin: 0px 18px 18px 18px;
  width: 130px;
  height: 130px;
}
.admin_block_box ul.all_brands li.item a {
  float: left;
  position: relative;
}
.admin_block_box ul.all_brands li.item a .hover_round {
  display: block;
}
.admin_block_box ul.all_brands li.item a:hover .hover_round {
  background: url("../images/brand_hover1.png") center center no-repeat;
  display: block;
  content: "";
  float: left;
  height: 130px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
  top: 0px;
  width: 130px;
  z-index: 999;
}

@media only screen and (min-width: 1px) and (max-width: 500px) {
  .admin_block_box ul.all_brands li.item {
    margin: 0px 0px 18px 0px;
  }
}
/* ============================================ *
 * Catalog - MSRP MAP Popup
 * ============================================ */
.cart-msrp-totals {
  color: red;
  font-size: 12px !important;
  font-weight: bold;
  margin: 10px 10px 0;
  padding: 10px;
  text-align: right;
  text-transform: uppercase;
}

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

.map-popup {
  background: #FFFFFF;
  border: 5px solid #CCCCCC;
  margin: 12px 0 0;
  position: absolute;
  text-align: left;
  width: 450px;
  z-index: 100;
}
.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-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 - Compare
 * ============================================ */
.block-compare .product-name:after {
  content: '';
  display: table;
  clear: both;
}

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

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

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

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

.cart .cross_sell {
  width: 100%;
  margin: 50px 0 0 0;
  padding: 0;
  float: left;
}
.cart .cross_sell .products-grid li {
  margin-bottom: 0;
}

.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  padding: 20px;
  background-color: #ededee;
  width: 100%;
  float: left;
}

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

.cart-totals {
  background: #e7f5f9;
}

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

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

.checkout-types {
  float: right;
  text-align: right;
  max-width: 100%;
  /* We always want this shipping method to display on its own line */
}
.checkout-types li {
  vertical-align: top;
  margin: 0 0 0px 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.bottom .paypal-logo a, .checkout-types.minicart .paypal-logo a {
  display: block;
}
.checkout-types.bottom .paypal-or, .checkout-types.minicart .paypal-or {
  margin: 0px;
  width: 150px;
  display: block;
  text-align: center;
  float: right;
}

.cart-totals .checkout-types .btn-checkout {
  /*margin-bottom: 7px;*/
  background: #282828;
  border: none;
  color: #fff;
  font-family: allerbold;
  font-weight: normal;
  font-size: 17px;
  padding: 15px 10px 11px;
  width: 100%;
}
.cart-totals .checkout-types .btn-checkout:hover {
  background: #505050;
}

.cart-table {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  /*.item-options {
      padding-left: 15px;
  }*/
}
.cart-table thead {
  border: 1px solid #d0d0d0;
}
.cart-table thead th {
  border-color: #d0d0d0;
}
.cart-table tbody {
  border: 1px solid #d0d0d0;
}
.cart-table th {
  border-bottom: none;
  vertical-align: top;
  color: #383838;
  font-family: allerregular;
  font-size: 16px;
  text-transform: none;
}
.cart-table td,
.cart-table tbody td {
  border-bottom: none;
  vertical-align: top;
  color: #383838;
  font-family: allerlight;
  text-transform: none;
}
.cart-table td .product-name,
.cart-table tbody td .product-name {
  min-width: 150px;
}
.cart-table td .item-options,
.cart-table tbody td .item-options {
  margin-left: 0px;
  margin-top: 0px;
  color: #383838;
  font-family: allerlight;
  font-size: 12px;
}
.cart-table td .item-options dd,
.cart-table td .item-options dt,
.cart-table tbody td .item-options dd,
.cart-table tbody td .item-options dt {
  font-style: normal;
  color: #383838;
  font-weight: normal;
  font-family: allerregular;
  font-size: 12px;
  padding: 0 2px 0 0;
}
.cart-table td .price-box .price,
.cart-table td .price,
.cart-table tbody td .price-box .price,
.cart-table tbody td .price {
  color: #383838;
  font-family: allerregular;
  font-size: 14px;
}
.cart-table h2 {
  font-family: allerregular;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  text-transform: none;
  font-weight: normal;
}
.cart-table h2 a {
  color: #383838;
}
.cart-table thead th,
.cart-table tbody td {
  background-color: transparent;
  padding: 10px 5px;
  /*font-family: $f-stack-special;*/
}
.cart-table thead th {
  padding: 10px 20px;
}
.cart-table .product-cart-info,
.cart-table .product-cart-actions {
  padding-left: 15px;
}
.cart-table tr {
  border-bottom: 1px solid #d0d0d0;
}
.cart-table tfoot tr {
  background: none;
  border: medium none;
}
.cart-table tfoot tr > td:after {
  content: '';
  display: table;
  clear: both;
}
.cart-table tfoot .a-right.cart-footer-actions.last {
  padding: 10px 0 0;
  text-align: left;
}
.cart-table span.or {
  font-size: 9px;
  padding: 0 5px;
  text-transform: uppercase;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.cart-table .product-cart-image .cart-links,
.cart-table .product-cart-info .btn-remove,
.cart-table .product-cart-actions .button {
  display: none;
}
.cart-table .product-cart-image {
  /*padding-left: 0;
  padding-right: 0;*/
}
.cart-table .product-cart-image .product-image img {
  max-width: 100%;
  width: 100%;
}
.cart-table .product-cart-image a.cart-edit {
  display: none;
}
.cart-table .product-cart-sku {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-style: italic;
  font-size: 12px;
  margin: 5px 0 12px;
}
.cart-table .product-cart-sku .label {
  font-weight: 600;
}
.cart-table .btn-empty {
  float: left;
}
.cart-table .product-cart-total,
.cart-table .product-cart-price {
  text-align: center;
}
.cart-table .cart-tax-total {
  position: relative;
  cursor: pointer;
}
.cart-table .cart-tax-total:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #3399CC;
  border-left: none;
  position: absolute;
  top: 3px;
  right: -11px;
}
.cart-table .cart-tax-total.cart-tax-total-expanded:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #3399CC;
  border-bottom: none;
  right: -15px;
  top: 6px;
}
.cart-table .cart-links > li {
  white-space: nowrap;
  line-height: 1.3;
  margin-bottom: 5px;
  min-width: 65px;
  font-size: 13px;
}
.cart-table .cart-links > li > a {
  display: block;
}
.cart-table .cart-links > li:last-child {
  margin-bottom: 0;
}
.cart-table .product-cart-actions {
  min-width: 60px;
  text-align: center;
}
.cart-table .product-cart-actions .qty {
  height: 37px;
  border-color: #d0d0d0;
  border-radius: 0;
  margin-bottom: 10px;
  text-align: center;
  width: 3em;
}
.cart-table .product-cart-actions .button {
  margin-bottom: 5px;
  padding: 0;
  border: 0;
  color: #1697ca;
  font-weight: normal;
  font-size: 13px;
  font-family: allerlight;
  width: 100%;
}
.cart-table .product-cart-actions .button:hover {
  background: transparent;
  color: #4b95ad;
}
.cart-table .reward-points-earning .label {
  color: #1697ca;
  font-weight: normal;
}
.cart-table .btn-continue {
  border: none;
  text-indent: 0;
  background-position: -94px -1167px;
  padding: 3px 0px 2px 14px;
}
.cart-table .btn-continue span {
  font-family: allerregular;
  font-size: 13px;
  color: #5ebad8;
  text-decoration: none;
}
.cart-table .btn-continue:hover {
  background-color: transparent;
  background-position: -94px -1204px;
  text-indent: 0;
}
.cart-table .btn-continue:hover span {
  color: #4b95ad;
}

/* ============================================ *
 * Checkout - Estimate Shipping and Tax
 * ============================================ */
.shipping h2 {
  color: #1697ca;
  font-family: allerregular;
  font-size: 16px;
  font-weight: normal;
  text-transform: none;
  margin: 0 0 5px;
}
.shipping select {
  max-width: 100%;
  height: 30px;
  display: block;
  border: 1px solid #C0C0C0;
}
.shipping select.validation-failed {
  border-color: #FF0000;
}
.shipping .shipping-desc {
  display: none;
}
.shipping .buttons-set {
  border: none;
  float: left;
  margin: 0;
  padding: 0;
}
.shipping .buttons-set button {
  height: 26px;
  line-height: 18px;
  min-width: 0;
  border: 1px solid #63b6d7;
  background: #fff;
  padding: 3px 13px 2px 14px;
}
.shipping .buttons-set button:hover {
  background: #63b6d7;
  border-color: #63b6d7;
}
.shipping .buttons-set button:hover span {
  color: #fff;
}
.shipping .buttons-set button span {
  text-decoration: none;
  color: #5ebad8;
  font-family: allerregular;
  font-size: 13px;
  height: auto;
  font-weight: normal;
  line-height: 18px;
}
.shipping .form-list {
  float: left;
  width: 100%;
}
.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: 48%;
}
.shipping .form-list .shipping-region {
  margin-right: 0;
  width: 48%;
  float: right;
}
.shipping .form-list .shipping-postcode {
  margin-right: 0;
  width: 100%;
  float: left;
}
.shipping .form-list .shipping-postcode input {
  margin-top: 0px;
}
.shipping .form-list .input-box {
  padding-top: 0;
}
.shipping .form-list input {
  /*height: 30px;*/
  margin-top: 4px;
}
.shipping .form-list label {
  color: #535353;
  font-family: allerregular;
  font-size: 14px;
  font-weight: normal;
}
.shipping .sp-methods {
  padding: 14px 0 0;
  text-align: left;
}
.shipping .sp-methods dd {
  /*margin-bottom: 10px;*/
}
.shipping .sp-methods label {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  min-width: 100px;
}
.shipping .sp-methods label span {
  font-weight: bold;
  font-style: normal;
}
.shipping #co-shipping-method-form {
  width: 100%;
  float: left;
  border-top: 1px solid #d0d0d0;
  margin-top: 19px;
}
.shipping #co-shipping-method-form .buttons-set button {
  height: 26px;
  line-height: 18px;
  min-width: 0;
  border: 1px solid #63b6d7;
  background: #fff;
  padding: 3px 13px 2px 14px;
}
.shipping #co-shipping-method-form .buttons-set button:hover {
  background: #63b6d7;
  border-color: #63b6d7;
}
.shipping #co-shipping-method-form .buttons-set button:hover span {
  color: #fff;
}
.shipping #co-shipping-method-form .buttons-set button span {
  text-decoration: none;
  color: #5ebad8;
  font-family: allerregular;
  font-size: 13px;
  height: auto;
  font-weight: normal;
  line-height: 18px;
}
.shipping #co-shipping-method-form .sp-methods dt {
  color: #535353;
  font-family: allerregular;
  font-size: 14px;
  font-weight: normal;
}
.shipping #co-shipping-method-form .sp-methods .radio {
  margin-left: 0;
  margin-top: 5px;
}
.shipping #co-shipping-method-form .sp-methods dd label {
  border: none;
  background-color: transparent;
  padding: 3px 10px 3px 23px;
  min-width: 220px;
  color: #535353;
  font-family: allerregular;
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
}
.shipping #shipping-zip-form {
  width: 100%;
  float: left;
  padding: 0 0 0px 0;
}
.shipping #shipping-zip-form .buttons-set {
  float: right;
}

.cart .cart-totals {
  text-align: right;
  padding: 12px 20px 20px 20px;
}
.cart .cart-totals .checkout-types {
  width: 100%;
}
.cart .cart-totals:after {
  content: '';
  display: table;
  clear: both;
}
.cart .cart-totals table {
  font-family: allerregular;
  font-size: 14px;
  margin-bottom: 10px;
  width: 100%;
}
.cart .cart-totals table td {
  padding: 2px 0px;
  vertical-align: top;
}
.cart .cart-totals table td .price {
  font-family: allerbold;
  font-weight: normal;
  font-size: 14px;
}
.cart .cart-totals table td:first-child {
  padding-right: 30px;
  min-width: 120px;
}
.cart .cart-totals table tbody tr:last-child td,
.cart .cart-totals table tbody tr:last-child th {
  padding-bottom: 10px;
}
.cart .cart-totals table thead {
  border-bottom: 1px solid #d0d0d0;
  /*td {
    padding-bottom: 15px;
  }*/
}
.cart .cart-totals table thead .a-right.point {
  font-family: allerbold;
  font-weight: normal;
}
.cart .cart-totals table tfoot {
  border-top: 1px solid #d0d0d0;
}
.cart .cart-totals table tfoot td {
  font-size: 20px;
  padding-top: 13px;
  font-family: Arial;
  color: #535353;
  vertical-align: top;
}
.cart .cart-totals table tfoot strong span,
.cart .cart-totals table tfoot span.price {
  font-family: Arial;
  color: #5ebad8;
  font-size: 20px;
  font-weight: bold;
}
.cart .cart-totals table tfoot strong {
  font-weight: 400;
}

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

#discount-coupon-form h2,
.cart .giftcard h2 {
  display: none;
}
#discount-coupon-form label,
.cart .giftcard label {
  color: #1697ca;
  font-family: allerregular;
  font-size: 16px;
  font-weight: normal;
  text-align: left;
  min-width: 105px;
  display: inline-block;
  margin-right: 10px;
}
#discount-coupon-form .field-wrapper,
.cart .giftcard .field-wrapper {
  display: block;
}
#discount-coupon-form .validation-advice,
.cart .giftcard .validation-advice {
  display: inline;
}
#discount-coupon-form .button-wrapper,
.cart .giftcard .button-wrapper {
  display: block;
  vertical-align: bottom;
}
#discount-coupon-form .button-wrapper > button,
.cart .giftcard .button-wrapper > button {
  float: left;
}

.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
 * ============================================ */
.cross_sell .block-title strong span {
  font-family: allerregular;
}
.cross_sell #crosssell-products-list .button,
.cross_sell #crosssell-products-list .add-to-links {
  /*display: none;*/
}

/* Change the layout to 2 columns at a breakpoint that is higher than a 3 columns layout would normally break */
/**********/
.gift_disc_box .input-text,
.cart-forms .input-text {
  border-radius: 0;
  height: 37px;
  padding: 0 8px;
  border-color: #d0d0d0;
}

.reward_box {
  float: left;
  width: 100%;
  margin-top: 20px;
  font-family: allerregular;
  background: #ededee;
  padding: 20px 0px;
}
.reward_box #rewardpoints-slider-container,
.reward_box .reward_info_box {
  float: left;
  width: 50%;
  padding: 0px 20px;
  text-align: left;
}
.reward_box #rewardpoints-slider-container b,
.reward_box .reward_info_box b {
  font-family: allerbold;
  font-size: 14px;
  font-weight: normal;
}
.reward_box #rewardpoints-slider-container b .price,
.reward_box .reward_info_box b .price {
  font-family: allerbold;
  font-size: 14px;
  font-weight: normal;
}
.reward_box #rewardpoints-slider-container p,
.reward_box .reward_info_box p {
  padding: 0 0 12px 0;
}
.reward_box #rewardpoints-slider-container .title,
.reward_box .reward_info_box .title {
  color: #1697ca;
  font-family: allerregular;
  font-size: 16px;
  font-weight: normal;
  text-align: left;
  display: inline-block;
  padding: 0 0 5px;
}
.reward_box #rewardpoints-slider-container .input-point span,
.reward_box .reward_info_box .input-point span {
  float: left;
  width: 100%;
  padding: 0 0 10px 0;
}
.reward_box #rewardpoints-slider-container .input-point .input-max,
.reward_box .reward_info_box .input-point .input-max {
  float: left;
  margin-top: 7px;
}
.reward_box #rewardpoints-slider-container .input-point .input-max label,
.reward_box .reward_info_box .input-point .input-max label {
  font-family: allerregular;
  font-size: 14px;
}
.reward_box #rewardpoints-slider-container .input-point .input-text,
.reward_box .reward_info_box .input-point .input-text {
  border-radius: 0;
  margin-right: 10px;
  font-size: 12px;
  height: 37px;
  font-family: allerlight;
  color: #d0d0d0;
  float: left;
}
.reward_box #rewardpoints-slider-container {
  float: right;
  border-left: 1px solid #d0d0d0;
}
.reward_box #rewardpoints-login-msg, .reward_box #rewardpoints-needmore-msg {
  margin: 0 20px;
}

.cart_left_box {
  float: left;
  width: 64.6%;
}
.cart_left_box .cart-table.data-table {
  margin-bottom: 10px;
}

.cart_right_box {
  float: right;
  width: 35.4%;
}

.gift_disc_box {
  width: 100%;
  float: left;
}
.gift_disc_box .discount {
  background: #ededee;
  padding: 15px 10px 19px 20px;
  float: left;
  width: 48%;
}
.gift_disc_box .discount .discount-form {
  font-size: 12px;
  font-family: allerregular;
  font-weight: normal;
}
.gift_disc_box .discount .discount-form b {
  font-size: 12px;
  font-family: allerregular;
  font-weight: normal;
  line-height: 25px;
}
.gift_disc_box #discount-coupon-form .discount {
  float: right;
}
.gift_disc_box .input-box {
  float: left;
  padding: 0px 10px 0 0;
  position: relative;
}
.gift_disc_box .input-box .validation-advice {
  bottom: -17px;
  font-size: 11px;
  left: 2px;
  position: absolute;
}
.gift_disc_box .input-text {
  width: 191px;
}
.gift_disc_box .button-wrapper button {
  float: left;
  border: 1px solid #63b6d7;
  background: #fff;
  padding: 3px 0px 2px;
  min-width: 76px;
}
.gift_disc_box .button-wrapper button span {
  text-decoration: none;
  color: #5ebad8;
  font-family: allerregular;
  font-size: 13px;
  height: 30px;
  font-weight: normal;
  line-height: 30px;
}
.gift_disc_box .button-wrapper button:hover {
  background: #63b6d7;
  border-color: #63b6d7;
}
.gift_disc_box .button-wrapper button:hover span {
  color: #fff;
}
.gift_disc_box label {
  color: #1697ca;
  font-family: allerregular;
  font-size: 16px;
  font-weight: normal;
  text-align: left;
  min-width: 105px;
  display: inline-block;
  margin-bottom: 7px;
}

.gift_cart_point_msg {
  clear: both;
  padding: 10px 0 0;
}

.cart_gift_pro {
  float: left;
  margin: 0 0 49px;
  width: 100%;
}
.cart_gift_pro .block-title {
  cursor: pointer;
}
.cart_gift_pro .block-title span {
  font-family: allerregular;
}
.cart_gift_pro .block-title:before {
  background: #fff;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  right: 19px;
  top: 23px;
  width: 20px;
}
.cart_gift_pro .block-title.active:hover:after,
.cart_gift_pro .block-title:hover:before {
  background: #000;
}
.cart_gift_pro .block-title.active:after {
  background: #fff;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  right: 27px;
  top: 15px;
  width: 3px;
}
.cart_gift_pro .cart_sub_title {
  font-family: allerregular;
  font-size: 18px;
  float: left;
  width: 100%;
  color: #383838;
}
.cart_gift_pro .cart_gift_pro_box {
  float: left;
  width: 100%;
  border: 1px solid #d0d0d0;
  border-top: none;
  padding: 20px 20px 5px 20px;
}
.cart_gift_pro .cart_gift_pro_box .product-image {
  margin-top: 5px;
}
.cart_gift_pro .cart_gift_pro_box li button {
  font-family: allerbold;
  font-weight: normal;
  width: 95%;
}
.cart_gift_pro .cart_gift_pro_box .price_free_label {
  font-size: 16px;
  font-family: Arial;
  font-weight: bold;
  text-transform: uppercase;
}

.add_to_cart_msg {
  display: inline-block;
  text-indent: 0;
  background-position: -64px -1254px;
  padding: 0 0 0 50px;
}
.add_to_cart_msg .shopping_cart_msg {
  font-size: 11px;
}

.add_to_cart_brek {
  float: right;
  margin: 1px 0 0;
}
.add_to_cart_brek a {
  clear: both;
  float: right;
}

/*********/
@media only screen and (min-width: 1px) and (max-width: 770px) {
  .cart_left_box {
    width: 100%;
  }

  .cart_gift_pro {
    margin-bottom: 20px;
  }

  .gift_disc_box .input-text, .cart-forms .input-text {
    margin-bottom: 10px;
  }

  .cart-table .product-cart-image .product-image img {
    height: auto;
  }

  .cart_right_box {
    width: 100%;
    margin-top: 20px;
  }

  .display-single-price .cross_sell {
    margin: 0;
    padding: 0;
    width: 100%;
  }
}
@media only screen and (min-width: 1px) and (max-width: 500px) {
  .gift_disc_box .discount {
    width: 100%;
  }
  .gift_disc_box .discount .input-box {
    width: 100%;
  }
  .gift_disc_box .discount .input-box .input-text {
    width: 100%;
  }

  .reward_box #rewardpoints-slider-container,
  .reward_box .reward_info_box {
    width: 100%;
  }

  .reward_box #rewardpoints-slider-container {
    border-left: 0;
    border-top: 1px solid #d0d0d0;
    margin-top: 10px;
    padding-top: 10px;
  }

  .gift_disc_box form .discount {
    margin-top: 20px;
  }

  .cart .messages li li {
    float: left;
  }
  .cart .messages li li .add_to_cart_brek {
    float: left;
    margin: 10px 0 0 50px;
  }
  .cart .messages li li .add_to_cart_brek a {
    float: left;
  }

  .cart-table tr.last {
    border-bottom: 0;
  }

  .cart .cart_gift_pro .block-title strong {
    font-size: 16px;
    padding-top: 15px;
  }
}
@media only screen and (min-width: 1px) and (max-width: 600px) {
  .gift_disc_box .discount {
    width: 100%;
  }
  .gift_disc_box .discount .input-box {
    width: 100%;
  }
  .gift_disc_box .discount .input-box .input-text {
    width: 100%;
  }

  .cart-table .product-cart-info,
  .cart-table .product-cart-price,
  .cart-table .product-cart-total,
  .cart-table .product-cart-actions {
    text-align: left;
    float: right;
    width: 75%;
    padding-left: 10px;
  }

  .cart-table .product-cart-actions .button {
    width: auto;
  }

  .cart_gift_pro .cart_gift_pro_box .selected-gift,
  .cart_gift_pro .cart_gift_pro_box li button.replace_gift {
    font-size: 11px;
    padding: 4px 0 3px;
    /*text-transform: none;*/
  }
}
/* ============================================ *
 * Checkout - One Page
 * ============================================ */
.checkout-onepage-index .col-right,
.checkout-onepage-index .col-left {
  display: none;
}

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

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

.opc select {
  width: 365px;
}
.opc .form-list li .input-text {
  border-radius: 0;
  height: 40px;
  font-family: allerlight_italic;
  font-size: 12px;
  /*color: $detail_line;*/
  /*line-height: 40px;*/
  border-color: #d0d0d0;
}

/* -------------------------------------------- *
 * Section Styling - Default
 */
.opc .section .step-title {
  width: 100%;
  /*border-top: 1px solid $c-divider-border;*/
  background: #f2f2f2;
  font-size: 18px;
  margin-bottom: 2px;
  /*display: inline-block;*/
  font-weight: normal;
  font-family: allerregular;
  text-transform: uppercase;
  position: relative;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.opc .section .step-title:after {
  content: '';
  display: table;
  clear: both;
}

.opc .section.allow:not(.active) .step-title {
  cursor: pointer;
  background: #aedceb;
  margin-bottom: 1px;
}

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

.opc .section.active .step-title {
  background: #5ebad8;
  font-size: 18px;
  margin-bottom: 0;
  /*display: inline-block;*/
  font-weight: normal;
  font-family: allerregular;
  text-transform: uppercase;
}

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

.opc .section.allow:not(.active) .step-title a {
  display: block;
  color: #fff;
  text-transform: none;
  font-size: 14px;
  text-decoration: underline;
  float: right;
  line-height: 48px;
  height: 48px;
  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 {
  text-align: center;
  /*color: #FFFFFF;*/
  line-height: 26px;
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -13px;
}

.opc .section.allow .step-title .number {
  background-color: none;
  color: #fff;
}

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

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

.opc .section .step-title h2 {
  font-weight: 400;
  line-height: 53px;
  height: 53px;
  float: left;
  margin: 0px 4px 0px 35px;
  font-family: allerlight;
  font-size: 18px;
  color: #383838;
}

.opc .section .step {
  padding: 20px;
  border-left: 1px solid #d0d0d0;
  border-right: 1px solid #d0d0d0;
}
.opc .section .step:after {
  content: '';
  display: table;
  clear: both;
}
.opc .section .step .form-list .remember-me-box label {
  color: #666459;
  font-family: allerregular;
  font-size: 14px;
  font-weight: normal;
}
.opc .section .step .form-list .control {
  margin: 0;
  float: left;
  width: 100%;
}
.opc .section .step .form-list .control .checkbox,
.opc .section .step .form-list .control .radio {
  margin-left: 0;
}
.opc .section .step .form-list .control label {
  font-family: allerregular;
  font-size: 14px;
  padding: 6px 10px 6px 20px;
}

.opc h3 {
  color: #383838;
  font-family: allerregular;
  margin-bottom: 23px;
  font-size: 18px;
  font-weight: normal;
  text-transform: none;
}

#co-shipping-method-form .buttons-set .button,
.buttons-set button.button {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  background: #5ebad8;
  color: #fff;
  font-family: allerbold;
  font-size: 14px;
  font-weight: normal;
  min-width: 200px;
  padding: 13px 10px 13px;
  border: none;
}
#co-shipping-method-form .buttons-set .button:hover,
.buttons-set button.button:hover {
  background: #1697ca;
}

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

.opc #opc-login .step {
  padding: 20px;
}
.opc #opc-login .step .col-1, .opc #opc-login .step .col-2 {
  padding: 0;
}
.opc #opc-login .step .col-1 .forgot_password, .opc #opc-login .step .col-2 .forgot_password {
  color: #5ebad8;
  font-size: 14px;
  font-family: allerregular;
}
.opc #opc-login .step .col-1 .forgot_password:hover, .opc #opc-login .step .col-2 .forgot_password:hover {
  color: #4b95ad;
  text-decoration: none;
}
.opc #opc-login .step .col-1 p.required, .opc #opc-login .step .col-2 p.required {
  display: none;
}
.opc #opc-login .step .col-2 {
  border-left: 1px solid #d0d0d0;
  padding: 0 0 20px 30px;
}
.opc #opc-login .step .col-1 .buttons-set {
  padding-top: 124px;
}
.opc #opc-login .buttons-set {
  border-top: 0;
  padding-top: 15px;
}

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

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

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

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

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

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

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

/* -------------------------------------------- *
 * Shipping and Payment methods
 */
.sp-methods {
  margin: 0 0 8px;
}
.sp-methods .form-list li {
  font-family: allerregular;
  font-weight: normal;
  font-size: 14px;
}
.sp-methods dt {
  margin: 13px 0 5px;
  font-weight: bold;
}
.sp-methods dt:first-child {
  margin: 0 0 5px;
}
.sp-methods dd li {
  margin: 5px 0;
}
.sp-methods dd li label {
  font-family: allerregular;
  font-weight: normal;
  font-size: 14px;
  color: #383838;
}
.sp-methods label img {
  float: left;
}
.sp-methods label a {
  margin-top: 6px;
  float: right;
  margin-left: 10px;
}
.sp-methods .price {
  font-weight: bold;
}
.sp-methods .form-list {
  padding-left: 20px;
}
.sp-methods .form-list li {
  margin: 0 0 8px;
}
.sp-methods select.month {
  width: 120px;
  margin-right: 10px;
}
.sp-methods select.year {
  width: 96px;
}
.sp-methods input.cvv {
  width: 8em;
}
.sp-methods .cart_note {
  float: left;
  width: 50%;
  margin: 0 10px;
  font-family: allerlight_italic;
  color: #383838;
  font-size: 12px;
}
.sp-methods .checkmo-list li {
  margin: 0 0 5px;
  content: '';
  display: table;
  clear: both;
}
.sp-methods .checkmo-list label {
  width: 165px;
  padding-right: 15px;
  text-align: right;
  float: left;
}
.sp-methods .checkmo-list address {
  float: left;
}
.sp-methods .release-amounts {
  margin: 0.5em 0;
}
.sp-methods .release-amounts button {
  float: left;
  margin: 5px 10px 0 0;
}

/*#checkout-step-billing.step {
  .wide label {
    color: #383838;
    font-family: allerregular;
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 23px;
    text-transform: none;
  }

}*/
#checkout-payment-method-load.sp-methods dl .payment_info_line {
  border-bottom: 1px solid #d0d0d0;
  padding: 23px 0 22px 0;
  position: relative;
  float: left;
  width: 100%;
}
#checkout-payment-method-load.sp-methods dl .payment_info_line .instruction {
  color: #383838;
  font-family: allerregular;
  font-size: 14px;
}
#checkout-payment-method-load.sp-methods dl .payment_info_line .v-middle {
  position: absolute;
  right: 30px;
}
#checkout-payment-method-load.sp-methods dl .payment_info_line dt label {
  font-family: allerbold;
  font-weight: normal;
}
#checkout-payment-method-load.sp-methods dl dd ul li {
  float: left;
  width: 100%;
  margin: 0 0 15px;
}
#checkout-payment-method-load.sp-methods dl dd ul li .name_of_the_card,
#checkout-payment-method-load.sp-methods dl dd ul li .expiration_date {
  float: left;
  width: 49%;
}
#checkout-payment-method-load.sp-methods dl dd ul li .name_of_the_card .v-fix,
#checkout-payment-method-load.sp-methods dl dd ul li .expiration_date .v-fix {
  width: 100px;
  margin: 0 10px 0 0;
}
#checkout-payment-method-load.sp-methods dl dd ul li #transact_cc_type_cvv_div .input-box .v-fix {
  width: 100px;
}
#checkout-payment-method-load.sp-methods dl dd ul li #transact_cc_type_cvv_div .input-box .v-fix input.cvv {
  width: 100%;
}
#checkout-payment-method-load.sp-methods dl dd ul li .card_number {
  float: left;
  width: 49%;
}
#checkout-payment-method-load.sp-methods dl dd ul li .card_type {
  float: right;
  width: 49%;
}
#checkout-payment-method-load.sp-methods dl dd ul li label {
  font-family: allerregular;
  font-weight: normal;
  width: 100%;
}
#checkout-payment-method-load.sp-methods dl .add_remove_giftcard {
  border-bottom: 1px solid #d0d0d0;
  padding: 0px 0 22px;
  color: #383838;
  font-family: allerregular;
  font-size: 14px;
}
#checkout-payment-method-load.sp-methods dl .add_remove_giftcard a {
  color: #5ebad8;
  font-family: allerregular;
  font-size: 14px;
  background-position: -94px -1175px;
  padding-left: 13px;
}
#checkout-payment-method-load.sp-methods dl .add_remove_giftcard a:hover {
  color: #0e80ad;
  background-position: -94px -1212px;
  text-decoration: none;
}

/*#checkout-step-payment {
   .buttons-set {
    border: none;
   }

}*/
/* One Page Checkout */
.block-progress {
  border: 0;
  margin: 0;
  /*border-left: 1px solid $c-module-border;*/
  /*padding-left: 20px;*/
  padding: 16px 20px 10px 20px;
  background: #ededee;
}
.block-progress .block-content {
  font-size: 13px;
}
.block-progress .block-title strong {
  color: #1697ca;
  font-family: allerregular;
  font-weight: normal;
  font-size: 18px;
}
.block-progress dt {
  padding-top: 8px;
  padding-bottom: 19px;
  margin-bottom: 6px;
  font-family: allerbold;
  font-weight: normal;
  color: #7b7b7b;
  font-size: 16px;
  border-bottom: 1px solid #d0d0d0;
}
.block-progress dt.complete {
  color: #636363;
  border-bottom: 0;
  padding-bottom: 0px;
  color: #383838;
}
.block-progress table {
  font-family: allerregular;
}
.block-progress dd {
  /*padding-left: 15px;*/
  margin-bottom: 10px;
  font-family: allerregular;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 17px;
  font-size: 14px;
  color: #383838;
}
.block-progress dd .price {
  font-size: 14px;
  font-family: allerregular;
}
.block-progress dd address {
  /*line-height: 21px;*/
}
.block-progress #payment-progress-opcheckout dt {
  border-bottom: 0;
  padding-bottom: 0;
}
.block-progress #payment-progress-opcheckout .subtitle {
  margin-bottom: 3px;
}
.block-progress #payment-progress-opcheckout .complete {
  border-bottom: 0;
  padding-bottom: 0;
}
.block-progress .payment-info dt {
  padding: 0;
  margin: 0 0 3px 0;
  color: #383838;
  font-family: allerregular;
  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;
  color: #383838;
  font-family: allerregular;
  border: none;
  padding: 0;
}
.block-progress .payment-info:after {
  content: '';
  display: table;
  clear: both;
}

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

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

.opc-block-progress dt a,
.opc-block-progress dt .separator {
  display: none;
  font-weight: normal;
  font-size: 14px;
  color: #1697ca;
  font-family: allerregular;
  margin: 0 0 0 8px;
}

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

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

/* Gift options */
.gift-messages-form .item {
  content: '';
  display: table;
  clear: both;
  margin-top: 30px;
}
.gift-messages-form .item h5 {
  font-weight: bold;
}
.gift-messages-form .item .product-img-box {
  width: auto;
  float: left;
  padding-right: 15px;
}
.gift-messages-form .item .details {
  float: left;
}

.gift-message-form .inner-box > div {
  content: '';
  display: table;
  clear: both;
  width: 100%;
  margin-top: 15px;
}
.gift-message-form .inner-box > div.extra-options-container p {
  margin-bottom: 15px;
}
.gift-message-form .gift-wrapping-form label {
  margin-right: 10px;
}
.gift-message-form .gift-wrapping-form img {
  float: left;
}
.gift-message-form .gift-wrapping-form .gift-wrapping-design {
  height: 75px;
}
.gift-message-form .gift-wrapping-form .gift-wrapping-design:after {
  content: '';
  display: table;
  clear: both;
}
.gift-message-form .gift-wrapping-form .gift-wrapping-design .image-box {
  margin-right: 5px;
}
.gift-message-form .gift-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px #d7d7d7;
}
.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;
}

/****/
.col2-set .col-1 .description,
.col2-set .col-1 ul li,
.col2-set .col-2 .description {
  color: #666459;
  font-family: allerregular;
  font-weight: normal;
  font-size: 14px;
}

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

#checkout-step-shipping_method .gift-messages label {
  font-family: allerregular;
  font-weight: normal;
  font-size: 14px;
  color: #383838;
  line-height: 18px;
}

#opc-shipping .step .form-list .scaffold-form ul .wide .input-text,
#opc-billing .step .form-list .scaffold-form ul .wide .input-text {
  width: 100%;
}
#opc-shipping .step .form-list .scaffold-form ul .wide .input-text:hover,
#opc-billing .step .form-list .scaffold-form ul .wide .input-text:hover {
  border-color: #a6a6a6;
}
#opc-shipping .step .form-list .scaffold-form ul .fields,
#opc-billing .step .form-list .scaffold-form ul .fields {
  float: left;
  width: 100%;
}
#opc-shipping .step .form-list .scaffold-form ul .fields .city,
#opc-shipping .step .form-list .scaffold-form ul .fields .postcode,
#opc-shipping .step .form-list .scaffold-form ul .fields .company_name,
#opc-shipping .step .form-list .scaffold-form ul .fields .name-firstname,
#opc-billing .step .form-list .scaffold-form ul .fields .city,
#opc-billing .step .form-list .scaffold-form ul .fields .postcode,
#opc-billing .step .form-list .scaffold-form ul .fields .company_name,
#opc-billing .step .form-list .scaffold-form ul .fields .name-firstname {
  float: left;
}
#opc-shipping .step .form-list .scaffold-form ul .fields .state,
#opc-shipping .step .form-list .scaffold-form ul .fields .country,
#opc-shipping .step .form-list .scaffold-form ul .fields .email_address,
#opc-shipping .step .form-list .scaffold-form ul .fields .name-lastname,
#opc-billing .step .form-list .scaffold-form ul .fields .state,
#opc-billing .step .form-list .scaffold-form ul .fields .country,
#opc-billing .step .form-list .scaffold-form ul .fields .email_address,
#opc-billing .step .form-list .scaffold-form ul .fields .name-lastname {
  float: right;
}
#opc-shipping .step .form-list .scaffold-form ul .fields .field,
#opc-billing .step .form-list .scaffold-form ul .fields .field {
  width: 49%;
}
#opc-shipping .step .form-list .scaffold-form ul .fields .field .input-box .selectboxit-container *,
#opc-billing .step .form-list .scaffold-form ul .fields .field .input-box .selectboxit-container * {
  font-family: allerlight_italic;
  color: #9d9d9d;
}
#opc-shipping .step .form-list .scaffold-form ul .fields .field .input-text,
#opc-billing .step .form-list .scaffold-form ul .fields .field .input-text {
  height: 44px;
  /*line-height: 44px;*/
}
#opc-shipping .step .form-list .scaffold-form ul .fields .field .input-text:hover,
#opc-billing .step .form-list .scaffold-form ul .fields .field .input-text:hover {
  border-color: #a6a6a6;
}
#opc-shipping .step .form-list .scaffold-form ul .fields .field .selectboxit-container span,
#opc-shipping .step .form-list .scaffold-form ul .fields .field .selectboxit-container .selectboxit-options a,
#opc-billing .step .form-list .scaffold-form ul .fields .field .selectboxit-container span,
#opc-billing .step .form-list .scaffold-form ul .fields .field .selectboxit-container .selectboxit-options a {
  height: 44px;
  line-height: 44px;
}
#opc-shipping .step .form-list .scaffold-form ul .fields .field label,
#opc-billing .step .form-list .scaffold-form ul .fields .field label {
  padding-bottom: 3px;
}

#checkout-shipping-method-load {
  border-bottom: 1px solid #d0d0d0;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

#shipping-method-buttons-container.buttons-set {
  border: none;
}

.opc .step p.required {
  display: none;
}

.linearize-table thead th {
  font-family: allerlight;
  text-transform: none;
  color: #383838;
  font-size: 16px;
  background: none;
}
.linearize-table thead .first {
  border-top: 1px solid #d0d0d0;
}
.linearize-table tbody .item_image {
  width: 100px;
}
.linearize-table tbody .product-name {
  font-size: 16px;
  min-width: 165px;
}
.linearize-table tbody .cart-price .price {
  font-family: allerregular;
  color: #383838;
  font-size: 14px;
}
.linearize-table tbody, .linearize-table tfoot, .linearize-table thead {
  border-left: 1px solid #d0d0d0;
  border-right: 1px solid #d0d0d0;
}
.linearize-table tbody tr td {
  font-family: allerregular;
  color: #383838;
  font-size: 14px;
}
.linearize-table tbody tr td .item-options {
  margin-left: 0px;
  margin-top: 0px;
  color: #383838;
  font-family: allerlight;
  font-size: 12px;
}
.linearize-table tbody tr td .item-options dd,
.linearize-table tbody tr td .item-options dt {
  font-style: normal;
  color: #383838;
  font-weight: normal;
  font-family: allerregular;
  font-size: 12px;
  padding: 0 2px 0 0;
}
.linearize-table tbody tr td img {
  float: left;
}
.linearize-table tfoot.totle_msg {
  border-bottom: 1px solid #d0d0d0;
}
.linearize-table tfoot.totle_msg tbody, .linearize-table tfoot.totle_msg tfoot, .linearize-table tfoot.totle_msg thead {
  border-left: none;
  border-right: none;
}
.linearize-table tfoot.totle_msg tr.last td strong {
  font-family: Arial;
  font-size: 20px;
  font-weight: normal;
}
.linearize-table tfoot.totle_msg tr.last td {
  border: none;
}
.linearize-table tfoot.totle_msg tr.last td.last strong .price {
  font-family: Arial;
  color: #5ebad8;
  font-weight: bold;
}
.linearize-table tfoot.totle_msg tr {
  background: #e7f5f9;
}
.linearize-table tfoot.totle_msg tr td.r_right,
.linearize-table tfoot.totle_msg tr td.l_left {
  width: 50%;
  font-family: allerregular;
  padding: 19px;
}
.linearize-table tfoot.totle_msg tr td.r_right .totle_note,
.linearize-table tfoot.totle_msg tr td.l_left .totle_note {
  background: #fff;
  padding: 15px 20px 0px 20px;
  border: 1px solid #bce4f1;
  color: #383838;
  font-size: 12px;
}
.linearize-table tfoot.totle_msg tr td.r_right .totle_note p,
.linearize-table tfoot.totle_msg tr td.l_left .totle_note p {
  padding: 0 0 16px;
}
.linearize-table tfoot.totle_msg tr td.r_right tbody td, .linearize-table tfoot.totle_msg tr td.r_right tfoot td,
.linearize-table tfoot.totle_msg tr td.l_left tbody td,
.linearize-table tfoot.totle_msg tr td.l_left tfoot td {
  font-family: allerregular;
  color: #6f6f6f;
  font-size: 14px;
}
.linearize-table tfoot.totle_msg tr td.r_right tbody td .price, .linearize-table tfoot.totle_msg tr td.r_right tfoot td .price,
.linearize-table tfoot.totle_msg tr td.l_left tbody td .price,
.linearize-table tfoot.totle_msg tr td.l_left tfoot td .price {
  font-family: allerbold;
  font-weight: normal;
}
.linearize-table tfoot.totle_msg .r_right table {
  width: 100%;
}

.monkey-multisubscribe {
  float: left;
  width: 49%;
  font-family: allerregular;
  color: #383838;
  font-size: 14px;
  margin-top: 30px;
}

#opc-review.active .step {
  border-bottom: 1px solid #d0d0d0;
}

#checkout-review-submit {
  float: right;
  width: 49%;
  font-family: allerlight_italic;
  color: #383838;
  font-size: 13px;
}
#checkout-review-submit .checkout_terms_condition {
  display: inline-block;
  padding: 12px 0;
}
#checkout-review-submit .terms_condition {
  color: #5ebad8;
}
#checkout-review-submit .place_order_btn {
  background: #282828;
  width: 100%;
}
#checkout-review-submit .place_order_btn span {
  font-family: allerbold;
  font-size: 17px;
  font-weight: normal;
}
#checkout-review-submit .place_order_btn:hover {
  background: #505050;
}

.monkey-additional-lists li label {
  display: none;
}

.payment_info_line .input-box .selectboxit-container *,
#checkoutSteps .wide .input-box .selectboxit-container * {
  font-family: allerlight_italic;
  color: #9d9d9d;
}

#opc-review .order-review .data-table.linearize-table .subtotal,
#opc-review .order-review .data-table.linearize-table .product-cart-actions {
  text-align: center;
}

/***/
@media only screen and (min-width: 1px) and (max-width: 770px) {
  #opc-review #checkout-progress-wrapper {
    display: none;
  }
}
@media only screen and (min-width: 1px) and (max-width: 500px) {
  .monkey-multisubscribe,
  #checkout-review-submit {
    width: 100%;
  }

  #checkout-payment-method-load.sp-methods dl dd ul li .name_of_the_card,
  #checkout-payment-method-load.sp-methods dl dd ul li .card_type,
  #checkout-payment-method-load.sp-methods dl dd ul li .expiration_date {
    width: 100%;
  }

  #checkout-payment-method-load.sp-methods dl dd ul li .card_number,
  #checkout-payment-method-load.sp-methods dl dd ul li .name_of_the_card .v-fix,
  #checkout-payment-method-load.sp-methods dl dd ul li.transact_cc_type_cvv_div .input-box .v-fix,
  #checkout-payment-method-load.sp-methods dl dd ul li .expiration_date .v-fix {
    width: 100%;
    margin: 0 0 10px 0;
  }

  .sp-methods input.cvv {
    width: 100%;
  }

  .sp-methods .cart_note {
    margin: 40px 10px 0 0;
    width: 100%;
  }

  #checkout-step-review .opc-block-progress {
    background: none;
    padding: 0;
  }

  .linearize-table tfoot.totle_msg tr td.r_right,
  .linearize-table tfoot.totle_msg tr td.l_left {
    width: 100%;
    padding: 0;
  }
  .linearize-table tfoot.totle_msg tr td.r_right table,
  .linearize-table tfoot.totle_msg tr td.l_left table {
    width: 100%;
  }
  .linearize-table tfoot.totle_msg tr td.r_right table tr.even.last,
  .linearize-table tfoot.totle_msg tr td.l_left table tr.even.last {
    border: 0;
  }
  .linearize-table tfoot.totle_msg tr td.r_right table .a-right.last,
  .linearize-table tfoot.totle_msg tr td.l_left table .a-right.last {
    padding-top: 10px;
    text-align: right;
  }

  .sp-methods .cart_note {
    margin: 10px 10px 10px 0;
  }

  #checkout-payment-method-load.sp-methods dl .payment_info_line .v-middle {
    right: 0;
    width: 100px;
  }

  .checkout-onepage-index .opc #opc-login .step .col-2 {
    padding: 0;
    border: 0;
  }
  .checkout-onepage-index .opc #opc-login .step .col-2 h3 {
    margin: 20px 0 10px 0;
  }

  #opc-shipping .step .form-list .scaffold-form ul .fields .field,
  #opc-billing .step .form-list .scaffold-form ul .fields .field {
    width: 100%;
  }

  .linearize-table tfoot.totle_msg tr td.r_right .totle_note,
  .linearize-table tfoot.totle_msg tr td.l_left .totle_note,
  .linearize-table tbody tr,
  .linearize-table thead .first {
    border: 0;
  }

  .opc .section .step-title .number,
  .opc .section.allow.active .step-title .number,
  .no-touch .opc .section.allow:hover
  .step-title .number,
  .opc .section .step-title h2 {
    font-family: allerbold;
    font-size: 13px;
  }

  .linearize-table tfoot.totle_msg tbody,
  .linearize-table tfoot.totle_msg tfoot,
  .linearize-table tfoot.totle_msg thead {
    border-bottom: none;
  }

  .opc #opc-login .step .col-1 .buttons-set {
    padding: 0;
  }
}
@media only screen and (min-width: 1px) and (max-width: 600px) {
  #opc-review .order-review .data-table.linearize-table .product-cart-info,
  #opc-review .order-review .data-table.linearize-table .product-cart-price,
  #opc-review .order-review .data-table.linearize-table .product-cart-total,
  #opc-review .order-review .data-table.linearize-table .subtotal,
  #opc-review .order-review .data-table.linearize-table .product-cart-actions {
    text-align: left;
    float: right;
    width: 70%;
    padding-left: 10px;
  }

  #opc-review .order-review .data-table.linearize-table tr {
    clear: both;
  }

  #opc-review .order-review .data-table.linearize-table tbody td.subtotal {
    display: none;
  }

  #opc-review .order-review .data-table.linearize-table .product-cart-image {
    float: left;
    padding-bottom: 0;
    width: 30%;
  }
  #opc-review .order-review .data-table.linearize-table .product-cart-image img {
    width: 100%;
    height: auto;
  }
}
/* ============================================ *
 * Checkout - Success
 * ============================================ */
.checkout-onepage-success .col-main {
  padding: 0;
  text-align: center;
}
.checkout-onepage-success .buttons-set {
  margin: 10px 0;
  text-align: center;
}
.checkout-onepage-success .buttons-set button {
  float: none;
}

/* Clears */
.clearfix:after,
.configurable-swatch-list:after,
.product-view .product-options .swatch-attr:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden;
}

.product-view .product-options .swatch-attr {
  float: none;
  display: block;
  clear: both;
  border: 0;
}

.product-view .product-options dt.swatch-attr label {
  display: block;
  line-height: 1.3;
}

/* General Swatch Styling */
.configurable-swatch-list {
  margin-left: -3px;
  zoom: 1;
  clear: both;
}

.configurable-swatch-list li {
  float: left;
  zoom: 1;
  margin: 0 0 0 3px;
}

#narrow-by-list dd .configurable-swatch-list li {
  margin: 0 0 0 3px;
  width: 47%;
}

.swatch-link img {
  border-radius: 3px;
}

.swatch-link,
.swatch-label {
  display: block;
  border-radius: 3px;
  font-size: 14px;
  text-align: center;
  color: #666666;
  text-decoration: none;
  box-sizing: content-box;
}

.swatch-link {
  border: 1px solid #bbbbbb;
  margin: 0 0 3px;
}

#narrow-by-list dd .swatch-link {
  float: left;
  margin-right: 2px;
  padding: 0;
}

.currently .swatch-link {
  display: inline-block;
  margin: 0 0 0 10px;
}

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

.swatch-link:hover {
  cursor: pointer;
}

.currently .swatch-link:hover {
  cursor: default;
}

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

.configurable-swatch-list .not-available .x {
  display: block;
}

.configurable-swatch-list .not-available .swatch-link {
  border-color: #e6e6e6;
  position: relative;
}

.configurable-swatch-list .not-available .swatch-label {
  color: #aaa;
  background: #fff;
}

/* Image Swatches */
.swatch-link.has-image .swatch-label {
  position: relative;
}

.swatch-link.has-image img {
  position: absolute;
  top: 0;
  left: 0;
}

.configurable-swatch-list .not-available .swatch-link.has-image img {
  opacity: 0.4;
  filter: alpha(opacity=40);
}

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

.currently .swatch-link:hover {
  border-color: #bbbbbb;
}

.configurable-swatch-list .wide-swatch .swatch-label {
  padding: 0 6px;
}

.configurable-swatch-box {
  background: none !important;
}

.configurable-swatch-box select.swatch-select {
  display: none;
}

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

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

.product-view .add-to-cart button.out-of-stock {
  background-position: -80px -362px;
  cursor: default;
}

.product-view .product-options dd .input-box {
  width: auto;
  height: auto;
}

.product-options .select-label {
  display: none;
}

.product-options dt.swatch-attr label,
.product-options dt.swatch-attr .select-label {
  font-size: 12px;
}

.product-options dt.swatch-attr .select-label {
  display: inline;
  font-weight: normal;
  color: #00acb1;
  padding-left: 5px;
}

/* ============================================ *
 * Customer
 * ============================================ */
.customer-account-login {
    /*@include bp(min-width, $bp-medium) {
        .col2-set {
            .col-1 {
                border: 1px solid $c-module-border-light;
                width: 48%;
                padding: 0px 20px 20px 20px;
            }

            .col-2 {
                padding-left: $trim * 2;
                border: 1px solid $c-module-border-light;
                width: 48%;
                padding: 0px 20px 20px 20px;
            }
        }
    }*/
}
.customer-account-login .scaffold-form label:first-child {
  width: 115px;
}
.customer-account-login .col2-set .col-1,
.customer-account-login .col2-set .col-2 {
  padding-top: 0;
  margin-top: 20px;
}
.customer-account-login .col2-set .col-1 {
  padding-right: 20px;
}
.customer-account-login .col2-set .col-2 {
  padding-left: 20px;
  border-left: 1px solid #EDEDED;
}
.customer-account-login .col2-set .col-1 {
  padding-right: 0;
}
.customer-account-login .col2-set .col-2 {
  padding-left: 60px;
  border-left: 1px solid #EDEDED;
}
.customer-account-login .col2-set .col-1 {
  /*border: 1px solid $detail_line;*/
  width: 48%;
  /*padding: 0px 20px 20px 20px;*/
}
.customer-account-login .col2-set .col-2 {
  /*padding-left: $trim * 2;*/
  padding-left: 40px;
  /*border: 1px solid $detail_line;*/
  width: 48%;
  /*padding: 0px 20px 20px 20px;*/
}
.customer-account-login .col2-set .col-1, .customer-account-login .col2-set .col-2 {
  margin: 0;
  min-height: 406px;
  position: relative;
}
.customer-account-login .col2-set .col-1 .forgot_password, .customer-account-login .col2-set .col-2 .forgot_password {
  color: #5ebad8;
  font-size: 14px;
  font-family: allerregular;
}
.customer-account-login .col2-set .col-1 .forgot_password:hover, .customer-account-login .col2-set .col-2 .forgot_password:hover {
  color: #4b95ad;
  text-decoration: none;
}
.customer-account-login .col2-set .col-1 h2, .customer-account-login .col2-set .col-2 h2 {
  color: #fff;
  background: #5ebad8;
  height: 53px;
  line-height: 53px;
  font-family: allerlight;
  margin-bottom: 23px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: normal;
  padding: 0 20px;
  /*margin-left: -20px;
  margin-right: -20px;*/
}
.customer-account-login .col2-set .col-1 .form-instructions, .customer-account-login .col2-set .col-2 .form-instructions {
  color: #666459;
  font-style: normal;
  font-family: allerregular;
  font-weight: normal;
  font-size: 14px;
}
.customer-account-login .col2-set .col-1 .form-list li label, .customer-account-login .col2-set .col-2 .form-list li label {
  font-family: allerregular;
  font-weight: normal;
  font-size: 14px;
  color: #383838;
}
.customer-account-login .col2-set .col-1 .form-list li .input-box .input-text, .customer-account-login .col2-set .col-2 .form-list li .input-box .input-text {
  border-color: #d0d0d0;
  color: #9d9d9d;
  font-family: allerlight_italic;
  font-size: 12px;
  height: 40px;
  /*line-height: 40px;*/
  width: 100%;
}
.customer-account-login .col2-set .buttons-set {
  text-align: left;
  border-top: 0;
}
.customer-account-login .col2-set .buttons-set button,
.customer-account-login .col2-set .buttons-set .button {
  float: none;
  min-width: 50%;
  margin: 0;
  background: #5ebad8;
  color: #fff;
  font-family: allerbold;
  font-size: 14px;
  font-weight: normal;
  min-width: 200px;
  padding: 13px 10px 13px;
  border: none;
}
.customer-account-login .col2-set .buttons-set button:hover,
.customer-account-login .col2-set .buttons-set .button:hover {
  background: #1697ca;
}
.customer-account-login .col2-set .col-1 ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0 20px 0;
}

.customer-address-form.customer-account .selectboxit-container {
  width: 46.4%;
}

.customer-account-create .scaffold-form label:first-child {
  width: 140px;
}
.customer-account-create .additional_info .amasty_customattribute .field-row.skin_type,
.customer-account-create .additional_info .amasty_customattribute .field-row.other_brand {
  float: left;
  width: 48%;
  /*clear:both;*/
}
.customer-account-create .additional_info .amasty_customattribute .field-row.skin_type .input-text,
.customer-account-create .additional_info .amasty_customattribute .field-row.other_brand .input-text {
  width: 100%;
  height: 37px;
}
.customer-account-create .additional_info .amasty_customattribute .field-row.skin_type label,
.customer-account-create .additional_info .amasty_customattribute .field-row.other_brand label {
  font-size: 13px;
  font-family: allerregular;
}
.customer-account-create .additional_info .amasty_customattribute .field-row.are_using {
  float: right;
  width: 48%;
}
.customer-account-create .additional_info .amasty_customattribute .field-row.are_using label {
  font-size: 13px;
  font-family: allerregular;
}

.opc #opc-login p:not(.required) {
  /*font-style: italic;
  font-family: $f-stack-serif;
  font-size: $f-size-s;
  color: $c-text-gray;*/
}

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

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

.additional_info .customer_dob {
  width: 48%;
  float: left;
}
.additional_info .customer_dob .dob-month, .additional_info .customer_dob .dob-day, .additional_info .customer_dob .dob-year {
  width: 20%;
}
.additional_info .customer_gender {
  width: 48%;
  float: right;
}
.additional_info .amasty_customattribute {
  width: 80%;
  float: left;
}
.additional_info .amasty_customattribute .field-row label {
  font-size: 15px;
  padding: 10px 0 7px;
  font-family: allerbold;
  font-weight: normal;
  width: 100%;
}
.additional_info .amasty_customattribute .amorderattr_img_checkbox {
  width: 33%;
  font-family: allerregular;
}
.additional_info .amasty_customattribute .amorderattr_img_checkbox label {
  font-family: allerregular !important;
  width: auto !important;
}

.customer-account-create {
  /*.buttons-set {
      max-width: 455px;
  }*/
}
.customer-account-create .fieldset,
.customer-account-create .buttons-set {
  margin-left: 0;
}
.customer-account-create .fieldset {
  display: inline-block;
  position: relative;
}
.customer-account-create .fieldset p.required {
  position: absolute;
  right: 0;
  top: 0;
}
.customer-account-create .fieldset .form-list .input-text {
  width: 100%;
  height: 40px;
  /*line-height: 42px;*/
  font-size: 14px;
  font-family: allerregular;
}
.customer-account-create .fieldset .form-list .control {
  margin-top: 0;
}
.customer-account-create .fieldset .form-list .control,
.customer-account-create .fieldset .form-list .fields {
  width: 100%;
  float: left;
}
.customer-account-create .fieldset .form-list .control .icon-head.head-edit-form.fieldset-legend,
.customer-account-create .fieldset .form-list .fields .icon-head.head-edit-form.fieldset-legend {
  display: none;
}
.customer-account-create .fieldset .form-list .control .field-row .input-text,
.customer-account-create .fieldset .form-list .fields .field-row .input-text {
  /*width: 46%;*/
}
.customer-account-create .fieldset .form-list .control .label,
.customer-account-create .fieldset .form-list .fields .label {
  color: red;
}
.customer-account-create .fieldset .form-list .control .password,
.customer-account-create .fieldset .form-list .control .name-firstname,
.customer-account-create .fieldset .form-list .fields .password,
.customer-account-create .fieldset .form-list .fields .name-firstname {
  width: 48%;
  float: left;
}
.customer-account-create .fieldset .form-list .control .confirm_password,
.customer-account-create .fieldset .form-list .control .name-lastname,
.customer-account-create .fieldset .form-list .fields .confirm_password,
.customer-account-create .fieldset .form-list .fields .name-lastname {
  width: 48%;
  float: right;
}
.customer-account-create .fieldset .hidden {
  display: none;
}
.customer-account-create #remember-me-popup {
  max-width: 455px;
}
.customer-account-create .form-instructions {
  color: #666459;
  font-family: allerregular;
  font-weight: normal;
  font-size: 14px;
  font-style: normal;
}

.customer-account-forgotpassword .forgotpass_account {
  /*border: 1px solid $detail_line;
  padding: 0 20px 20px 20px;*/
}
.customer-account-forgotpassword .forgotpass_account h2 {
  color: #fff;
  background: #5ebad8;
  height: 53px;
  line-height: 53px;
  font-family: allerlight;
  margin-bottom: 23px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: normal;
  padding: 0 20px;
  /*margin-left: -20px;
  margin-right: -20px;*/
}
.customer-account-forgotpassword .forgotpass_account .form-instructions {
  color: #666459;
  font-style: normal;
  font-family: allerregular;
  font-weight: normal;
  font-size: 14px;
}
.customer-account-forgotpassword .forgotpass_account .form-list li label {
  font-family: allerregular;
  font-weight: normal;
  font-size: 14px;
  color: #383838;
}
.customer-account-forgotpassword .forgotpass_account .form-list li .input-box .input-text {
  border-color: #d0d0d0;
  color: #9d9d9d;
  font-family: allerlight_italic;
  font-size: 12px;
  height: 40px;
  /*line-height: 40px;*/
  width: 100%;
}
.customer-account-forgotpassword .fieldset,
.customer-account-forgotpassword .buttons-set {
  /*margin-left: $trim;*/
  max-width: 100%;
}
.customer-account-forgotpassword .fieldset .input-box input.input-text {
  width: 100%;
}

/* ============================================ *
 * My Account Global Styles
 * ============================================ */
body.customer-account .my-account {
      /*.customer-dob {
        .dob-month,.dob-day,.dob-year {
          width: 20%;
        }

      }*/
  /*.field.name-firstname {
     float: left;
  }
  .field.name-lastname {
     float: right;
  }*/
}
body.customer-account .my-account p.required {
  position: absolute;
  right: 0;
}
body.customer-account .my-account .form-list li label {
  font-size: 14px;
  font-family: allerregular;
  font-weight: normal;
}
body.customer-account .my-account .additional_info .icon-head.head-edit-form.fieldset-legend {
  display: none;
}
body.customer-account .my-account .additional_info .field-row label {
  font-size: 15px;
  padding: 10px 0 7px;
  font-family: allerbold;
}
body.customer-account .my-account .additional_info .field-row.skin_type,
body.customer-account .my-account .additional_info .field-row.other_brand {
  float: left;
  width: 48%;
  clear: both;
}
body.customer-account .my-account .additional_info .field-row.skin_type .input-text,
body.customer-account .my-account .additional_info .field-row.other_brand .input-text {
  width: 100%;
  height: 37px;
}
body.customer-account .my-account .additional_info .field-row.skin_type label,
body.customer-account .my-account .additional_info .field-row.other_brand label {
  font-size: 13px;
  font-family: allerregular;
}
body.customer-account .my-account .additional_info .field-row.are_using {
  float: right;
  width: 48%;
}
body.customer-account .my-account .additional_info .field-row.are_using label {
  font-size: 13px;
  font-family: allerregular;
}
body.customer-account .my-account .input-text {
  border-radius: 0;
  height: 40px;
  /*line-height: 42px;*/
  font-size: 14px;
  font-family: allerregular;
}
body.customer-account .my-account .page-title h1 {
  border: 0;
  text-align: left;
}
body.customer-account .my-account .title-buttons {
  position: relative;
  text-align: right;
}
body.customer-account .my-account .title-buttons .link-reorder,
body.customer-account .my-account .title-buttons .link-print {
  text-transform: uppercase;
  font-family: allerlight;
}
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;
  background: #5ebad8;
  color: #fff;
  border: none;
  padding: 6px 12px 4px 12px;
}
body.customer-account .my-account .title-buttons .button:hover {
  background: #1697ca;
}
body.customer-account .my-account .title-buttons a,
body.customer-account .my-account .title-buttons span.separator {
  position: relative;
  top: -42px;
}
body.customer-account .my-account .fieldset h2,
body.customer-account .my-account .addresses-list h2,
body.customer-account .my-account .order-details h2 {
  width: 100%;
  display: inline-block;
  font-family: allerlight;
  color: #000;
  font-size: 18px;
}
body.customer-account .my-account .order-items.order-details .sub-title {
  float: right;
  width: auto;
  font-size: 14px;
}
body.customer-account .my-account .order-items.order-details .tracking-table {
  margin-bottom: 15px;
}
body.customer-account .my-account .order-items.order-details .data-table {
  margin-top: 0;
}
body.customer-account .my-account .order-items.order-details .data-table .product-name {
  font-family: allerlight;
}
body.customer-account .my-account .order-items.order-details .data-table .item-options {
  margin-left: 0;
  font-family: allerlight;
}
body.customer-account .my-account .order-items.order-details .data-table .item-options dt {
  font-style: normal;
  font-weight: normal;
}
body.customer-account .my-account .order-items.order-details .data-table tfoot {
  border: 1px solid #d0d0d0;
}
body.customer-account .my-account .order-items.order-details p.order-links {
  text-transform: uppercase;
  padding-bottom: 10px;
  font-family: allerlight;
}
body.customer-account .my-account .addresses-list h3 {
  font-size: 14px;
  font-weight: normal;
  font-family: allerlight;
}
body.customer-account .my-account .fieldset {
  /*margin-top: $trim;*/
  /*margin-bottom: $trim;*/
}
body.customer-account .my-account .monkey-multisubscribe {
  margin: 0;
  width: 100%;
}
body.customer-account .my-account .monkey-multisubscribe .buttons-set {
  padding-bottom: 10px;
}
body.customer-account .box-account.box-recent {
  border: none;
}
body.customer-account .data-table {
  margin-top: 20px;
}
body.customer-account .data-table td a {
  font-size: 14px;
  font-family: allerlight;
  text-transform: uppercase;
  font-style: normal;
}
body.customer-account .data-table td em {
  font-style: normal;
}
body.customer-account .sidebar .block ol#compare-items li {
  margin: 10px 0;
}
body.customer-account .sidebar .block .block-content p.block-subtitle {
  margin-bottom: 15px;
  font-family: allerlight;
  text-transform: uppercase;
}
body.customer-account .sidebar .block .block-content .actions {
  margin-top: 30px;
}
body.customer-account .sidebar ol#cart-sidebar-reorder li {
  margin: 0 0px 5px 0;
}
body.customer-account .sidebar ol#cart-sidebar-reorder p.product-name {
  display: inline-block;
  margin-bottom: 0;
}
body.customer-account .sidebar .block-cart .summary {
  margin-bottom: 15px;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li input {
  margin-right: 5px;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder p.product-name {
  display: inline;
  margin-bottom: 0;
  font-family: allerlight;
}
body.customer-account .sidebar .block-reorder .button {
  background: #5ebad8;
  border: 0;
  color: #fff;
}
body.customer-account .sidebar .block-reorder .button span {
  font-family: allerlight;
}
body.customer-account .sidebar .block-reorder .button:hover {
  background: #1697ca;
}

.form-list .customer-dob .validation-advice {
  clear: both;
}
.form-list .customer-dob .dob-month,
.form-list .customer-dob .dob-day {
  /*width: 40px;*/
  float: left;
  margin-right: 10px;
}
.form-list .customer-dob .dob-year {
  /*width: 80px;*/
  float: left;
}

/* ============================================ *
 * Dashboard
 * ============================================ */
.dashboard .welcome-msg p {
  font-size: 14px;
  font-family: allerlight;
}
.dashboard .welcome-msg p strong {
  font-size: 15px;
  font-family: allerlight;
  text-transform: uppercase;
  font-weight: normal;
}
.dashboard .box-head {
  margin-top: 10px;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 5px;
}
.dashboard .box-head h2 {
  font-size: 15px;
  font-family: allerlight;
  font-weight: normal;
  display: inline-block;
  margin-bottom: 0;
  color: #000;
}
.dashboard .box-head a {
  float: right;
  font-size: 14px;
  font-family: allerlight;
}
.dashboard .box-title a,
.dashboard .box-head a {
  text-transform: uppercase;
  font-size: 12px;
}
.dashboard .box-account {
  padding-bottom: 10px;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 20px;
}
.dashboard .box-account p,
.dashboard .box-account address {
  font-size: 14px;
  font-family: allerlight;
}
.dashboard .col2-set .col-1,
.dashboard .col2-set .col-2 {
  padding-right: 12.09677%;
  padding-bottom: 0;
  padding-top: 10px;
}
.dashboard .col2-set .col-1 .box-title,
.dashboard .col2-set .col-2 .box-title {
  position: relative;
  padding-bottom: 10px;
}
.dashboard .col2-set .col-1 .box-title h2,
.dashboard .col2-set .col-1 .box-title h3,
.dashboard .col2-set .col-2 .box-title h2,
.dashboard .col2-set .col-2 .box-title h3 {
  font-weight: normal;
  font-size: 14px;
  font-family: allerlight;
  margin-bottom: 0;
}
.dashboard .col2-set .col-1 .box-title a,
.dashboard .col2-set .col-2 .box-title a {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 10px;
  line-height: 19.6px;
  font-family: allerlight;
}
.dashboard .box-reviews.box-account {
  padding-bottom: 0;
}
.dashboard .box-reviews li {
  padding: 10px 0;
  border-top: 1px solid #EDEDED;
}
.dashboard .box-reviews li:first-child {
  border-top: 0;
}
.dashboard .box-reviews li .number {
  margin-right: -20px;
  float: left;
  font-family: allerregular;
  font-size: 15px;
  line-height: 15px;
}
.dashboard .box-reviews li .details {
  margin-left: 20px;
}
.dashboard .box-reviews li .details .product-name {
  font-family: allerregular;
}
.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: allerregular;
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
  margin-right: 5px;
}
.dashboard .box-reviews li .details .ratings .rating-box {
  float: left;
  margin: 3px 0 0 0;
}

/* ============================================ *
 * Address Book
 * ============================================ */
.pager-no-toolbar .count-container {
  border: none;
}
.pager-no-toolbar .count-container .amount {
  float: left;
  font-size: 14px;
  line-height: 16px;
  border-right: 1px solid white;
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
  width: auto;
}
.pager-no-toolbar .count-container .amount strong {
  font-weight: normal;
}
.pager-no-toolbar .pages {
  margin: 5px 0px 0 10px;
}

.my-account .my-wishlist .buttons-set {
  border: 0;
}
.my-account .my-wishlist .buttons-set.buttons-set2 .button {
  margin-left: 5px;
}
.my-account .product-details {
  float: right;
  width: 60%;
}
.my-account .product-img-box {
  float: left;
  width: 40%;
}
.my-account .additional_info li {
  width: 46%;
}
.my-account .additional_info li.fields {
  width: 100%;
}
.my-account .amorderattr_img_checkbox {
  width: 33%;
  font-family: allerregular;
}
.my-account .addresses-list {
  font-family: allerregular;
}
.my-account .addresses-list .col-1,
.my-account .addresses-list .col-2 {
  padding-bottom: 0;
}
.my-account .addresses-list .item {
  margin: 0 0 20px 0;
}
.my-account .addresses-list .item p {
  margin-top: 10px;
}

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

.order-date {
  font-family: allerregular;
  text-transform: uppercase;
}

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

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

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

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

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

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

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

.box-rewardpoints-history .box-head {
  display: inline-block;
  width: 100%;
}
.box-rewardpoints-history .box-head a {
  float: right;
}
.box-rewardpoints-history .box-head h2 {
  font-size: 15px;
  line-height: 20px;
  font-family: allerregular;
  font-weight: normal;
  display: inline-block;
  margin-bottom: 0;
  display: inline;
}

.box-rewardpoints-summary .rewardpointsrule-rule-name-policy {
  font-style: normal;
}
.box-rewardpoints-summary .box-head h2 {
  font-size: 15px;
  line-height: 20px;
  font-family: allerregular;
  font-weight: normal;
  display: inline-block;
  margin-bottom: 0;
}
.box-rewardpoints-summary .info-summary p {
  padding-bottom: 10px;
  line-height: 22px;
}
.box-rewardpoints-summary .info-summary strong {
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
  font-family: allerregular;
}

.dift_use_account h1,
.gift_purchase_account h1 {
  font-size: 18px;
  line-height: 20px;
  font-family: allerregular;
  font-weight: normal;
  display: inline-block;
  margin: 20px 0 0;
}

.gift_purchase_ordertable .data-table colgroup {
  display: none;
}

.giftcard_table_acc td {
  padding: 4px;
  text-align: left;
  font-size: 14px;
  font-family: allerregular;
}
.giftcard_table_acc td .button {
  float: left;
  height: 35px;
  line-height: 28px;
  background: #5ebad8;
  border: 0;
  color: #fff;
}
.giftcard_table_acc td .button:hover {
  background: #1697ca;
}
.giftcard_table_acc td .input-text {
  float: left;
  height: 35px;
  padding: 0 5px;
  margin: 0 5px 0 0;
}

/***/
@media only screen and (min-width: 1px) and (max-width: 770px) {
  .sidebar .block:not(.block-layered-nav) .block-title.active > strong,
  .sidebar .block:not(.block-layered-nav) .block-title > strong {
    background: #5ebad8;
    border-color: #5ebad8;
    color: #fff;
    font-family: allerbold;
    margin-bottom: 0;
    padding: 12px 10px 11px 12px;
  }

  .block-account .block-content ul li {
    border-color: #5ebad8;
  }

  body.customer-account .my-account .page-title h1 {
    text-align: left;
  }

  .sidebar .block:not(.block-layered-nav) .block-content {
    border-color: #5ebad8;
  }

  .sidebar .block:last-of-type {
    border-bottom-color: #5ebad8;
  }

  .customer-account-create .fieldset p.required,
  body.customer-account .my-account p.required {
    position: relative;
  }

  .rewardpoints-index-transactions .pager,
  .my-account .pager {
    width: 100%;
  }

  body.customer-account .my-account .input-text {
    width: 100%;
  }

  body.customer-account .my-account .selectboxit-container {
    width: 100%;
  }
}
/***/
@media only screen and (min-width: 1px) and (max-width: 500px) {
  /**Login Page***/
  .customer-account-login .col2-set .col-1,
  .customer-account-login .col2-set .col-2 {
    width: 100%;
    padding: 0;
    min-height: 0;
  }

  .customer-account-login .col2-set .col-1 {
    margin-bottom: 20px;
  }

  .additional_info .amasty_customattribute .amorderattr_img_checkbox {
    width: 100%;
  }

  /**Create Account**/
  .customer-account-create .fieldset .form-list .control .password,
  .customer-account-create .fieldset .form-list .control .name-firstname,
  .customer-account-create .fieldset .form-list .fields .password,
  .customer-account-create .fieldset .form-list .fields .name-firstname {
    width: 100%;
  }

  .customer-account-create .fieldset .form-list .control .confirm_password,
  .customer-account-create .fieldset .form-list .control .name-lastname,
  .customer-account-create .fieldset .form-list .fields .confirm_password,
  .customer-account-create .fieldset .form-list .fields .name-lastname {
    width: 100%;
  }

  .additional_info .customer_gender {
    width: 100%;
  }

  .additional_info .customer_dob {
    width: 100%;
  }

  .additional_info .customer_dob .dob-month,
  .additional_info .customer_dob .dob-day,
  .additional_info .customer_dob .dob-year {
    width: 30%;
  }

  .customer-account-create .additional_info .amasty_customattribute .field-row.skin_type,
  .customer-account-create .additional_info .amasty_customattribute .field-row.other_brand,
  .customer-account-create .additional_info .amasty_customattribute .field-row.are_using,
  body.customer-account .my-account .additional_info .field-row.skin_type,
  body.customer-account .my-account .additional_info .field-row.other_brand,
  body.customer-account .my-account .additional_info .field-row.are_using {
    width: 100%;
  }

  /**My Account***/
  body.customer-account .my-account .input-text {
    width: 100%;
  }

  .my-account .additional_info li {
    width: 100%;
  }

  body.customer-account .my-account .buttons-set {
    margin: 0;
    padding: 0;
  }

  body.customer-account .my-account .buttons-set button {
    margin: 5px 0;
  }

  .customer-address-form.customer-account .selectboxit-container {
    width: 100%;
  }

  .giftcard_table_acc td {
    clear: both;
    float: left;
    width: 100%;
  }
  .giftcard_table_acc td .input-text {
    margin-bottom: 10px;
    width: 100%;
  }

  .gift_purchase_ordertable .pager {
    width: 100%;
  }
  .gift_purchase_ordertable .data-table thead th,
  .gift_purchase_ordertable .data-table tbody td {
    white-space: pre-line;
  }

  body.customer-account .my-account .order-items.order-details .sub-title {
    float: left;
  }

  .order-info #order-info-tabs li {
    font-size: 13px;
    margin: 0 3px;
    text-transform: uppercase;
  }

  #recent-transactions-history.data-table td h2 {
    margin-left: 150px;
  }

  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;
  }
}
@media only screen and (min-width: 1px) and (max-width: 600px) {
  .data-table thead th,
  .data-table tbody td,
  .linearize-table-large tbody tr {
    border-bottom: 0;
  }

  .linearize-table-large tbody td[data-rwd-label] {
    text-align: center;
    padding-left: 0px;
  }

  .data-table tbody td {
    font-size: 13px;
    padding: 5px;
    text-align: center;
  }
  .data-table tbody td .item-options dt, .data-table tbody td .item-options dd {
    float: none;
  }

  .my-account .product-img-box,
  .my-account .product-details {
    width: 100%;
  }

  #wishlist-table tbody tr {
    border-bottom: 1px solid #d0d0d0;
  }

  #wishlist-table tbody tr.last {
    border-bottom: 0;
  }

  .my-account .my-wishlist .buttons-set.buttons-set2 .button {
    min-width: 0;
  }
}
/* ============================================ *
 * Contacts
 * ============================================ */
.contacts-index-index .page-title h1,
.contacts-index-index .page-head h1 {
  border: none;
  color: #3399CC;
}
.contacts-index-index .contact-us-container {
  width: 100%;
}
.contacts-index-index .contact-us-container .contact-us-detail {
  float: left;
  width: 50%;
  color: #333333;
  font-family: allerregular;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
}
.contacts-index-index .contact-us-container .contact-us-detail p {
  margin-bottom: 12px;
}
.contacts-index-index .contact-us-container .contact-us-form {
  float: right;
  width: 50%;
  padding-top: 35px;
}
.contacts-index-index .contact-us-container .contact-us-form label {
  font-family: allerlight;
}
.contacts-index-index .contact-us-container .contact-us-form .input-box .input-text {
  width: 100%;
  border-color: #d0d0d0;
  color: #9d9d9d;
  font-family: allerlight_italic;
  font-size: 12px;
  height: 40px;
}
.contacts-index-index .contact-us-container .contact-us-form .input-box .radio {
  top: 2px;
}
.contacts-index-index .buttons-set p.required {
  float: left;
}

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

.bml-ad {
  display: none;
}
.bml-ad.small img {
  margin: auto;
  max-width: 100%;
}

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

/* ============================================ *
 * Review - Customer
 * ============================================ */
#customer-reviews {
  width: auto;
  float: none;
}
#customer-reviews .review-heading {
  /*border-top: 1px solid $c-module-border;*/
  border-bottom: 1px solid #CCCCCC;
  padding: 10px 0 10px;
}
#customer-reviews .review-heading:after {
  content: '';
  display: table;
  clear: both;
}
#customer-reviews .review-heading h2 {
  float: left;
  display: block;
}
#customer-reviews .review-heading .pager {
  clear: none;
  float: right;
  width: auto;
}
#customer-reviews .review-heading .pager .count-container .limiter {
  margin-bottom: 0;
}
#customer-reviews .review-heading .pager .count-container .limiter label {
  font-family: allerlight;
  font-size: 10px;
  text-transform: uppercase;
}
#customer-reviews .review-heading .pager .amount {
  display: none;
}
#customer-reviews h2 {
  color: #1697ca;
  font-size: 18px;
  margin: 0;
  text-transform: none;
  font-family: allerlight;
  font-weight: normal;
}
#customer-reviews h2 span {
  color: #636363;
  font-weight: normal;
}
#customer-reviews h3 {
  font-family: allerlight;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
}
#customer-reviews h3 span {
  color: #1697ca;
}
#customer-reviews .fieldset {
  padding-top: 25px;
  width: 470px;
}
#customer-reviews .fieldset h4 {
  border-bottom: 1px solid #CCCCCC;
  font-family: allerlight;
  font-size: 12px;
  font-weight: normal;
  padding-bottom: 5px;
  text-transform: uppercase;
}
#customer-reviews .fieldset h4 em {
  display: none;
}
#customer-reviews .fieldset .form-list {
  font-family: allerlight;
  font-size: 12px;
  font-weight: normal;
  margin: 10px 0;
  text-transform: uppercase;
  width: 470px;
}
#customer-reviews .fieldset .form-list .inline-label:after {
  content: '';
  display: table;
  clear: both;
}
#customer-reviews .fieldset .form-list label {
  font-size: 12px;
  font-weight: normal;
}
#customer-reviews .fieldset .form-list textarea {
  border: 1px solid #CCCCCC;
  border-radius: 0;
  min-width: 100%;
  -webkit-appearance: none;
}
#customer-reviews .fieldset .form-list input {
  border: 1px solid #CCCCCC;
  border-radius: 0;
}
#customer-reviews .fieldset .form-list input[type="text"] {
  width: 100%;
}
#customer-reviews .buttons-set {
  border: none;
  margin: 0;
  width: 470px;
}
#customer-reviews dl {
  font-family: allerlight;
  font-size: 13px;
  font-weight: normal;
  margin-bottom: 10px;
}
#customer-reviews dl dt {
  margin: 10px 0;
  text-transform: uppercase;
}
#customer-reviews dl dd {
  font-family: allerlight;
  font-size: 14px;
  margin: 10px 0;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #CCCCCC;
}
#customer-reviews dl dd .ratings-table {
  font-family: allerlight;
  font-size: 14px;
  width: 100%;
}
#customer-reviews dl dd .ratings-table tr {
  float: left;
  margin-right: 15px;
}
#customer-reviews dl dd .ratings-table tr th {
  font-size: 13px;
  font-weight: normal;
}
#customer-reviews dl dd table {
  margin: 15px 0;
}
#customer-reviews dl dd .review-meta {
  color: #1697ca;
  font-family: allerlight;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
}

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

/* ============================================ *
 * Ratings - Global
 * ============================================ */
.ratings-table {
  font-family: allerlight;
  font-size: 12px;
  text-transform: uppercase;
}
.ratings-table th {
  padding-right: 10px;
}
.ratings-table .rating-box {
  background: url(../images/rating_star.png) repeat-x;
  background-position: 0 -25px;
  background-repeat: repeat-x;
  height: 18px;
  overflow: hidden;
  text-indent: -9999px;
  width: 128px;
}
.ratings-table .rating-box .rating {
  background: url(../images/rating_star.png) repeat-x;
  background-position: 0 0;
  background-repeat: repeat-x;
  float: left;
  height: 18px;
  text-indent: -9999px;
}

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

/* ============================================ *
 * Slideshow
 * ============================================ */
.slideshow-container {
  position: relative;
  display: block;
  width: 100%;
  margin: 10px 0;
  /*border: 1px solid $c-module-border-light;*/
}
.slideshow-container .slideshow {
  width: 100%;
  padding: 0;
  position: relative;
  margin: 0;
  /*border: 10px solid #FFFFFF;*/
}
.slideshow-container .slideshow > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  display: block;
  margin: 0;
}
.slideshow-container .slideshow > li:first-child {
  position: static;
  z-index: 100;
}
.slideshow-container .slideshow > li img {
  max-width: 100%;
  width: 100%;
}

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

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

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

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

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

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

/* ============================================ *
 * Wishlist
 * ============================================ */
#wishlist-table th {
  text-align: center;
  padding: 10px 20px;
}
#wishlist-table .button {
  background: #5ebad8;
  color: #fff;
  border: none;
  padding: 6px 12px 4px 12px;
}
#wishlist-table .button:hover {
  background: #1697ca;
}
#wishlist-table.clean-table {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  width: 100%;
  border-bottom: 1px solid #C0C0C0;
}
#wishlist-table.clean-table th {
  border-bottom: 1px solid #C0C0C0;
}
#wishlist-table.clean-table td {
  padding: 15px;
  vertical-align: top;
}
#wishlist-table.clean-table thead th {
  font-family: allerregular;
  font-size: 14px;
  text-transform: uppercase;
}
#wishlist-table .product-name {
  font-size: 16px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  /*margin-bottom: 0;*/
  text-transform: none;
}
#wishlist-table .product-name a {
  color: #3399CC;
  font-family: allerregular;
  font-size: 15px;
}
#wishlist-table .wishlist-sku {
  font-size: 11px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin: 5px 0;
}
#wishlist-table textarea {
  border: 1px solid #C0C0C0;
  width: 100%;
  margin-bottom: 5px;
  height: 45px;
  font-size: 11px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
#wishlist-table textarea::-webkit-input-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:-moz-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea::-moz-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:-ms-input-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:focus {
  border: 1px solid #a6a6a6;
}
#wishlist-table .item-manage {
  text-align: right;
  max-width: 450px;
  padding-top: 5px;
}
#wishlist-table .item-manage .button {
  color: #FFFFFF;
  font-size: 11px;
  padding: 3px 5px;
}
#wishlist-table .cart-cell {
  text-align: center;
}
#wishlist-table .cart-cell .special-price {
  padding: 0;
}
#wishlist-table .cart-cell .price {
  font-size: 14px;
  font-family: allerregular;
}
#wishlist-table td.customer-wishlist-item-image {
  width: 113px;
}
#wishlist-table td.customer-wishlist-item-quantity {
  width: 3em;
}
#wishlist-table td.customer-wishlist-item-price {
  width: 120px;
  text-align: center;
}
#wishlist-table td.customer-wishlist-item-cart {
  width: 150px;
}
#wishlist-table td.customer-wishlist-item-cart .button {
  font-size: 12px;
  margin-bottom: 10px;
  padding: 3px 5px;
  width: 100%;
}
#wishlist-table td.customer-wishlist-item-cart .truncated {
  margin-bottom: 10px;
}
#wishlist-table td.customer-wishlist-item-cart > p {
  margin-bottom: 0;
}
#wishlist-table td.customer-wishlist-item-cart .remove-whishlist-item {
  text-align: center;
}
#wishlist-table td.customer-wishlist-item-cart .btn-remove {
  vertical-align: top;
}
#wishlist-table td.customer-wishlist-item-remove {
  width: 20px;
}
#wishlist-table .price-box {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
}
#wishlist-table .price-box .price {
  color: #636363;
}
#wishlist-table .giftregisty-add {
  margin-top: 5px;
}
#wishlist-table .giftregisty-add .change {
  display: none;
}
#wishlist-table .giftregisty-add li {
  cursor: pointer;
  color: #3399CC;
  margin-bottom: 3px;
}
#wishlist-table .truncated .details {
  background: none;
  color: #3399CC;
}

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

/* ============================================ *
 * 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: 7px 0 0 0;
  width: 100%;
}
.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;
}

@media only screen and (min-width: 1px) and (max-width: 500px) {
  .my-account #wishlist-table thead {
    border-top: 1px solid #d0d0d0;
  }
  .my-account #wishlist-table td.customer-wishlist-item-image,
  .my-account #wishlist-table td.customer-wishlist-item-info,
  .my-account #wishlist-table td.customer-wishlist-item-quantity,
  .my-account #wishlist-table td.customer-wishlist-item-price,
  .my-account #wishlist-table td.customer-wishlist-item-cart {
    padding-left: 10px;
    padding-right: 10px;
  }

  #wishlist-table td.customer-wishlist-item-cart .cart-cell,
  #wishlist-table .item-manage .button,
  #wishlist-table td.customer-wishlist-item-cart > p {
    float: none;
    width: 100%;
  }

  #wishlist-table td.customer-wishlist-item-remove {
    right: 10px;
  }
}
/* ============================================ *
 * Checkout - Mini cart
 * ============================================ */
.header-minicart .minicart-message {
  display: block;
  padding: 10px;
}
.header-minicart .minicart-wrapper {
  clear: both;
  position: relative;
}
.header-minicart .minicart-wrapper:before, .header-minicart .minicart-wrapper:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.header-minicart .minicart-wrapper:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
.header-minicart .minicart-wrapper:after {
  background-image: url("../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 .minicart-wrapper .empty {
  padding: 20px 30px 20px 30px;
}
.header-minicart .block-cart {
  display: none;
}
.header-minicart .block-subtitle {
  color: #2a2a2a;
  font-family: allerlight;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.4;
  padding: 23px 25px 10px 25px;
  text-align: left;
  margin-bottom: 0px;
}
.header-minicart .block-subtitle .close {
  width: 40px;
  float: right;
  /*display: block;*/
  display: none;
  color: #636363;
  text-decoration: none;
  font-weight: normal;
  font-size: 30px;
  position: absolute;
  top: -8px;
  right: -3px;
}
.header-minicart .mini-products-list {
  padding: 0 10px 7px;
}
.header-minicart .mini-products-list li {
  padding: 10px 5px 0 11px;
  position: relative;
  margin-bottom: 7px;
}
.header-minicart .mini-products-list li.last {
  border: none;
}
.header-minicart .mini-products-list li .product-details {
  position: relative;
  margin-left: 88px;
}
.header-minicart .product-details .product-name {
  padding-top: 0px;
  font-size: 16px;
  margin-bottom: 12px;
  color: #5ebad8;
  text-transform: none;
}
.header-minicart .product-details .product-name a {
  color: #5ebad8;
  text-transform: none;
  font-family: allerlight;
}
.header-minicart .info-wrapper {
  margin-bottom: 0.5em;
  line-height: 8px;
  font-family: allerlight;
  font-size: 16px;
}
.header-minicart .info-wrapper th {
  padding-right: 10px;
}
.header-minicart .info-wrapper td {
  color: #3399CC;
  clear: right;
}
.header-minicart .info-wrapper .price {
  font-family: allerlight;
}
.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: 30px;
}
.header-minicart .info-wrapper .quantity-button {
  opacity: 0;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -moz-transition-duration: 100ms;
  -o-transition-duration: 100ms;
  -webkit-transition-duration: 100ms;
  transition-duration: 100ms;
}
.header-minicart .info-wrapper .quantity-button[disabled] {
  cursor: default;
}
.header-minicart .info-wrapper .quantity-button.visible {
  opacity: 1;
}
.header-minicart .block-content {
  margin-top: 0;
}
.header-minicart .subtotal {
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  text-align: left;
  padding: 8px 0 5px 82px;
  margin: 0 26px;
  line-height: 2em;
  font-family: allerlight;
  font-size: 16px;
}
.header-minicart .subtotal .label {
  color: #505050;
}
.header-minicart .subtotal .price {
  color: #3399CC;
  font-family: allerlight;
}
.header-minicart .minicart-actions {
  padding: 0;
  text-align: right;
  margin: 15px 26px 8px 26px;
  overflow: hidden;
  position: relative;
}
.header-minicart .minicart-actions .edit-button {
  min-width: 129px;
  margin: 0 41px 0 0;
  border-color: #68b8d9;
  color: #68b8d9;
  background: #fff;
  font-family: allerlight;
  font-weight: normal;
}
.header-minicart .minicart-actions .edit-button:hover {
  color: #fff;
  background: #68b8d9;
}
.header-minicart .minicart-actions .checkout-button {
  min-width: 129px;
  font-family: allerlight;
  font-weight: normal;
  color: #fff;
  background: #68b8d9;
  border-color: #68b8d9;
}
.header-minicart .minicart-actions .checkout-button:hover {
  color: #68b8d9;
  background: #fff;
}
.header-minicart .minicart-actions .cart-link {
  height: 33px;
  line-height: 39px;
  text-transform: uppercase;
  display: block;
  font-size: 13px;
  left: 10px;
  bottom: 17px;
  position: absolute;
}
.header-minicart .minicart-actions .paypal-logo .paypal-or {
  line-height: 1.6;
}
.header-minicart .top-cart-express-delivery {
  background: #e9e9eb;
  padding: 15px 10px 13px 10px;
  text-align: center;
  font-family: allerlight;
  font-size: 15px;
}
.header-minicart #minicart-error-message {
  text-align: center;
  color: red;
  display: none;
}
.header-minicart #minicart-success-message {
  text-align: left;
  color: green;
  padding: 20px 10px 0px 20px;
  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;
}

/* ============================================ *
 * Search - Auto Suggest
 * ============================================ */
.search-autocomplete {
  left: 0 !important;
  overflow: visible !important;
  position: relative !important;
  top: 15px !important;
  width: 100% !important;
  z-index: 9998;
}
.search-autocomplete ul {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: #FFFFFF;
  border: 1px solid #3399CC;
  left: 0;
  padding-left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.search-autocomplete ul li {
  border-bottom: 1px solid #F4F4F4;
  color: #3399CC;
  cursor: pointer;
  font-size: 12px;
  padding: 11px 6px 0;
  float: left;
  font-family: allerregular;
  text-align: left;
  width: 100%;
}
.search-autocomplete ul li:hover {
  color: #2e8ab8;
}
.search-autocomplete ul li.selected {
  background-color: #3399CC;
  color: white;
}
.search-autocomplete ul li .amount {
  float: right;
  font-weight: bold;
  width: auto;
}
.search-autocomplete ul li:last-child {
  border-bottom: none;
}
.search-autocomplete:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #3399CC;
  border-top: none;
  left: 50%;
  top: -7px;
}

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

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

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

/* ============================================ *
 * CMS Pages
 * ============================================ */
.cms-page-view .page-title h1,
.cms-page-view .page-head h1,
.cms-no-route .page-title h1,
.cms-no-route .page-head h1 {
  border: none;
  color: #3399CC;
}
.cms-page-view .std,
.cms-no-route .std {
  color: #333333;
  font-family: allerregular;
  font-size: 14px;
  line-height: 22px;
  text-align: justify;
}
.cms-page-view .std img,
.cms-no-route .std img {
  max-width: 100%;
}
.cms-page-view .std p,
.cms-no-route .std p {
  margin-bottom: 12px;
}
.cms-page-view .std a,
.cms-no-route .std a {
  text-decoration: underline;
}
.cms-page-view .std h3,
.cms-no-route .std h3 {
  margin-bottom: 0px;
  text-transform: none;
  font-family: allerregular;
  font-weight: 700;
  font-size: 16px;
  color: #333333;
}
.cms-page-view .std li,
.cms-no-route .std li {
  margin-bottom: 8px;
}
.cms-page-view .std strong,
.cms-no-route .std strong {
  font-weight: 700;
}
.cms-page-view .std .shipping-table,
.cms-no-route .std .shipping-table {
  border: 1px solid #ccc;
}
.cms-page-view .std .shipping-table tr.table-heading,
.cms-no-route .std .shipping-table tr.table-heading {
  background: #F4F4F4;
}
.cms-page-view .std .shipping-table td,
.cms-no-route .std .shipping-table td {
  padding: 5px 10px;
  border: 1px solid #ccc;
}
.cms-page-view .std .testimonials ul,
.cms-no-route .std .testimonials ul {
  padding: 0px;
  list-style: none;
}
.cms-page-view .std .testimonials li,
.cms-no-route .std .testimonials li {
  list-style: none;
  margin: 0 0 10px;
  padding: 0 0 10px;
  border-bottom: 1px solid #d0d0d0;
}
.cms-page-view .std .testimonials span.name,
.cms-no-route .std .testimonials span.name {
  font-weight: bold;
}
.cms-page-view .std .testimonials span.date,
.cms-no-route .std .testimonials span.date {
  font-weight: bold;
}
.cms-page-view .std .testimonials span.date:before,
.cms-no-route .std .testimonials span.date:before {
  content: "(";
}
.cms-page-view .std .testimonials span.date:after,
.cms-no-route .std .testimonials span.date:after {
  content: ")";
}
.cms-page-view .col-left:after,
.cms-no-route .col-left:after {
  content: '';
  display: table;
  clear: both;
}

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

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

#accordion .toggle-tabs {
  display: none;
}
#accordion > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: allerregular;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  color: #939393;
  font-family: Arial;
  font-size: 13px;
  margin-bottom: 1px;
  padding: 12px 10px 11px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #F0F0F0;
  position: relative;
  background-color: #F0F0F0;
  display: block;
}
#accordion > dl > dt:after {
  /*left: 10px;*/
  /*top: 50%;*/
  /*margin-top: -3px;*/
}
#accordion > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #F0F0F0;
}
#accordion > dl > dd:last-child {
  border-width: 0 1px 1px 1px;
}
#accordion li {
  position: relative;
  overflow: hidden;
}
#accordion li .plusimage h2 {
  margin-right: 10px;
}

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

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

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

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

// ----------------------------------------------
*/
.giftcard-fieldset textarea {
  width: 100%;
  height: 100px;
  border: 1px solid silver;
}

.giftcard-fieldset label em {
  color: #EB340A;
  margin-right: 2px;
}

.giftcard-fieldset .field {
  margin-top: 6px;
}

.giftcard-fieldset .field.from-name,
.giftcard-fieldset .field.to-name,
.giftcard-fieldset .field.mail-to {
  width: 48%;
  float: left;
}
.giftcard-fieldset .field.from-name input,
.giftcard-fieldset .field.to-name input,
.giftcard-fieldset .field.mail-to input {
  width: 100%;
  height: 37px;
}
.giftcard-fieldset .field.to-name {
  float: right;
}

.giftcard-fieldset .email-date input {
  width: 100px;
}

.preview-gift-card {
  margin: 15px 0px 0px;
  text-transform: uppercase;
  font-weight: normal;
  text-align: right;
  float: left;
  width: 100%;
}

.preview-gift-card:after {
  content: '';
  display: table;
  clear: both;
}

.preview-gift-card a {
  color: #ffffff;
  background: #5ebad8;
  font-family: allerlight;
  font-size: 13px;
  padding: 9px 7px 7px;
  text-transform: uppercase;
  display: inline-block;
}

.preview-gift-card a:hover {
  text-decoration: none;
  color: #ffffff;
  background: #1697ca;
}

.product-view .gift-cart-add-to-box .selectboxit-container span, .selectboxit-container .selectboxit-options a {
  height: 44px;
  line-height: 44px;
}

.product-view .gift-cart-add-to-box .selectboxit .selectboxit-arrow-container .selectboxit-arrow {
  top: 39%;
}

.product-view .gift-cart-add-to-box .product-options {
  width: auto;
}

.product-view .gift-cart-add-to-box .add-to-cart-buttons {
  float: right;
  width: 235px;
  margin-top: 0;
}

.product-view .gift-cart-add-to-box .add-to-cart-buttons .button {
  float: right;
  min-width: 235px;
  margin-bottom: 0px;
}

.product-view .product-shop .giftcard-info {
  padding: 0 0 20px;
}

.giftcard-info .field-label {
  margin-top: 6px;
}

.giftcard-payment-method {
  border-bottom: 1px solid #e4e4e4;
}

.giftcard-payment-method .buttons-set {
  border-top: none;
  padding-top: 6px;
  padding-bottom: 3px;
}

.view_gift_name_box {
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 15px;
  margin-bottom: 10px;
}

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

.from-name, .mail-to {
  float: left;
  margin-bottom: 10px;
}

.to-name {
  float: right;
  margin-bottom: 10px;
}

.gift-message {
  width: 100%;
  clear: both;
}

@media only screen and (min-width: 1px) and (max-width: 770px) {
  .product-view .gift-cart-add-to-box .add-to-cart-buttons {
    float: right;
    width: 48%;
    margin-top: 0;
  }

  .product-view .gift-cart-add-to-box .add-to-cart-buttons .button {
    min-width: 100%;
  }
}
@media only screen and (min-width: 1px) and (max-width: 600px) {
  .giftcard-fieldset .field.from-name,
  .giftcard-fieldset .field.to-name,
  .giftcard-fieldset .field.mail-to {
    width: 100%;
    float: left;
  }
  .giftcard-fieldset .preview-gift-card a {
    width: 100%;
    text-align: center;
  }

  .product-view .gift-cart-add-to-box .add-to-cart-buttons {
    width: 100%;
    margin-top: 10px;
  }
}
/* ============================================ *
 * Pricing Conditions
 * ============================================ */
.price-box.map-info .old-price {
  display: none;
}
.price-box .minimal-price-link .label {
  color: #CF5050;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

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

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