@charset "UTF-8";
/*
// ----------------------------------------------
// 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; }
}

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

// Renders at fixed value
@include fs ($f-size)

// ----------------------------------------------
*/
/*
// ----------------------------------------------
// Usage example:
// use mixins to test whether styles should be applied.
// ----------------------------------------------


// Renders at fixed value
@include margin(0,10px,null,right);

// output:

    margin: 0;
    @media only screen and min-width > 600px {
        margin-right: 10px;
    }

// ----------------------------------------------
*/
/*! 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.nice-select.open,
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;
  color: #fff;
}

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 Fonts
 * ============================================ */
/*@import "https://www.beaconlighting.com.au/skin/frontend/beacon/default/css/compass/css3";*/
/*@import url(https://fonts.googleapis.com/css?family=Lato:400,300,300italic,400italic,700,700italic,900,900italic);*/
@font-face {
  font-family: 'proximanova-semibold';
  src: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-semibold-webfont.eot");
  src: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-semibold-webfont.eot?#iefix") format("embedded-opentype"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-semibold-webfont.woff") format("woff"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-semibold-webfont.ttf") format("truetype"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-semibold-webfont.svg#proximanova-semibold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'proximanova-regular';
  src: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-regular-webfont.eot");
  src: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-regular-webfont.eot?#iefix") format("embedded-opentype"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-regular-webfont.woff") format("woff"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-regular-webfont.ttf") format("truetype"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-regular-webfont.svg#proximanova-regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'proximanova-thin';
  src: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-thin-webfont.eot");
  src: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-thin-webfont.eot?#iefix") format("embedded-opentype"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-thin-webfont.woff") format("woff"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-thin-webfont.ttf") format("truetype"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-thin-webfont.svg#proximanova-thin") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'proximanova-light';
  src: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-light-webfont.eot");
  src: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-light-webfont.eot?#iefix") format("embedded-opentype"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-light-webfont.woff") format("woff"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-light-webfont.ttf") format("truetype"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-light-webfont.svg#proximanova-light") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'proximanova-bold';
  src: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-bold-webfont.eot");
  src: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-bold-webfont.eot?#iefix") format("embedded-opentype"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-bold-webfont.woff") format("woff"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-bold-webfont.ttf") format("truetype"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanova-bold-webfont.svg#proximanova-bold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'proximanovacond-semibold';
  src: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanovacond-semibold-webfont.eot");
  src: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanovacond-semibold-webfont.eot?#iefix") format("embedded-opentype"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanovacond-semibold-webfont.woff2") format("woff2"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanovacond-semibold-webfont.woff") format("woff"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanovacond-semibold-webfont.ttf") format("truetype"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/proximanova/proximanovacond-semibold-webfont.svg#proximanovacond-semibold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'AustinItalic';
  src: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/austin/AustinItalic.eot");
  src: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/austin/AustinItalic.eot") format("embedded-opentype"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/austin/AustinItalic.woff2") format("woff2"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/austin/AustinItalic.woff") format("woff"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/austin/AustinItalic.ttf") format("truetype"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/austin/AustinItalic.svg#AustinItalic") format("svg");
}
@font-face {
  font-family: 'helvetica-light';
  src: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/helvetica/helvetica-light-webfont.eot");
  src: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/helvetica/helvetica-light-webfont.eot?#iefix") format("embedded-opentype"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/helvetica/helvetica-light-webfont.woff2") format("woff2"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/helvetica/helvetica-light-webfont.woff") format("woff"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/helvetica/helvetica-light-webfont.ttf") format("truetype"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/helvetica/helvetica-light-webfont.svg#helvetica-light") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'beacon-icon-fontello';
  src: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/iconfont/beacon-icon-fontello.eot?47381706");
  src: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/iconfont/beacon-icon-fontello.eot?47381706#iefix") format("embedded-opentype"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/iconfont/beacon-icon-fontello.woff?47381706") format("woff"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/iconfont/beacon-icon-fontello.ttf?47381706") format("truetype"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/iconfont/beacon-icon-fontello.svg?47381706#beacon-icon-fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* ============================================ *
 * Icon fontello - Beacon Icons
 * ============================================ */
@font-face {
  font-family: 'beacon-icon-fontello';
  src: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/iconfont/beacon-icon-fontello.eot?64278242");
  src: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/iconfont/beacon-icon-fontello.eot?64278242#iefix") format("embedded-opentype"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/iconfont/beacon-icon-fontello.woff?64278242") format("woff"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/iconfont/beacon-icon-fontello.ttf?64278242") format("truetype"), url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/fonts/iconfont/beacon-icon-fontello.svg?64278242#beacon-icon-fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'beacon-icon-fontello';
    src: url('https://www.beaconlighting.com.au/skin/frontend/beacon/default/font/beacon-icon-fontello.svg?64278242#beacon-icon-fontello') format('svg');
  }
}
*/
.icon-type, .icon-tick:before, .breadcrumbs a:after, .nice-select:after, #cboxPrevious,
#cboxNext, .cboxClose,
#cboxClose, .skip-links a.skip-account:before, .skip-links a.skip-cart:before, .skip-links a.store-locations-link:before, .skip-links a.skip-account:after, #header-account ul:after, #header-account ul li:before, .footer-links .footer-container .sidebar .block:not(.block-layered-nav) h2:after, .footer-links .footer-container .sidebar .block:not(.block-layered-nav) h2.active:after,
.footer-links .footer-container .sidebar .block:not(.block-layered-nav) .block-title:after,
.footer-links .footer-container .sidebar .block:not(.block-layered-nav) .block-title.active:after, .link-wishlist:before, .link-specsheet:before, .link-compare:before, .rating:after, .rating:before, .pages .next:before, .pages .previous:before, input[type="checkbox"] + label:before,
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "beacon-icon-fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-location_icon:before {
  content: '\e800';
}

.icon-account_icon:before {
  content: '\e801';
}

.icon-cart_icon:before {
  content: '\e802';
}

.icon-truck_icon:before {
  content: '\e803';
}

.icon-returns_icon:before {
  content: '\e804';
}

.icon-light_icon:before {
  content: '\e805';
}

.icon-appsocial_icon:before {
  content: '\e806';
}

.icon-facebooksocial_icon:before {
  content: '\e807';
}

.icon-pintrestsocial_icon:before {
  content: '\e808';
}

.icon-instagramsocial_icon:before {
  content: '\e809';
}

.icon-youtubesocial_icon:before {
  content: '\e80a';
}

.icon-clickcollect_icon:before {
  content: '\e80b';
}

.icon-project_icon:before {
  content: '\e80c';
}

.icon-specsheet_icon:before {
  content: '\e80d';
}

.icon-compare_icon:before {
  content: '\e80e';
}

.icon-search_icon:before {
  content: '\e80f';
}

.icon-zoom_icon:before {
  content: '\e810';
}

.icon-check:before {
  content: '\e811';
}

.icon-dot:before {
  content: '\e812';
}

.icon-down-dir:before {
  content: '\e813';
}

.icon-star-empty:before {
  content: '\e814';
}

.icon-star:before {
  content: '\e815';
}

.icon-right-open-big:before, .icon-close:before {
  content: '\e816';
}

.icon-left-open-big:before, .icon-close:after {
  content: '\e817';
}

.icon-down-dir-1:before {
  content: '\e818';
}

.icon-up-dir:before {
  content: '\e819';
}

.icon-left-dir:before {
  content: '\e81a';
}

.icon-right-dir:before {
  content: '\e81b';
}

.icon-down-open-1:before {
  content: '\e81c';
}

.icon-left-open-1:before {
  content: '\e81d';
}

.icon-right-open-1:before {
  content: '\e81e';
}

.icon-up-open-1:before {
  content: '\e81f';
}

.icon-down-open-big:before {
  content: '\e820';
}

.icon-up-open-big:before {
  content: '\e821';
}

.icon-up-open-mini:before {
  content: '\e822';
}

.icon-right-open-mini:before {
  content: '\e823';
}

.icon-left-open-mini:before {
  content: '\e824';
}

.icon-down-open-mini:before {
  content: '\e825';
}

.icon-up-open:before {
  content: '\e826';
}

.icon-right-open:before {
  content: '\e827';
}

.icon-left-open:before {
  content: '\e828';
}

.icon-down-open:before {
  content: '\e829';
}

.icon-left-dir-1:before {
  content: '\e82a';
}

.icon-right-dir-1:before {
  content: '\e82b';
}

.icon-up-dir-1:before {
  content: '\e82c';
}

.icon-trash:before {
  content: '\e82d';
}

.icon-cancel:before {
  content: '\e82e';
}

.icon-menu:before {
  content: '\e82f';
}

.icon-help:before {
  content: '\e830';
}

.icon-mail:before {
  content: '\e831';
}

.icon-close {
  position: relative;
  display: inline-block;
}
.icon-close:before, .icon-close:after {
  font-family: "beacon-icon-fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}
.icon-close:before {
  left: -7px;
}

.icon-tick {
  position: relative;
  display: inline-block;
}
.icon-tick:before {
  content: "\e811";
  border: 1px solid #e7e7e7;
  width: 41px;
  height: 41px;
  line-height: 41px;
  -moz-border-radius: 41px;
  -webkit-border-radius: 41px;
  border-radius: 41px;
  font-size: 25px;
  text-align: center;
  color: #000;
  vertical-align: top;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
}

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

body,
button,
input,
select,
table,
textarea {
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

a {
  color: #0057a3;
  text-decoration: none;
}

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

a:focus {
  outline-color: #606060;
  color: #1a1a1a;
}

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

/* ============================================ *
 * Typography
 * ============================================ */
h1, .h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #000;
  font-family: "proximanova-thin", Verdana, Arial, sans-serif;
  font-size: 48px;
  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: #000;
  font-family: "proximanova-light", Verdana, Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
}

h3, .h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #000;
  font-family: "proximanova-thin", Verdana, Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

h4, .h4 {
  margin: 0;
  margin-bottom: 10px;
  color: #000;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

h5, .h5 {
  margin: 0;
  margin-bottom: 10px;
  color: #000;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

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

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

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

.availability .label {
  display: none;
}

.availability.in-stock {
  color: #4b9427;
}

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

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

/* -------------------------------------------- *
 * Page Titles
 */
.page-title h1,
.page-title h2,
.product-name h1,
.product-name .h1 {
  font-family: "proximanova-thin", Verdana, Arial, sans-serif;
  text-transform: none;
  font-size: 48px;
  color: #fff;
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 6px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 770px) {
  .page-title h1,
  .page-title h2,
  .product-name h1,
  .product-name .h1 {
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 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-bottom: 1px solid #e7e7e7;
}
.block-title h2,
.block-title h3,
.block-title strong {
  margin: 0;
  margin-bottom: 10px;
  color: #000;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  font: 14px "proximanova-semibold", Verdana, Arial, sans-serif;
  color: #000;
  margin-bottom: 5px;
  padding-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 16px;
  display: block;
}
.block-title small {
  font-size: 100%;
  font-weight: normal;
  color: #A0A0A0;
}

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

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

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

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

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

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

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

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

@media only screen and (max-width: 1023px) {
  .sidebar .block:not(.block-layered-nav) {
    margin-bottom: 0;
  }
  .sidebar .block:not(.block-layered-nav) h2,
  .sidebar .block:not(.block-layered-nav) .block-title {
    padding: 0;
    margin-top: 0;
    border-bottom: none;
    border-top: none;
    margin-bottom: 0;
  }
  .sidebar .block:not(.block-layered-nav) h2 > strong,
  .sidebar .block:not(.block-layered-nav) .block-title > strong {
    margin: 0;
    margin-bottom: 10px;
    color: #000;
    font-family: "proximanova-regular", Verdana, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.4;
    text-rendering: optimizeSpeed;
    text-transform: uppercase;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0px;
    padding: 7px 10px;
    border-width: 1px;
    border-style: solid;
    border-color: #e7e7e7;
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
    border-bottom: 0;
  }
  .sidebar .block:not(.block-layered-nav) h2 > strong:after,
  .sidebar .block:not(.block-layered-nav) .block-title > strong:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #666;
    border-right: none;
    right: 10px;
    top: 50%;
    margin-top: -3px;
  }
  .sidebar .block:not(.block-layered-nav) h2 > strong:hover,
  .sidebar .block:not(.block-layered-nav) .block-title > strong:hover {
    background-color: #ededed;
  }
  .sidebar .block:not(.block-layered-nav) h2.active > strong,
  .sidebar .block:not(.block-layered-nav) .block-title.active > strong {
    margin: 0;
    margin-bottom: 10px;
    color: #000;
    font-family: "proximanova-regular", Verdana, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.4;
    text-rendering: optimizeSpeed;
    text-transform: uppercase;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0px;
    padding: 7px 10px;
    border-width: 1px;
    border-style: solid;
    border-color: #e7e7e7;
    position: relative;
  }
  .sidebar .block:not(.block-layered-nav) h2.active > strong:after,
  .sidebar .block:not(.block-layered-nav) .block-title.active > strong:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #666;
    border-bottom: none;
    right: 10px;
    top: 50%;
    margin-top: -3px;
  }
  .sidebar .block:not(.block-layered-nav) h2.active > strong:hover,
  .sidebar .block:not(.block-layered-nav) .block-title.active > strong:hover {
    background-color: #ededed;
  }
  .sidebar .block:not(.block-layered-nav) .block-content {
    padding: 10px;
    margin-top: 0;
    border-width: 0 1px;
    border-style: solid;
    border-color: #e7e7e7;
  }
  .sidebar .block:last-of-type {
    border-bottom: 1px solid #e7e7e7;
  }
}
/* -------------------------------------------- *
 * 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: #666;
}
.block-account li a,
.block-cms-menu li a {
  color: #000;
}
.block-account li a:hover,
.block-cms-menu li a:hover {
  color: #666;
}

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

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

/* Primary Buttons */
.button,
.cart-table .product-cart-actions .button,
#co-shipping-method-form .buttons-set .button,
.footer .button {
  background: #0057a3;
  display: inline-block;
  padding: 7px 15px;
  border: 0;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: normal;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
}
.button:hover,
.cart-table .product-cart-actions .button:hover,
#co-shipping-method-form .buttons-set .button:hover,
.footer .button:hover {
  background: #00498a;
  cursor: pointer;
}
.button:active, .button.nice-select.open,
.cart-table .product-cart-actions .button:active,
.cart-table .product-cart-actions .button.nice-select.open,
#co-shipping-method-form .buttons-set .button:active,
#co-shipping-method-form .buttons-set .button.nice-select.open,
.footer .button:active,
.footer .button.nice-select.open {
  background: #003c70;
  color: #FFFFFF;
}
.button:focus,
.cart-table .product-cart-actions .button:focus,
#co-shipping-method-form .buttons-set .button:focus,
.footer .button:focus {
  background-color: #003c70;
  outline: none;
  color: #FFFFFF;
}

a.button {
  text-decoration: none;
}

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

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

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

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

.button2:focus {
  outline: none;
}

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

@media only screen and (max-width: 770px) {
  .col2-set .buttons-set .button,
  .col2-set .buttons-set .button2 {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .col2-set .buttons-set .back-link {
    display: none;
  }
  .col2-set .buttons-set .required {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  .buttons-set .button {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 7px;
  }
  .buttons-set .back-link {
    display: none;
  }
  .buttons-set .required {
    display: none;
  }
}
/* -------------------------------------------- *
 * Paypal Button
 */
.paypal-logo.paypal-after {
  float: left;
}

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

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

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

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

.paypal-button img {
  display: inline;
}

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

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

/* -------------------------------------------- *
 * Icons
 */
.icon-sprite, .btn-remove2, .sorter > .sort-by .sort-by-switcher, .sorter > .view-mode .grid,
.sorter > .view-mode .list, .skip-nav .icon, .skip-cart .icon, .product-view .sharing-links a, .review-summary-table .rating-box .rating-number:after {
  background-image: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/icon_sprite.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 4 / 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .icon-sprite, .btn-remove2, .sorter > .sort-by .sort-by-switcher, .sorter > .view-mode .grid,
  .sorter > .view-mode .list, .skip-nav .icon, .skip-cart .icon, .product-view .sharing-links a, .review-summary-table .rating-box .rating-number:after {
    background-image: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/icon_sprite@2x.png);
    background-size: 100px 1000px;
  }
}
/* -------------------------------------------- *
 * Breadcrumbs
 */
.breadcrumbs {
  overflow: hidden;
  margin: 15px 0;
}

.breadcrumbs li {
  float: left;
  font-size: 12px;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  text-transform: capitalize;
}

.breadcrumbs a {
  float: left;
  color: #7e7e7e;
}
.breadcrumbs a:after {
  content: "\e823";
}

.breadcrumbs a:hover {
  color: #666;
  text-decoration: none;
}
.breadcrumbs a:hover:after {
  color: #7e7e7e;
}

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

.breadcrumbs span {
  float: left;
  padding: 0 7px;
  display: none;
  /* not use span in breadcrumbs for seperate*/
}

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

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

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

.btn-previous:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #666;
  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 #e7e7e7;
  background: #F4F4F4;
}

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

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

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

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

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

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

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

.col-main {
  float: left;
  width: 75%;
}
.col-main img,
.col-main iframe {
  max-width: 100%;
}

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

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

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

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

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

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

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

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

/* -------------------------------------------- *
 * Top Container
 */
@media only screen and (min-width: 771px) {
  .top-container {
    max-width: 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("https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/demo-logo.png");
  background-position: left;
  background-repeat: no-repeat;
}
.global-site-notice p {
  margin-bottom: 0;
}

/* -------------------------------------------- *
 * Promotional Message Banner
 */
.promo-msg {
  color: #000;
  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: #4b9427;
}

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

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

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

.messages li li {
  position: relative;
  margin-bottom: 5px;
  padding: 13px 10px 12px;
  text-align: center;
  /*background: $c-module-background;*/
  font-size: 15px;
}

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

.messages .error-msg li {
  color: #d91414;
  background-color: #fbb9b9;
}

.messages .notice-msg li {
  color: #E26703;
  background-color: #F9EBE6;
}

.messages .success-msg li {
  color: #4b9427;
  background-color: #d5edca;
}

.success-msg {
  color: #4b9427;
  background-color: #d5edca;
}

.error-msg {
  color: #d91414;
  background-color: #fbb9b9;
}

@media only screen and (min-width: 915px) {
  .order-list-grid .col-1 {
    width: 30%;
  }

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

  .order-list-grid .col-3 {
    clear: none;
    width: 20%;
    padding-top: 0;
  }
}
/* -------------------------------------------- *
 * Page Popup
 */
.page-popup {
  padding: 20px;
  background: #FFFFFF;
  height: auto;
}

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

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

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

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

.payment-methods .form-list {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin: 5px 15px 15px;
  padding: 15px;
  border: 1px solid #e7e7e7;
  /*background: $c-module-background;*/
}

/*.payment-methods .form-list:before {
    @include triangle(up, 10px, $c-module-border);
    top: -11px;
    left: 30px;
}

.payment-methods .form-list:after {
    @include triangle(up, 10px, $c-module-background);
    top: -10px;
    left: 30px;
}*/
.payment-methods .form-list li:last-child {
  margin-bottom: 0;
}

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

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

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

.price-notice {
  color: #A0A0A0;
}

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

.price-box .price,
.price {
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
}

.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: #000;
  display: block;
  /* We want this to show on its own line, otherwise the layout looks funky */
}
.price-box .minimal-price-link .label {
  color: #A0A0A0;
}

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

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

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

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

span.weee {
  display: block;
}

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

/* ============================================ *
 * Item Options
 * ============================================ */
.item-options {
  font-size: 14px;
  font-family: "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 #666;
  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 #666;
  border-top: none;
  left: 97px;
  top: -7px;
}

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

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

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

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

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

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

/* -------------------------------------------- *
 * Ratings
 */
.ratings {
  margin: 7px 0;
  /*.rating-box {
      @extend .icon-sprite;
      width: 65px;
      height: 13px;
      background-repeat: repeat-x;
      background-position: 0 -615px;
      overflow: hidden;
  }*/
  /*.rating-box .rating {
      @extend .icon-sprite;
      float: left;
      height: 13px;
      background-repeat: repeat-x;
      background-position: 0 -600px;
  }*/
}
.ratings .rating-box,
.ratings .rating-links {
  margin: 5px 0;
}
.ratings .amount {
  display: block;
  margin: 5px auto;
}
.ratings .rating-links .separator {
  margin: 0 3px;
}

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

.std ol {
  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: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #e7e7e7;
  border-top: 1px solid #e7e7e7;
  padding: 12px 0;
}
.toolbar:after {
  content: '';
  display: table;
  clear: both;
}
.toolbar .pager .pages {
  margin-bottom: 0;
}

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

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

.toolbar,
.pager {
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  color: #000;
  line-height: 42px;
  font-size: 14px;
}

.toolbar label,
.pager-no-toolbar label {
  font-weight: normal;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
}

@media only screen and (max-width: 770px) {
  .toolbar {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.sorter {
  float: left;
  height: 42px;
  line-height: 42px;
}
.sorter .amount {
  float: left;
  line-height: 30px;
  margin-top: 5px;
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #e7e7e7;
}
.sorter .amount strong {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-weight: normal;
  color: #000000;
}
.sorter label {
  float: left;
  margin-right: 10px;
  line-height: 30px;
  margin-top: 5px;
}

.sorter > .sort-by {
  float: left;
  margin-right: 5px;
  height: 30px;
}
.sorter > .sort-by label {
  color: #333;
}
.sorter > .sort-by .nice-select {
  width: 100px;
  color: #666;
  border-radius: 0;
}
.sorter > .sort-by .sort-by-switcher {
  width: 30px;
  height: 30px;
  margin-top: 5px;
  display: inline-block;
  margin-left: 20px;
  display: none;
}
.sorter > .sort-by .sort-by-switcher--asc {
  background-position: 4px -542px;
}
.sorter > .sort-by .sort-by-switcher--asc:hover {
  background-position: -46px -542px;
}
.sorter > .sort-by .sort-by-switcher--desc {
  background-position: 4px -567px;
}
.sorter > .sort-by .sort-by-switcher--desc:hover {
  background-position: -46px -567px;
}

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

.pager {
  float: right;
}
.pager > .count-container {
  float: left;
  display: none;
}
@media only screen and (min-width: 600px) {
  .pager > .count-container {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .pager > .count-container {
    display: block;
  }
}
@media only screen and (max-width: 1279px) {
  .pager > .count-container {
    display: none;
  }
}
.pager .amount {
  float: left;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  white-space: nowrap;
  margin: 0 15px 0 0;
}
.pager .limiter {
  float: left;
  margin: 0 10px 0 0;
}
.pager .limiter .nice-select {
  color: #666;
  border-radius: 0;
  display: inline-block;
  float: none;
  vertical-align: middle;
  margin: 0 5px;
}
.pager .limiter > label {
  color: #000;
}
.pager .amount,
.pager .pages {
  margin-bottom: 5px;
}

.pages {
  float: right;
  overflow: hidden;
  display: block;
}
.pages.top-toolbar {
  display: none;
}
.pages strong {
  float: left;
  font-weight: normal;
  color: #333;
}
.pages ol {
  float: left;
}

.pages li {
  float: left;
}

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

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

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

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

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

.toolbar-bottom .toolbar {
  border: 0;
  padding: 0;
  margin: 40px 0 70px;
}
.toolbar-bottom .toolbar .sorter {
  display: none;
}
.toolbar-bottom .toolbar .pager {
  float: none;
}
.toolbar-bottom .toolbar .pager .count-container {
  display: none;
}
.toolbar-bottom .toolbar .pager .pages {
  float: none;
  height: 42px;
  text-align: center;
  display: block;
}
.toolbar-bottom .toolbar .pager .pages.top-toolbar {
  display: none;
}
.toolbar-bottom .toolbar .pager .pages strong {
  float: none;
  display: none;
  vertical-align: top;
}
@media only screen and (min-width: 600px) {
  .toolbar-bottom .toolbar .pager .pages strong {
    display: inline-block;
  }
}
@media only screen and (min-width: 1024px) {
  .toolbar-bottom .toolbar .pager .pages strong {
    display: inline-block;
  }
}
.toolbar-bottom .toolbar .pager .pages ol {
  display: inline-block;
  float: none;
}
.toolbar-bottom .toolbar .pager .pages ol li:first-child {
  margin-left: 0;
}
@media only screen and (min-width: 600px) {
  .toolbar-bottom .toolbar .pager .pages ol li:first-child {
    margin-left: 9px;
  }
}
@media only screen and (min-width: 1024px) {
  .toolbar-bottom .toolbar .pager .pages ol li:first-child {
    margin-left: 9px;
  }
}

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

  .pages {
    float: left;
  }

  .limiter label {
    display: none;
  }
}
@media only screen and (max-width: 770px) {
  .col1-layout .sorter,
  .col1-layout .pager {
    width: 100%;
  }
  .col1-layout .pager {
    float: left;
    clear: both;
  }
  .col1-layout .pager .pages {
    float: left;
    margin-left: 0;
  }
  .col1-layout .pager .count-container {
    float: right;
  }
}
@media only screen and (max-width: 767px) {
  .toolbar .pager {
    display: none;
  }

  .sorter {
    width: 100%;
  }

  .sorter .amount {
    float: left;
    border-right: 0;
    padding-right: 0;
    margin-right: 0;
  }

  .sorter > .sort-by {
    float: right;
  }

  .toolbar-bottom .toolbar {
    margin: 20px 0 50px;
  }

  .toolbar-bottom .toolbar .pager {
    display: block;
  }
}
@media only screen and (max-width: 1279px) {
  .toolbar .view-mode > label {
    display: none;
  }
}
/* ============================================ *
 * Tax - Full Tax Summary
 * ============================================ */
#checkout-review-table .summary-collapse,
#shopping-cart-totals-table .summary-collapse,
body.customer-account .data-table .summary-collapse {
  position: relative;
  cursor: pointer;
}
#checkout-review-table .summary-collapse:before,
#shopping-cart-totals-table .summary-collapse:before,
body.customer-account .data-table .summary-collapse:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 7px solid #0057a3;
  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 #002e57;
  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 #0057a3;
  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 #002e57;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}

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

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

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

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

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

.width-full {
  width: 100%;
}

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

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

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

@media only screen and (min-width: 600px) {
  .tablet-hidden {
    display: none !important;
  }
}
/* ============================================ *
 * 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: #000;
  font-family: "proximanova-thin", Verdana, Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 7px;
  border-bottom: 1px solid #EDEDED;
}

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

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

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

/* -------------------------------------------- *
 * Labels
 */
label {
  display: inline-block;
  font-size: 13px;
  font-family: "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: #e22723;
  font-weight: normal;
  font-family: "proximanova-regular", 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 #e7e7e7;
  font-size: 15px;
  padding: 5px;
}

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

/* -------------------------------------------- *
 * Inputs
 */
.input-text, .nice-select, textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #e7e7e7;
  background: #FFFFFF;
  font-size: 15px;
}
.input-text:focus, .nice-select:focus, textarea:focus {
  border: 1px solid #ababab;
}

.input-text.validation-failed, .validation-failed.nice-select, textarea.validation-failed {
  border-color: #e22723;
}

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

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, .ie8 .nice-select, .ie8 textarea {
  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: #999;
}

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

/* -------------------------------------------- *
 * 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: #e22723;
  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, .form-list .input-range .nice-select, .form-list .input-range textarea {
  width: 74px;
}
.form-list .field,
.form-list .wide,
.form-list .control {
  margin-bottom: 10px;
}

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

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

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

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

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

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

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

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

.data-table th {
  background: #F4F4F4;
  text-transform: uppercase;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  line-height: 1.4;
  white-space: nowrap;
}

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

.data-table tbody td,
.data-table tfoot td {
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
}

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

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

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

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

.info-table th {
  font-weight: bold;
  padding: 4px 20px 4px 0;
}

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

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

/* ============================================ *
 * Linearize Table
 * ============================================ */
@media only screen and (max-width: 479px) {
  .linearize-table {
    /* Helpers */
  }
  .linearize-table tr,
  .linearize-table th,
  .linearize-table td {
    display: block;
  }
  .linearize-table thead th {
    border-right: 0;
    border-left: 0;
  }
  .linearize-table thead th.lin-hide {
    display: none;
  }
  .linearize-table thead th:nth-child(1n+2) {
    display: none;
  }
  .linearize-table tbody tr {
    position: relative;
    border-bottom: 1px solid #e7e7e7;
  }
  .linearize-table tbody td {
    padding: 0 10px 4px;
    border-right: 0;
    border-bottom: 0;
  }
  .linearize-table tbody td.lin-hide {
    display: none;
  }
  .linearize-table tbody td:first-child {
    padding-top: 10px;
  }
  .linearize-table tbody td:first-child,
  .linearize-table tbody td:first-child h3 {
    font-weight: bold;
  }
  .linearize-table tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 30px;
  }
  .linearize-table tbody td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 14px;
    font-family: "proximanova-regular", Verdana, Arial, sans-serif;
    padding-right: 5px;
    text-transform: uppercase;
  }
  .linearize-table tfoot tr {
    display: block;
    text-align: right;
  }
  .linearize-table tfoot tr:after {
    content: '';
    display: table;
    clear: both;
  }
  .linearize-table tfoot td {
    display: block;
    float: left;
  }
  .linearize-table tfoot td.lin-hide {
    display: none;
  }
  .linearize-table tfoot td:nth-child(odd) {
    clear: left;
    width: 60%;
  }
  .linearize-table tfoot td:nth-child(even) {
    text-align: left;
    width: 40%;
  }
  .linearize-table .linearize-hide {
    display: none;
  }
  .linearize-table .linearize-unpad {
    padding: 0;
  }
  .linearize-table .linearize-show {
    display: block;
  }
}
@media only screen and (max-width: 599px) {
  .linearize-table-large {
    /* Helpers */
  }
  .linearize-table-large tr,
  .linearize-table-large th,
  .linearize-table-large td {
    display: block;
  }
  .linearize-table-large thead th {
    border-right: 0;
    border-left: 0;
  }
  .linearize-table-large thead th.lin-hide {
    display: none;
  }
  .linearize-table-large thead th:nth-child(1n+2) {
    display: none;
  }
  .linearize-table-large tbody tr {
    position: relative;
    border-bottom: 1px solid #e7e7e7;
  }
  .linearize-table-large tbody td {
    padding: 0 10px 4px;
    border-right: 0;
    border-bottom: 0;
  }
  .linearize-table-large tbody td.lin-hide {
    display: none;
  }
  .linearize-table-large tbody td:first-child {
    padding-top: 10px;
  }
  .linearize-table-large tbody td:first-child,
  .linearize-table-large tbody td:first-child h3 {
    font-weight: bold;
  }
  .linearize-table-large tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 30px;
  }
  .linearize-table-large tbody td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 14px;
    font-family: "proximanova-regular", Verdana, Arial, sans-serif;
    padding-right: 5px;
    text-transform: uppercase;
  }
  .linearize-table-large tfoot tr {
    display: block;
    text-align: right;
  }
  .linearize-table-large tfoot tr:after {
    content: '';
    display: table;
    clear: both;
  }
  .linearize-table-large tfoot td {
    display: block;
    float: left;
  }
  .linearize-table-large tfoot td.lin-hide {
    display: none;
  }
  .linearize-table-large tfoot td:nth-child(odd) {
    clear: left;
    width: 60%;
  }
  .linearize-table-large tfoot td:nth-child(even) {
    text-align: left;
    width: 40%;
  }
  .linearize-table-large .linearize-hide {
    display: none;
  }
  .linearize-table-large .linearize-unpad {
    padding: 0;
  }
  .linearize-table-large .linearize-show {
    display: block;
  }
}
@media only screen and (min-width: 600px) {
  .linearize-table .linearize-collapse {
    display: none;
  }
}
select {
  display: none;
}

.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  color: #000;
  border-radius: 3px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 15px;
  padding-right: 27px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: auto;
}
.nice-select:hover {
  border-color: #dbdbdb;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #999;
}
.nice-select:after {
  /*border-bottom: 2px solid $arrow_color;
  border-right: 2px solid $arrow_color;*/
  content: '\e818';
  color: #999;
  display: block;
  height: 5px;
  margin-top: -6px;
  pointer-events: none;
  position: absolute;
  right: 19px;
  top: 46%;
  transform-origin: 66% 66%;
  /*transform: rotate(45deg);*/
  transition: all 0.15s ease-in-out;
  width: 5px;
}
.nice-select.open:after {
  /*transform: rotate(-135deg);*/
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  width: 100%;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 15px;
  padding-right: 26px;
  text-align: left;
  transition: all 0.2s;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #f6f6f6;
  box-shadow: unset;
}
.nice-select .option.selected {
  /*font-weight: bold;*/
}

/*! Flickity v1.1.1
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flickity-prev-next-button:hover {
  background: white;
}

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F;
}

.flickity-prev-next-button:active, .flickity-prev-next-button.nice-select.open {
  filter: alpha(opacity=60);
  /* IE8 */
  opacity: 0.6;
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button:disabled {
  filter: alpha(opacity=30);
  /* IE8 */
  opacity: 0.3;
  cursor: auto;
}

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-prev-next-button .arrow {
  fill: #333;
}

/* color & size if no SVG - IE8 and Android 2.3 */
.flickity-prev-next-button.no-svg {
  color: #333;
  font-size: 26px;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  filter: alpha(opacity=25);
  /* IE8 */
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  filter: alpha(opacity=100);
  /* IE8 */
  opacity: 1;
}

.cms-index-index .home-slideshow .flickity-page-dots .dot {
  width: 15px;
  height: 15px;
}

.cms-index-index .home-slideshow .flickity-page-dots {
  bottom: 0px;
  left: 29px;
  width: auto;
  margin-bottom: 17px;
}

/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=e24dd74923c2096619f0)
 * Config saved to config.json and https://gist.github.com/e24dd74923c2096619f0
 */
/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/nepsb_colas/normalize.css */
.bea_row {
  margin-left: -5px;
  margin-right: -5px;
}
@media only screen and (min-width: 600px) {
  .bea_row {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.bea_row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.bea_row.no-gutters > [class^="bea_col-"], .bea_row.no-gutters > [class*=" bea_col-"] {
  padding-right: 0;
  padding-left: 0;
}

.bea_row img {
  max-width: 100%;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .bea_row img {
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .bea_row img {
    width: auto;
  }
}

.bea_col-xs-1, .bea_col-sm-1, .bea_col-md-1, .bea_col-lg-1, .bea_col-xs-2, .bea_col-sm-2, .bea_col-md-2, .bea_col-lg-2, .bea_col-xs-3, .bea_col-sm-3, .bea_col-md-3, .bea_col-lg-3, .bea_col-xs-4, .bea_col-sm-4, .bea_col-md-4, .bea_col-lg-4, .bea_col-xs-5, .bea_col-sm-5, .bea_col-md-5, .bea_col-lg-5, .bea_col-xs-6, .bea_col-sm-6, .bea_col-md-6, .bea_col-lg-6, .bea_col-xs-7, .bea_col-sm-7, .bea_col-md-7, .bea_col-lg-7, .bea_col-xs-8, .bea_col-sm-8, .bea_col-md-8, .bea_col-lg-8, .bea_col-xs-9, .bea_col-sm-9, .bea_col-md-9, .bea_col-lg-9, .bea_col-xs-10, .bea_col-sm-10, .bea_col-md-10, .bea_col-lg-10, .bea_col-xs-11, .bea_col-sm-11, .bea_col-md-11, .bea_col-lg-11, .bea_col-xs-12, .bea_col-sm-12, .bea_col-md-12, .bea_col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 5px;
  padding-right: 5px;
  box-sizing: border-box;
}
@media only screen and (min-width: 600px) {
  .bea_col-xs-1, .bea_col-sm-1, .bea_col-md-1, .bea_col-lg-1, .bea_col-xs-2, .bea_col-sm-2, .bea_col-md-2, .bea_col-lg-2, .bea_col-xs-3, .bea_col-sm-3, .bea_col-md-3, .bea_col-lg-3, .bea_col-xs-4, .bea_col-sm-4, .bea_col-md-4, .bea_col-lg-4, .bea_col-xs-5, .bea_col-sm-5, .bea_col-md-5, .bea_col-lg-5, .bea_col-xs-6, .bea_col-sm-6, .bea_col-md-6, .bea_col-lg-6, .bea_col-xs-7, .bea_col-sm-7, .bea_col-md-7, .bea_col-lg-7, .bea_col-xs-8, .bea_col-sm-8, .bea_col-md-8, .bea_col-lg-8, .bea_col-xs-9, .bea_col-sm-9, .bea_col-md-9, .bea_col-lg-9, .bea_col-xs-10, .bea_col-sm-10, .bea_col-md-10, .bea_col-lg-10, .bea_col-xs-11, .bea_col-sm-11, .bea_col-md-11, .bea_col-lg-11, .bea_col-xs-12, .bea_col-sm-12, .bea_col-md-12, .bea_col-lg-12 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.bea_row:after, .bea_row:before {
  display: table;
  content: " ";
}

.bea_row:after {
  clear: both;
}

.bea_col-xs-1, .bea_col-xs-2, .bea_col-xs-3, .bea_col-xs-4, .bea_col-xs-5, .bea_col-xs-6, .bea_col-xs-7, .bea_col-xs-8, .bea_col-xs-9, .bea_col-xs-10, .bea_col-xs-11, .bea_col-xs-12 {
  float: left;
}

.bea_col-xs-12 {
  width: 100%;
}

.bea_col-xs-11 {
  width: 91.66666667%;
}

.bea_col-xs-10 {
  width: 83.33333333%;
}

.bea_col-xs-9 {
  width: 75%;
}

.bea_col-xs-8 {
  width: 66.66666667%;
}

.bea_col-xs-7 {
  width: 58.33333333%;
}

.bea_col-xs-6 {
  width: 50%;
}

.bea_col-xs-5 {
  width: 41.66666667%;
}

.bea_col-xs-4 {
  width: 33.33333333%;
}

.bea_col-xs-3 {
  width: 25%;
}

.bea_col-xs-2 {
  width: 16.66666667%;
}

.bea_col-xs-1 {
  width: 8.33333333%;
}

.bea_col-xs-pull-12 {
  right: 100%;
}

.bea_col-xs-pull-11 {
  right: 91.66666667%;
}

.bea_col-xs-pull-10 {
  right: 83.33333333%;
}

.bea_col-xs-pull-9 {
  right: 75%;
}

.bea_col-xs-pull-8 {
  right: 66.66666667%;
}

.bea_col-xs-pull-7 {
  right: 58.33333333%;
}

.bea_col-xs-pull-6 {
  right: 50%;
}

.bea_col-xs-pull-5 {
  right: 41.66666667%;
}

.bea_col-xs-pull-4 {
  right: 33.33333333%;
}

.bea_col-xs-pull-3 {
  right: 25%;
}

.bea_col-xs-pull-2 {
  right: 16.66666667%;
}

.bea_col-xs-pull-1 {
  right: 8.33333333%;
}

.bea_col-xs-pull-0 {
  right: auto;
}

.bea_col-xs-push-12 {
  left: 100%;
}

.bea_col-xs-push-11 {
  left: 91.66666667%;
}

.bea_col-xs-push-10 {
  left: 83.33333333%;
}

.bea_col-xs-push-9 {
  left: 75%;
}

.bea_col-xs-push-8 {
  left: 66.66666667%;
}

.bea_col-xs-push-7 {
  left: 58.33333333%;
}

.bea_col-xs-push-6 {
  left: 50%;
}

.bea_col-xs-push-5 {
  left: 41.66666667%;
}

.bea_col-xs-push-4 {
  left: 33.33333333%;
}

.bea_col-xs-push-3 {
  left: 25%;
}

.bea_col-xs-push-2 {
  left: 16.66666667%;
}

.bea_col-xs-push-1 {
  left: 8.33333333%;
}

.bea_col-xs-push-0 {
  left: auto;
}

.bea_col-xs-offset-12 {
  margin-left: 100%;
}

.bea_col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.bea_col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.bea_col-xs-offset-9 {
  margin-left: 75%;
}

.bea_col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.bea_col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.bea_col-xs-offset-6 {
  margin-left: 50%;
}

.bea_col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.bea_col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.bea_col-xs-offset-3 {
  margin-left: 25%;
}

.bea_col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.bea_col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.bea_col-xs-offset-0 {
  margin-left: 0%;
}

@media (min-width: 600px) {
  .bea_col-sm-1, .bea_col-sm-2, .bea_col-sm-3, .bea_col-sm-4, .bea_col-sm-5, .bea_col-sm-6, .bea_col-sm-7, .bea_col-sm-8, .bea_col-sm-9, .bea_col-sm-10, .bea_col-sm-11, .bea_col-sm-12 {
    float: left;
  }

  .bea_col-sm-12 {
    width: 100%;
  }

  .bea_col-sm-11 {
    width: 91.66666667%;
  }

  .bea_col-sm-10 {
    width: 83.33333333%;
  }

  .bea_col-sm-9 {
    width: 75%;
  }

  .bea_col-sm-8 {
    width: 66.66666667%;
  }

  .bea_col-sm-7 {
    width: 58.33333333%;
  }

  .bea_col-sm-6 {
    width: 50%;
  }

  .bea_col-sm-5 {
    width: 41.66666667%;
  }

  .bea_col-sm-4 {
    width: 33.33333333%;
  }

  .bea_col-sm-3 {
    width: 25%;
  }

  .bea_col-sm-2 {
    width: 16.66666667%;
  }

  .bea_col-sm-1 {
    width: 8.33333333%;
  }

  .bea_col-sm-pull-12 {
    right: 100%;
  }

  .bea_col-sm-pull-11 {
    right: 91.66666667%;
  }

  .bea_col-sm-pull-10 {
    right: 83.33333333%;
  }

  .bea_col-sm-pull-9 {
    right: 75%;
  }

  .bea_col-sm-pull-8 {
    right: 66.66666667%;
  }

  .bea_col-sm-pull-7 {
    right: 58.33333333%;
  }

  .bea_col-sm-pull-6 {
    right: 50%;
  }

  .bea_col-sm-pull-5 {
    right: 41.66666667%;
  }

  .bea_col-sm-pull-4 {
    right: 33.33333333%;
  }

  .bea_col-sm-pull-3 {
    right: 25%;
  }

  .bea_col-sm-pull-2 {
    right: 16.66666667%;
  }

  .bea_col-sm-pull-1 {
    right: 8.33333333%;
  }

  .bea_col-sm-pull-0 {
    right: auto;
  }

  .bea_col-sm-push-12 {
    left: 100%;
  }

  .bea_col-sm-push-11 {
    left: 91.66666667%;
  }

  .bea_col-sm-push-10 {
    left: 83.33333333%;
  }

  .bea_col-sm-push-9 {
    left: 75%;
  }

  .bea_col-sm-push-8 {
    left: 66.66666667%;
  }

  .bea_col-sm-push-7 {
    left: 58.33333333%;
  }

  .bea_col-sm-push-6 {
    left: 50%;
  }

  .bea_col-sm-push-5 {
    left: 41.66666667%;
  }

  .bea_col-sm-push-4 {
    left: 33.33333333%;
  }

  .bea_col-sm-push-3 {
    left: 25%;
  }

  .bea_col-sm-push-2 {
    left: 16.66666667%;
  }

  .bea_col-sm-push-1 {
    left: 8.33333333%;
  }

  .bea_col-sm-push-0 {
    left: auto;
  }

  .bea_col-sm-offset-12 {
    margin-left: 100%;
  }

  .bea_col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .bea_col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .bea_col-sm-offset-9 {
    margin-left: 75%;
  }

  .bea_col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .bea_col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .bea_col-sm-offset-6 {
    margin-left: 50%;
  }

  .bea_col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .bea_col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .bea_col-sm-offset-3 {
    margin-left: 25%;
  }

  .bea_col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .bea_col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .bea_col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 771px) {
  .bea_col-md-1, .bea_col-md-2, .bea_col-md-3, .bea_col-md-4, .bea_col-md-5, .bea_col-md-6, .bea_col-md-7, .bea_col-md-8, .bea_col-md-9, .bea_col-md-10, .bea_col-md-11, .bea_col-md-12 {
    float: left;
  }

  .bea_col-md-12 {
    width: 100%;
  }

  .bea_col-md-11 {
    width: 91.66666667%;
  }

  .bea_col-md-10 {
    width: 83.33333333%;
  }

  .bea_col-md-9 {
    width: 75%;
  }

  .bea_col-md-8 {
    width: 66.66666667%;
  }

  .bea_col-md-7 {
    width: 58.33333333%;
  }

  .bea_col-md-6 {
    width: 50%;
  }

  .bea_col-md-5 {
    width: 41.66666667%;
  }

  .bea_col-md-4 {
    width: 33.33333333%;
  }

  .bea_col-md-3 {
    width: 25%;
  }

  .bea_col-md-2 {
    width: 16.66666667%;
  }

  .bea_col-md-1 {
    width: 8.33333333%;
  }

  .bea_col-md-pull-12 {
    right: 100%;
  }

  .bea_col-md-pull-11 {
    right: 91.66666667%;
  }

  .bea_col-md-pull-10 {
    right: 83.33333333%;
  }

  .bea_col-md-pull-9 {
    right: 75%;
  }

  .bea_col-md-pull-8 {
    right: 66.66666667%;
  }

  .bea_col-md-pull-7 {
    right: 58.33333333%;
  }

  .bea_col-md-pull-6 {
    right: 50%;
  }

  .bea_col-md-pull-5 {
    right: 41.66666667%;
  }

  .bea_col-md-pull-4 {
    right: 33.33333333%;
  }

  .bea_col-md-pull-3 {
    right: 25%;
  }

  .bea_col-md-pull-2 {
    right: 16.66666667%;
  }

  .bea_col-md-pull-1 {
    right: 8.33333333%;
  }

  .bea_col-md-pull-0 {
    right: auto;
  }

  .bea_col-md-push-12 {
    left: 100%;
  }

  .bea_col-md-push-11 {
    left: 91.66666667%;
  }

  .bea_col-md-push-10 {
    left: 83.33333333%;
  }

  .bea_col-md-push-9 {
    left: 75%;
  }

  .bea_col-md-push-8 {
    left: 66.66666667%;
  }

  .bea_col-md-push-7 {
    left: 58.33333333%;
  }

  .bea_col-md-push-6 {
    left: 50%;
  }

  .bea_col-md-push-5 {
    left: 41.66666667%;
  }

  .bea_col-md-push-4 {
    left: 33.33333333%;
  }

  .bea_col-md-push-3 {
    left: 25%;
  }

  .bea_col-md-push-2 {
    left: 16.66666667%;
  }

  .bea_col-md-push-1 {
    left: 8.33333333%;
  }

  .bea_col-md-push-0 {
    left: auto;
  }

  .bea_col-md-offset-12 {
    margin-left: 100%;
  }

  .bea_col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .bea_col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .bea_col-md-offset-9 {
    margin-left: 75%;
  }

  .bea_col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .bea_col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .bea_col-md-offset-6 {
    margin-left: 50%;
  }

  .bea_col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .bea_col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .bea_col-md-offset-3 {
    margin-left: 25%;
  }

  .bea_col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .bea_col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .bea_col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1024px) {
  .bea_col-lg-1, .bea_col-lg-2, .bea_col-lg-3, .bea_col-lg-4, .bea_col-lg-5, .bea_col-lg-6, .bea_col-lg-7, .bea_col-lg-8, .bea_col-lg-9, .bea_col-lg-10, .bea_col-lg-11, .bea_col-lg-12 {
    float: left;
  }

  .bea_col-lg-12 {
    width: 100%;
  }

  .bea_col-lg-11 {
    width: 91.66666667%;
  }

  .bea_col-lg-10 {
    width: 83.33333333%;
  }

  .bea_col-lg-9 {
    width: 75%;
  }

  .bea_col-lg-8 {
    width: 66.66666667%;
  }

  .bea_col-lg-7 {
    width: 58.33333333%;
  }

  .bea_col-lg-6 {
    width: 50%;
  }

  .bea_col-lg-5 {
    width: 41.66666667%;
  }

  .bea_col-lg-4 {
    width: 33.33333333%;
  }

  .bea_col-lg-3 {
    width: 25%;
  }

  .bea_col-lg-2 {
    width: 16.66666667%;
  }

  .bea_col-lg-1 {
    width: 8.33333333%;
  }

  .bea_col-lg-pull-12 {
    right: 100%;
  }

  .bea_col-lg-pull-11 {
    right: 91.66666667%;
  }

  .bea_col-lg-pull-10 {
    right: 83.33333333%;
  }

  .bea_col-lg-pull-9 {
    right: 75%;
  }

  .bea_col-lg-pull-8 {
    right: 66.66666667%;
  }

  .bea_col-lg-pull-7 {
    right: 58.33333333%;
  }

  .bea_col-lg-pull-6 {
    right: 50%;
  }

  .bea_col-lg-pull-5 {
    right: 41.66666667%;
  }

  .bea_col-lg-pull-4 {
    right: 33.33333333%;
  }

  .bea_col-lg-pull-3 {
    right: 25%;
  }

  .bea_col-lg-pull-2 {
    right: 16.66666667%;
  }

  .bea_col-lg-pull-1 {
    right: 8.33333333%;
  }

  .bea_col-lg-pull-0 {
    right: auto;
  }

  .bea_col-lg-push-12 {
    left: 100%;
  }

  .bea_col-lg-push-11 {
    left: 91.66666667%;
  }

  .bea_col-lg-push-10 {
    left: 83.33333333%;
  }

  .bea_col-lg-push-9 {
    left: 75%;
  }

  .bea_col-lg-push-8 {
    left: 66.66666667%;
  }

  .bea_col-lg-push-7 {
    left: 58.33333333%;
  }

  .bea_col-lg-push-6 {
    left: 50%;
  }

  .bea_col-lg-push-5 {
    left: 41.66666667%;
  }

  .bea_col-lg-push-4 {
    left: 33.33333333%;
  }

  .bea_col-lg-push-3 {
    left: 25%;
  }

  .bea_col-lg-push-2 {
    left: 16.66666667%;
  }

  .bea_col-lg-push-1 {
    left: 8.33333333%;
  }

  .bea_col-lg-push-0 {
    left: auto;
  }

  .bea_col-lg-offset-12 {
    margin-left: 100%;
  }

  .bea_col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .bea_col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .bea_col-lg-offset-9 {
    margin-left: 75%;
  }

  .bea_col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .bea_col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .bea_col-lg-offset-6 {
    margin-left: 50%;
  }

  .bea_col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .bea_col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .bea_col-lg-offset-3 {
    margin-left: 25%;
  }

  .bea_col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .bea_col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .bea_col-lg-offset-0 {
    margin-left: 0%;
  }
}
/*
 * Product images gallery and zoom
 */
/*
 * Cloud Zoom Style
 */
/* Basic zoom styles %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
/* This is the moving lens square underneath the mouse pointer. */
.cloud-zoom-lens {
  border: 1px solid #ccc;
  margin: -1px;
  /* Set this to minus the border thickness. */
  background-color: #fff;
  cursor: move;
}

/* This is the zoom window. */
.cloud-zoom-big {
  border: 1px solid #e5e5e5;
  overflow: hidden;
}

/* This is the loading message. */
.cloud-zoom-loading {
  color: white;
  background: #222;
  padding: 0.25em;
  border: 1px solid #000;
}

#wrap {
  /* Decrease default z-index */
  z-index: 99 !important;
}

/* Zoom position: "inside"
-------------------------------------------------------------- */
.product-image .mousetrap {
  z-index: 100 !important;
  /* For responsive layout */
  width: 100% !important;
  height: 100% !important;
}

.zoom-inside #wrap {
  overflow: hidden;
}

/* No borders if zoom position is "inside" */
.zoom-inside .cloud-zoom-big {
  border: none;
}

/* Display images without Cloud Zoom
-------------------------------------------------------------- */
/* Hide zoom area */
.simple-mode .cloud-zoom-big,
.simple-mode .cloud-zoom-lens {
  display: none !important;
}

.simple-mode .cloud-zoom-lens {
  cursor: default !important;
}

/* Zoom button (enlarge the main image)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*/
.zoom-btn-small {
  position: absolute;
  right: 4px;
  bottom: 4px;
  padding: 0 1em;
  line-height: 2.6666em;
  z-index: 100;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.7);
  color: #333;
}

.zoom-btn-small:hover {
  background-color: #fff;
}

/* Use lightbox without cloud zoom */
.zoom-btn-large {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 0;
  z-index: 100;
  cursor: pointer;
  text-indent: -9999px;
  overflow: hidden;
}

.zoom-btn-large:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

/* Skins %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
/* Default skin
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*/
.img-box .product-image {
  margin: 0 auto;
  position: relative;
  /* Labels (e.g. "sale") are positioned relative to this box */
}

.img-box .product-image.product-image-zoom {
  z-index: 9;
}

/*TODO: obsolete*/
/* Image pop-up */
.product-image-popup {
  margin: 0 auto;
}

.product-image-popup .nav {
  font-weight: bold;
  text-align: center;
}

.product-image-popup .image {
  display: block;
  margin: 10px 0;
}

.product-image-popup .image-label {
  margin: 0 0 10px;
}

/* Thumbnails */
.img-box .more-images {
  margin-top: 12px;
}

/*.img-box .more-images .thumbnails { width:80%; margin:0 auto; }*/
/*.img-box .more-images .thumbnails .item { float:left; }*/
/* Deprecated */
.img-box .more-images .thumbnails .item.last {
  margin-right: 0;
}

/* Deprecated */
.img-box .more-images .thumbnails .item a {
  margin: 0 3px;
  display: block;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
}

/* Thumbnails - with slider */
.img-box .more-images .thumbnails.slides {
  display: none;
}

/* Minimum size of thumbnail if lazy loading enabled */
.img-box .more-images .thumbnails .owl-item.loading {
  min-height: 50px;
}

.img-box .more-images .thumbnails .owl-item.loading a {
  min-height: 36px;
}

/* Thumbnails - without slider */
.img-box .more-images .thumbnails.show-all {
  width: 100%;
  text-align: center;
}

.img-box .more-images .thumbnails.show-all .item {
  float: none;
  display: inline-block;
}

/* Skin 1: with thin borders
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*/
/*
.img-box-style1 .product-image {
	border:1px solid #eee;
	padding:5px;
}
*/
/* Thumbnails */
/* Prevent cutting off thumbnails */
.img-box-style1 .more-images .thumbnails .owl-wrapper-outer {
  padding: 1px 0;
}

.img-box-style1 .more-images .thumbnails .item a {
  margin: 0 2px 4px;
  /*padding:4px;*/
  border: 1px solid #e7e7e7;
}

.img-box-style1 .more-images .thumbnails .item a:hover {
  border-color: #999;
  position: relative;
  z-index: 1;
}

/* Thumbnails carousel %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
.img-box .itemslider-thumbnails {
  margin-left: auto;
  margin-right: auto;
}

.itemslider-thumbnails {
  max-width: 237px;
}

/* count-3 is default */
.itemslider-thumbnails.count-1 {
  max-width: 79px;
}

.itemslider-thumbnails.count-2 {
  max-width: 158px;
}

/* 
 * Itemslider - based on Owl Carousel
 *
 * IMPORTANT: Flexslider was replaced by Owl Carousel.
 * Deprecated styles for Flexslider are not needed any more and can be found inside this file: itemslider-old.css
 */
/* Owl Carousel %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
/* Necessary styles (Core Owl Carousel CSS File v1.24)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*/
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
  float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}

.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* mouse grab icon */
.grabbing {
  cursor: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/prozoom/_shared/grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/* CSS3 Transitions */
.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  perspective: 1200px;
}

/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}

.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}

/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}

/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}

.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}

/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}

/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {
    opacity: 1;
  }
}
@-moz-keyframes empty {
  0% {
    opacity: 1;
  }
}
@keyframes empty {
  0% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
}
@-moz-keyframes backSlideOut {
  25% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
}
@keyframes backSlideOut {
  25% {
    opacity: .5;
    transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
}
@-webkit-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
  }
}
@-moz-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateZ(0) translateX(0);
  }
}
@keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
  }
}
@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes scaleToFade {
  to {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}
@keyframes scaleToFade {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
  }
}
@-moz-keyframes goDown {
  from {
    -moz-transform: translateY(-100%);
  }
}
@keyframes goDown {
  from {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpFrom {
  from {
    opacity: 0;
    transform: scale(1.5);
  }
}
@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpTo {
  to {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpTo {
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}
/* Additional styles for Owl Carousel
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
*/
/* Preloading images */
.owl-item.loading {
  min-height: 60px;
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/prozoom/_shared/ajax-loader.gif) no-repeat center center;
}

/* Pagination */
.owl-pagination {
  text-align: center;
  z-index: 1;
  /* z-index to show above other items */
}

/* Itemslider %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
.itemslider {
  margin-bottom: 20px;
}

/* Items */
.itemslider .item {
  padding-left: 10px;
  padding-right: 10px;
}

/* Lazy loading */
.itemslider .owl-item.loading {
  background-position: center 40px;
}

.itemslider .owl-item.loading .product-image {
  min-height: 70px;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
  display: none;
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/css/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

/**
 * Lightbox
 */
/* ColorBox Core Style
-------------------------------------------------------------- */
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
  background: #FFF;
  overflow: hidden;
  border: none;
  height: auto !important;
  /*10px solid #333*/
  padding: 10px 10px 10px;
}
@media only screen and (min-width: 600px) {
  #cboxContent {
    padding: 30px 38px 38px;
  }
}

#cboxLoadedContent {
  margin-top: 15px;
  overflow: auto;
  position: relative;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 100%;
}

.cboxClose,
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  /*float:left;*/
  margin: auto;
  border: 0;
  display: block;
  max-width: 100%;
  height: auto !important;
}
@media only screen and (max-width: 599px) {
  .cboxPhoto {
    width: 100% !important;
    height: auto !important;
  }
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
  /*box-sizing: content-box;*/
}

/* ColorBox skin.
   The following styles are ordered & tabbed
   in a way that represents the nesting of the generated HTML.
-------------------------------------------------------------- */
.cboxClose,
#cboxNext,
#cboxPrevious,
#cboxClose {
  margin: 0;
  transition: background-color 300ms ease-in-out, background-position 300ms ease-in-out;
  -moz-transition: background-color 300ms ease-in-out, background-position 300ms ease-in-out;
  -webkit-transition: background-color 300ms ease-in-out, background-position 300ms ease-in-out;
  -o-transition: background-color 300ms ease-in-out, background-position 300ms ease-in-out;
}

#cboxOverlay {
  background: #FFF;
}

#colorbox {
  /*overflow: visible !important*/
  outline-color: transparent;
  -moz-outline-color: transparent;
}

.cboxIframe {
  background: #FFF;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  /*10px above buttons*/
}

#cboxCurrent {
  position: absolute;
  top: 17px;
  left: 80px;
  color: #999;
}

#cboxSlideshow {
  position: absolute;
  top: 4px;
  right: 30px;
  color: #0092ef;
}

#cboxPrevious,
#cboxNext {
  position: absolute;
  background: #FFF;
  color: transparent;
  width: 42px;
  height: 42px;
  text-align: center;
  border: 1px solid #e7e7e7;
}
#cboxPrevious:before,
#cboxNext:before {
  color: #333;
  position: static;
  line-height: 42px;
  font-size: 20px;
  display: inline-block;
  width: 100%;
}
#cboxPrevious:hover,
#cboxNext:hover {
  border: 1px solid #333;
}

#cboxPrevious:hover,
#cboxNext:hover {
  border: 1px solid #333;
}

#cboxPrevious {
  bottom: 0;
  left: 0;
  /*background-position:-10px -10px;*/
}
#cboxPrevious:before {
  content: '\e824';
}

/*#cboxPrevious:hover{background-position:-10px -60px;}*/
#cboxNext {
  bottom: 0;
  left: 50px;
  /*background-position:-60px -10px;*/
}
@media only screen and (min-width: 600px) {
  #cboxNext {
    left: 50px;
  }
}
#cboxNext:before {
  content: '\e823';
}

#cboxNext:hover {
  background-position: -60px -60px;
}

#cboxLoadingOverlay {
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/prozoom/_shared/colorbox/loading_background.png) no-repeat center center;
}

#cboxLoadingGraphic {
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/prozoom/_shared/colorbox/loading.gif) no-repeat center center;
}

.cboxClose,
#cboxClose {
  display: inline-block;
  width: auto;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  color: #000;
  margin: 14px 0;
  position: absolute;
  bottom: 0;
  border-bottom: 1px solid transparent;
  right: 51px;
}
@media only screen and (min-width: 600px) {
  .cboxClose,
  #cboxClose {
    right: 51px;
  }
}
.cboxClose:before,
#cboxClose:before {
  color: #333;
  font-family: beacon-icon-fontello;
  content: '\e82e';
  position: absolute;
  width: 41px;
  height: 41px;
  top: -11px;
  line-height: 38px;
  margin-left: 43px;
  -moz-border-radius: 41px;
  -webkit-border-radius: 41px;
  border-radius: 41px;
  border: 1px solid #e7e7e7;
  display: inline-block;
  background: #FFF;
}
.cboxClose:hover,
#cboxClose:hover {
  text-decoration: none;
  border-bottom: 1px solid #e7e7e7;
}
.cboxClose:hover:before,
#cboxClose:hover:before {
  border: 1px solid #333;
}

/*#cboxClose:hover{background-position:-10px -60px; }*/
/* Captions */
#cboxTitle {
  /*position: absolute;
  @include easy-top(45px,10px);
  @include easy-left(148px,10px);*/
  padding: 0;
  width: 100%;
  display: block;
  vertical-align: middle;
  float: none !important;
  color: #000;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 12px;
}
@media only screen and (min-width: 600px) {
  #cboxTitle {
    padding: 0 108px;
  }
}
@media only screen and (min-width: 600px) {
  #cboxTitle {
    display: table-cell !important;
  }
}

.cbox-iframe #cboxTitle {
  /*@include easy-left(40px,10px);*/
  padding: 0;
}
@media only screen and (min-width: 600px) {
  .cbox-iframe #cboxTitle {
    padding: 0;
  }
}

/* Alternative position and style of captions */
/*
#cboxTitle {
    position: absolute;
    bottom: 50px;
    left: 10px;
    text-align: left;
    right: 10px;
    color: #000;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.75);
    padding: 10px;
}
*/
#cboxContentTop {
  position: relative;
  display: block;
  height: auto;
  width: 100%;
  padding-bottom: 45px;
  z-index: 1;
}
@media only screen and (min-width: 600px) {
  #cboxContentTop {
    display: table;
  }
}
@media only screen and (min-width: 600px) {
  #cboxContentTop {
    height: 42px;
  }
}
@media only screen and (min-width: 600px) {
  #cboxContentTop {
    padding-bottom: 0;
  }
}

.cbox-custom {
  overflow: visible !important;
  left: 0 !important;
  width: 100% !important;
}
.cbox-custom #cboxWrapper {
  height: auto !important;
  left: 0;
  right: 0;
  background: #FFF;
  margin: auto;
  -moz-box-shadow: 0 0 20px 7px #e7e7e7;
  -webkit-box-shadow: 0 0 20px 7px #e7e7e7;
  box-shadow: 0 0 20px 7px #e7e7e7;
  width: 300px !important;
}
@media only screen and (min-width: 600px) {
  .cbox-custom #cboxWrapper {
    width: 726px !important;
  }
}
.cbox-custom #cboxWrapper #cboxContent {
  width: 300px !important;
}
@media only screen and (min-width: 600px) {
  .cbox-custom #cboxWrapper #cboxContent {
    width: 726px !important;
  }
}
.cbox-custom #cboxWrapper #cboxContent #cboxLoadedContent {
  width: 100% !important;
}

#confirmOverlay .cboxClose {
  width: 41px;
  height: 41px;
  background: transparent;
  border: none;
  right: -20px;
  top: -20px;
  margin: 0;
}
#confirmOverlay .cboxClose:before {
  left: 0;
  top: 0;
  margin-left: 0;
}

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

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

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

/* ============================================ *
 * Header
 * ============================================ */
#header .header-support {
  color: #333;
}
#header .header-support > p strong * {
  color: #333;
}
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  #header .header-support > div {
    display: none;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  #header .header-bottom {
    display: block !important;
  }
}

.onestepcheckout-index-index #header .header-support {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .page-header {
  }
  .page-header .page-header-container {
    position: relative;
    padding: 0;
  }
  .page-header .page-header-container .page-header-right {
    padding-left: 4.5%;
  }
  .page-header .page-header-container .page-header-right .topheader-content {
    padding: 20px 0;
  }
  .page-header .page-header-container .page-header-right .topheader-content #header-search {
    display: block;
    max-width: 355px;
  }
  .page-header .page-header-container .page-header-right .topheader-content .skip-links {
    font-size: 14px;
    font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
    color: #666;
    text-transform: uppercase;
    overflow: visible;
  }
  .page-header .page-header-container .page-header-right .topheader-content .skip-links a {
    color: #666;
    position: relative;
    padding-left: 38px;
    margin-right: 35px;
    height: 42px;
    line-height: 42px;
    display: inline-block;
    letter-spacing: 1px;
  }
  .page-header .page-header-container .page-header-right .topheader-content .skip-links a:hover {
    text-decoration: none;
  }
  .page-header .page-header-container .page-header-right .topheader-content .skip-links a:before {
    font-size: 26px;
    line-height: 42px;
    position: absolute;
    left: 0;
    top: 0;
    color: #999;
  }
  .page-header .page-header-container .page-header-right .topheader-content .skip-links a.store-locations-link {
    float: right;
  }
  .page-header .page-header-container .page-header-right .topheader-content .skip-links a.store-locations-link:before {
    content: "\e800";
  }
  .page-header .page-header-container .page-header-right .topheader-content .skip-links .account-cart-wrapper {
    float: right;
  }
  .page-header .page-header-container .page-header-right .topheader-content .skip-links .account-cart-wrapper .header-minicart {
    float: right;
  }
  .page-header .page-header-container .page-header-right .topheader-content .skip-links .account-cart-wrapper a.skip-account {
    width: auto;
    padding-right: 30px;
    margin-right: 0;
    outline: none;
  }
  .page-header .page-header-container .page-header-right .topheader-content .skip-links .account-cart-wrapper a.skip-account:before {
    content: "\e801";
  }
  .page-header .page-header-container .page-header-right .topheader-content .skip-links .account-cart-wrapper a.skip-account:after {
    content: "\e818";
    position: absolute;
    right: 0;
    top: 14px;
  }
  .page-header .page-header-container .page-header-right .topheader-content .skip-links .account-cart-wrapper a.skip-cart {
    margin-right: 0;
  }
  .page-header .page-header-container .page-header-right .topheader-content .skip-links .account-cart-wrapper a.skip-cart.no-count .count {
    display: block;
    background: #ffe800;
    border-radius: 5px;
    color: #000000;
    padding: 0 7px;
    left: 20px;
    top: -5px;
    position: absolute;
  }
  .page-header .page-header-container .page-header-right .topheader-content .skip-links .account-cart-wrapper a.skip-cart.no-count .count:before, .page-header .page-header-container .page-header-right .topheader-content .skip-links .account-cart-wrapper a.skip-cart.no-count .count:after {
    display: none;
  }
  .page-header .page-header-container .page-header-right .topheader-content .skip-links .account-cart-wrapper a.skip-cart.no-count .label {
    display: none;
  }
  .page-header .page-header-container .page-header-right .topheader-content .skip-links .account-cart-wrapper a.skip-cart:before {
    content: "\e802";
  }
}
/* ============================================ *
 * Topheader message
 * ============================================ */
@media only screen and (max-width: 770px) {
  .topheader-left-message {
    padding: 10px;
    float: right;
    text-align: right;
  }
  .topheader-left-message span {
    display: block;
    clear: both;
  }
  .topheader-left-message span strong {
    margin-left: 5px;
  }
}
/* ============================================ *
 * Logo
 * ============================================ */
.logo {
  display: block;
  float: left;
  text-align: center;
  max-width: 119px;
  padding: 0 10px 10px;
  box-sizing: content-box;
}
/*test
@media only screen and (min-width: 600px) {
  .logo {
    max-width: 119px;
  }
}
@media only screen and (min-width: 1024px) {
*/
  .logo {
    max-width: 350px;
  }

/*test
}
@media only screen and (min-width: 600px) {
  .logo {
    padding: 0 10px 10px 20px;
  }
}
@media only screen and (min-width: 1024px) {
*/
  .logo {
    padding: 0;
  }
/*}*/
.logo img {
  max-width: 100%;
}
.logo .small {
  height: auto;
  display: block;
}
/*test
@media only screen and (min-width: 600px) {
  .logo .small {
    height: 66px;
  }
}
@media only screen and (min-width: 1024px) {
*/
  .logo .small {
    height: auto;
  }
/*
}
@media only screen and (min-width: 600px) {
  .logo .small {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
*/
  .logo .small {
    display: none;
  }
/*
}
.logo .large {
  display: none;
  display: none;
}
@media only screen and (min-width: 600px) {
  .logo .large {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
*/
  .logo .large {
    display: block;
  }
/*
}
*/
/* ============================================ *
 * Skip Links
 * ============================================ */
.skip-links {

  clear: both;
  overflow: hidden;
  border: 1px solid #EDEDED;
  border-right: none;
  border-left: none;
}
.skip-links .skip-search {
  display: block;
}
@media only screen and (min-width: 600px) {
  .skip-links .skip-search {
    display: none;
  }
}
@media only screen and (min-width: 600px) {
  .skip-links {
    border: 1px solid #EDEDED;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-links {
    border: none;
  }
}
@media only screen and (min-width: 600px) {
  .skip-links {
    border-right: none;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-links {
    border-right: none;
  }
}
@media only screen and (min-width: 600px) {
  .skip-links {
    border-left: none;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-links {
    border-left: none;
  }
}

/* -------------------------------------------- *
 * Skip - Link
 */
.skip-link {
  position: relative;
  float: left;
  width: 20%;
  height: 56px;
  height: 56px;
  background: #FFF;
  color: #000;
  line-height: 100%;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  vertical-align: top;
  border-right: 1px solid #EDEDED;
  /* -------------------------------------------- *
   * Skip Link - Active
   */
}
@media only screen and (min-width: 600px) {
  .skip-link {
    float: left;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-link {
    float: none;
  }
}
@media only screen and (min-width: 600px) {
  .skip-link {
    width: 25%;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-link {
    width: auto;
  }
}
@media only screen and (min-width: 600px) {
  .skip-link {
    height: 56px;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-link {
    height: auto;
  }
}
@media only screen and (min-width: 600px) {
  .skip-link {
    border-right: 1px solid #EDEDED;
  }
}
.skip-link:last-child {
  border-right: none;
}
@media only screen and (min-width: 600px) {
  .skip-link:last-child {
    border-right: none;
  }
}
.skip-link:not(.skip-active):hover {
  opacity: 0.8;
}
.skip-link.skip-active {
  background: #EDEDED;
  color: inherit;
}
@media only screen and (min-width: 600px) {
  .skip-link.skip-active {
    background: #EDEDED;
  }
}
@media only screen and (min-width: 600px) {
  .skip-link.skip-active {
    color: inherit;
  }
}
.skip-link.skip-active span {
  color: inherit;
}
@media only screen and (min-width: 600px) {
  .skip-link.skip-active span {
    color: inherit;
  }
}

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

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

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

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

/* ============================================ *
 * Global Header Navigation
 * ============================================ */
@media only screen and (max-width: 1023px) {
  #header-account li a {
    padding: 0 15px 0 25px;
  }

  #header-account li a,
  .nav-primary a.pure-link,
  .nav-primary a.level0 {
    border-bottom: 1px solid #e7e7e7;
    text-align: left;
    color: #000;
    text-transform: uppercase;
    line-height: 30px;
  }

  .nav-primary li.level0:last-child a.level0 {
    /* border-bottom: 0; */
  }

  .no-touch #header-account a:hover,
  .no-touch .nav-primary a:hover {
    background: none;
    text-decoration: none;
  }
}
@media only screen and (max-width: 1023px) and (min-width: 600px) {
  .no-touch #header-account a:hover,
  .no-touch .nav-primary a:hover {
    background: #F4F4F4;
  }
}

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

.skip-nav .label {
  display: block;
  font-size: 10px;
}

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

@media only screen and (min-width: 1024px) {
  .skip-nav {
/*test
    display: none;
*/
    display: block;
  }
}
/* ============================================ *
 * Nav - Skip Content
 * ============================================ */
@media only screen and (max-width: 770px) {
  #header-nav {
	/*test
    display: block;
	*/
    /*padding: 5px 0;*/
    border-bottom: 1px solid #EDEDED;
  }
}
@media only screen and (min-width: 1024px) {
  #header-nav {
    display: block;
    /* Force visibility */
    border-bottom: 1px solid #EDEDED;
  }
}
/* ============================================ *
 * Nav Primary
 * ============================================ */
@media only screen and (min-width: 1024px) {
  .nav-primary {
    display: block;
    margin-top: 15px;
  }
}
/* ============================================ *
 * General Navigation Styles
 * ============================================ */
.nav-primary {
	/*test
  overflow: hidden;
  */
    overflow: visible;
}
@media only screen and (min-width: 600px) {
  .nav-primary {
	/*test
    overflow: hidden;
	*/
    overflow: visible;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary {
    overflow: visible;
  }
}
.nav-primary a {
  text-decoration: none;
  position: relative;
  display: block;
  color: #000;
  /*test
  */
  line-height: 100%;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.nav-primary li {
  position: relative;
}
.nav-primary li.level0 {
  content: '';
  display: table;
  clear: both;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .nav-primary li.level0 {
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary li.level0 {
    width: auto;
  }
}
.nav-primary li.level0 > a.pure-link {
  z-index: 0;
  display: block;
  padding: 0 20px;
}
@media only screen and (min-width: 600px) {
  .nav-primary li.level0 > a.pure-link {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary li.level0 > a.pure-link {
    display: none;
  }
}
.nav-primary li.level0 > a.level0 {
  padding: 0 20px;
}
@media only screen and (min-width: 600px) {
  .nav-primary li.level0 > a.level0 {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary li.level0 > a.level0 {
    padding: 20px 28px;
  }
}
.nav-primary li.level0 > a.level0.has-children {
  width: 49px;
  height: 49px;
  padding: 0;
  z-index: 11;
  position: absolute;
  top: 0;
  right: 0;
  position: absolute;
  color: transparent;
  float: right;
}
@media only screen and (min-width: 600px) {
  .nav-primary li.level0 > a.level0.has-children {
    width: 49px;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary li.level0 > a.level0.has-children {
    width: auto;
  }
}
@media only screen and (min-width: 600px) {
  .nav-primary li.level0 > a.level0.has-children {
    height: 49px;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary li.level0 > a.level0.has-children {
    height: auto;
  }
}
@media only screen and (min-width: 600px) {
  .nav-primary li.level0 > a.level0.has-children {
    padding: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary li.level0 > a.level0.has-children {
    padding: 20px 28px;
  }
}
@media only screen and (min-width: 600px) {
  .nav-primary li.level0 > a.level0.has-children {
    position: absolute;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary li.level0 > a.level0.has-children {
    position: static;
  }
}
@media only screen and (min-width: 600px) {
  .nav-primary li.level0 > a.level0.has-children {
    position: absolute;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary li.level0 > a.level0.has-children {
    position: relative;
  }
}
@media only screen and (min-width: 600px) {
  .nav-primary li.level0 > a.level0.has-children {
    color: transparent;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary li.level0 > a.level0.has-children {
    color: inherit;
  }
}
@media only screen and (min-width: 600px) {
  .nav-primary li.level0 > a.level0.has-children {
    float: right;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary li.level0 > a.level0.has-children {
    float: none;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  .nav-primary li.level0 > a.level0, .nav-primary li.level0 > a.level0.has-children {
    padding: 20px 10px;
  }
}

.nav-primary li.level1 > a.pure-link {
  z-index: 0;
  display: block;
  padding: 0 33px;
  line-height: 32px;
  border: none;
}
@media only screen and (min-width: 600px) {
  .nav-primary li.level1 > a.pure-link {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary li.level1 > a.pure-link {
    display: none;
  }
}
.nav-primary li.level1 > a.level1 {
  padding: 0 33px;
}
@media only screen and (min-width: 600px) {
  .nav-primary li.level1 > a.level1 {
    padding: 0 33px;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary li.level1 > a.level1 {
    padding: 0;
  }
}
.nav-primary li.level1 > a.level1.has-children {
  width: 45px;
  height: 32px;
  padding: 0;
  z-index: 11;
  position: absolute;
  top: 0;
  right: 0;
  position: absolute;
  color: transparent;
  float: right;
}
@media only screen and (min-width: 600px) {
  .nav-primary li.level1 > a.level1.has-children {
    width: 45px;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary li.level1 > a.level1.has-children {
    width: auto;
  }
}
@media only screen and (min-width: 600px) {
  .nav-primary li.level1 > a.level1.has-children {
    height: 32px;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary li.level1 > a.level1.has-children {
    height: auto;
  }
}
@media only screen and (min-width: 600px) {
  .nav-primary li.level1 > a.level1.has-children {
    padding: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary li.level1 > a.level1.has-children {
    padding: 0;
  }
}
@media only screen and (min-width: 600px) {
  .nav-primary li.level1 > a.level1.has-children {
    position: absolute;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary li.level1 > a.level1.has-children {
    position: static;
  }
}
@media only screen and (min-width: 600px) {
  .nav-primary li.level1 > a.level1.has-children {
    position: absolute;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary li.level1 > a.level1.has-children {
    position: relative;
  }
}
@media only screen and (min-width: 600px) {
  .nav-primary li.level1 > a.level1.has-children {
    color: transparent;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary li.level1 > a.level1.has-children {
    color: inherit;
  }
}
@media only screen and (min-width: 600px) {
  .nav-primary li.level1 > a.level1.has-children {
    float: right;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary li.level1 > a.level1.has-children {
    float: none;
  }
}
.nav-primary li a.level2 {
  padding: 0 66px;
}
@media only screen and (min-width: 600px) {
  .nav-primary li a.level2 {
    padding: 0 66px;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary li a.level2 {
    padding: 0;
  }
}

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

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

/* ============================================ *
 * Small Viewports - Accordion Style Menu
 * ============================================ */
@media only screen and (max-width: 1023px) {
  .nav-primary a.level0,
  .nav-primary a {
	/*test
    line-height: 61px;
	*/
  }
  .nav-primary li.level0 ul {
    display: none;
  }
  .nav-primary li.level0 li {
    padding: 0;
  }
}
@media only screen and (max-width: 1023px) and (min-width: 600px) {
  .nav-primary li.level0 li {
    padding: 0;
  }
}
@media only screen and (max-width: 1023px) and (min-width: 1024px) {
  .nav-primary li.level0 li {
    padding: 0 0 0 25px;
  }
}
@media only screen and (max-width: 1023px) {
  .nav-primary li.level1 a {
    /*padding: 0 15px 0 25px;*/
  }
  .nav-primary li.menu-active > a,
  .nav-primary li.sub-menu-active > a {
    /*color: $c-action;*/
  }
}
/* ============================================ *
 * Large Viewports - Dropdown Menu
 * ============================================ */
@media only screen and (min-width: 1024px) {
  .nav-primary {
    /* Default styles for 1+ drop-down menus */
    /* Level 2+ */
    /* Class for js to add briefly to evaluate element positioning. */
    /* Correct menus that will hang off the page (class added by js) */
    /* Level 1+ */
  }
  .nav-primary a.level0 {
    padding: 0 25px;
  }
  .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: #666;
  }
  .nav-primary .menu-active {
    z-index: 200;
  }
  .nav-primary li.level0 ul {
    padding-left: 10px;
    padding-right: 10px;
    /*@include menu;
    position: absolute;
    left: 0;
    top: $nav-primary-height; */
    /* Height of ".nav-primary a.level0" */
                                                                   /*
z-index: 10;
width: 250px;
display: none; */
    /* Hide until displayed. */
  }
  .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;
    /*li.level1 ul {
        left: auto;
        right: 50px;
        top: 20px;
    }*/
  }
  .nav-primary li.level0 li.parent > a {
    position: relative;
    /*&:after {
        @include triangle(right, 4px, #ccc);
        right: 5px;
        top: 50%;
        margin-top: -3px;
    }*/
  }
}
.nav-primary li.menu-active > ul {
  display: block;
}

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

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

  #header-cart.skip-active {
    background: #FBFBFB;
    border: solid 1px #e7e7e7;
    display: block;
    position: absolute;
    z-index: 200;
    top: 40px;
    right: 0;
    width: 320px;
    background: white;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 600px) {
  #header-cart.skip-active {
    width: 316px;
  }
}

/* -------------------------------------------- *
 * 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;
  min-width: 22px;
  height: 22px;
  background: rgba(102, 102, 102, 0.9);
  color: #FFFFFF;
  font-size: 11px;
  line-height: 22px;
  text-align: center;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
}

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

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

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

  .skip-cart .count,
  .skip-link.skip-active .count {
    color: #666;
  }
}
.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 #e7e7e7;
  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 #e7e7e7;
  font-size: 13px;
}

/* ============================================ *
 * Footer
 * ============================================ */
#back-top {
  display: none;
}

@media only screen and (max-width: 599px) {
  .mobile-hidden {
    display: none !important;
  }
}
.footer {
  color: #000;
}
.footer .footer-container {
  border-top: 2px solid #e1e3e5;
  padding-left: 0;
  padding-right: 0;
  margin-left: 10px;
  margin-right: 10px;
}
@media only screen and (min-width: 600px) {
  .footer .footer-container {
    padding-left: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .footer .footer-container {
    padding-left: 0;
  }
}
@media only screen and (min-width: 600px) {
  .footer .footer-container {
    padding-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .footer .footer-container {
    padding-right: 0;
  }
}
@media only screen and (min-width: 600px) {
  .footer .footer-container {
    margin-left: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer .footer-container {
    margin-left: auto;
  }
}
@media only screen and (min-width: 600px) {
  .footer .footer-container {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer .footer-container {
    margin-right: auto;
  }
}
.footer .footer-connect {
  /*@include easy-width(100%,100%);*/
  margin-top: 0;
  display: none;
}
@media only screen and (min-width: 600px) {
  .footer .footer-connect {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer .footer-connect {
    margin-top: 15px;
  }
}
@media only screen and (min-width: 600px) {
  .footer .footer-connect {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .footer .footer-connect {
    display: block;
  }
}
.footer .footer-links {
  border-top: 2px solid #e1e3e5;
}
@media only screen and (min-width: 600px) {
  .footer .footer-links {
    border-top: none;
  }
}
.footer .footer-links .footer-container {
  border-top: none;
}
@media only screen and (min-width: 600px) {
  .footer .footer-links .footer-container {
    border-top: 2px solid #e1e3e5;
  }
}
.footer .footer-links h2 span {
  display: none;
}
@media only screen and (min-width: 600px) {
  .footer .footer-links h2 span {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .footer .footer-links h2 span {
    display: inline-block;
  }
}

.cms-home .footer .footer-connect {
  display: block;
}
@media only screen and (min-width: 600px) {
  .cms-home .footer .footer-connect {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .cms-home .footer .footer-connect {
    display: block;
  }
}

.footer-subscribe {
  padding: 0;
  border-top: 2px solid #e1e3e5;
}
@media only screen and (min-width: 600px) {
  .footer-subscribe {
    padding: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-subscribe {
    padding: 0;
  }
}
@media only screen and (min-width: 600px) {
  .footer-subscribe {
    border-top: none;
  }
}
.footer-subscribe .footer-container {
  padding-top: 25px;
  padding-bottom: 22px;
  border-top: none;
}
@media only screen and (min-width: 600px) {
  .footer-subscribe .footer-container {
    padding-top: 0px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-subscribe .footer-container {
    padding-top: 36px;
  }
}
@media only screen and (min-width: 600px) {
  .footer-subscribe .footer-container {
    padding-bottom: 0px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-subscribe .footer-container {
    padding-bottom: 42px;
  }
}
@media only screen and (min-width: 600px) {
  .footer-subscribe .footer-container {
    border-top: 2px solid #e1e3e5;
  }
}
.footer-subscribe .footer-container > div {
  padding-top: 0;
  padding-bottom: 0;
}
@media only screen and (min-width: 600px) {
  .footer-subscribe .footer-container > div {
    padding-top: 33px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-subscribe .footer-container > div {
    padding-top: 0;
  }
}
@media only screen and (min-width: 600px) {
  .footer-subscribe .footer-container > div {
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-subscribe .footer-container > div {
    padding-bottom: 0;
  }
}
.footer-subscribe .footer-container .block-become-vip {
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .footer-subscribe .footer-container .block-become-vip {
    text-align: center;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-subscribe .footer-container .block-become-vip {
    text-align: left;
  }
}
.footer-subscribe .footer-container .block-become-vip .block-content {
  margin-top: 0;
}
.footer-subscribe .footer-container .block-become-vip .block-content h2 {
  font-size: 30px;
  margin-bottom: 0px;
  line-height: 30px;
  font-size: 30px;
}
@media only screen and (min-width: 600px) {
  .footer-subscribe .footer-container .block-become-vip .block-content h2 {
    line-height: 42px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-subscribe .footer-container .block-become-vip .block-content h2 {
    line-height: 48px;
  }
}
@media only screen and (min-width: 600px) {
  .footer-subscribe .footer-container .block-become-vip .block-content h2 {
    font-size: 42px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-subscribe .footer-container .block-become-vip .block-content h2 {
    font-size: 48px;
  }
}
.footer-subscribe .footer-container .block-become-vip .block-content h2 strong {
  font-family: "AustinItalic";
  font-weight: normal;
  text-transform: none;
}
.footer-subscribe .footer-container .block-become-vip .block-content h2 span {
  text-transform: uppercase;
  font-family: "proximanova-thin", Verdana, Arial, sans-serif;
}
.footer-subscribe .footer-container .block-become-vip .block-content h2 > * {
  display: block;
}
@media only screen and (min-width: 600px) {
  .footer-subscribe .footer-container .block-become-vip .block-content h2 > * {
    display: inline-block;
  }
}
.footer-subscribe .footer-container .block-become-vip .block-content p {
  font-size: 13px;
  line-height: 15px;
  margin-top: 8px;
}
@media only screen and (min-width: 600px) {
  .footer-subscribe .footer-container .block-become-vip .block-content p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 600px) {
  .footer-subscribe .footer-container .block-become-vip .block-content p {
    margin-top: 4px;
  }
}
.footer-subscribe .footer-container .block-subscribe {
  text-align: right;
  margin-top: 15px;
  margin-top: 15px;
}
@media only screen and (min-width: 600px) {
  .footer-subscribe .footer-container .block-subscribe {
    margin-top: 28px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-subscribe .footer-container .block-subscribe {
    margin-top: 15px;
  }
}
.footer-subscribe .footer-container .block-subscribe .block-content {
  margin-top: 0;
  position: relative;
}
.footer-subscribe .footer-container .block-subscribe .block-content #newsletter-validate-detail {
  display: table;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .footer-subscribe .footer-container .block-subscribe .block-content #newsletter-validate-detail {
    width: 84%;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-subscribe .footer-container .block-subscribe .block-content #newsletter-validate-detail {
    width: 100%;
  }
}
.footer-subscribe .footer-container .block-subscribe .block-content .input-box {
  width: 100%;
  padding-top: 0;
}
.footer-subscribe .footer-container .block-subscribe .block-content .input-box input {
  display: block;
  border-radius: 0;
  height: 42px;
  line-height: 42px;
  padding: 0 95px 0 12px;
  font-family: "proximanova-light", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #666;
  border-color: #d1d1d1;
}
@media only screen and (min-width: 600px) {
  .footer-subscribe .footer-container .block-subscribe .block-content .input-box input {
    font-size: 16px;
  }
}
.footer-subscribe .footer-container .block-subscribe .block-content .input-box input:-moz-placeholder {
  color: #666;
  font-size: 14px;
}
@media only screen and (min-width: 600px) {
  .footer-subscribe .footer-container .block-subscribe .block-content .input-box input:-moz-placeholder {
    font-size: 16px;
  }
}
.footer-subscribe .footer-container .block-subscribe .block-content .input-box input::-moz-placeholder {
  color: #666;
  font-size: 14px;
}
@media only screen and (min-width: 600px) {
  .footer-subscribe .footer-container .block-subscribe .block-content .input-box input::-moz-placeholder {
    font-size: 16px;
  }
}
.footer-subscribe .footer-container .block-subscribe .block-content .input-box input:-ms-input-placeholder {
  color: #666;
  font-size: 14px;
}
@media only screen and (min-width: 600px) {
  .footer-subscribe .footer-container .block-subscribe .block-content .input-box input:-ms-input-placeholder {
    font-size: 16px;
  }
}
.footer-subscribe .footer-container .block-subscribe .block-content .input-box input::-webkit-input-placeholder {
  color: #666;
  font-size: 14px;
}
@media only screen and (min-width: 600px) {
  .footer-subscribe .footer-container .block-subscribe .block-content .input-box input::-webkit-input-placeholder {
    font-size: 16px;
  }
}
.footer-subscribe .footer-container .block-subscribe .block-content .input-box .validation-advice {
  text-align: left;
}
.footer-subscribe .footer-container .block-subscribe .block-content .input-text, .footer-subscribe .footer-container .block-subscribe .block-content .nice-select, .footer-subscribe .footer-container .block-subscribe .block-content textarea {
  width: 100%;
  box-sizing: border-box;
}
.footer-subscribe .footer-container .block-subscribe .block-content .actions {
  width: 95px;
  position: absolute;
  right: 0;
  top: 0;
  margin: 0;
}
.footer-subscribe .footer-container .block-subscribe .block-content .actions .button {
  height: 42px;
  line-height: 42px;
  text-align: center;
  padding: 0;
  background: #999;
  -moz-border-radius: 0 3px 3px 0;
  -webkit-border-radius: 0;
  border-radius: 0 3px 3px 0;
  width: 100%;
  min-width: 0;
}
.footer-subscribe .footer-container .block-subscribe .block-content .actions .button span span {
  text-transform: none;
  color: #fff;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 14px;
}
.footer-subscribe .footer-container .block-subscribe .block-content .actions .button:hover {
  background: #ababab;
}

.footer-messages {
  /*img {
      display: inline-block;
      @include easy-float(left,null,none);
      @include easy-margin-right(20px,null,0);
      @include easy-margin-bottom(0,null,13px);
  }*/
}
@media only screen and (min-width: 600px) {
  .footer-messages {
    text-align: center;
  }
}
@media only screen and (min-width: 1280px) {
  .footer-messages {
    text-align: left;
  }
}
.footer-messages .footer-container {
  color: #000000;
}
@media only screen and (min-width: 600px) {
  .footer-messages .footer-container {
    padding-top: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-messages .footer-container {
    padding-top: 28px;
  }
}
@media only screen and (min-width: 600px) {
  .footer-messages .footer-container {
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-messages .footer-container {
    padding-bottom: 28px;
  }
}
@media only screen and (min-width: 1279px) {
  .footer-messages .footer-container {
    overflow: hidden;
  }
  .footer-messages .footer-container > div {
    position: relative;
    right: -34px;
  }
}
.footer-messages h4 {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  padding-top: 7px;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0;
}
@media only screen and (min-width: 600px) {
  .footer-messages h4 {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-messages h4 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 600px) {
  .footer-messages h4 {
    line-height: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-messages h4 {
    line-height: 1.4;
  }
}
@media only screen and (min-width: 600px) {
  .footer-messages h4 {
    margin-bottom: 0;
  }
}
.footer-messages p {
  font-size: 12px;
  line-height: 100%;
  margin: 0;
}
@media only screen and (min-width: 600px) {
  .footer-messages p {
    font-size: 12px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-messages p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 600px) {
  .footer-messages p {
    white-space: normal;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-messages p {
    white-space: nowrap;
  }
}
@media only screen and (min-width: 600px) {
  .footer-messages p {
    line-height: 100%;
  }
}
@media only screen and (min-width: 600px) {
  .footer-messages p {
    margin: 5px 0 0;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-messages p {
    margin: 0;
  }
}
.footer-messages [class*="footer-messages-"] i {
  float: none;
  color: #999;
  display: inline-block;
  position: relative;
}
@media only screen and (min-width: 600px) {
  .footer-messages [class*="footer-messages-"] i {
    float: none;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-messages [class*="footer-messages-"] i {
    float: none;
  }
}
@media only screen and (min-width: 600px) {
  .footer-messages [class*="footer-messages-"] i {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-messages [class*="footer-messages-"] i {
    margin-right: 0;
  }
}
@media only screen and (min-width: 600px) {
  .footer-messages [class*="footer-messages-"] i {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-messages [class*="footer-messages-"] i {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1279px) {
  .footer-messages [class*="footer-messages-"] i {
    margin-right: 9px;
    margin-top: -3px;
    float: left;
  }
}
.footer-messages [class*="footer-messages-"] i:before {
  font-family: "beacon-icon-fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  font-size: 70px;
  line-height: 70px;
  color: #999;
  margin: 0;
  vertical-align: top;
}
.footer-messages .footer-messages-first i:before {
  content: '\e80b';
  font-size: 90px;
}
.footer-messages .footer-messages-second i:before {
  content: '\e803';
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.footer-messages .footer-messages-second img {
  margin-right: 10px;
}
.footer-messages .footer-messages-third i:before {
  content: '\e804';
  font-size: 52px;
}
.footer-messages .footer-messages-third i:after {
  content: attr(data-count);
  font-size: 20px;
  font-style: normal;
  font-weight: bold;
  left: 0;
  line-height: 70px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}
.footer-messages .footer-messages-fourth i:before {
  content: '\e805';
  font-size: 56px;
}
.footer-messages .footer-messages-fourth span.icon-50year img {
  float: left;
  width: 77px;
  margin-top: 9px;
  margin-right: 10px;
}

.footer-links .footer-container {
  /*padding: 0 10px;*/
}
.footer-links .footer-container .block {
  margin-bottom: 0;
}
.footer-links .footer-container .block h2 {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #000000;
  margin-bottom: 0;
  letter-spacing: 1px;
  border-bottom: 0;
}
.footer-links .footer-container .block ul {
  padding: 20px 15px 16px;
  border-bottom: 1px solid #e1e3e5;
}
@media only screen and (min-width: 600px) {
  .footer-links .footer-container .block ul {
    padding: 15px;
  }
}
.footer-links .footer-container .block ul li {
  padding: 0 0 0 18px;
  padding-bottom: 7px;
  background: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/dot-01.png") left 10px no-repeat;
}
@media only screen and (min-width: 600px) {
  .footer-links .footer-container .block ul li {
    padding-bottom: 5px;
  }
}
.footer-links .footer-container .block ul li a {
  font-size: 13px;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  color: #ffffff;
}
@media only screen and (min-width: 600px) {
  .footer-links .footer-container .block ul li a {
    font-size: 14px;
  }
}
.footer-links .footer-container .sidebar .block:not(.block-layered-nav) h2,
.footer-links .footer-container .sidebar .block:not(.block-layered-nav) .block-title {
  padding: 0;
  line-height: 50px;
}
@media only screen and (min-width: 600px) {
  .footer-links .footer-container .sidebar .block:not(.block-layered-nav) h2,
  .footer-links .footer-container .sidebar .block:not(.block-layered-nav) .block-title {
    padding: 0;
  }
}
@media only screen and (min-width: 600px) {
  .footer-links .footer-container .sidebar .block:not(.block-layered-nav) h2,
  .footer-links .footer-container .sidebar .block:not(.block-layered-nav) .block-title {
    line-height: 50px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-links .footer-container .sidebar .block:not(.block-layered-nav) h2,
  .footer-links .footer-container .sidebar .block:not(.block-layered-nav) .block-title {
    line-height: 1.2;
  }
}
@media only screen and (max-width: 1023px) {
  .footer-links .footer-container .sidebar .block:not(.block-layered-nav) h2,
  .footer-links .footer-container .sidebar .block:not(.block-layered-nav) .block-title {
    border-bottom: 1px solid #e1e3e5;
    cursor: pointer;
    position: relative;
  }
  .footer-links .footer-container .sidebar .block:not(.block-layered-nav) h2:after,
  .footer-links .footer-container .sidebar .block:not(.block-layered-nav) .block-title:after {
    content: "\e820";
    float: right;
    height: 54px;
    line-height: 54px;
    position: absolute;
    right: 0;
    top: -2px;
    padding: 0 15px;
    color: #919191;
    font-size: 12px;
  }
  .footer-links .footer-container .sidebar .block:not(.block-layered-nav) h2.active,
  .footer-links .footer-container .sidebar .block:not(.block-layered-nav) .block-title.active {
    background: transparent;
  }
  .footer-links .footer-container .sidebar .block:not(.block-layered-nav) h2.active:after,
  .footer-links .footer-container .sidebar .block:not(.block-layered-nav) .block-title.active:after {
    content: "\e821";
    line-height: 54px;
  }
  .footer-links .footer-container .sidebar .block:last-of-type {
    border-bottom: 0;
  }
}

.footer-socials {
  margin-bottom: 32px;
}
@media only screen and (min-width: 600px) {
  .footer-socials {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-socials {
    margin-bottom: 0;
  }
}
.footer-socials .footer-container {
  border-top: 0;
}
.footer-socials .footer-container .footer-slogan {
  text-align: center;
}
.footer-socials .footer-container .footer-slogan img {
  margin: 33px auto 0;
  width: auto;
}
@media only screen and (min-width: 600px) {
  .footer-socials .footer-container .footer-slogan img {
    margin: 21px auto 0;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-socials .footer-container .footer-slogan img {
    margin: 32px auto 0;
  }
}
.footer-socials .social-links {
  text-align: center;
  margin-top: 12px;
}
@media only screen and (min-width: 600px) {
  .footer-socials .social-links {
    text-align: right;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-socials .social-links {
    text-align: right;
  }
}
@media only screen and (min-width: 600px) {
  .footer-socials .social-links {
    margin-top: 34px;
  }
}
@media only screen and (min-width: 1024px) {
  .footer-socials .social-links {
    margin-top: 15px;
  }
}
.footer-socials .social-links h2 {
  line-height: 41px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  text-transform: none;
  font-size: 18px;
}
@media only screen and (min-width: 600px) {
  .footer-socials .social-links h2 {
    font-size: 20px;
  }
}

.social-links {
  line-height: 41px;
}
.social-links ul {
  display: inline-block;
  vertical-align: middle;
  line-height: 100%;
  margin-top: 7px;
}
@media only screen and (min-width: 600px) {
  .social-links ul {
    margin-top: 2px;
  }
}
@media only screen and (min-width: 1024px) {
  .social-links ul {
    margin-top: 0;
  }
}
.social-links ul li {
  display: inline-block;
  vertical-align: top;
  margin-left: 10px;
}
.social-links ul li:first-child {
  margin-left: 0;
}
.social-links ul li a[class*="icon-"] {
  background: #838383;
}
.social-links ul li a[class*="icon-"]:before {
  width: 41px;
  margin: 0px;
  text-align: center;
  height: 41px;
  line-height: 40px;
}

.footer-copyright .footer-container {
  border-top: 1px solid #e1e3e5;
  padding: 30px 0;
  padding: 32px 0;
}
@media only screen and (min-width: 600px) {
  .footer-copyright .footer-container {
    padding: 30px 0;
  }
}
.footer-copyright address {
  color: #999;
  font-size: 12px;
  width: 100%;
  text-align: center;
  display: inline-block;
  margin-top: 25px;
  clear: both;
}
@media only screen and (min-width: 600px) {
  .footer-copyright address {
    margin-top: 0;
  }
}
@media only screen and (min-width: 600px) {
  .footer-copyright address {
    clear: none;
  }
}
.footer-copyright .footer-nav {
  width: 100%;
  text-align: center;
}
.footer-copyright .footer-nav ul li {
  display: inline-block;
  margin-left: 15px;
}
.footer-copyright .footer-nav ul li.first {
  margin-left: 0;
}
.footer-copyright .footer-nav ul li a {
  display: block;
  color: #666;
  font-size: 12px;
}

.checkout-shopsecurely {
  float: right;
  margin-bottom: 0;
  line-height: 29px;
  width: 100%;
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .checkout-shopsecurely {
    width: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .checkout-shopsecurely {
    width: auto;
  }
}
@media only screen and (min-width: 600px) {
  .checkout-shopsecurely {
    text-align: left;
  }
}
.checkout-shopsecurely p {
  display: none;
}
.checkout-shopsecurely li {
  display: inline-block;
  line-height: 29px;
  margin-left: 10px;
  vertical-align: top;
}
.checkout-shopsecurely li:first-child {
  margin-left: 0;
}
.checkout-shopsecurely li a {
  display: block;
}
.checkout-shopsecurely li a img {
  display: block;
  vertical-align: middle;
}
.checkout-shopsecurely .mobile {
  display: none;
}

@media only screen and (min-width: 600px) {
  .footer-copyright .footer-container {
    border-top: 1px solid #e1e3e5;
    padding: 20px 0;
  }
  .footer-copyright address {
    float: left;
    line-height: 30px;
    width: auto;
    text-align: left;
    font-size: 11px;
  }
  .footer-copyright .footer-nav {
    float: left;
    width: auto;
    text-align: left;
    line-height: 29px;
  }
  .footer-copyright .footer-nav ul li {
    margin-left: 15px;
  }
  .footer-copyright .footer-nav ul li.first {
    margin-left: 10px;
  }
  .footer-copyright .footer-nav ul li a {
    font-size: 11px;
  }
}
@media only screen and (min-width: 1024px) {
  .desktop-hidden {
    display: none !important;
  }

  .footer-subscribe .footer-container .block-subscribe {
    text-align: right;
    margin-top: 24px;
  }
  .footer-subscribe .footer-container .block-subscribe .block-content {
    margin-top: 0;
    position: relative;
  }
  .footer-subscribe .footer-container .block-subscribe .block-content .input-box input {
    padding-right: 114px;
  }
  .footer-subscribe .footer-container .block-subscribe .block-content .input-box .validation-advice {
    text-align: left;
  }
  .footer-subscribe .footer-container .block-subscribe .block-content .actions {
    width: 114px;
  }
  .footer-subscribe .footer-container .block-subscribe .block-content .actions .button span span {
    font-size: 14px;
  }

  .footer-links .footer-container {
    padding: 50px 1% 70px 2.5%;
  }
  .footer-links .footer-container .block h2 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 1.5em;
    border-top: 0;
    padding-top: 0;
  }
  .footer-links .footer-container .block ul {
    padding: 0;
    border-bottom: 0;
  }

  .footer-socials .footer-container {
    padding: 0 0 20px;
    border-top: 2px solid #e1e3e5;
  }
  .footer-socials .footer-container .footer-slogan {
    text-align: left;
  }
  .footer-socials .footer-container .footer-slogan img {
    margin: 0;
  }
  .footer-socials .footer-container .social-links {
    margin-top: 50px;
  }
  .footer-socials .footer-container .social-links h2 {
    display: inline-block;
    margin-right: 15px;
    vertical-align: top;
    letter-spacing: 0;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1279px) {
  .footer-messages .footer-messages-fourth span.icon-50year {
    text-align: center;
    display: block;
    width: 100%;
  }
  .footer-messages .footer-messages-fourth span.icon-50year img {
    float: none;
    text-align: center;
    margin: 12px auto;
  }
}
@media only screen and (max-width: 767px) {
  .checkout-shopsecurely .desktop {
    display: none;
  }
  .checkout-shopsecurely .mobile {
    display: inline-block;
  }
  .checkout-shopsecurely li {
    width: 30%;
    margin-left: 0px;
    margin-bottom: 3px;
  }
  .checkout-shopsecurely li a img {
    margin: auto;
  }
  .checkout-shopsecurely li a.mobile-afterpay img {
    max-width: 100%;
  }
  .checkout-shopsecurely .afterpay-mobile {
    min-width: 60%;
  }
  .checkout-shopsecurely .afterpay-mobile .mobile {
    float: left;
  }
}
/* ================================================= *
 * General Product List Styles (not module-specific)
 * ================================================= */
/* -------------------------------------------- *
 * Product List General
 */
.category-title h1,
body.catalogsearch-result-index .page-title h1 {
  border-bottom: none;
}

.products-list .product-image .alt-img,
.products-grid .product-image .alt-img {
  left: 0;
  position: absolute;
  top: 0;
}

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

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

/* -------------------------------------------- *
 * Product Name
 */
h2.product-name,
h3.product-name,
h4.product-name,
h5.product-name {
  margin: 0;
  margin-bottom: 0.5em;
  color: #000;
  font-family: "proximanova-light", Verdana, Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
}

h2.product-name,
h3.product-name,
h4.product-name,
h5.product-name,
p.product-name {
  font-size: 13px;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.4;
}
h2.product-name a,
h3.product-name a,
h4.product-name a,
h5.product-name a,
p.product-name a {
  color: #000;
}
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: #666;
  text-decoration: none;
}

.products-grid .product-name {
  text-transform: uppercase;
  margin-bottom: 15px;
  font-size: 12px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  letter-spacing: 1px;
}
.products-grid .product-name a {
  font-weight: normal;
  font-size: 12px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
}

/* ============================================ *
 * Product Grid
 * ============================================ */
.products-grid {
  position: relative;
}
.products-grid .product-info .price-box {
  display: inline-block;
}
.products-grid .product-info .price-box .old-price {
  float: right;
}
.products-grid .product-info .price-box .old-price .price {
  width: auto;
  color: #000000;
}
.products-grid .product-info .price-box .special-price {
  float: left;
  margin-right: 10px;
  padding-left: 0;
}
.products-grid .product-info .price-box .special-attribute-price .price {
  display: none;
}
.products-grid .product-info .price-box .special-attribute-price .promo-text-wrapper .old-price-note {
  display: none;
}

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

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

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

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

/*   DINKUS STYLIN   */
.dinkus-big {
  width: 92px;
  height: 92px;
  position: absolute;
  z-index: 5;
}

.dinkus-small {
  width: 77px;
  height: 77px;
  margin-bottom: 10px;
  background-repeat: no-repeat;
}
.dinkus-small img {
  max-width: 100%;
}

.product-main-info .dinkus-small {
  position: absolute;
  left: 20px;
  top: 20px;
  text-align: left;
}

.grid-float {
  position: absolute;
  z-index: 5;
  left: 0;
  /*top:0;*/
}

/*  Promo Pricing  */
p.promo-text-red {
  color: #ef2c26;
  font-size: 14px;
  margin: 0 !important;
  text-transform: uppercase;
  padding: 0;
  font-weight: normal;
}

p.promo-description {
  margin: 0 !important;
  padding: 0;
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
  color: #b3b3b3;
}

div.promo-text {
  line-height: 1.1;
}

.products-grid .price {
  text-align: right;
  font-size: 14px;
}

.promo-text-wrapper {
  clear: both;
  line-height: 16px;
}

/* End */
/* Price */
.special-attribute-price .special-attribute div {
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: HelveticaCdMed, Arial, sans-serif;
  font-weight: normal;
  padding: 0px 5px;
  line-height: 26px;
  font-size: 20px;
  float: right;
}

.special-attribute-price .special-attribute .diy {
  background: #A67BF5 none repeat scroll 0 0;
}

.special-attribute-price .special-attribute .value {
  background: #49b4d0 none repeat scroll 0 0;
}

.special-attribute-price .special-attribute .led {
  background: #8abf2b none repeat scroll 0 0;
}

.grid-float .special-attribute-price span.price {
  color: #07283C;
  float: right;
  font-size: 18px;
}

.rule {
  clear: both;
  font-family: arial;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
}

p.old-price-note {
  display: inline-block;
  color: #7e7e7e;
  font-size: 10px;
  margin: 0px !important;
  text-transform: uppercase;
}
p.old-price-note span {
  text-decoration: line-through;
}
p.old-price-note span.old-price-label {
  text-decoration: none;
}

.promo-text-wrapper p.promo-text-red,
.promo-text-wrapper p.promo-description {
  font-size: 10px;
  display: inline-block;
  color: #ef2c26;
}

.products-grid-recommended p.old-price-note {
  font-size: 10px;
  line-height: 8px;
}

.special-price .price {
  color: #ed1c24;
}

p.you-save {
  display: inline-block;
  color: #ed1c24;
  font-size: 10px;
  margin: 0px !important;
  text-transform: uppercase;
  font-weight: normal;
}

.products-grid-recommended p.you-save {
  font-size: 10px;
}

.old-price-note span {
  text-decoration: none;
}

.special-attribute-price .old-price {
  text-decoration: line-through;
  margin-left: 5px;
}

/* */
.products-grid .product-info {
  position: relative;
}

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

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

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

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

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

/* ============================================ *
 * Category sub Pages
 * ============================================ */
.category-description {
  display: none;
}
.category-description .long-desc h5 {
  font-family: "proximanova-light", Verdana, Arial, sans-serif;
  font-size: 18px;
}

.toolbar .nice-select {
  clear: none;
}

.category-products .products-grid .product-info .ratings {
  display: none;
}
.category-products .products-grid .product-info .actions {
  display: none;
}

@media only screen and (min-width: 600px) {
  .page-title.category-title h1 {
    padding-bottom: 0;
    line-height: 48px;
    margin-bottom: 10px;
    margin-top: -6px;
  }

  .category-description {
    display: block;
  }
  .category-description.category-hasstatic {
    border: 1px solid #e7e7e7;
  }
  .category-description.category-hasstatic .category-image {
    float: right;
    margin: 0;
    padding: 0;
    border: 0;
  }
  .category-description.category-hasstatic .long-desc {
    float: left;
  }
}
@media only screen and (min-width: 600px) and (min-width: 600px) {
  .category-description.category-hasstatic .long-desc {
    padding: 25px 50px 0;
  }
}
@media only screen and (min-width: 600px) and (min-width: 1024px) {
  .category-description.category-hasstatic .long-desc {
    padding: 40px 50px 0;
  }
}
@media only screen and (min-width: 600px) {
  .category-description.category-hasstatic .long-desc p {
    overflow: hidden;
  }
}
@media only screen and (min-width: 600px) and (min-width: 600px) {
  .category-description.category-hasstatic .long-desc p {
    height: 4.5em;
  }
}

@media only screen and (max-width: 600px) {
  .page-title.category-title {
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .page-title.category-title h1 {
    padding-bottom: 0;
    margin-bottom: 0;
    line-height: 22px;
    font-size: 22px;
  }

  .products-grid .product-name {
    font-size: 10px;
  }
  .products-grid .product-name a {
    font-size: 10px;
  }

  .products-grid .product-info .price-box .price {
    font-size: 12px;
  }

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

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

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

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

@media only screen and (min-width: 480px) {
  /* 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: 5.55556%;
  }
  .products-grid > li {
    width: 29.62963%;
    margin-right: 5.55556%;
  }
  .products-grid > li:nth-child(3n+1) {
    clear: left;
  }
  .products-grid > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 960px) {
  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  .products-grid--max-4-col > li:nth-child(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: 3.33333%;
  }

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

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

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

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

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

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

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

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

  .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
 * ============================================ */
/* ============================================ *
 * 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: $gap;*/
}
.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 #e7e7e7;
  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: #000;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0px;
  padding: 7px 10px;
  border-width: 1px;
  border-style: solid;
  border-color: #e7e7e7;
  position: relative;
  cursor: pointer;
}
.block-layered-nav .block-subtitle--filter:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 4px solid #666;
  border-bottom: none;
  right: 10px;
  top: 50%;
  margin-top: -3px;
}
.block-layered-nav .block-subtitle--filter:hover {
  background-color: #ededed;
}

.block-layered-nav .block-content .toggle-tabs {
  display: none;
}
.block-layered-nav .block-content > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #000;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0px;
  padding: 7px 10px;
  border-width: 1px;
  border-style: solid;
  border-color: #e7e7e7;
  position: relative;
  display: block;
}
.block-layered-nav .block-content > dl > dt:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 4px solid #666;
  border-bottom: none;
  right: 10px;
  top: 50%;
  margin-top: -3px;
}
.block-layered-nav .block-content > dl > dt:hover {
  background-color: #ededed;
}
.block-layered-nav .block-content > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #e7e7e7;
}
.block-layered-nav .block-content > dl > dd:last-child {
  border-width: 0 1px 1px 1px;
}

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

@media only screen and (min-width: 771px) {
  .block-layered-nav .block-content > dl > dt {
    padding-left: 10px;
  }
  .block-layered-nav .block-content > dl > dt:after {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .col2-left-layout .col-left {
    float: none;
    padding: 0;
    margin: 0;
    width: auto;
  }

  .category-description {
    margin-bottom: 20px;
  }

  .sidebar .block.block-layered-nav {
    border-bottom: none;
  }

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

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

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

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

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

  .block-layered-nav dl ol > li > a {
    color: #000;
    background-color: #F4F4F4;
    padding: 5px 10px;
  }
  .block-layered-nav dl ol > li > a:hover {
    text-decoration: none;
    background: #ededed;
  }
}
.block-layered-nav .currently .block-subtitle {
  display: block;
  margin: 0;
  margin-bottom: 10px;
  color: #000;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  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;
  line-height: 22px;
}
.block-layered-nav .currently ol li .label {
  font-weight: bold;
}
.block-layered-nav .currently ol li:after {
  content: '';
  display: table;
  clear: both;
}

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

/* ============================================ *
 * Responsive
 * ============================================ */
.col2-left-layout .col-left.sidebar {
  display: none;
}
@media only screen and (min-width: 600px) {
  .col2-left-layout .col-left.sidebar {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .col2-left-layout .col-left.sidebar {
    display: block;
  }
}
.col2-left-layout .col-main {
  width: auto;
}
@media only screen and (min-width: 600px) {
  .col2-left-layout .col-main {
    width: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .col2-left-layout .col-main {
    width: 75%;
  }
}
.col2-left-layout .col-main .col-left.sidebar {
  display: block;
}
@media only screen and (min-width: 600px) {
  .col2-left-layout .col-main .col-left.sidebar {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .col2-left-layout .col-main .col-left.sidebar {
    display: none;
  }
}
.col2-left-layout .col-main .page-title.category-title h1 {
  font-size: 22px;
  line-height: 22px;
}
@media only screen and (min-width: 600px) {
  .col2-left-layout .col-main .page-title.category-title h1 {
    font-size: 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .col2-left-layout .col-main .page-title.category-title h1 {
    font-size: 48px;
  }
}
@media only screen and (min-width: 600px) {
  .col2-left-layout .col-main .page-title.category-title h1 {
    line-height: 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .col2-left-layout .col-main .page-title.category-title h1 {
    line-height: 48px;
  }
}

.category-landing-page .col2-left-layout .col-main .page-title.category-title {
  display: block;
}
@media only screen and (min-width: 600px) {
  .category-landing-page .col2-left-layout .col-main .page-title.category-title {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .category-landing-page .col2-left-layout .col-main .page-title.category-title {
    display: block;
  }
}

/* ============================================ *
 * Catalog - Product
 * ============================================ */
.product-view .product-essential .extra-info .ratings .rating-box,
.product-view .product-essential .extra-info .ratings .amount {
  float: left;
}
.product-view .product-essential .extra-info .ratings .rating-box {
  margin-top: 8px;
  margin-right: 10px;
}
.product-view .product-essential .extra-info .ratings:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .product-essential:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .product-shop .product-name h1, .product-view .product-shop .product-name .h1,
.product-view .product-img-box .product-name h1,
.product-view .product-img-box .product-name .h1 {
  color: #000;
  margin-bottom: 0;
  border: 0;
  font-size: 22px;
  line-height: 26px;
}
@media only screen and (min-width: 600px) {
  .product-view .product-shop .product-name h1, .product-view .product-shop .product-name .h1,
  .product-view .product-img-box .product-name h1,
  .product-view .product-img-box .product-name .h1 {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 600px) {
  .product-view .product-shop .product-name h1, .product-view .product-shop .product-name .h1,
  .product-view .product-img-box .product-name h1,
  .product-view .product-img-box .product-name .h1 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .product-view .product-shop .product-name h1, .product-view .product-shop .product-name .h1,
  .product-view .product-img-box .product-name h1,
  .product-view .product-img-box .product-name .h1 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 600px) {
  .product-view .product-shop .product-name h1, .product-view .product-shop .product-name .h1,
  .product-view .product-img-box .product-name h1,
  .product-view .product-img-box .product-name .h1 {
    line-height: 34px;
  }
}
@media only screen and (min-width: 1024px) {
  .product-view .product-shop .product-name h1, .product-view .product-shop .product-name .h1,
  .product-view .product-img-box .product-name h1,
  .product-view .product-img-box .product-name .h1 {
    line-height: 34px;
  }
}
.product-view .product-shop {
  width: 100%;
  float: right;
}
@media only screen and (min-width: 600px) {
  .product-view .product-shop {
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .product-view .product-shop {
    width: 42%;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  .product-view .product-shop {
    width: 44%;
  }
}

.product-view .product-shop a:hover {
  text-decoration: none;
}
.product-view .product-shop .product-name .h1 {
  margin-bottom: 5px;
}
.product-view .product-shop .product-info {
  padding-bottom: 25px;
  margin-bottom: 28px;
  min-height: 100px;
  border-bottom: 1px solid #e7e7e7;
}
.product-view .product-shop .product-info .special-price,
.product-view .product-shop .product-info .regular-price {
  float: left;
  padding-left: 0;
}
.product-view .product-shop .product-info .old-price {
  display: none;
}
.product-view .product-shop .product-info .price-box {
  margin: 0;
  height: 100%;
  line-height: 100%;
}
.product-view .product-shop .product-info .product-type-data {
  margin: 0;
  vertical-align: top;
  float: left;
  width: auto;
  min-width: 100%;
}
@media only screen and (min-width: 600px) {
  .product-view .product-shop .product-info .product-type-data {
    min-width: 82%;
  }
}
.product-view .product-shop .product-info .special-attribute-price {
  display: inline-block;
  padding: 0 0 0 8px;
}
@media only screen and (min-width: 600px) {
  .product-view .product-shop .product-info .special-attribute-price {
    padding: 5px 0 6px 8px;
  }
}
.product-view .product-shop .product-info .special-attribute-price .dinkus-small,
.product-view .product-shop .product-info .special-attribute-price .price {
  display: none;
}
.product-view .product-shop .product-info .special-attribute-price .promo-text-wrapper * {
  line-height: 15px;
}
.product-view .product-shop .product-info .special-attribute-price .promo-text-wrapper p {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
}
@media only screen and (min-width: 600px) {
  .product-view .product-shop .product-info .special-attribute-price .promo-text-wrapper p {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1024px) {
  .product-view .product-shop .product-info .special-attribute-price .promo-text-wrapper p {
    font-size: 14px;
  }
}
.product-view .product-shop .product-info .special-attribute-price .promo-text-wrapper .promo-text-red,
.product-view .product-shop .product-info .special-attribute-price .promo-text-wrapper .promo-description {
  color: #ef4023;
}
.product-view .product-shop .product-info .special-attribute-price .promo-text-wrapper .old-price-note {
  color: #7e7e7e;
}
.product-view .product-shop .product-info .special-attribute-price .promo-text-wrapper .old-price-note span {
  text-decoration: none;
}
.product-view .product-shop .product-info .special-attribute-price .promo-text-wrapper .old-price-note span.old-price-label {
  text-decoration: none;
}
.product-view .product-shop .product-info .no-rating {
  float: right;
  min-width: 100%;
  margin-top: 7px;
  text-align: left;
}
@media only screen and (min-width: 600px) {
  .product-view .product-shop .product-info .no-rating {
    min-width: 18%;
  }
}
@media only screen and (min-width: 600px) {
  .product-view .product-shop .product-info .no-rating {
    text-align: right;
  }
}
.product-view .product-shop .product-info .no-rating a {
  color: #000;
}
.product-view .product-shop .product-info .no-rating a:hover {
  text-decoration: underline;
}
.product-view .product-shop .product-info .nobr,
.product-view .product-shop .product-info .ratings {
  float: left;
  min-width: 100%;
  margin-top: 7px;
  text-align: left;
}
@media only screen and (min-width: 600px) {
  .product-view .product-shop .product-info .nobr,
  .product-view .product-shop .product-info .ratings {
    min-width: 30%;
  }
}
@media only screen and (min-width: 600px) {
  .product-view .product-shop .product-info .nobr,
  .product-view .product-shop .product-info .ratings {
    text-align: right;
  }
}
.product-view .product-shop .product-info .nobr a,
.product-view .product-shop .product-info .ratings a {
  color: #000;
}
.product-view .product-shop .product-info .nobr a:hover,
.product-view .product-shop .product-info .ratings a:hover {
  text-decoration: underline;
}
.product-view .product-shop .product-info .nobr *,
.product-view .product-shop .product-info .no-rating * {
  margin-top: 4px;
  display: inline-block;
}
.product-view .product-shop .product-info .ratings-table {
  display: none;
}
.product-view .product-shop .extra-info {
  float: left;
  padding-right: 15px;
  clear: left;
  width: 70%;
}
.product-view .product-shop .price-info {
  float: right;
  padding-left: 15px;
  text-align: right;
}
.product-view .product-shop .extra-info,
.product-view .product-shop .price-info {
  max-width: 70%;
  margin-bottom: 10px;
}
.product-view .product-shop .short-description {
  margin-bottom: 10px;
  clear: both;
}
.product-view .product-shop .ratings {
  margin: 0;
}
.product-view .product-shop .availability {
  font-size: 16px;
}
.product-view .product-shop .price-box .old-price,
.product-view .product-shop .price-box .special-price,
.product-view .product-shop .price-box .regular-price {
  padding-right: 0;
  line-height: 1.2;
}
.product-view .product-shop .price-box .regular-price .price,
.product-view .product-shop .price-box .special-price .price,
.product-view .product-shop .price-box .full-product-price .price {
  color: #000;
  font-size: 28px;
}
@media only screen and (min-width: 600px) {
  .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 {
    font-size: 34px;
  }
}
@media only screen and (min-width: 1024px) {
  .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 {
    font-size: 34px;
  }
}
.product-view .product-shop .price-box .special-price .price-label {
  font-size: 16px;
  text-transform: uppercase;
}
.product-view .product-shop .price-box .special-price span.weee {
  color: #000;
}
.product-view .product-shop .price-box .special-price span.weee span.price {
  font-size: 16px;
}
.product-view .product-shop .price-box .price-excluding-tax,
.product-view .product-shop .price-box .price-including-tax {
  display: block;
  line-height: 1.2;
  color: #000;
}
.product-view .product-shop .price-box .price-excluding-tax .label,
.product-view .product-shop .price-box .price-including-tax .label {
  font-size: 16px;
  font-weight: 300;
}
.product-view .product-shop .price-box .price-excluding-tax .price,
.product-view .product-shop .price-box .price-including-tax .price {
  font-size: 20px;
}
.product-view .price-box.map-info a {
  display: inherit;
}
.product-view .old-price .price-label {
  display: none;
}
.product-view .location-tab {
  margin: 30px 0;
}
.product-view .location-tab .toggle-tabs span:before {
  display: inline-block;
  height: 21px;
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/tabs.png);
  background-origin: content-box;
  content: "";
  z-index: 55555555;
  margin: 10px 10px 0 0;
  vertical-align: -5px;
}
.product-view .location-tab .toggle-tabs span.delivery:before {
  background-position: 0 0;
  width: 26px;
}
.product-view .location-tab .toggle-tabs span.pickup:before {
  background-position: -50px 0;
  width: 36px;
}
.product-view .location-tab .product-pick-up-store-info {
  float: none;
}
.product-view .location-tab .collateral-tabs {
  padding-bottom: 20px;
  border-bottom: 1px solid #e7e7e7;
}
.product-view .location-tab address {
  margin: 10px 0;
}
@media only screen and (max-width: 767px) {
  .product-view .location-tab .product-pick-up-store-info-address {
    float: none;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.product-view .location-tab .product-pickup-store-availability {
  padding: 0 5% 0 13%;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .product-view .location-tab .product-pickup-store-availability {
    float: none;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.product-view .location-tab .location-availability-out-of-stock:before,
.product-view .location-tab .location-availability-label-out-of-stock:before,
.product-view .location-tab .location-availability-in-stock:before,
.product-view .location-tab .location-availability-label-in-stock:before,
.product-view .location-tab .pick-up-store-phone-label:before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/icons.png) no-repeat;
  display: inline-block;
  vertical-align: -2px;
}
.product-view .location-tab .pick-up-store-phone-label:before {
  background-position: 0 -150px;
}
.product-view .location-tab .location-availability-label-in-stock,
.product-view .location-tab .location-availability-in-stock {
  color: #4b9427;
}
.product-view .location-tab .location-availability-label-in-stock:before,
.product-view .location-tab .location-availability-in-stock:before {
  background-position: 0 0;
}
.product-view .location-tab .location-availability-out-of-stock:before {
  background-position: 0 -50px;
}
.product-view .location-tab .location-availability-label-out-of-stock:before {
  background-position: 0 -100px;
  margin-bottom: 24px;
  float: left;
}
.product-view .add-to-cart-wrapper {
  padding-bottom: 13px;
  margin-bottom: 28px;
  border-bottom: 1px solid #e7e7e7;
}
.product-view .add-to-cart-wrapper:after {
  content: '';
  display: table;
  clear: both;
}
@media only screen and (min-width: 600px) {
  .product-view .add-to-cart-wrapper {
    padding-bottom: 29px;
  }
}
@media only screen and (min-width: 1024px) {
  .product-view .add-to-cart-wrapper {
    padding-bottom: 29px;
  }
}
.product-view .add-to-cart-wrapper .product-availability {
  display: block;
  clear: both;
  overflow: hidden;
  padding-bottom: 15px;
  margin-top: -5px;
}
.product-view .add-to-cart-wrapper .product-availability .availability-label {
  float: left;
  margin-right: 10px;
  text-transform: uppercase;
  font-family: "proximanova-bold", Verdana, Arial, sans-serif;
}
.product-view .add-to-cart-wrapper .product-availability .availability-value {
  float: left;
  margin-right: 5px;
}
.product-view .add-to-cart-wrapper .product-availability .availability-value:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .product-view .add-to-cart-wrapper .add-to-box {
    float: none;
  }
}
.product-view .add-to-cart-wrapper .add-to-box.has-options {
  float: none;
}
.product-view .add-to-cart-wrapper .add-to-cart {
  margin: 0;
  padding: 0;
}
.product-view .add-to-cart-wrapper .add-to-cart > * {
  display: inline-block;
  vertical-align: top;
}
.product-view .add-to-cart-wrapper .add-to-cart .input-qty {
  margin-right: 5px;
  position: relative;
}
.product-view .add-to-cart-wrapper .add-to-cart .input-qty .nice-select {
  width: 70px;
}
.product-view .add-to-cart-wrapper .add-to-cart .input-qty i:after {
  font-size: 12px;
}
.product-view .add-to-cart-wrapper .add-to-cart .input-qty .qtybutton {
  position: absolute;
  right: 6px;
  top: 18px;
  color: #ababab;
  cursor: pointer;
}
.product-view .add-to-cart-wrapper .add-to-cart .input-qty .qtybutton ~ .qtybutton {
  top: 3px;
}
.product-view .add-to-cart-wrapper .add-to-cart .input-qty input {
  width: 62px;
  padding: 0 12px;
  font-size: 16px;
}
.product-view .add-to-cart-wrapper .add-to-cart .btn-cart {
  padding-left: 57px;
  padding-right: 57px;
}
@media only screen and (min-width: 600px) {
  .product-view .add-to-cart-wrapper .add-to-cart .btn-cart {
    padding-left: 86px;
  }
}
@media only screen and (min-width: 1024px) {
  .product-view .add-to-cart-wrapper .add-to-cart .btn-cart {
    padding-left: 44px;
  }
}
@media only screen and (min-width: 600px) {
  .product-view .add-to-cart-wrapper .add-to-cart .btn-cart {
    padding-right: 86px;
  }
}
@media only screen and (min-width: 1024px) {
  .product-view .add-to-cart-wrapper .add-to-cart .btn-cart {
    padding-right: 44px;
  }
}
.product-view .add-to-cart-wrapper .add-to-cart label.qty {
  line-height: 40px;
  margin-right: 15px;
  font-weight: 700;
}
.product-view .add-to-cart-wrapper [class*='promo-message'] {
  padding-top: 15px;
  clear: both;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .product-view .add-to-cart-wrapper [class*='promo-message'] {
    padding-top: 4px;
  }
}
@media only screen and (min-width: 1024px) {
  .product-view .add-to-cart-wrapper [class*='promo-message'] {
    padding-top: 4px;
  }
}
@media only screen and (min-width: 600px) {
  .product-view .add-to-cart-wrapper [class*='promo-message'] {
    clear: none;
  }
}
@media only screen and (min-width: 1024px) {
  .product-view .add-to-cart-wrapper [class*='promo-message'] {
    clear: none;
  }
}
@media only screen and (min-width: 600px) {
  .product-view .add-to-cart-wrapper [class*='promo-message'] {
    text-align: left;
  }
}
.product-view .add-to-cart-wrapper [class*='promo-message'] h5 {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 16px;
  color: #4ac3c7;
  margin: 0;
  line-height: 100%;
}
.product-view .add-to-cart-wrapper [class*='promo-message'] p {
  font-size: 12px;
  text-transform: uppercase;
}
.product-view .add-to-cart-wrapper [class*='promo-message'] strong {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  margin-right: 5px;
}
.product-view .add-to-cart-wrapper [class*='promo-message'].promo-message-giftcard {
  padding-top: 15px;
}
@media only screen and (min-width: 600px) {
  .product-view .add-to-cart-wrapper [class*='promo-message'].promo-message-giftcard {
    padding-top: 12px;
  }
}
@media only screen and (min-width: 1024px) {
  .product-view .add-to-cart-wrapper [class*='promo-message'].promo-message-giftcard {
    padding-top: 12px;
  }
}
.product-view .add-to-cart-wrapper .promo-message {
  margin: 15px 0;
}
.product-view .zoom-tip {
  display: none;
}
@media only screen and (min-width: 600px) {
  .product-view .zoom-tip {
    display: inline-block;
  }
}
@media only screen and (min-width: 1024px) {
  .product-view .zoom-tip {
    display: inline-block;
  }
}
.product-view .social-box {
  display: table;
  float: none;
  margin: 0 auto 17px;
  overflow: hidden;
}
@media only screen and (min-width: 600px) {
  .product-view .social-box {
    display: inline-block;
  }
}
@media only screen and (min-width: 1024px) {
  .product-view .social-box {
    display: inline-block;
  }
}
@media only screen and (min-width: 600px) {
  .product-view .social-box {
    float: right;
  }
}
@media only screen and (min-width: 1024px) {
  .product-view .social-box {
    float: right;
  }
}
@media only screen and (min-width: 600px) {
  .product-view .social-box {
    margin: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .product-view .social-box {
    margin: 0;
  }
}
.product-view .social-box .box-title {
  display: none;
}
.product-view .social-box > * {
  float: left;
  padding-right: 7px;
}
.product-view .social-box .facebok-btn {
  max-height: 25px;
  width: 95px;
}
.product-view .social-box .emailfriends-btn {
  width: 25px;
  height: 20px;
  overflow: hidden;
  padding: 0;
  position: relative;
}
.product-view .social-box .emailfriends-btn:before {
  font-family: "beacon-icon-fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  content: '\e831';
  color: #e7e7e7;
  margin-left: 0;
  font-size: 25px;
  position: absolute;
  top: -3px;
  left: 0;
}
.product-view .social-box .emailfriends-btn * {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
.product-view .product-related {
  width: 52.5%;
  float: left;
  margin-bottom: 10px;
  border-top: 1px soid #e7e7e7;
  margin-top: -10px;
}
@media only screen and (min-width: 600px) {
  .product-view .product-related {
    margin-bottom: 12px;
  }
}
@media only screen and (min-width: 1024px) {
  .product-view .product-related {
    margin-bottom: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .product-view .product-related {
    width: 100%;
  }
}
@media only screen and (max-width: 1023px) and (min-width: 768px) {
  .product-view .product-related {
    width: 100%;
  }
}

@media only screen and (min-width: 600px) {
  .product-view .product-related {
    border-top: 1px solid #e7e7e7;
  }
}
@media only screen and (min-width: 1024px) {
  .product-view .product-related {
    border-top: none;
  }
}
@media only screen and (min-width: 600px) {
  .product-view .product-related {
    margin-top: -20px;
  }
}
@media only screen and (min-width: 1024px) {
  .product-view .product-related {
    margin-top: 0;
  }
}
.product-view .product-related .block-title {
  padding-top: 17px;
}
@media only screen and (min-width: 600px) {
  .product-view .product-related .block-title {
    padding-top: 17px;
  }
}
@media only screen and (min-width: 1024px) {
  .product-view .product-related .block-title {
    padding-top: 10px;
  }
}
.product-view .block-related .mini-products-list {
  text-align: center;
}
.product-view .block-related .mini-products-list:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .block-related .mini-products-list li .product-image {
  display: block;
  text-align: center;
  width: 100%;
  margin: 20px 0;
}
@media only screen and (max-width: 767px) {
  .product-view .block-related .mini-products-list li .product-image {
    float: none;
  }
  .product-view .block-related .mini-products-list li .product-image img {
    margin: auto;
  }
}
.product-view .block-related .mini-products-list li .product-image img {
  max-width: 100%;
  display: inline-block;
}
.product-view .block-related .product-name {
  font-size: 12px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  line-height: 1.2em;
  letter-spacing: 0;
  float: left;
  width: 100%;
  text-align: center;
  min-height: 40px;
}
.product-view .block-related .owl-controls .owl-nav {
  position: absolute;
  right: 0;
  top: -50px;
  width: 92px;
}
.product-view .block-related .owl-controls .owl-nav .owl-prev,
.product-view .block-related .owl-controls .owl-nav .owl-next {
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/slide-arrow-02.png) 0 0 no-repeat;
  width: 41px;
  height: 41px;
  float: left;
  text-indent: -10000em;
  cursor: pointer;
}
.product-view .block-related .owl-controls .owl-nav .owl-next {
  float: right;
  background-position: 100% 100%;
}
.product-view #customer-reviews h2 {
  font-size: 22px;
}
@media only screen and (min-width: 600px) {
  .product-view #customer-reviews h2 {
    font-size: 36px;
  }
}
.product-view .availability-message {
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin: 10px 0px;
}
.product-view .availability-message strong {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
}

@media only screen and (max-width: 850px) {
  .product-view .product-shop .price-box .price-excluding-tax .label,
  .product-view .product-shop .price-box .price-including-tax .label {
    font-size: 15px;
  }
  .product-view .product-shop .price-box .price-excluding-tax .price,
  .product-view .product-shop .price-box .price-including-tax .price {
    font-size: 18px;
  }
}
@media only screen and (max-width: 770px) {
  .product-view .add-to-cart-wrapper {
    float: none;
    width: 100%;
    clear: both;
  }
  .product-view .product-shop .price-box .price-excluding-tax .label,
  .product-view .product-shop .price-box .price-including-tax .label {
    font-size: 16px;
  }
  .product-view .product-shop .price-box .price-excluding-tax .price,
  .product-view .product-shop .price-box .price-including-tax .price {
    font-size: 20px;
  }
}
@media only screen and (max-width: 420px) {
  .product-view .product-shop .price-box .price-excluding-tax,
  .product-view .product-shop .price-box .price-including-tax {
    margin-bottom: 5px;
  }
  .product-view .product-shop .price-box .price-excluding-tax span,
  .product-view .product-shop .price-box .price-including-tax span {
    display: block;
  }
}
.product-img-box {
  width: 100%;
  float: left;
  /*
  * Itemslider - based on Owl Carousel
  *
  * IMPORTANT: Flexslider was replaced by Owl Carousel.
  * Deprecated styles for Flexslider are not needed any more and can be found inside this file: itemslider-old.css
  */
}
@media only screen and (min-width: 600px) {
  .product-img-box {
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .product-img-box {
    width: 58%;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  .product-img-box {
    width: 56%;
  }
}

.product-img-box .product-name h1 {
  border: 0;
}
.product-img-box .itemslider-thumbnails {
  display: none;
  position: relative;
  z-index: 7;
  max-width: 85px;
  float: left;
  margin: 0;
}
@media only screen and (min-width: 600px) {
  .product-img-box .itemslider-thumbnails {
    display: block;
  }
}
@media only screen and (min-width: 600px) {
  .product-img-box .itemslider-thumbnails {
    max-width: 104px;
  }
}
@media only screen and (min-width: 1024px) {
  .product-img-box .itemslider-thumbnails {
    max-width: 85px;
  }
}
.product-img-box .itemslider-thumbnails img {
  width: 100%;
}
.product-img-box .itemslider-thumbnails.more-images.itemslider-thumbnails.count-multi._show-control {
  position: relative;
  padding: 35px 0;
}
.product-img-box .itemslider-thumbnails.more-images.itemslider-thumbnails.count-multi._show-control .owl-controls._vertical {
  position: static;
}
.product-img-box .itemslider-thumbnails.more-images.itemslider-thumbnails.count-multi._show-control .owl-controls._vertical .owl-nav {
  height: 0;
}
.product-img-box .itemslider-thumbnails.more-images.itemslider-thumbnails.count-multi._show-control .owl-controls._vertical #owl-prev-vertical,
.product-img-box .itemslider-thumbnails.more-images.itemslider-thumbnails.count-multi._show-control .owl-controls._vertical #owl-next-vertical {
  position: static;
  height: 0;
}
.product-img-box .itemslider-thumbnails.more-images.itemslider-thumbnails.count-multi._show-control .owl-controls._vertical .owl-prev:before {
  top: 0;
  margin: 0;
}
.product-img-box .itemslider-thumbnails.more-images.itemslider-thumbnails.count-multi._show-control .owl-controls._vertical .owl-next:before {
  top: auto;
  bottom: 0;
  margin: 0;
}
.product-img-box .itemslider-thumbnails #sync2 {
  max-height: 564px;
  overflow-y: hidden;
}
.product-img-box .owl-controls {
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100%;
}
.product-img-box .owl-controls .owl-nav {
  color: transparent;
}
.product-img-box .owl-controls .owl-prev, .product-img-box .owl-controls .owl-next {
  position: relative;
  display: inline-block;
}
.product-img-box .owl-controls .owl-prev:after, .product-img-box .owl-controls .owl-prev:before, .product-img-box .owl-controls .owl-next:after, .product-img-box .owl-controls .owl-next:before {
  font-family: "beacon-icon-fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  color: #e7e7e7;
  display: block;
  position: absolute;
}
.product-img-box .owl-controls .owl-prev:after, .product-img-box .owl-controls .owl-next:after {
  color: #FFF;
}
.product-img-box .owl-controls .owl-prev:after, .product-img-box .owl-controls .owl-prev:before {
  content: '\e817';
}
.product-img-box .owl-controls .owl-next {
  float: right;
}
.product-img-box .owl-controls .owl-next:after, .product-img-box .owl-controls .owl-next:before {
  content: '\e816';
}
.product-img-box .owl-controls._vertical .owl-prev:before {
  width: 22px;
  height: 41px;
  font-size: 46px;
  transform: rotate(90deg);
  left: 35px;
}
.product-img-box .owl-controls._vertical .owl-prev:after {
  display: none;
}
.product-img-box .owl-controls._vertical .owl-next:before {
  width: 22px;
  height: 41px;
  font-size: 46px;
  transform: rotate(90deg);
  left: 32px;
}
.product-img-box .owl-controls._vertical .owl-next:after {
  display: none;
}
.product-img-box #sync3 {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}
.product-img-box #sync3.owl-loaded {
  overflow: visible;
  height: auto;
  white-space: normal;
}
.product-img-box #sync3 > .sync-item {
  margin-left: 3%;
  width: 31%;
  display: inline-block;
  vertical-align: top;
}
.product-img-box #sync3 > .sync-item:first-child {
  margin-left: 0;
}
.product-img-box #sync3 .owl-controls {
  top: 32%;
}
.product-img-box #sync3 .owl-controls .owl-prev:after, .product-img-box #sync3 .owl-controls .owl-prev:before, .product-img-box #sync3 .owl-controls .owl-next:after, .product-img-box #sync3 .owl-controls .owl-next:before {
  width: 22px;
  height: 41px;
  font-size: 24px;
}
.product-img-box #sync3 .owl-controls .owl-prev {
  left: -37px;
}
.product-img-box #sync3 .owl-controls .owl-prev:after, .product-img-box #sync3 .owl-controls .owl-prev:before {
  top: 0;
}
.product-img-box #sync3 .owl-controls .owl-prev:after {
  left: 3px;
}
.product-img-box #sync3 .owl-controls .owl-next {
  right: -27px;
}
.product-img-box #sync3 .owl-controls .owl-next:after, .product-img-box #sync3 .owl-controls .owl-next:before {
  right: -9px;
  top: 0;
}
.product-img-box #sync3 .owl-controls .owl-next:after {
  right: -6px;
}
.product-img-box #sync1 {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  display: block;
  white-space: nowrap;
  position: static;
  left: 0;
  top: 0;
}
@media only screen and (min-width: 600px) {
  .product-img-box #sync1 {
    position: static;
  }
}
@media only screen and (min-width: 1024px) {
  .product-img-box #sync1 {
    position: absolute;
  }
}
.product-img-box #sync1 > .item {
  display: inline-block;
}
.product-img-box #sync1 .item {
  color: #FFF;
  text-align: center;
}
.product-img-box #sync1:hover {
  z-index: 10;
}
.product-img-box #sync1.owl-loaded {
  overflow: visible;
  max-height: none;
}
.product-img-box #sync1 img {
  display: block;
  width: 100%;
  height: auto;
}
.product-img-box #sync1 .owl-controls {
  top: 45%;
  display: none;
}
@media only screen and (min-width: 600px) {
  .product-img-box #sync1 .owl-controls {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .product-img-box #sync1 .owl-controls {
    display: block;
  }
}
.product-img-box #sync1 .owl-controls .owl-prev:after, .product-img-box #sync1 .owl-controls .owl-prev:before, .product-img-box #sync1 .owl-controls .owl-next:after, .product-img-box #sync1 .owl-controls .owl-next:before {
  width: 22px;
  height: 41px;
  font-size: 46px;
}
.product-img-box #sync1 .owl-controls .owl-prev {
  left: -56px;
}
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  .product-img-box #sync1 .owl-controls .owl-prev {
    left: -45px;
  }
}

.product-img-box #sync1 .owl-controls .owl-prev:after, .product-img-box #sync1 .owl-controls .owl-prev:before {
  top: 0;
}
.product-img-box #sync1 .owl-controls .owl-prev:after {
  left: 3px;
}
.product-img-box #sync1 .owl-controls .owl-next {
  right: -47px;
}
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  .product-img-box #sync1 .owl-controls .owl-next {
    right: -35px;
  }
}

.product-img-box #sync1 .owl-controls .owl-next:after, .product-img-box #sync1 .owl-controls .owl-next:before {
  right: -9px;
  top: 0;
}
.product-img-box #sync1 .owl-controls .owl-next:after {
  right: -6px;
}
.product-img-box .sync-item {
  margin-bottom: 14px;
  border: 1px solid #e7e7e7;
}
.product-img-box .sync-item img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
  opacity: 0.2;
}
.product-img-box .sync-item.synced {
  border: none;
}
.product-img-box .sync-item.synced img {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.product-img-box .sync-item a {
  position: relative;
  display: block;
}
.product-img-box .img-wapper {
  position: relative;
  z-index: 6;
  margin-left: 0;
  padding-left: 0;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .product-img-box .img-wapper {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .product-img-box .img-wapper {
    margin-left: 166px;
  }
}
@media only screen and (min-width: 600px) {
  .product-img-box .img-wapper {
    padding-left: 125px;
  }
}
@media only screen and (min-width: 1024px) {
  .product-img-box .img-wapper {
    padding-left: 0;
  }
}
@media only screen and (min-width: 600px) {
  .product-img-box .img-wapper {
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .product-img-box .img-wapper {
    width: 486px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  .product-img-box .img-wapper {
    width: 355px;
    margin-left: 140px;
  }
}

.product-img-box .img-wapper .dinkus-big {
  z-index: 100;
  background-size: 100% !important;
  height: 67px;
  width: 67px;
  left: 17px;
  top: 8px;
}
@media only screen and (min-width: 600px) {
  .product-img-box .img-wapper .dinkus-big {
    height: 93px;
  }
}
@media only screen and (min-width: 1024px) {
  .product-img-box .img-wapper .dinkus-big {
    height: 93px;
  }
}
@media only screen and (min-width: 600px) {
  .product-img-box .img-wapper .dinkus-big {
    width: 93px;
  }
}
@media only screen and (min-width: 1024px) {
  .product-img-box .img-wapper .dinkus-big {
    width: 93px;
  }
}
@media only screen and (min-width: 600px) {
  .product-img-box .img-wapper .dinkus-big {
    left: 150px;
  }
}
@media only screen and (min-width: 1024px) {
  .product-img-box .img-wapper .dinkus-big {
    left: -47px;
  }
}
@media only screen and (min-width: 600px) {
  .product-img-box .img-wapper .dinkus-big {
    top: 17px;
  }
}
@media only screen and (min-width: 1024px) {
  .product-img-box .img-wapper .dinkus-big {
    top: 17px;
  }
}
.product-img-box .img-wapper .img-footer {
  margin-top: 20px;
  margin-bottom: 14px;
  position: relative;
  z-index: 11;
}
@media only screen and (min-width: 600px) {
  .product-img-box .img-wapper .img-footer {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .product-img-box .img-wapper .img-footer {
    margin-top: 15px;
  }
}
@media only screen and (min-width: 600px) {
  .product-img-box .img-wapper .img-footer {
    margin-bottom: 0;
  }
}
.product-img-box .img-wapper .img-footer .zoom-tip {
  color: #999;
  font-size: 12px;
  position: relative;
  top: -3px;
}
.product-img-box .img-wapper .img-footer .zoom-tip [class*="icon-"] {
  position: relative;
  width: 23px;
  display: inline-block;
  vertical-align: top;
}
.product-img-box .img-wapper .img-footer .zoom-tip [class*="icon-"]:before {
  font-size: 21px;
  color: #c7c9cc;
  left: -5px;
  position: absolute;
  top: -3px;
}
.product-img-box .img-wapper .more-images-footer {
  display: block;
}
@media only screen and (min-width: 600px) {
  .product-img-box .img-wapper .more-images-footer {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .product-img-box .img-wapper .more-images-footer {
    display: none;
  }
}
.product-img-box .img-wapper .more-images-footer.itemslider-thumbnails {
  float: none;
  width: 100%;
  max-width: 100%;
  padding: 0 27px;
  margin-top: 18px;
}
.product-img-box .img-wapper .more-images-footer.itemslider-thumbnails .owl-stage-outer {
  width: 100%;
  z-index: 2;
}
.product-img-box .img-wapper .more-images-footer.itemslider-thumbnails #sync3 img {
  display: block;
  height: auto;
  width: 100%;
}
.product-img-box .product-image {
  width: 100%;
  margin: 0;
  display: none;
}
.product-img-box .product-image .cloud-zoom-loading {
  display: none;
}
@media only screen and (min-width: 600px) {
  .product-img-box .product-image {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .product-img-box .product-image {
    display: block;
  }
}
.product-img-box .product-image img {
  display: block;
  height: auto;
  width: 100%;
  max-width: 100%;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  max-height: 750px;
  margin: 0px auto;
}
.product-img-box #watch_video {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 12px;
  line-height: 100%;
  text-transform: uppercase;
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0 10px;
}
.product-img-box #watch_video span[class*="icon-"] {
  width: 28px;
  height: 28px;
  display: table;
  margin: 0 auto 10px;
  background: #e7e7e7;
  -moz-border-radius: 28px;
  -webkit-border-radius: 28px;
  border-radius: 28px;
  position: relative;
}
.product-img-box #watch_video span[class*="icon-"]:before {
  /*position: absolute;*/
  width: 100%;
  text-align: center;
  color: #FFF;
  font-size: 26px;
  margin: 0 0 0 2px;
}

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

.product-image-thumbs li {
  display: inline-block;
}
.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: 0;
}
@media only screen and (min-width: 600px) {
  .product-view .product-shop,
  .product-view .block-related {
    padding-left: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .product-view .product-shop,
  .product-view .block-related {
    padding-left: 0;
  }
}

.product-img-box {
  padding-right: 0;
}
@media only screen and (min-width: 600px) {
  .product-img-box {
    padding-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .product-img-box {
    padding-right: 15px;
  }
}

.product-view .product-shop,
.product-img-box,
.product-collateral,
.product-view .block-related,
.box-collateral {
  margin-bottom: 10px;
}
@media only screen and (min-width: 600px) {
  .product-view .product-shop,
  .product-img-box,
  .product-collateral,
  .product-view .block-related,
  .box-collateral {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .product-view .product-shop,
  .product-img-box,
  .product-collateral,
  .product-view .block-related,
  .box-collateral {
    margin-bottom: 10px;
  }
}

#customer-reviews {
  margin-bottom: 40px;
}
@media only screen and (min-width: 600px) {
  #customer-reviews {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  #customer-reviews {
    margin-bottom: 25px;
  }
}

.product-img-box {
  margin-bottom: 30px;
}
@media only screen and (min-width: 600px) {
  .product-img-box {
    margin-bottom: 36px;
  }
}
@media only screen and (min-width: 1024px) {
  .product-img-box {
    margin-bottom: 56px;
  }
}

.product-view {
  /*.add-to-cart {
      padding-bottom: 3px;
      margin-bottom: 10px;
      border-bottom: 1px solid $c-module-border;
  }*/
  /* Set a min-height so that the floated elements break appropriately */
  /*.add-to-cart .qty-wrapper,
  .product-options-bottom .price-box,
  .add-to-cart-buttons {
      min-height: 40px;
  }*/
  /*.product-options-bottom .price-box,
  .add-to-cart .qty-wrapper,
  .add-to-cart-buttons .button,
  .add-to-cart-buttons .paypal-logo {
      margin-bottom: 10px;
  }*/
  /*.add-to-cart-buttons .button {
      min-height: 40px;
      line-height: 40px;
      font-size: $f-size-xl;
      padding: 0px 30px;
      float: left;
      min-width: 160px;
      width: 100%;
      white-space: normal;
  }*/
}
.product-view .add-to-box:after,
.product-view .add-to-cart:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart .qty-wrapper label {
  margin-right: 7px;
  float: left;
}
.product-view .add-to-cart .qty-wrapper label {
  line-height: 40px;
}
.product-view .add-to-cart .qty-wrapper .qty {
  float: left;
  height: 40px;
}
.product-view .add-to-cart-buttons {
  /*float: left;*/
  margin-right: 0;
  max-width: 100%;
}
@media only screen and (min-width: 600px) {
  .product-view .add-to-cart-buttons {
    margin-right: 20px;
  }
}
.product-view .add-to-cart-buttons .paypal-logo {
  clear: left;
  text-align: center;
}
.product-view .add-to-cart-buttons .paypal-logo .paypal-button {
  margin: 0 auto;
  display: block;
  width: 170px;
}
.product-view .add-to-cart-buttons .paypal-logo .bml_button {
  display: block;
  width: 174px;
  margin: 0 auto;
}
.product-view .add-to-cart-buttons .paypal-logo .bml_button a {
  text-align: center;
}
.product-view .add-to-cart-buttons .paypal-logo .paypal-or {
  display: block;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
  line-height: 1;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .product-view .add-to-cart-buttons {
    width: 100%;
  }
}
.product-view .alert-price,
.product-view .alert-stock {
  clear: both;
}

@media only screen and (max-width: 479px) {
  .product-view .add-to-cart-buttons .paypal-or {
    line-height: 20px;
  }
  .product-view .add-to-cart-buttons .paypal-logo,
  .product-view .add-to-cart-buttons .paypal-or,
  .product-view .add-to-cart-buttons .paypal-button,
  .product-view .add-to-cart-buttons .button {
    text-align: center;
    width: 100%;
    display: block;
    margin-right: 0;
    margin-left: 0;
    float: none;
  }
}
/* This is the "or" that separates the "Add to Cart" and "Add to X" links */
.add-to-box .or {
  display: none;
}

.product-view .add-to-links {
  clear: both;
  display: table;
  margin: 0 auto;
  margin-bottom: 31px;
}
@media only screen and (min-width: 600px) {
  .product-view .add-to-links {
    margin-bottom: 37px;
  }
}
.product-view .add-to-links:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .add-to-links li {
  float: left;
}
.product-view .add-to-links li:first-child a {
  margin-left: 0px;
}
.product-view .add-to-links li:last-child a {
  border-right: 0px;
}

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

@media only screen and (max-width: 599px) {
  .add-to-box .add-to-links a {
    float: none;
    width: auto;
    text-indent: 0;
  }
}
.product-collateral {
  clear: both;
  font-size: 13px;
}
@media only screen and (min-width: 600px) {
  .product-collateral {
    font-size: 14px;
  }
}
.product-collateral .help-contact {
  margin-top: 0;
}
@media only screen and (min-width: 600px) {
  .product-collateral .help-contact {
    margin-top: 20px;
  }
}
.product-collateral .help-contact a {
  color: #000;
}
.product-collateral .help-contact a:hover {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #e7e7e7;
}
.product-collateral .help-contact strong {
  font-family: "proximanova-bold", Verdana, Arial, sans-serif;
  font-weight: normal;
}

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

.box-collateral {
  clear: both;
}

@media only screen and (min-width: 600px) {
  .product-collateral .toggle-tabs {
    display: block;
    width: 100%;
    position: relative;
    border: 1px solid #e7e7e7;
    background-color: #F4F4F4;
  }
  .product-collateral .toggle-tabs li {
    float: left;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
  }
  .product-collateral .toggle-tabs li > span {
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    display: inline-block;
    padding: 0 30px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    position: relative;
    bottom: -1px;
  }
}
@media only screen and (min-width: 600px) and (min-width: 1024px) and (max-width: 1279px) {
  .product-collateral .toggle-tabs li > span {
    padding: 0 14px;
  }
}

@media only screen and (min-width: 600px) {
  .product-collateral .toggle-tabs li.current {
    border-right: 1px solid #e7e7e7;
    border-left: 1px solid #e7e7e7;
  }
  .product-collateral .toggle-tabs li.current > span {
    background-color: #FFFFFF;
    z-index: 5;
  }
  .product-collateral .toggle-tabs li.current span,
  .product-collateral .toggle-tabs li:hover span {
    color: #666;
  }
  .product-collateral .toggle-tabs li:first-child {
    border-left: none;
  }
  .product-collateral .toggle-tabs:after {
    content: '';
    display: table;
    clear: both;
  }
  .product-collateral > dl {
    width: 100%;
  }
  .product-collateral > dl > dt {
    display: none;
  }
  .product-collateral > dl > dd {
    width: 100%;
    display: none;
    padding: 15px;
    border: 1px solid #e7e7e7;
    border-top: 0;
  }
  .product-collateral > dl > dd.current {
    display: block;
  }
}
@media only screen and (max-width: 599px) {
  .product-collateral .toggle-tabs {
    display: none;
  }
  .product-collateral > dl > dt {
    margin: 0;
    margin-bottom: 10px;
    color: #000;
    font-family: "proximanova-regular", Verdana, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.4;
    text-rendering: optimizeSpeed;
    text-transform: uppercase;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0px;
    padding: 7px 10px;
    border-width: 1px;
    border-style: solid;
    border-color: #e7e7e7;
    position: relative;
    display: block;
  }
  .product-collateral > dl > dt:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #666;
    border-bottom: none;
    right: 10px;
    top: 50%;
    margin-top: -3px;
  }
  .product-collateral > dl > dt:hover {
    background-color: #ededed;
  }
  .product-collateral > dl > dd {
    padding: 10px;
    margin: 0;
    border-width: 0 1px;
    border-style: solid;
    border-color: #e7e7e7;
  }
  .product-collateral > dl > dd:last-child {
    border-width: 0 1px 1px 1px;
  }
  .product-collateral > dl > dt {
    cursor: pointer;
    border-bottom-width: 0;
  }
  .product-collateral > dl > dt:hover {
    color: #666;
  }
  .product-collateral > dl > dt:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #666;
    border-right: none;
  }
  .product-collateral > dl > dt.last {
    border-bottom-width: 1px;
  }
  .product-collateral > dl > dd {
    display: none;
  }
  .product-collateral.accordion-open > dl > dt.current {
    border-bottom-width: 1px;
  }
  .product-collateral.accordion-open > dl > dt.current:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 4px solid #666;
    border-bottom: none;
    left: 6px;
    top: 50%;
    margin-top: -3px;
  }
  .product-collateral.accordion-open > dl > dd.current {
    display: block;
  }
  .product-collateral.accordion-open > dl > dd.current + dt {
    border-top: 1px solid #e7e7e7;
  }
}
@media only screen and (max-width: 599px) {
  .product-view .product-shop,
  .product-view .add-to-cart-wrapper,
  .product-view .block-related,
  .product-img-box,
  .product-collateral {
    width: 100%;
    float: none;
    padding-right: 0;
    padding-left: 0;
  }
}
@media only screen and (max-width: 479px) {
  .product-view .product-shop,
  .product-img-box,
  .product-collateral,
  .product-view .block-related,
  .box-collateral {
    margin-bottom: 15px;
  }
}
.product-view .ratings .rating-links {
  margin: 4px 0 0 11px;
  display: inline-block;
  vertical-align: top;
}
.product-view .ratings .rating-links .separator,
.product-view .ratings .rating-links .separator + a {
  display: none;
}
.product-view .ratings .rating-links a {
  color: #000;
}

#product-attribute-specs-table {
  max-width: none;
}
@media only screen and (min-width: 600px) {
  #product-attribute-specs-table {
    max-width: none;
  }
}
@media only screen and (min-width: 1024px) {
  #product-attribute-specs-table {
    max-width: 50em;
  }
}
#product-attribute-specs-table + .specifications-full {
  border-top: 1px solid #e7e7e7;
  padding-top: 20px;
  margin-top: 10px;
}

/* -------------------------------------------- *
 * Catalog - Grouped Product List
 */
.grouped-items-table-wrapper {
  border: solid 1px #C0C0C0;
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
}
.grouped-items-table-wrapper tbody tr:last-child td {
  border-bottom: none;
}
@media only screen and (max-width: 479px) {
  .grouped-items-table-wrapper {
    margin-bottom: 15px;
  }
}

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

/* -------------------------------------------- *
 * Catalog - Product Options
 */
.product-options p.required {
  display: none;
  position: absolute;
  top: 6px;
  right: 15px;
  text-align: right;
}

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

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

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

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

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

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

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

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

.product-options dd .input-text, .product-options dd .nice-select, .product-options dd textarea {
  width: 98%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* -------------------------------------------- *
 * Related Products
 */
/* Block: Related */
.block-related li {
  margin-bottom: 7px;
  padding: 0 6px;
}
@media only screen and (min-width: 600px) {
  .block-related li {
    padding: 0 15px;
  }
}
@media only screen and (min-width: 1024px) {
  .block-related li {
    padding: 0 15px;
  }
}
.block-related li .item-info {
  position: relative;
  padding-bottom: 42px;
}
.block-related li .item-info .row-button {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}
.block-related li .item-info .row-button .btn-cart {
  min-width: 0;
  padding: 11px 20px;
}
@media only screen and (min-width: 600px) {
  .block-related li .item-info .row-button .btn-cart {
    padding: 11px 22px;
  }
}
@media only screen and (min-width: 1024px) {
  .block-related li .item-info .row-button .btn-cart {
    padding: 11px 22px;
  }
}
.block-related .block-title {
  border-bottom: none;
}
.block-related .block-title h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #000;
  font-family: "proximanova-light", Verdana, Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 16px;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  letter-spacing: 1px;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 16px;
  /*@include bp(max-width,$bp-mobile){
      font-size: 24px;
  }*/
}
@media only screen and (min-width: 600px) {
  .block-related .block-title h2 {
    border-bottom: none;
  }
}
@media only screen and (min-width: 600px) {
  .block-related .block-title h2 {
    padding-bottom: 3px;
  }
}
.block-related .block-subtitle {
  margin-bottom: 7px;
  display: none;
}
.block-related .product {
  position: relative;
}
.block-related .checkbox {
  float: left;
  margin-top: 36px;
}
.block-related .product-details {
  margin-left: 0;
}
.block-related .product-name {
  margin-bottom: 3px;
}
.block-related .product-details .price-box {
  margin: 6px 0 15px;
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
@media only screen and (min-width: 600px) {
  .block-related .product-details .price-box {
    margin-bottom: 3px;
  }
}
.block-related .product-details .price-box a:first-child,
.block-related .product-details .price-box p:first-child,
.block-related .product-details .price-box span:first-child {
  margin-left: 0;
  font-size: 14px;
  padding-right: 5px;
  padding-left: 5px;
}
.block-related .product-details .price-box:after {
  content: '';
  display: table;
  clear: both;
}
.block-related .special-price + .special-attribute-price .price,
.block-related .regular-price + .special-attribute-price .price,
.block-related .old-price {
  display: none;
}
.block-related .old-price-note span {
  color: #000;
  text-decoration: line-through;
}
.block-related .old-price-note .old-price-label {
  display: none;
}
.block-related .link-wishlist {
  display: none;
}

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

#colorbox:focus {
  outline: none;
}

.zip-money-box {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  padding-top: 4px;
  font-size: 13px;
  margin-bottom: 5px;
}
.zip-money-box .zip_tagline {
  display: none !important;
}
.zip-money-box .zip-money-custom span {
  display: inline-block;
  width: auto;
  font-size: 13px;
  font-family: "proximanova-semibold";
}
.zip-money-box .zip-money-custom img {
  display: inline-block;
  vertical-align: top;
  margin-left: 6px;
  margin-right: 3px;
  max-width: 55px;
  height: auto;
}
.zip-money-box .zip-money-custom a {
  display: inline-block;
  text-decoration: none;
  color: #29639d;
}
.zip-money-box .zip-money-custom a:hover {
  text-decoration: none;
}

.page-zip-pay {
  display: none;
}

.content-zippay {
  display: inline-block;
  width: auto;
  vertical-align: top;
  position: relative;
  width: 760px;
  max-width: 100%;
}
.content-zippay img {
  float: left;
  width: auto;
  height: auto;
  display: none;
}
.content-zippay img.desktop-display {
  width: 52%;
  display: block;
}
.content-zippay:before {
  width: 48%;
  height: 100%;
  right: 0px;
  background: #000000;
  content: "";
  position: absolute;
}
.content-zippay .content {
  float: left;
  width: 48%;
  background: #000000;
  color: #ffffff;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 65px;
}
.content-zippay .content span {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  font-weight: 300;
  font-size: 50px;
  font-family: "proximanova-thin";
  letter-spacing: -2px;
  line-height: 1em;
}
.content-zippay .content strong {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  font-weight: 300;
  font-family: "proximanova-bold";
  font-size: 42px;
  line-height: 1em;
  margin-top: -4px;
}
.content-zippay .content img {
  display: inline-block;
  vertical-align: top;
  width: auto;
  float: none;
  margin-top: 9px;
}
.content-zippay .content ul {
  display: inline-block;
  vertical-align: top;
  margin-top: 32px;
  text-align: left;
}
.content-zippay .content ul li {
  font-size: 16px;
  padding-left: 13px;
  letter-spacing: 0.2px;
  line-height: 1.4em;
  margin-bottom: 3px;
}
.content-zippay .content ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #ffffff;
  border-radius: 5px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.content-zippay .content p {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  font-size: 18px;
  line-height: 1em;
  font-family: "proximanova-thin";
  margin-top: 34px;
}
.content-zippay .content p strong {
  width: auto;
  display: inline;
  font-size: 18px;
  margin-top: 0px;
  font-family: "proximanova-regular";
}
.content-zippay .content a {
  display: inline-block;
  background: #b4b4b4;
  color: #ffffff;
  text-decoration: none;
  margin-top: 20px;
  height: 32px;
  line-height: 32px;
  text-transform: uppercase;
  border-radius: 4px;
  font-size: 22px;
  padding: 0px 10px;
}
.content-zippay .content a:hover {
  text-decoration: none;
}
.content-zippay .mobile-display {
  display: none;
}

.checkout-cart-index .zip-money-box .zip-money-custom img {
  margin-top: 3px;
}

@media only screen and (min-width: 768px) and (max-width: 960px) {
  .content-zippay .content {
    padding-top: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .fancybox-opened .fancybox-skin {
    padding: 20px !important;
  }

  .content-zippay {
    max-width: 100%;
  }
  .content-zippay .mobile-display {
    display: inline-block !important;
    vertical-align: top;
  }
  .content-zippay img.mobile-display {
    width: 100%;
    height: auto;
  }
  .content-zippay .desktop-display {
    display: none !important;
  }
  .content-zippay .content {
    position: absolute;
    top: 36.3%;
    left: 0px;
    right: 0px;
    width: auto;
    height: auto;
    background: none;
    color: #000000;
    padding-top: 0px;
  }
  .content-zippay .content strong {
    font-size: 24px;
    font-family: "proximanova-semibold";
  }
  .content-zippay .content span {
    margin-top: 10px;
    letter-spacing: -1.5px;
    font-size: 21px;
    font-family: "proximanova-semibold";
    margin-bottom: -3px;
  }
  .content-zippay .content p {
    height: 0px;
    overflow: hidden;
    text-indent: -999999px;
    margin: 0px;
    padding: 0px;
    display: none;
  }
  .content-zippay .content a {
    width: 240px;
    height: 50px;
    background: #faea00;
    color: #000000;
    line-height: 50px;
    margin-top: 24px;
    margin-left: 2px;
    font-size: 15px;
    font-family: "proximanova-semibold";
  }
  .content-zippay .content a:hover {
    color: #000000;
  }
  .content-zippay .content ul {
    margin-top: 22px;
  }
  .content-zippay .content ul li {
    font-size: 14px;
    letter-spacing: 0px;
    padding-left: 7px;
    margin-bottom: 5px;
  }
  .content-zippay .content ul li:before {
    background: #000000;
    width: 3px;
    height: 3px;
  }
  .content-zippay:before {
    display: none;
  }
}
@media only screen and (max-width: 380px) {
  .content-zippay .content {
    top: 32.3%;
  }

  .zip-pay-container h2 {
    font-size: 23px !important;
  }

  .zip-pay-container .mobile .container-banner {
    margin-top: -98px !important;
  }
  .zip-pay-container .mobile .container-banner .title strong {
    font-size: 35px;
  }
  .zip-pay-container .how-zippay ul li {
    padding-left: 0px !important;
  }
}
@media only screen and (max-width: 350px) {
  .content-zippay .content strong {
    font-size: 18px;
  }
  .content-zippay .content span {
    margin-top: 0px;
    font-size: 16px;
  }
  .content-zippay .content ul {
    margin-top: 10px;
  }
  .content-zippay .content a {
    margin-top: 10px;
    max-width: 80%;
  }
}
/*--- Recommend, related, upsell list ---*/
#related-recs,
#alsobought-recs,
#cart-recs {
  clear: both;
  float: left;
  width: 52.5%;
  color: #000;
  margin: 0 0 48px;
}
#related-recs > h4,
#alsobought-recs > h4,
#cart-recs > h4 {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  letter-spacing: 1px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e7e7e7;
  margin: 0 0 20px;
}

#related-recs,
#alsobought-recs {
  float: left;
  width: 48.5%;
}

#related-recs {
  width: 50%;
  padding-right: 19px;
  border-right: 1px solid #e7e7e7;
}

#alsobought-recs {
  float: right;
  clear: none;
}

#cart-recs {
  width: 47.6%;
  float: right;
}
#cart-recs .scarab-item .product-name {
  line-height: 1.4;
  margin: 22px 0 17px;
  height: 68px;
}
#cart-recs .scarab-item .row-button {
  margin-top: 15px;
}

.scarab-itemlist {
  position: relative;
  font-size: 0;
}
.scarab-itemlist .scarab-prev, .scarab-itemlist .scarab-next {
  position: absolute;
  width: 44px;
  height: 44px;
  top: -65px;
  right: 0;
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/slide-arrow-02.png) no-repeat 2px 1px;
  cursor: pointer;
}
.scarab-itemlist .scarab-prev.scarab-disabled-button, .scarab-itemlist .scarab-next.scarab-disabled-button {
  opacity: 1;
}
.scarab-itemlist .scarab-prev {
  right: 50px;
}
.scarab-itemlist .scarab-next {
  background-position: 4px -68px;
}

.scarab-item {
  display: inline-block;
  width: 33.33%;
  padding: 0 15px;
  vertical-align: top;
  font-size: 12px;
  text-align: center;
}
.scarab-item .product-image {
  display: block;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}
.scarab-item .product-image img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  height: auto;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.scarab-item .product-name {
  margin: 25px 0 7px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  height: 44px;
  overflow: hidden;
}
.scarab-item .product-name:hover {
  color: #666;
  text-decoration: none;
}
.scarab-item .scarab-price {
  font-size: 14px;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  display: inline-block;
  vertical-align: top;
  line-height: 21px;
  height: 35px;
}
.scarab-item .row-button {
  margin-top: 5px;
}
.scarab-item .sale-price .scarab-price {
  color: #ed1c24;
  height: auto;
}
.scarab-item .sale-price .scarab-price:before {
  content: 'NOW ';
  color: #000;
}
.scarab-item .sale-price .old-price {
  margin-left: 5px;
  color: #000;
  font-size: 10px;
  display: block;
  line-height: 14px;
}
.scarab-item .sale-price .old-price:before {
  display: none;
}
.scarab-item .sale-price .old-price strong {
  font-weight: normal;
  text-decoration: line-through;
}
.scarab-item .sale-price .old-price span {
  color: #ed1c24;
  text-decoration: none;
}

@media screen and (max-width: 1023px) {
  #related-recs,
  #alsobought-recs,
  #cart-recs {
    width: 100%;
  }

  .scarab-item {
    padding: 0 10px 20px;
  }

  #cart-recs {
    padding-right: 0;
    border: none;
  }
  #cart-recs .scarab-item .row-button {
    margin-top: 10px;
  }

  #related-recs {
    padding-right: 0;
    border: none;
  }
}
@media screen and (max-width: 599px) {
  .scarab-item {
    width: 50%;
  }
}
/*---- Update after pay ----*/
.afterpay-installments {
  clear: both;
}
.afterpay-installments .afterpay-what-is-modal-trigger {
  width: 18px;
  height: 18px;
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  border: 1px solid #000000;
  font-size: 0;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 9px;
  text-decoration: none !important;
}
.afterpay-installments .afterpay-what-is-modal-trigger:before {
  width: 16px;
  height: 16px;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  content: 'i';
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 900;
}

.zip-money-box .more-info {
  width: 18px;
  height: 18px;
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  border: 1px solid #000000;
  font-size: 0;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.zip-money-box .more-info:before {
  width: 16px;
  height: 16px;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  content: 'i';
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 900;
}

.afterpay-wrapper {
  width: 600px;
  padding: 15px 0;
}
.afterpay-wrapper img {
  max-width: 100%;
}
.afterpay-wrapper .afterpay-header {
  width: 290px;
  max-width: 80%;
  margin: 0 auto;
}
.afterpay-wrapper .afterpay-header p {
  margin: 10px 0;
}
.afterpay-wrapper .afterpay-header h2 {
  font-size: 18px;
  font-weight: 600;
  text-transform: none;
  margin: 30px 0 15px;
  letter-spacing: 1px;
}
.afterpay-wrapper .afterpay-content {
  padding: 40px 0 35px;
  border-top: 1px solid #cdc4ba;
}
.afterpay-wrapper .afterpay-content ul {
  display: inline-block;
  vertical-align: top;
  width: 100%;
}
.afterpay-wrapper .afterpay-content ul li {
  float: left;
  width: 33.33%;
  text-align: center;
  padding: 0 5px;
}
.afterpay-wrapper .afterpay-content ul li img {
  margin: 0 auto;
}
.afterpay-wrapper .afterpay-content ul li h3 {
  font-size: 16px;
  letter-spacing: 1px;
  margin: 20px 0 10px;
  text-transform: none;
  font-weight: 500;
}
.afterpay-wrapper .afterpay-link {
  clear: both;
  text-align: center;
}
.afterpay-wrapper .afterpay-link a {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 24px;
  padding: 6px;
  width: 290px;
  max-width: 100%;
  border: 2px solid #47474d;
  color: #47474d;
  letter-spacing: 3px;
}
.afterpay-wrapper .afterpay-link a:hover {
  background: #47474d;
  color: #FFF;
  text-decoration: none;
}
@media only screen and (max-width: 1023px) {
  .afterpay-wrapper {
    width: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .afterpay-wrapper .afterpay-header {
    text-align: center;
  }
  .afterpay-wrapper .afterpay-header h2 {
    margin: 20px 0 10px;
    font-size: 16px;
    letter-spacing: 0;
  }
  .afterpay-wrapper .afterpay-content ul li {
    float: none;
    width: 100%;
    padding: 0;
  }
  .afterpay-wrapper .afterpay-content ul li + li {
    padding-top: 40px;
  }
  .afterpay-wrapper .afterpay-content ul li img {
    width: 63px;
  }
}

.afterpay-popup .fancybox-skin .fancybox-close {
  top: -8px;
  right: -8px;
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/close-ic.png) no-repeat center;
}
@media only screen and (max-width: 599px) {
  .afterpay-popup .fancybox-skin .fancybox-close {
    top: 10px;
    right: 10px;
  }
}

.content-zippay {
  width: 600px;
}
.content-zippay:before {
  display: none;
}
.content-zippay img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .content-zippay {
    min-height: 438px;
  }

  .catalog-product-view .fancybox-inner {
    overflow: hidden !important;
  }
}
/* ============================================ *
 * 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 #e7e7e7;
  margin: 12px 0 0;
  position: absolute;
  text-align: left;
  width: 450px;
  z-index: 100;
}
@media only screen and (min-width: 771px) {
  .map-popup.map-popup-right {
    left: 10px !important;
  }
  .map-popup.map-popup-left {
    left: auto !important;
    right: 10px !important;
  }
}
@media only screen and (max-width: 770px) {
  .map-popup {
    width: 100%;
    left: 0px !important;
  }
}
.map-popup .map-popup-heading {
  padding: 8px 10px;
  margin-right: 40px;
  width: auto;
}
.map-popup .map-popup-heading h3 {
  font-size: 14px;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: break-word;
  text-align: left;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 479px) {
  .map-popup .map-popup-heading h3 {
    text-align: center;
  }
}
.map-popup .map-popup-close {
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  height: 36px;
  width: 36px;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
}
.map-popup .map-popup-content {
  border-top: 1px solid #EDEDED;
  padding: 10px;
  margin: 0 10px;
  overflow: hidden;
  text-align: left;
}
@media only screen and (max-width: 479px) {
  .map-popup .map-popup-content {
    text-align: center;
  }
}
.map-popup .map-popup-checkout {
  padding: 10px 0;
}
.map-popup .map-popup-checkout form:after {
  content: '';
  display: table;
  clear: both;
}
.map-popup .map-popup-checkout span {
  display: block;
}
.map-popup .map-popup-checkout .button {
  float: left;
  margin: 0 2px;
  clear: left;
}
.map-popup .map-popup-checkout .additional-addtocart-box {
  float: left;
  min-width: 210px;
}
.map-popup .map-popup-checkout .additional-addtocart-box li {
  list-style-type: none;
}
.map-popup .map-popup-checkout .paypal-logo {
  width: auto;
}
.map-popup .map-popup-checkout .paypal-logo a {
  display: inline-block;
  float: left;
  clear: left;
}
.map-popup .map-popup-checkout .paypal-logo .paypal-or {
  float: left;
  text-align: center;
  padding: 5px 15px;
  clear: left;
}
.map-popup .map-popup-checkout .paypal-logo:after {
  content: '';
  display: table;
  clear: both;
}
.map-popup .map-popup-checkout .paypal-logo .bml_button a {
  clear: left;
}
@media only screen and (max-width: 479px) {
  .map-popup .map-popup-checkout {
    text-align: center;
  }
  .map-popup .map-popup-checkout .button,
  .map-popup .map-popup-checkout .additional-addtocart-box,
  .map-popup .map-popup-checkout .paypal-logo a,
  .map-popup .map-popup-checkout .paypal-logo .paypal-or {
    float: none;
  }
  .map-popup .map-popup-checkout .additional-addtocart-box {
    min-width: 0px;
  }
  .map-popup .map-popup-checkout .paypal-logo .paypal-or {
    margin: 0px;
    margin-bottom: 10px;
  }
}
.map-popup .map-popup-checkout:after {
  content: '';
  display: table;
  clear: both;
}
.map-popup .map-popup-price {
  padding: 10px 0;
}
@media only screen and (max-width: 479px) {
  .map-popup .map-popup-price {
    text-align: center;
    padding-top: 0px;
  }
}
.map-popup .map-popup-price .price-box,
.map-popup .map-popup-price .price-box .special-price {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.map-popup .map-popup-price .price-box .minimal-price-link {
  display: inline-block;
}
.map-popup .map-popup-text {
  padding: 10px 0;
  margin: 0 10px;
  word-wrap: break-word;
}
.map-popup .map-popup-text,
.map-popup .map-popup-only-text {
  border-top: 1px solid #EDEDED;
}

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

/* ============================================ *
 * Catalog - Compare
 * ============================================ */
.catalog-product-compare-index .page-title h1 {
  font-size: 48px;
  border-bottom: 0;
}
.catalog-product-compare-index .page-title .link-print {
  display: none;
}
.catalog-product-compare-index .buttons-set {
  border-top: 0;
  margin: 0;
  padding: 30px;
}
.catalog-product-compare-index .buttons-set .button {
  min-width: 0;
  height: 42px;
}

.block-compare .product-name:after {
  content: '';
  display: table;
  clear: both;
}

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

.compare-table {
  border-spacing: 30px 0;
  border-collapse: separate;
}
.compare-table th, .compare-table td {
  background: transparent;
  border-bottom: 1px solid #e7e7e7;
  padding: 15px 0;
}
.compare-table th {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  text-transform: none;
  position: relative;
}
.compare-table th span:after {
  display: block;
  content: '';
  position: absolute;
  right: -30px;
  top: -1px;
  width: 30px;
  border-top: 1px solid #e7e7e7;
}
.compare-table thead th {
  border: 0;
}
.compare-table thead .btn-remove {
  font-size: 12px;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  line-height: 12px;
  border: 0;
  width: auto;
  height: auto;
  padding-left: 15px;
  position: relative;
  color: #0057a3;
}
.compare-table thead .btn-remove:after {
  color: #0057a3;
  width: 10px;
  height: 10px;
  line-height: 10px;
  position: absolute;
  left: 0;
  top: 2px;
}
.compare-table thead .btn-remove:hover {
  background: transparent;
  color: #0057a3;
  text-decoration: none;
}
.compare-table tbody td {
  border-bottom: 1px solid #e7e7e7;
}
.compare-table tbody:last-child tr:last-child th span:before {
  display: block;
  content: '';
  position: absolute;
  right: -30px;
  bottom: -1px;
  width: 30px;
  border-bottom: 1px solid #e7e7e7;
}
.compare-table .product-shop-row {
  text-align: center;
}
.compare-table .product-shop-row.top td {
  padding-bottom: 0;
  border-bottom: 0;
}
.compare-table .product-shop-row.bottom td {
  padding-top: 0;
}
.compare-table .product-shop-row .product-image img {
  max-width: 100%;
}
.compare-table .product-shop-row .product-name {
  text-transform: uppercase;
  margin: 15px 0 0;
  font-size: 12px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  letter-spacing: 1px;
}
.compare-table .product-shop-row .product-name a {
  font-weight: normal;
  font-size: 12px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
}
.compare-table .product-shop-row .ratings {
  display: none;
}
.compare-table .product-shop-row .price-box {
  display: inline-block;
  margin: 15px 0;
}
.compare-table .product-shop-row .price-box .price {
  font-size: 14px;
}
.compare-table .product-shop-row .price-box .old-price {
  float: right;
}
.compare-table .product-shop-row .price-box .old-price .price {
  width: auto;
  color: #000000;
}
.compare-table .product-shop-row .price-box .special-price {
  float: left;
  margin-right: 10px;
  padding-left: 0;
}
.compare-table .product-shop-row .price-box .special-attribute-price .price {
  display: none;
}
.compare-table .product-shop-row .price-box .special-attribute-price .promo-text-wrapper .old-price-note {
  display: none;
}
.compare-table .product-shop-row .add-to-links {
  margin: 20px 0 10px;
}
.compare-table .product-shop-row .add-to-links li {
  float: none;
}

/* ============================================ *
 * Checkout - Layout
 * ============================================ */
.checkout-cart-index .cart-empty {
  margin-bottom: 20px;
}
.checkout-cart-index .connect-beacon {
  margin-top: 0;
  padding-top: 0;
}
.checkout-cart-index .shipping {
  display: none;
}
.checkout-cart-index .product-cart-sku {
  display: none;
}
.checkout-cart-index .product-cart-remove .link-remove {
  display: block;
  font-size: 12px;
  color: #0057a3;
}
.checkout-cart-index .product-cart-remove .link-remove:hover {
  text-decoration: none;
}
.checkout-cart-index .product-cart-info .product-name {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0;
}
.checkout-cart-index .product-cart-info .product-name a {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 1px;
}
.checkout-cart-index .product-cart-info .item-msg,
.checkout-cart-index .product-cart-info .item-msg.notice {
  font-size: 11px;
  font-weight: normal;
  margin: 5px 0;
}
.checkout-cart-index #shopping-cart-table {
  margin-bottom: 0;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index #shopping-cart-table {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .checkout-cart-index #shopping-cart-table {
    margin-bottom: 0;
  }
}
.checkout-cart-index #shopping-cart-table th, .checkout-cart-index #shopping-cart-table td {
  border-bottom: 0;
  vertical-align: middle;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index #shopping-cart-table th, .checkout-cart-index #shopping-cart-table td {
    border-bottom: 1px solid #ededed;
  }
}
.checkout-cart-index #shopping-cart-table th.last, .checkout-cart-index #shopping-cart-table td.last {
  padding-right: 0;
}
.checkout-cart-index #shopping-cart-table th {
  text-transform: none;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 14px;
  border-top: 1px solid #EDEDED;
  color: #333333;
}
.checkout-cart-index #shopping-cart-table th.cart-image-head {
  width: 15%;
}
.checkout-cart-index #shopping-cart-table th.cart-product-name-head {
  width: 45%;
}
.checkout-cart-index #shopping-cart-table .product-cart-image a.product-image {
  display: block;
  max-width: 105px;
}
.checkout-cart-index #shopping-cart-table .product-cart-image .product-cart-remove .link-remove:hover {
  text-decoration: none;
}
.checkout-cart-index #shopping-cart-table .product-cart-price {
  text-align: left;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 14px;
}
.checkout-cart-index #shopping-cart-table .product-cart-price .discount-amount {
  display: block;
}
.checkout-cart-index #shopping-cart-table .product-cart-price .discount-amount .old-price {
  text-decoration: line-through;
  font-size: 12px;
}
.checkout-cart-index #shopping-cart-table .product-cart-price .discount-amount + .cart-price .price {
  color: #ed1c24;
}
.checkout-cart-index #shopping-cart-table .product-cart-price .cart-price {
  display: block;
}
.checkout-cart-index #shopping-cart-table .product-cart-price .cart-price .price {
  color: #000000;
  font-size: 14px;
}
.checkout-cart-index #shopping-cart-table .product-cart-info {
  padding-right: 0;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index #shopping-cart-table .product-cart-info {
    padding-right: 50px;
  }
}
.checkout-cart-index #shopping-cart-table .product-cart-total {
  text-align: left;
}
.checkout-cart-index #shopping-cart-table .product-cart-actions .cart-links {
  display: none;
}
.checkout-cart-index #shopping-cart-table tfoot tr td {
  padding: 10px 0;
}
.checkout-cart-index #shopping-cart-table tfoot .btn-update,
.checkout-cart-index #shopping-cart-table tfoot .btn-continue {
  background: #fff;
  padding: 8px 15px;
}
.checkout-cart-index #shopping-cart-table tfoot .btn-update span,
.checkout-cart-index #shopping-cart-table tfoot .btn-continue span {
  height: 40px;
  line-height: 40px;
  display: block;
  text-decoration: none;
}
.checkout-cart-index #shopping-cart-table tfoot .btn-update span span,
.checkout-cart-index #shopping-cart-table tfoot .btn-continue span span {
  color: #000000;
  text-decoration: none;
  text-transform: none;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  border: 2px solid #ababab;
  height: 40px;
  line-height: 36px;
  box-sizing: border-box;
  padding: 0 15px;
}
.checkout-cart-index #shopping-cart-table tfoot .btn-update {
  float: right;
}
.checkout-cart-index .cart-forms .block {
  border: 0;
  border-bottom: 0;
  margin-bottom: 0;
  padding: 0;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-forms .block {
    border: 1px solid #EDEDED;
  }
}
@media only screen and (min-width: 1024px) {
  .checkout-cart-index .cart-forms .block {
    border: 1px solid #EDEDED;
  }
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-forms .block {
    border-bottom: 1px solid #EDEDED;
  }
}
@media only screen and (min-width: 1024px) {
  .checkout-cart-index .cart-forms .block {
    border-bottom: 0;
  }
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-forms .block {
    padding: 0 20px;
  }
}
.checkout-cart-index .cart-forms .block .block-content {
  margin-top: 0;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dt {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 1px solid #EDEDED;
  padding: 15px 10px;
  position: relative;
  cursor: pointer;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dt:after {
  position: absolute;
  width: 17px;
  height: 17px;
  left: auto;
  right: 10px;
  top: 15px;
  margin: 0;
  border: 0;
  content: "+";
  font-family: "proximanova-thin", Verdana, Arial, sans-serif;
  font-size: 35px;
  line-height: 20px;
  text-align: center;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dt.last {
  border-bottom: 1px solid #EDEDED;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-forms .block .block-content.toggle-content dt.last {
    border-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .checkout-cart-index .cart-forms .block .block-content.toggle-content dt.last {
    border-bottom: 1px solid #EDEDED;
  }
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dt.last.current {
  border-bottom: 1px solid #EDEDED;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd {
  display: none;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd.current {
  display: none;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd .offset-left {
  padding-left: 10px;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-forms .block .block-content.toggle-content dd .offset-left {
    padding-left: 0;
  }
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd h2 {
  display: none;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd label {
  margin-bottom: 8px;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  color: #999;
  line-height: 1.2;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd .col-gift-card label {
  padding-right: 10px;
}
@media only screen and (max-width: 385px) {
  .checkout-cart-index .cart-forms .block .block-content.toggle-content dd .col-gift-card label {
    max-width: 130px;
  }
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd .discount {
  background: transparent;
  border: 0;
  padding: 15px 0;
  margin: 0;
  border-bottom: 1px solid #EDEDED;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd .discount .button-wrapper {
  display: inline-block;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd .discount .button-wrapper > button {
  float: left;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd .giftcard {
  background: transparent;
  border: 0;
  padding: 15px 0;
  margin: 0;
  border-bottom: 1px solid #EDEDED;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-forms .block .block-content.toggle-content dd .giftcard {
    border-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .checkout-cart-index .cart-forms .block .block-content.toggle-content dd .giftcard {
    border-bottom: 1px solid #EDEDED;
  }
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd .giftcard .check-gc-status {
  color: #0057a3;
  background: transparent;
  border-radius: 0;
  text-decoration: none;
  margin-top: 0;
  line-height: 40px;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-forms .block .block-content.toggle-content dd .giftcard .check-gc-status {
    margin-top: 15px;
  }
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd .giftcard .check-gc-status span {
  line-height: 20px;
  height: auto;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd .giftcard .check-gc-status span span {
  color: #0057a3;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 14px;
  text-decoration: none;
  line-height: 20px;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd .giftcard .button-wrapper {
  margin-top: 0;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-forms .block .block-content.toggle-content dd .giftcard .button-wrapper {
    margin-top: 15px;
  }
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content.accordion-open dt.current:after {
  content: "-";
  line-height: 9px;
  font-size: 50px;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content.accordion-open dd.current {
  display: block;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals {
  border: 0;
  border-top: 0;
  padding: 20px 0 0;
  margin-bottom: 15px;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-totals-wrapper .cart-totals {
    border: 1px solid #EDEDED;
  }
}
@media only screen and (min-width: 1024px) {
  .checkout-cart-index .cart-totals-wrapper .cart-totals {
    border: 1px solid #EDEDED;
  }
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-totals-wrapper .cart-totals {
    border-top: 1px solid #EDEDED;
  }
}
@media only screen and (min-width: 1024px) {
  .checkout-cart-index .cart-totals-wrapper .cart-totals {
    border-top: 0;
  }
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-totals-wrapper .cart-totals {
    padding: 15px 20px;
  }
}
.checkout-cart-index .cart-totals-wrapper .cart-totals .cart-message {
  background: #eee;
  font-size: 12px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  text-align: center;
  padding: 15px 5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals #shopping-cart-totals-table {
  text-transform: none;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 0;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals #shopping-cart-totals-table strong {
  font-size: 18px;
  font-family: "proximanova-bold", Verdana, Arial, sans-serif;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals #shopping-cart-totals-table strong .price {
  font-size: 18px;
  font-family: "proximanova-bold", Verdana, Arial, sans-serif;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals #shopping-cart-totals-table .summary-details td {
  padding: 0;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals #shopping-cart-totals-table .summary-details strong {
  font-size: 14px;
  font-weight: normal;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals #shopping-cart-totals-table .summary-details .summary-details-inner {
  border: 1px solid #EDEDED;
  display: inline-block;
  padding: 2px 10px;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals #shopping-cart-totals-table tr:last-child td {
  padding-bottom: 0;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals #shopping-cart-totals-table tfoot {
  border: 0;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals #shopping-cart-totals-table .summary-collapse:before {
  content: "+";
  font-family: "proximanova-thin", Verdana, Arial, sans-serif;
  border: 1px solid #EDEDED;
  display: inline-block;
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals #shopping-cart-totals-table .show-details .summary-collapse:before {
  content: "-";
  line-height: 12px;
}
.checkout-cart-index .cart-totals-wrapper .checkout-types.bottom {
  float: none;
}
.checkout-cart-index .cart-totals-wrapper .checkout-types.bottom li {
  margin-bottom: 0;
}
.checkout-cart-index .cart-totals-wrapper .checkout-types.bottom .btn-proceed-checkout {
  display: block;
  width: 100%;
}
.checkout-cart-index .crosssell-sc,
.checkout-cart-index .crosssell {
  display: block;
  position: relative;
  float: left;
  width: 50%;
  padding-right: 30px;
  border-right: 1px solid #e7e7e7;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .crosssell-sc,
  .checkout-cart-index .crosssell {
    display: block;
  }
}
.checkout-cart-index .crosssell-sc > h2,
.checkout-cart-index .crosssell > h2 {
  font-size: 16px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.4;
  padding: 0 0 15px;
  border-bottom: 1px solid #e7e7e7;
  margin: 0 0 20px;
}
.checkout-cart-index .crosssell-sc .products-grid,
.checkout-cart-index .crosssell .products-grid {
  float: left;
  width: 100%;
  position: static;
  margin: 0 0 30px;
}
.checkout-cart-index .crosssell-sc .products-grid .product-image,
.checkout-cart-index .crosssell .products-grid .product-image {
  margin-bottom: 0;
}
.checkout-cart-index .crosssell-sc .products-grid .product-name,
.checkout-cart-index .crosssell .products-grid .product-name {
  margin: 23px 0 18px;
  height: 68px;
  overflow: hidden;
}
.checkout-cart-index .crosssell-sc .products-grid .owl-wrapper-outer,
.checkout-cart-index .crosssell .products-grid .owl-wrapper-outer {
  float: left;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.checkout-cart-index .crosssell-sc .products-grid .owl-wrapper-outer .owl-item,
.checkout-cart-index .crosssell .products-grid .owl-wrapper-outer .owl-item {
  float: left;
  text-align: center;
}
.checkout-cart-index .crosssell-sc .products-grid .owl-wrapper-outer .owl-item li,
.checkout-cart-index .crosssell .products-grid .owl-wrapper-outer .owl-item li {
  float: left;
  width: 100%;
  padding: 0 15px;
}
.checkout-cart-index .crosssell-sc .products-grid .owl-wrapper-outer .owl-item li .products-detailsbox,
.checkout-cart-index .crosssell .products-grid .owl-wrapper-outer .owl-item li .products-detailsbox {
  padding-bottom: 70px;
  position: relative;
  max-height: 178px;
}
.checkout-cart-index .crosssell-sc .products-grid .owl-wrapper-outer .owl-item li .products-detailsbox .row-button,
.checkout-cart-index .crosssell .products-grid .owl-wrapper-outer .owl-item li .products-detailsbox .row-button {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}
.checkout-cart-index .crosssell-sc .products-grid .owl-controls .owl-buttons,
.checkout-cart-index .crosssell .products-grid .owl-controls .owl-buttons {
  position: absolute;
  right: 30px;
  top: -6px;
  width: 92px;
}
.checkout-cart-index .crosssell-sc .products-grid .owl-controls .owl-buttons .owl-prev,
.checkout-cart-index .crosssell-sc .products-grid .owl-controls .owl-buttons .owl-next,
.checkout-cart-index .crosssell .products-grid .owl-controls .owl-buttons .owl-prev,
.checkout-cart-index .crosssell .products-grid .owl-controls .owl-buttons .owl-next {
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/slide-arrow-02.png) no-repeat 2px 1px;
  width: 41px;
  height: 41px;
  float: left;
  text-indent: -10000em;
  cursor: pointer;
}
.checkout-cart-index .crosssell-sc .products-grid .owl-controls .owl-buttons .owl-next,
.checkout-cart-index .crosssell .products-grid .owl-controls .owl-buttons .owl-next {
  float: right;
  background-position: 4px -68px;
}
@media screen and (max-width: 1023px) {
  .checkout-cart-index .crosssell-sc,
  .checkout-cart-index .crosssell {
    width: 100%;
    padding-right: 0;
    border: none;
  }
  .checkout-cart-index .crosssell-sc .products-grid .product-name,
  .checkout-cart-index .crosssell .products-grid .product-name {
    height: auto;
    overflow: inherit;
  }
  .checkout-cart-index .crosssell-sc .products-grid .owl-wrapper-outer .owl-item li .products-detailsbox,
  .checkout-cart-index .crosssell .products-grid .owl-wrapper-outer .owl-item li .products-detailsbox {
    max-height: none;
    padding-bottom: 50px;
  }
  .checkout-cart-index .crosssell-sc .products-grid .owl-controls .owl-buttons,
  .checkout-cart-index .crosssell .products-grid .owl-controls .owl-buttons {
    right: 0;
  }
}
.checkout-cart-index .crosssell {
  float: right;
  clear: right;
  width: 34%;
  padding: 0 0 0 20px;
  margin: 30px 0 0;
  border-right: none;
}
.checkout-cart-index .crosssell .products-grid .owl-controls .owl-buttons {
  right: 0;
}

.cart-table {
  float: left;
  width: 66%;
}

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

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

.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  padding: 10px;
  background-color: transparent;
  border: 1px solid #EDEDED;
  border-top: 0;
}

.cart-table,
.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  margin-bottom: 10px;
}
@media only screen and (min-width: 600px) {
  .cart-table,
  .cart-totals,
  .cart-forms .discount,
  .cart-forms .giftcard,
  .cart-forms .shipping {
    margin-bottom: 20px;
  }
}

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

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

  .display-both-prices .cart-forms,
  .display-both-prices .cart-totals-wrapper,
  .display-both-prices .crosssell,
  .display-single-price .cart-forms,
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    float: none;
    width: 100%;
  }
}
.display-single-price:after {
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Checkout - Cart
 * ============================================ */
.cart {
  margin-bottom: 40px;
}
@media only screen and (min-width: 600px) {
  .cart {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .cart {
    margin-bottom: 40px;
  }
}
.cart .page-title {
  margin-bottom: 0;
  border-bottom: 0;
}
.cart .page-title:after {
  content: '';
  display: table;
  clear: both;
}
.cart .page-title h1 {
  float: left;
  border-bottom: none;
  margin-bottom: 0;
  margin-right: 10px;
}
.cart .page-title.title-buttons .checkout-types {
  display: none;
  float: none;
  width: 34%;
  padding-left: 20px;
}
@media only screen and (min-width: 600px) {
  .cart .page-title.title-buttons .checkout-types {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .cart .page-title.title-buttons .checkout-types {
    display: block;
  }
}
@media only screen and (min-width: 600px) {
  .cart .page-title.title-buttons .checkout-types {
    float: none;
  }
}
@media only screen and (min-width: 1024px) {
  .cart .page-title.title-buttons .checkout-types {
    float: right;
  }
}
.cart .page-title.title-buttons .checkout-types li {
  display: block;
  margin-bottom: 0;
}
.cart .page-title.title-buttons .checkout-types li .button {
  display: block;
  width: 100%;
  margin-top: 15px;
}

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

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

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

  .checkout-types li {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 599px) {
  .btn-checkout {
    width: 100%;
  }
}
.cart-table {
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
}
.cart-table th,
.cart-table td,
.cart-table tbody td {
  border-bottom: none;
  vertical-align: top;
}
.cart-table h2 {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}
.cart-table thead th,
.cart-table tbody td {
  background-color: transparent;
  padding: 10px 15px;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
}
.cart-table tr {
  border-bottom: 1px solid #C0C0C0;
}
.cart-table tfoot tr {
  background: none;
}
.cart-table tfoot tr > td:after {
  content: '';
  display: table;
  clear: both;
}
.cart-table span.or {
  font-size: 9px;
  padding: 0 5px;
  text-transform: uppercase;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.cart-table .product-cart-image .product-cart-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: "AustinItalic", 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 #000;
  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 #000;
  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;
  color: #0057a3;
  font-size: 12px;
  text-transform: none;
}
.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: 40px;
  border-color: #e7e7e7;
  border-radius: 3px;
  margin-bottom: 5px;
  text-align: center;
  width: 46px;
  padding: 0;
  font-family: "proximanova-light", Verdana, Arial, sans-serif;
  color: #999;
}
.cart-table .product-cart-actions .button, .cart-table .product-cart-actions .button:hover, .cart-table .product-cart-actions .button:active, .cart-table .product-cart-actions .button.nice-select.open, .cart-table .product-cart-actions .button:focus {
  margin-bottom: 5px;
  padding: 0;
  background: transparent;
}
.cart-table .product-cart-actions .button span span, .cart-table .product-cart-actions .button:hover span span, .cart-table .product-cart-actions .button:active span span, .cart-table .product-cart-actions .button.nice-select.open span span, .cart-table .product-cart-actions .button:focus span span {
  color: #0057a3;
  display: block;
  font-size: 12px;
  text-transform: none;
}
.cart-table .item-options {
  padding-left: 15px;
}

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

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

@media only screen and (max-width: 770px) {
  .shipping .shipping-form .form-list > li {
    width: 100%;
    float: none;
  }
  .shipping .shipping-form .form-list > li label {
    display: block;
  }
  .shipping .shipping-form .form-list > li input,
  .shipping .shipping-form .form-list > li select {
    width: 100%;
  }
}
.cart .cart-totals {
  text-align: right;
}
.cart .cart-totals:after {
  content: '';
  display: table;
  clear: both;
}
.cart .cart-totals table {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
  width: 100%;
}
.cart .cart-totals table td {
  padding: 2px 10px;
}
.cart .cart-totals table td:first-child {
  padding-right: 10px;
  min-width: 120px;
}
.cart .cart-totals table tbody tr:last-child td,
.cart .cart-totals table tbody tr:last-child th {
  padding-bottom: 10px;
}
.cart .cart-totals table tfoot {
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
}
.cart .cart-totals table tfoot td {
  font-size: 24px;
  padding: 2px 5px;
  vertical-align: top;
}
.cart .cart-totals table tfoot strong span,
.cart .cart-totals table tfoot span.price {
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
}
.cart .cart-totals table tfoot strong {
  font-weight: 400;
}

@media only screen and (max-width: 600px) {
  .cart-totals {
    text-align: right;
  }
}
@media only screen and (max-width: 771px) {
  .cart .cart-totals table tfoot td {
    font-size: 18px;
  }

  .cart-totals-wrapper .cart-totals {
    border: 0;
  }
}
.discount-form:after,
#giftcard-form:after {
  content: '';
  display: table;
  clear: both;
}

#discount-coupon-form,
.cart .giftcard {
  width: 100%;
}
#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 {
  vertical-align: middle;
  float: right;
}
@media only screen and (min-width: 600px) {
  #discount-coupon-form .button-wrapper,
  .cart .giftcard .button-wrapper {
    float: none;
  }
}
#discount-coupon-form .button-wrapper > button,
.cart .giftcard .button-wrapper > button {
  float: right;
  padding: 0;
}
#discount-coupon-form .button-wrapper > button span,
.cart .giftcard .button-wrapper > button span {
  height: 40px;
  line-height: 40px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 14px;
}
#discount-coupon-form .button-wrapper > button span span,
.cart .giftcard .button-wrapper > button span span {
  background: #999;
  height: 40px;
  padding: 0 25px;
  text-transform: none;
  text-decoration: none;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 14px;
  text-align: center;
  color: #fff;
  border-radius: 3px;
}
#discount-coupon-form .button-wrapper > button:hover span span,
.cart .giftcard .button-wrapper > button:hover span span {
  background: #ababab;
}
#discount-coupon-form .button-wrapper > button.cancel-coupon,
.cart .giftcard .button-wrapper > button.cancel-coupon {
  background: none;
  margin-top: 5px;
  margin-right: 17px;
}
#discount-coupon-form .button-wrapper > button.cancel-coupon > span,
.cart .giftcard .button-wrapper > button.cancel-coupon > span {
  height: auto;
  line-height: 20px;
}
#discount-coupon-form .button-wrapper > button.cancel-coupon > span span,
.cart .giftcard .button-wrapper > button.cancel-coupon > span span {
  height: auto;
  padding: 0;
  color: #0057a3;
  background: none;
  line-height: 20px;
}
#discount-coupon-form .button-wrapper > button.cancel-coupon:hover span,
.cart .giftcard .button-wrapper > button.cancel-coupon:hover span {
  text-decoration: underline;
}
#discount-coupon-form .input-text, #discount-coupon-form .nice-select, #discount-coupon-form textarea,
.cart .giftcard .input-text,
.cart .giftcard .nice-select,
.cart .giftcard textarea {
  border-radius: 3px;
  height: 40px;
  margin: 0;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

@media only screen and (min-width: 600px) {
  #discount-coupon-form .discount-form .button-wrapper {
    float: right;
  }
}
@media only screen and (min-width: 770px) and (max-width: 1025px) {
  #discount-coupon-form .discount-form .input-text, #discount-coupon-form .discount-form .nice-select, #discount-coupon-form .discount-form textarea {
    width: 180px;
  }
}

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

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

/* ============================================ *
 * Checkout - Cart Cross sell
 * ============================================ */
/*.crosssell {
    h2 {
        color: $c-blue;
    }

    .item a.product-image {
        width: auto;
        float: left;
    }
}*/
/* Change the layout to 2 columns at a breakpoint that is higher than a 3 columns layout would normally break */
/*@include bp(max-width, $bp-large) {
    .crosssell {
        .products-grid > li:nth-child(even),
        .products-grid > li:nth-child(3n),
        .products-grid > li {
            width: percentage(210 / 440);
            margin-right: percentage(20 / 440);
        }

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

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

        !* Undo three-column config *!
        .products-grid > li:nth-child(3n+1) {
            clear: none;
        }
    }
}*/
@media only screen and (max-width: 599px) {
  .cart-table .cart-tax-total:after {
    right: -9px;
  }
  .cart-table .cart-tax-total.cart-tax-total-expanded:after {
    right: -13px;
  }
}
/*@include bp(max-width, 320px) {
    .crosssell {
        ul {
            .item {
                padding: 0 0px 40px;
            }

            .product-details .crosssell-actions {
                padding: 0 5px;
            }
        }
    }
}*/
/* ============================================ *
 * Checkout - One Page
 * ============================================ */
.checkout-onepage-index .col-right,
.checkout-onepage-index .col-left {
  display: none;
}

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

@media only screen and (min-width: 1024px) {
  .checkout-onepage-index .col-main {
    float: left;
    width: 68.75%;
    padding-right: 20px;
  }
  .checkout-onepage-index .col-right,
  .checkout-onepage-index .col-left {
    width: 31.25%;
    display: block;
  }
  .checkout-onepage-index .col-right {
    padding-left: 0;
  }
}
.opc select {
  width: 365px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.opc h3 {
  font-weight: 500;
}

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

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

@media only screen and (max-width: 770px) {
  .opc #opc-login .description,
  .opc #opc-login p.required {
    display: none;
  }
}
#opc-payment .note {
  padding: 10px;
}

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

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

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

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

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

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

/* -------------------------------------------- *
 * Shipping and Payment methods
 */
.sp-methods {
  margin: 0 0 8px;
}
.sp-methods dt {
  margin: 13px 0 5px;
  font-weight: bold;
}
.sp-methods dt:first-child {
  margin: 0 0 5px;
}
.sp-methods dd li {
  margin: 5px 0;
}
.sp-methods label img {
  float: left;
}
.sp-methods label a {
  margin-top: 6px;
  float: right;
  margin-left: 10px;
}
.sp-methods .price {
  font-weight: bold;
}
.sp-methods .form-list {
  padding-left: 20px;
}
.sp-methods .form-list li {
  margin: 0 0 8px;
}
.sp-methods select.month {
  width: 120px;
  margin-right: 10px;
}
.sp-methods select.year {
  width: 96px;
}
.sp-methods input.cvv {
  width: 4em !important;
}
.sp-methods #advice-validate-cc-exp-ccsave_expiration {
  max-width: 130px;
}
.sp-methods .checkmo-list li {
  margin: 0 0 5px;
  content: '';
  display: table;
  clear: both;
}
.sp-methods .checkmo-list label {
  width: 165px;
  padding-right: 15px;
  text-align: right;
  float: left;
}
.sp-methods .checkmo-list address {
  float: left;
}
@media only screen and (max-width: 479px) {
  .sp-methods .checkmo-list {
    padding-left: 0;
  }
  .sp-methods .checkmo-list label {
    width: 135px;
  }
}
.sp-methods .release-amounts {
  margin: 0.5em 0;
}
.sp-methods .release-amounts button {
  float: left;
  margin: 5px 10px 0 0;
}

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

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

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

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

@media only screen and (max-width: 599px) {
  .linearize-table-large.checkout-review-table thead tr:nth-child(1n+2) {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  .linearize-table.checkout-review-table thead tr:nth-child(1n+2) {
    display: none;
  }
}
/* show/hide "change" link for progress step depend on complete status
 * should be placed in .css file */
.opc-block-progress dt.complete a,
.opc-block-progress dt.complete .separator {
  display: inline;
}

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

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

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

  #checkout-review-table thead > tr > th:first-child {
    display: block;
  }
}
#checkout-step-review .centinel > 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;
  display: block;
}
.gift-message-form .inner-box > div.extra-options-container p {
  margin-bottom: 15px;
}
.gift-message-form .gift-wrapping-form label {
  margin-right: 10px;
}
.gift-message-form .gift-wrapping-form img {
  float: left;
}
.gift-message-form .gift-wrapping-form .gift-wrapping-design {
  height: 75px;
}
.gift-message-form .gift-wrapping-form .gift-wrapping-design:after {
  content: '';
  display: table;
  clear: both;
}
.gift-message-form .gift-wrapping-form .gift-wrapping-design .image-box {
  margin-right: 5px;
}
.gift-message-form .gift-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px #ECECEC;
}
.gift-message-form .gift-item:after {
  content: '';
  display: table;
  clear: both;
}
.gift-message-form .gift-item .product-img-box {
  width: 200px;
}
.gift-message-form .gift-item .product-img-box .product-image {
  width: 75px;
  margin-left: auto;
  margin-right: auto;
}
.gift-message-form .gift-item .product-img-box .product-name {
  display: block;
}
.gift-message-form .gift-item .fieldset {
  margin-left: 200px;
}

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

/* ============================================ *
 * Configurable Swatches
 * ============================================ */
/* Clears */
.clearfix:after, .shipment-methods dt ul:after, .shipment-methods .location-state:after,
.shipment-methods .location-city:after, .skip-links:after, #header-nav:after,
.configurable-swatch-list:after,
.product-view .product-options .swatch-attr:after {
  content: '';
  display: table;
  clear: both;
}

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

.swatch-link {
  border: 1px solid #e7e7e7;
  margin: 0 0 3px;
}
.swatch-link img {
  border-radius: 2px;
}
.swatch-link:hover {
  cursor: pointer;
  text-decoration: none;
}
.swatch-link .x {
  display: none;
  text-indent: -999em;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/bg_x.png) center no-repeat transparent;
  z-index: 10;
}
.swatch-link.has-image .swatch-label {
  position: relative;
}
.swatch-link.has-image img {
  position: absolute;
  top: 0;
  left: 0;
}

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

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

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

@media only screen and (max-width: 770px) {
  #narrow-by-list dd .configurable-swatch-list li:nth-child(odd) {
    clear: left;
  }
}
.currently .swatch-current {
  position: relative;
}
.currently .swatch-current .btn-remove {
  margin-top: -10px;
  position: absolute;
  right: 0;
  top: 50%;
}
.currently .swatch-current span {
  display: block;
  float: left;
}
.currently .swatch-link {
  display: inline-block;
  margin: 0 0 0 3px;
}
.currently .swatch-link:hover {
  border-color: #e7e7e7;
  cursor: default;
}

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

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

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

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

/* ============================================ *
 * Customer
 * ============================================ */
.customer-account-login .connect-beacon {
  margin-top: 0;
  padding-top: 0;
}
.customer-account-login .scaffold-form label:first-child {
  width: 115px;
}
.customer-account-login .col2-set .buttons-set {
  text-align: left;
  border-top: 0;
}
.customer-account-login .col2-set .buttons-set button,
.customer-account-login .col2-set .buttons-set .button {
  float: none;
  min-width: 50%;
  margin: 0;
}
.customer-account-login .col2-set .buttons-set a.f-left {
  color: #0057a3;
}
.customer-account-login .col2-set .col-1 ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0 20px 0;
}
@media only screen and (min-width: 480px) {
  .customer-account-login .col2-set .col-1,
  .customer-account-login .col2-set .col-2 {
    padding-top: 0;
    margin-top: 20px;
  }
  .customer-account-login .col2-set .col-1 {
    padding-right: 20px;
  }
  .customer-account-login .col2-set .col-2 {
    padding-left: 20px;
    border-left: 1px solid #EDEDED;
  }
}
@media only screen and (min-width: 770px) {
  .customer-account-login .col2-set .col-1 {
    padding-right: 0;
  }
  .customer-account-login .col2-set .col-2 {
    padding-left: 60px;
    border-left: 1px solid #EDEDED;
  }
}
@media only screen and (max-width: 479px) {
  .customer-account-login .col2-set .col-1 {
    padding-bottom: 30px;
  }
  .customer-account-login .col2-set .col-2 {
    padding-top: 30px;
    border-top: 1px solid #EDEDED;
  }
}
@media only screen and (max-width: 770px) {
  .customer-account-login .col2-set p.required {
    display: none;
  }
}

.customer-account-create .scaffold-form label:first-child {
  width: 140px;
}
.customer-account-create .connect-beacon {
  margin-top: 0;
  padding-top: 0;
}

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

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

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

.customer-account-create .buttons-set {
  max-width: 455px;
}
.customer-account-create .col-left .buttons-set button {
  float: left;
}
.customer-account-create .col-right .fieldset,
.customer-account-create .col-right .buttons-set {
  margin-left: 30px;
}
@media only screen and (max-width: 770px) {
  .customer-account-create .col-right .fieldset,
  .customer-account-create .col-right .buttons-set {
    margin-left: 0;
  }
}
.customer-account-create .fieldset .hidden {
  display: none;
}
.customer-account-create #remember-me-popup {
  max-width: 455px;
}

.customer-account-forgotpassword .fieldset,
.customer-account-forgotpassword .buttons-set {
  max-width: 450px;
  border-top: none;
}
.customer-account-forgotpassword .fieldset .input-box input.input-text, .customer-account-forgotpassword .fieldset .input-box input.nice-select {
  width: 100%;
}
.customer-account-forgotpassword .form-instructions {
  font-size: 12px;
  margin-bottom: 10px;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  color: #000000;
  font-style: normal;
}
.customer-account-forgotpassword .form-list > li, .customer-account-forgotpassword .buttons-set {
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .customer-account-forgotpassword .form-list > li, .customer-account-forgotpassword .buttons-set {
    width: 340px;
  }
}

/* ============================================ *
 * My Account Global Styles
 * ============================================ */
body.customer-account .link-remove {
  color: #0057a3;
}
body.customer-account .link-remove:hover {
  color: #0057a3;
}
body.customer-account .breadcrumbs {
  margin-bottom: 6px;
}
body.customer-account .my-account .giftcardaccount {
  width: 100%;
  max-width: 320px;
}
body.customer-account .my-account .giftcardaccount .input-box .input-text, body.customer-account .my-account .giftcardaccount .input-box .nice-select, body.customer-account .my-account .giftcardaccount .input-box textarea {
  width: 100%;
}
body.customer-account .my-account .giftcardaccount .fieldset {
  margin: 20px 0;
}
body.customer-account .my-account .giftcardaccount .buttons-set {
  margin-top: 0;
  padding-top: 0;
  border: none;
}
body.customer-account .my-account .giftcardaccount .buttons-set button.button {
  float: left;
  margin: 0 5px 0 0;
}
@media only screen and (max-width: 599px) {
  body.customer-account .my-account {
    margin-top: 20px;
  }
}
body.customer-account .my-account h5.heading {
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
body.customer-account .my-account .account-information {
  float: left;
  width: 50%;
  padding-right: 25px;
}
@media only screen and (max-width: 767px) {
  body.customer-account .my-account .account-information {
    width: 100%;
    padding-right: 0;
  }
}
body.customer-account .my-account .account-information input[type="password"],
body.customer-account .my-account .account-information input[type="text"],
body.customer-account .my-account .account-information input[type="tel"] {
  width: 100%;
}
body.customer-account .my-account .account-information .buttons-set {
  border: none;
}
body.customer-account .my-account .account-information .buttons-set button.button {
  float: left;
  margin-left: 0;
}
body.customer-account .my-account .vip-information {
  float: right;
  width: 50%;
  padding-left: 25px;
}
@media only screen and (max-width: 767px) {
  body.customer-account .my-account .vip-information {
    width: 100%;
    padding-left: 0;
  }
}
body.customer-account .my-account .title-buttons {
  position: relative;
  text-align: right;
}
body.customer-account .my-account .title-buttons h1 {
  text-align: left;
}
body.customer-account .my-account .title-buttons .button {
  position: absolute;
  right: 0;
  top: 0;
}
body.customer-account .my-account .title-buttons a,
body.customer-account .my-account .title-buttons span.separator {
  position: relative;
  top: -42px;
}
body.customer-account .my-account .fieldset h2,
body.customer-account .my-account .addresses-list h2,
body.customer-account .my-account .order-details h2 {
  width: 100%;
  display: inline-block;
}
body.customer-account .my-account .addresses-list address {
  clear: left;
}
body.customer-account .my-account .addresses-list h5 {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e7e7e7;
}
body.customer-account .my-account .addresses-list h3 {
  font-size: 15px;
  font-weight: 400;
  font-family: "proximanova-bold", Verdana, Arial, sans-serif;
  text-transform: none;
  letter-spacing: 0;
  float: left;
}
body.customer-account .my-account .addresses-list h3:after {
  content: "/";
  margin: 0 6px;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
}
@media only screen and (max-width: 767px) {
  body.customer-account .my-account .addresses-list h3 {
    float: none;
  }
  body.customer-account .my-account .addresses-list h3:after {
    content: "";
  }
}
body.customer-account .my-account .fieldset {
  margin-top: 30px;
  margin-bottom: 30px;
}
body.customer-account .my-account p.required {
  display: none;
}
body.customer-account .my-account .address-wrapper .grid12-6 {
  padding-left: 45px;
  padding-right: 45px;
}
body.customer-account .my-account .address-wrapper .grid12-6.col1 {
  padding-left: 0;
}
body.customer-account .my-account .address-wrapper .grid12-6.col2 {
  padding-right: 0;
}
@media only screen and (max-width: 767px) {
  body.customer-account .my-account .address-wrapper .grid12-6.col1, body.customer-account .my-account .address-wrapper .grid12-6.col2 {
    padding-left: 0;
    padding-right: 0;
  }
}
body.customer-account .my-account .address-wrapper .nice-select,
body.customer-account .my-account .address-wrapper input[type="email"],
body.customer-account .my-account .address-wrapper input[type="search"],
body.customer-account .my-account .address-wrapper input[type="number"],
body.customer-account .my-account .address-wrapper input[type="password"],
body.customer-account .my-account .address-wrapper input[type="tel"],
body.customer-account .my-account .address-wrapper input[type="text"] {
  width: 100%;
}
body.customer-account .my-account .address-wrapper h5 {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e7e7e7;
}
body.customer-account .my-account .address-wrapper label {
  padding-left: 0;
  background: none;
}
body.customer-account .my-account .pager {
  float: none;
}
body.customer-account .my-account .pager > .count-container {
  float: none;
}
body.customer-account .my-account .pager > .count-container:after {
  content: '';
  display: table;
  clear: both;
}
body.customer-account .my-account .pager > .count-container .limiter {
  float: right;
  border: none;
  margin-right: 0;
  padding-right: 0;
  margin-top: 0;
  margin-bottom: 0;
}
body.customer-account .my-account .pager > .count-container .limiter label {
  float: left;
  line-height: 42px;
}
body.customer-account .my-account .pager > .count-container .limiter .nice-select {
  clear: none;
  margin-left: 10px;
  margin-right: 10px;
}
body.customer-account .my-account .pager > .count-container .amount {
  float: left;
  margin-top: 0;
  margin-bottom: 0;
}
body.customer-account .my-account .pager > .count-container strong {
  font-weight: normal;
}
body.customer-account .my-account .data-table thead th {
  background: none;
  text-transform: none;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  body.customer-account .my-account .data-table thead th {
    padding: 10px;
  }
}
body.customer-account .my-account .data-table thead th.total, body.customer-account .my-account .data-table thead th.status {
  width: 150px;
}
body.customer-account .my-account .data-table thead th.view {
  width: 210px;
}
@media only screen and (max-width: 767px) {
  body.customer-account .my-account .data-table thead th.view {
    width: 190px;
  }
}
body.customer-account .my-account .data-table td {
  border-bottom: 1px solid #e7e7e7;
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  body.customer-account .my-account .data-table td {
    padding: 10px;
  }
}
body.customer-account .my-account .data-table td.view a {
  display: inline;
  text-transform: none;
  color: #0057a3;
  font-size: 14px;
}
body.customer-account .my-account .data-table td.status em {
  font-style: normal;
}
body.customer-account .my-account .data-table .separator {
  display: inline;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  body.customer-account .my-account .data-table .separator {
    display: none;
  }
}
body.customer-account .my-account .data-table .separator:after {
  content: "/";
  font-size: 14px;
  margin: 0 5px;
}
body.customer-account .my-account label {
  background: none;
  padding-left: 0;
}
body.customer-account .my-account label:hover {
  background: none;
}
body.customer-account .my-account .customer-user-attributes {
  list-style: none;
}
body.customer-account .my-account .customer-user-attributes li {
  margin-bottom: 20px;
}
body.customer-account .my-account .customer-user-attributes .nice-select {
  width: 100%;
}
body.customer-account .my-account .customer-user-attributes label {
  margin-bottom: 10px;
}
body.customer-account .data-table {
  margin-top: 5px;
}
body.customer-account .data-table td a {
  font-style: normal;
}
body.customer-account .data-table span.nobr {
  white-space: normal;
}
body.customer-account .data-table span.nobr a {
  white-space: nowrap;
}
body.customer-account .data-table td.view a {
  display: block;
}
body.customer-account .data-table .separator {
  display: none;
}
body.customer-account .data-table h2.product-name {
  letter-spacing: 0;
  margin-bottom: 0;
}
body.customer-account .data-table h2.product-name a {
  text-transform: none;
}
@media only screen and (max-width: 767px) {
  body.customer-account #my-reviews-table thead {
    display: none;
  }
}
body.customer-account #my-reviews-table thead th {
  font-size: 15px;
  color: #333333;
}
@media only screen and (max-width: 767px) {
  body.customer-account #my-reviews-table td {
    display: block;
    width: 100%;
  }
}
body.customer-account #my-reviews-table a.nobr {
  color: #0057a3;
}
body.customer-account .sidebar .block ol#compare-items li {
  margin: 10px 0;
}
body.customer-account .sidebar .block .block-content p.block-subtitle {
  margin-bottom: 15px;
}
body.customer-account .sidebar .block .block-content .actions {
  margin-top: 30px;
}
body.customer-account .sidebar ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
body.customer-account .sidebar ol#cart-sidebar-reorder p.product-name {
  display: inline-block;
  margin-bottom: 0;
}
body.customer-account .sidebar .block-cart .summary {
  margin-bottom: 15px;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li input {
  margin-right: 10px;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder p.product-name {
  display: inline;
  margin-bottom: 0;
}

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

.block-account {
  padding-top: 39px;
}
.block-account .block-content ul li {
  text-transform: none;
  border-bottom: 1px solid #e7e7e7;
  padding: 6px 0;
  font: normal 14px "proximanova-semibold", Verdana, Arial, sans-serif;
  margin: 0;
}
.block-account .block-content ul li a {
  font: normal 14px "proximanova-regular", Verdana, Arial, sans-serif;
  padding: 0 10px;
}
.block-account .block-content ul li strong {
  color: #0057a3;
}
@media only screen and (max-width: 770px) {
  .block-account .block-content ul li:last-child {
    border-bottom: none;
  }
}
.block-account .block-content ul li.current a:hover {
  text-decoration-color: #0057a3;
}
@media only screen and (max-width: 770px) {
  .block-account {
    padding-top: 0;
  }
}

/* ============================================ *
 * Dashboard
 * ============================================ */
.dashboard .box-head {
  margin-top: 30px;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 10px;
}
.dashboard .box-head h2 {
  font-size: 14px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  display: inline-block;
  margin-bottom: 0;
  letter-spacing: 0;
}
.dashboard .box-head a {
  padding: 10px;
}
.dashboard .box-recent .box-head {
  border-bottom: 0;
}
.dashboard .box-title a,
.dashboard .box-head a {
  font-size: 14px;
  color: #0057a3;
  float: right;
}
.dashboard .box-title.box-address {
  margin-top: 30px;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 10px;
}
.dashboard .box-title.box-address h2 {
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0;
  letter-spacing: 0;
  margin-right: 25px;
}
.dashboard .box-account {
  padding-bottom: 40px;
  margin-bottom: 45px;
}
.dashboard .box-account p,
.dashboard .box-account address {
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
}
.dashboard .col2-set {
  margin-bottom: 20px;
}
.dashboard .col2-set .col-1,
.dashboard .col2-set .col-2 {
  width: 45.5%;
  margin-right: 9%;
  padding: 12px 0;
}
.dashboard .col2-set .col-1 .box-title,
.dashboard .col2-set .col-2 .box-title {
  position: relative;
  padding-bottom: 10px;
}
.dashboard .col2-set .col-1 .box-title h2,
.dashboard .col2-set .col-1 .box-title h3,
.dashboard .col2-set .col-2 .box-title h2,
.dashboard .col2-set .col-2 .box-title h3 {
  font: 15px "proximanova-bold", Verdana, Arial, sans-serif;
  margin-bottom: 0;
  letter-spacing: 0;
  display: inline-block;
  margin-right: 15px;
  text-transform: none;
}
.dashboard .col2-set .col-1 .box-title a,
.dashboard .col2-set .col-2 .box-title a {
  line-height: 19.6px;
}
.dashboard .col2-set .col-2 {
  margin-right: 0;
}
.dashboard .box-reviews.box-account {
  padding-bottom: 0;
}
.dashboard .box-reviews li {
  padding: 10px 0;
  border-top: 1px solid #EDEDED;
}
.dashboard .box-reviews li:first-child {
  border-top: 0;
}
.dashboard .box-reviews li .number {
  margin-right: -20px;
  float: left;
  line-height: 1.4;
  font-size: 13px;
}
.dashboard .box-reviews li .details {
  margin-left: 20px;
}
.dashboard .box-reviews li .details .ratings {
  content: '';
  display: table;
  clear: both;
  margin-bottom: 0;
}
.dashboard .box-reviews li .details .ratings strong {
  float: left;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  margin-right: 5px;
}
.dashboard .box-reviews li .details .ratings .rating-box {
  float: left;
  margin: 3px 0 0 0;
}
.dashboard .welcome-msg .hello {
  font: 30px "proximanova-thin", Verdana, Arial, sans-serif;
  line-height: 40px;
}
.dashboard .welcome-msg .hello strong {
  font-weight: normal;
}

/* ============================================ *
 * Address Book
 * ============================================ */
.my-account .link-reorder, .my-account .link-print {
  color: #0057a3;
}
.my-account .addresses-list .col-1,
.my-account .addresses-list .col-2 {
  padding-bottom: 0;
  padding-top: 15px;
}
.my-account .addresses-list .col-1 {
  padding-right: 45px;
}
.my-account .addresses-list .col-2 {
  padding-left: 45px;
}
.my-account .addresses-list .item {
  margin: 0 0 30px 0;
}
@media only screen and (max-width: 770px) {
  .my-account .addresses-list .col-1,
  .my-account .addresses-list .col-2 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .my-account .addresses-list .col-1 li.empty,
  .my-account .addresses-list .col-2 li.empty {
    width: 100%;
  }
}
@media only screen and (max-width: 599px) {
  .my-account .addresses-list .addresses-additional p a {
    white-space: nowrap;
  }
}

/* ============================================ *
 * Order View
 * ============================================ */
.sales-order-view .my-account .title-buttons h1 {
  margin-top: -15px;
  padding-bottom: 20px;
}

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

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

.order-info-box {
  margin-bottom: 40px;
  margin-top: 20px;
}
.order-info-box + .order-info-box {
  padding-bottom: 40px;
  border-bottom: 1px solid #EDEDED;
}
.order-info-box .col-1 {
  padding-right: 0;
  width: 48%;
}
.order-info-box .col-2 {
  width: 52%;
}
.order-info-box .col-1,
.order-info-box .col-2 {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.order-info-box .box-title {
  width: 150px;
  padding-right: 10px;
  float: left;
}
.order-info-box .box-title h2 {
  font-size: 14px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  line-height: 1.5;
}
.order-info-box .box-title h2:after {
  content: ':';
}
.order-info-box .box-content {
  float: left;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
}
.order-info-box .box-content td,
.order-info-box .box-content th {
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  line-height: 1.3;
}
.order-info-box .box-content th {
  padding-top: 10px;
}
.order-info-box .box-content td {
  padding-left: 15px;
}
.order-info-box .box-content strong {
  font-family: "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;
}

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

  body.customer-account .col2-left-layout .col-left.sidebar {
    margin-bottom: 20px;
  }
}
.order-additional {
  margin: 40px 0;
}

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

@media only screen and (max-width: 1279px) {
  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    padding-right: 30px;
    padding-bottom: 0;
  }

  body.customer-account .data-table td.view a {
    white-space: normal;
  }
}
@media only screen and (max-width: 1023px) {
  body.customer-account .my-account .title-buttons {
    text-align: left;
  }
  body.customer-account .my-account .title-buttons span.separator,
  body.customer-account .my-account .title-buttons a {
    top: -12px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1023px) {
  body.customer-account .col2-left-layout .col-left.sidebar {
    display: block;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 770px) {
  body.customer-account .data-table.orders th.ship,
  body.customer-account .data-table.orders td.ship,
  body.customer-account .data-table.orders td.status,
  body.customer-account .data-table.orders th.status {
    display: none;
  }

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

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

  .order-info dt {
    display: none;
  }

  .dashboard .page-title {
    margin-top: 20px;
  }
  .dashboard .page-title h1 {
    margin-top: 0;
  }
  .dashboard .welcome-msg {
    font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  }
  .dashboard .box-account {
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    width: 48%;
    padding-right: 0;
    padding-left: 0;
  }
  .dashboard .col2-set .col-1 {
    float: left;
    margin-right: 4%;
  }
  .dashboard .col2-set .col-2 {
    float: right;
  }
}
@media only screen and (max-width: 599px) {
  body.customer-account .my-account .form-list .control {
    padding-left: 0;
  }
}
@media only screen and (max-width: 479px) {
  body.customer-account .my-account .page-title h1 {
    text-align: center;
  }
  body.customer-account .my-account .title-buttons {
    text-align: center;
  }
  body.customer-account .my-account .title-buttons .button {
    width: 100%;
    position: static;
    margin-bottom: 15px;
  }
  body.customer-account .my-account .title-buttons .button + .button {
    margin-left: 0px;
  }
  body.customer-account .my-account .fieldset h2 {
    margin-bottom: 15px;
  }
  body.customer-account .my-account .order-details h2 {
    margin-bottom: 15px;
  }
  body.customer-account .my-account .buttons-set {
    border-top: 0;
  }
  body.customer-account .my-account .addresses-list .item {
    margin-bottom: 15px;
    padding-right: 0;
    float: none;
    width: auto;
  }
  body.customer-account .my-account .addresses-list h2 {
    margin-bottom: 15px;
  }

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

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

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

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

  #my-reviews-table .nobr {
    white-space: normal;
  }
}
#giftcard_balance_lookup .messages {
  display: block !important;
}

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

/* ============================================ *
 * Issue Fixed code
 * ============================================ */
.customer-address-form .nice-select .current {
  color: #999;
}

span.icon-back {
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/icon-back.jpg) center center no-repeat;
  width: 10px;
}

.address-wrapper .form-list .fields-addnew .field-l, .address-wrapper .form-list .fields-addnew .field-r {
  width: 48%;
  float: left;
}
.address-wrapper .form-list .fields-addnew .field-l {
  margin-right: 4%;
}

/* ============================================ *
 * Product Review
 * ============================================ */
body.customer-account .my-account .product-review .product-img-box {
  display: none;
}

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

/* ============================================ *
 * PayPal
 * ============================================ */
@media only screen and (max-width: 870px) and (min-width: 771px) {
  .paypal-review-order .col2-set .col-1,
  .paypal-review-order .col2-set .col-2 {
    padding: 0px;
  }
}

.paypal-review-order .info-set {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #EDEDED;
}
.paypal-review-order .buttons-set {
  margin-top: 0px;
  padding-top: 0px;
  border: 0;
}
.paypal-review-order .buttons-set button {
  margin-bottom: 10px;
}
@media only screen and (max-width: 770px) {
  .paypal-review-order .col-1 {
    padding-bottom: 0;
  }
  .paypal-review-order .field.inactive {
    display: none;
  }
}

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

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

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

@media only screen and (max-width: 770px) {
  .bml-ad.small {
    display: block;
  }
}
@media only screen and (min-width: 771px) {
  .bml-ad.large {
    display: block;
  }
}
div.paypal-logo {
  text-align: center;
  margin: 15px 0;
  max-width: 100%;
}
div.paypal-logo span {
  display: block;
  width: 100%;
}
div.paypal-logo span a {
  display: inline-block;
  max-width: 100%;
}
div.paypal-logo span a img {
  max-width: 100%;
}
div.paypal-logo span > img {
  display: none;
}

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

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

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

/* ============================================ *
 * Review - Customer
 * ============================================ */
#customer-reviews {
  width: auto;
  float: none;
}
#customer-reviews .review-heading {
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  padding: 10px 0;
  margin-bottom: 40px;
}
#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: none;
  width: auto;
  margin: 0;
}
@media only screen and (min-width: 600px) {
  #customer-reviews .review-heading .pager {
    float: right;
  }
}
@media only screen and (min-width: 1024px) {
  #customer-reviews .review-heading .pager {
    float: right;
  }
}
#customer-reviews .review-heading .pager .count-container {
  display: block;
  float: none;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  #customer-reviews .review-heading .pager .count-container {
    float: left;
  }
}
@media only screen and (min-width: 1024px) {
  #customer-reviews .review-heading .pager .count-container {
    float: left;
  }
}
@media only screen and (min-width: 600px) {
  #customer-reviews .review-heading .pager .count-container {
    text-align: left;
  }
}
@media only screen and (min-width: 1024px) {
  #customer-reviews .review-heading .pager .count-container {
    text-align: left;
  }
}
#customer-reviews .review-heading .pager .count-container .limiter {
  float: none;
  margin: 0;
  height: auto;
  padding: 0;
  border: none;
}
@media only screen and (min-width: 600px) {
  #customer-reviews .review-heading .pager .count-container .limiter {
    float: left;
  }
}
@media only screen and (min-width: 1024px) {
  #customer-reviews .review-heading .pager .count-container .limiter {
    float: left;
  }
}
#customer-reviews .review-heading .pager .count-container .limiter label {
  display: inline-block;
  font-size: 14px;
  text-transform: none;
  line-height: 42px;
  margin-right: 5px;
}
#customer-reviews .review-heading .pager .count-container .limiter .nice-select {
  clear: none;
  vertical-align: top;
}
#customer-reviews .review-heading .pager .pages {
  margin-top: 10px;
  margin-bottom: 0;
  clear: both;
  float: none;
  text-align: center;
  height: 42px;
}
@media only screen and (min-width: 600px) {
  #customer-reviews .review-heading .pager .pages {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1024px) {
  #customer-reviews .review-heading .pager .pages {
    margin-top: 0;
  }
}
@media only screen and (min-width: 600px) {
  #customer-reviews .review-heading .pager .pages {
    clear: none;
  }
}
@media only screen and (min-width: 1024px) {
  #customer-reviews .review-heading .pager .pages {
    clear: none;
  }
}
@media only screen and (min-width: 600px) {
  #customer-reviews .review-heading .pager .pages {
    float: left;
  }
}
@media only screen and (min-width: 1024px) {
  #customer-reviews .review-heading .pager .pages {
    float: left;
  }
}
#customer-reviews .review-heading .pager .pages ol {
  float: none;
  display: inline-block;
}
#customer-reviews .review-heading .pager .pages ol li:first-child {
  margin-left: 0;
}
@media only screen and (min-width: 600px) {
  #customer-reviews .review-heading .pager .pages ol li:first-child {
    margin-left: 9px;
  }
}
@media only screen and (min-width: 1024px) {
  #customer-reviews .review-heading .pager .pages ol li:first-child {
    margin-left: 9px;
  }
}
#customer-reviews .review-heading .pager .amount {
  display: none;
}
#customer-reviews .reviewing {
  margin-bottom: 40px;
  font-size: 13px;
}
#customer-reviews .reviewing span {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
}
@media only screen and (min-width: 600px) {
  #customer-reviews .reviewing {
    font-size: 14px;
  }
}
#customer-reviews h2 {
  text-transform: capitalize;
  margin-bottom: 10px;
}
#customer-reviews h2 span {
  color: #000;
}
#customer-reviews h3 {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
}
#customer-reviews h3 span {
  color: #0057a3;
}
#customer-reviews .fieldset h4 {
  border-bottom: 1px solid #e7e7e7;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  padding-bottom: 5px;
  text-transform: uppercase;
}
#customer-reviews .fieldset h4 em {
  display: none;
}
#customer-reviews .fieldset .form-list {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  margin: 10px 0;
  text-transform: uppercase;
}
#customer-reviews .fieldset .form-list .inline-label {
  float: left;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  #customer-reviews .fieldset .form-list .inline-label {
    width: 100%;
  }
}
#customer-reviews .fieldset .form-list .inline-label.review-name {
  padding-right: 20px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  #customer-reviews .fieldset .form-list .inline-label.review-name {
    padding-right: 0px;
    margin-bottom: 15px;
  }
}
#customer-reviews .fieldset .form-list .inline-label.review-summary {
  padding-left: 20px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  #customer-reviews .fieldset .form-list .inline-label.review-summary {
    padding-left: 0px;
    margin-bottom: 15px;
  }
}
#customer-reviews .fieldset .form-list .inline-label:after {
  content: '';
  display: table;
  clear: both;
}
#customer-reviews .fieldset .form-list label {
  font-size: 14px;
  font-weight: normal;
  text-transform: none;
}
#customer-reviews .fieldset .form-list textarea {
  border: 1px solid #e7e7e7;
  border-radius: 0;
  min-width: 100%;
  -webkit-appearance: none;
  height: 160px;
}
#customer-reviews .fieldset .form-list input {
  border: 1px solid #e7e7e7;
  border-radius: 0;
}
#customer-reviews .fieldset .form-list input[type="text"] {
  width: 100%;
}
#customer-reviews .buttons-set {
  border: none;
  margin: 0;
}
#customer-reviews .buttons-set button {
  float: left;
  margin: 0;
  min-width: 0;
}
#customer-reviews dl {
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 10px;
}
#customer-reviews dl dt {
  margin: 0;
  text-transform: uppercase;
}
#customer-reviews dl dd {
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 14px;
  margin: 0;
}
#customer-reviews dl dd .ratings-table {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  width: 100%;
}
#customer-reviews dl dd .ratings-table tr {
  margin-right: 15px;
}
#customer-reviews dl dd .ratings-table .review-label {
  width: 300px;
  max-width: 70%;
}
#customer-reviews dl dd .review-meta {
  color: #999;
}
#customer-reviews dl dd .review-meta span {
  color: #000000;
}
#customer-reviews dl dd table {
  margin: 15px 0;
}
#customer-reviews dl dd .review-meta {
  color: #0057a3;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase;
}
#customer-reviews .form-add {
  padding: 40px;
  border: 1px solid #e7e7e7;
}
@media only screen and (max-width: 767px) {
  #customer-reviews .form-add {
    padding: 15px;
  }
}
#customer-reviews .no-rating {
  display: none;
}

#review-form .button {
  width: auto;
}

.review-summary-table {
  margin: 0 0 10px;
}
.review-summary-table thead {
  background: transparent;
}
.review-summary-table thead th {
  background: transparent;
  border: none;
  padding: 15px 7px 10px 8px;
}
.review-summary-table tbody th {
  background: #FFFFFF;
  display: block;
  float: left;
  line-height: 30px;
  padding: 10px 10px 10px 0;
  text-transform: none;
}
@media only screen and (max-width: 767px) {
  .review-summary-table tbody th {
    width: 100%;
  }
}
.review-summary-table tbody td {
  border: none;
  text-align: center;
  padding: 0;
  display: block;
  float: left;
}
.review-summary-table tbody td label {
  width: 100%;
  display: block;
  padding: 10px 0;
}
.review-summary-table tbody td label:after {
  content: '\e814';
  font-family: "beacon-icon-fontello", Verdana, Arial, sans-serif;
  color: #fbe400;
  font-size: 20px;
}
.review-summary-table tbody td label.checked:after {
  content: '\e815';
}
.review-summary-table.ratings {
  width: 120px;
  margin: 0 0 21px -3px;
}
.review-summary-table.ratings th {
  display: none;
}
.review-summary-table.ratings td {
  width: 20%;
}
.review-summary-table.ratings td label {
  padding: 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;
}

.reviews-item {
  padding: 40px;
  border: 1px solid #e7e7e7;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .reviews-item {
    padding: 20px;
  }
}
.reviews-item dt a {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 16px;
  color: #000000;
}
.reviews-item .review-meta {
  color: #999;
}
.reviews-item .review-meta span {
  color: #000;
}

/* ============================================ *
 * Ratings - Global
 * ============================================ */
.ratings-table {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
    /*.rating-box {
        @extend .icon-sprite;
        background-position: 0 -615px;
        background-repeat: repeat-x;
        height: 13px;
        overflow: hidden;
        text-indent: -9999px;
        width: 65px;

        .rating {
            @extend .icon-sprite;
            background-position: 0 -600px;
            background-repeat: repeat-x;
            float: left;
            height: 13px;
            text-indent: -9999px;
        }
    }*/
}
.ratings-table th {
  padding-right: 10px;
}

@media only screen and (max-width: 770px) {
  body.review-product-list .product-view .product-shop .price-info {
    padding-left: 0;
  }
  body.review-product-list .product-view .product-shop .extra-info {
    padding: 0;
    min-width: 84%;
  }
  body.review-product-list .product-view .product-shop .extra-info .ratings-table {
    margin: 10px 0;
    width: 100%;
  }
  body.review-product-list .product-view .product-shop .extra-info .ratings-table tr {
    margin-right: 15px;
  }
}
@media only screen and (max-width: 535px) {
  body.review-product-list .product-view .product-shop .extra-info {
    min-width: 0;
  }
  body.review-product-list .product-view .product-shop .extra-info .ratings-table tr {
    float: none;
    margin-right: 0;
  }
}
@media only screen and (max-width: 520px) {
  #customer-reviews .fieldset {
    width: 100%;
  }
  #customer-reviews .fieldset .form-list {
    width: 100%;
  }
  #customer-reviews .fieldset .form-list .inline-label label,
  #customer-reviews .fieldset .form-list .inline-label .input-box {
    float: none;
  }
  #customer-reviews .buttons-set {
    width: 100%;
  }
  #customer-reviews .review-summary-table thead th {
    padding-left: 0px;
    padding-right: 0px;
  }
  #customer-reviews .review-summary-table tbody th {
    padding-left: 0px;
    padding-right: 0px;
  }
  #customer-reviews .review-summary-table tbody td {
    padding: 0px;
  }
  #customer-reviews .review-summary-table .rating-box {
    text-indent: 0px;
    text-align: center;
    background: none;
    height: 19.6px;
    width: 100%;
  }
  #customer-reviews .review-summary-table .rating-box .rating {
    display: none;
  }
  #customer-reviews .review-summary-table .rating-box .rating-number {
    display: inline-block;
  }
}
@media only screen and (max-width: 450px) {
  #customer-reviews dl dd .ratings-table tr {
    float: none;
  }
}
/* ============================================ *
 * Review View Page
 * ============================================ */
.review-product-view .product-review .product-details h2 {
  border-bottom: none;
}
.review-product-view .product-review .product-img-box {
  width: auto;
  max-width: 50%;
}
.review-product-view .product-review .product-img-box > a {
  width: 100%;
}
.review-product-view .product-review .product-img-box .product-image {
  width: 100%;
}

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

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

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

.slideshow-prev {
  left: 8px;
}
.slideshow-prev:before {
  border-width: 15px 15px 15px 0;
  border-color: transparent #FFFFFF transparent transparent;
  top: 50%;
  left: 10px;
}
.slideshow-prev:hover:before {
  border-color: transparent #00498a 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 #00498a;
}

.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-view-form .fieldset {
  margin-top: 0;
}
#wishlist-view-form .buttons-set {
  padding-top: 20px;
}
#wishlist-view-form .buttons-set .button {
  min-width: 0;
  margin-left: 20px;
}

#wishlist-table th {
  text-align: left;
}
#wishlist-table.clean-table {
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  width: 100%;
}
#wishlist-table.clean-table th, #wishlist-table.clean-table td {
  border-bottom: 1px solid #e7e7e7;
  padding: 20px 15px;
  vertical-align: top;
}
#wishlist-table.clean-table th:first-child, #wishlist-table.clean-table td:first-child {
  padding-left: 0;
}
#wishlist-table.clean-table th:last-child, #wishlist-table.clean-table td:last-child {
  padding-right: 0;
}
#wishlist-table.clean-table tr:last-child td {
  border-bottom: none;
}
#wishlist-table.clean-table thead th {
  font: 14px "proximanova-regular", Verdana, Arial, sans-serif;
  color: #333333;
  text-transform: none;
  padding: 0 15px 15px;
}
#wishlist-table .product-name {
  font: 14px "proximanova-regular", Verdana, Arial, sans-serif;
  line-height: 20px;
  text-transform: none;
  letter-spacing: 0;
}
#wishlist-table .product-name a {
  color: #000000;
}
#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 #e7e7e7;
  width: 230px;
  height: 111px;
  font-size: 14px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
@media only screen and (max-width: 1023px) {
  #wishlist-table textarea {
    width: 160px;
  }
}
#wishlist-table .item-manage {
  text-align: right;
  max-width: 450px;
  padding-top: 5px;
  display: none;
}
#wishlist-table .item-manage .button {
  font-size: 11px;
  padding: 3px 5px;
}
#wishlist-table .cart-cell {
  text-align: center;
}
#wishlist-table td.customer-wishlist-item-image {
  width: 85px;
  padding-right: 5px;
}
#wishlist-table td.customer-wishlist-item-image img {
  width: 85px;
  height: auto;
}
#wishlist-table td.customer-wishlist-item-quantity {
  width: 3em;
}
#wishlist-table td.customer-wishlist-item-quantity .cart-cell {
  white-space: nowrap;
  text-align: left;
  margin-bottom: 14px;
}
#wishlist-table td.customer-wishlist-item-quantity .cart-cell .add-to-cart-alt {
  display: inline-block;
  vertical-align: top;
}
#wishlist-table td.customer-wishlist-item-quantity .cart-cell .add-to-cart-alt .input-text, #wishlist-table td.customer-wishlist-item-quantity .cart-cell .add-to-cart-alt .nice-select, #wishlist-table td.customer-wishlist-item-quantity .cart-cell .add-to-cart-alt textarea {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  height: 40px;
  padding: 5px;
}
#wishlist-table td.customer-wishlist-item-quantity .cart-cell .button {
  min-width: 0;
  white-space: nowrap;
  margin-left: 8px;
}
#wishlist-table td.customer-wishlist-item-quantity .cart-cell .button.link-edit {
  background: none;
  font-size: 14px;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  text-transform: none;
  color: #0057a3;
  padding: 0;
}
#wishlist-table td.customer-wishlist-item-quantity .cart-cell .button.link-edit:hover {
  text-decoration: underline;
  color: #0057a3;
}
#wishlist-table td.customer-wishlist-item-quantity .cart-cell .btn-remove {
  background: none;
  margin-left: 14px;
}
#wishlist-table td.customer-wishlist-item-quantity .cart-cell .btn-remove:before {
  font-size: 16px;
  text-indent: 0;
  display: block;
  line-height: 22px;
  color: #333333;
}
#wishlist-table td.customer-wishlist-item-quantity .cart-cell .btn-remove:hover {
  text-decoration: none;
}
#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: 15px "proximanova-bold", Verdana, Arial, sans-serif;
  min-width: 0;
  line-height: 20px;
  padding: 10px 20px;
  white-space: nowrap;
}
#wishlist-table td.customer-wishlist-item-cart .truncated {
  margin-bottom: 10px;
}
#wishlist-table td.customer-wishlist-item-cart > p {
  margin-bottom: 0;
}
#wishlist-table td.customer-wishlist-item-cart .remove-whishlist-item {
  text-align: center;
}
#wishlist-table td.customer-wishlist-item-cart .btn-remove {
  vertical-align: top;
}
#wishlist-table td.customer-wishlist-item-remove {
  width: 20px;
}
#wishlist-table td .button,
#wishlist-table td button {
  white-space: normal;
}
#wishlist-table .price-box {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
}
#wishlist-table .price-box .price {
  color: #000;
}
#wishlist-table .giftregisty-add {
  margin-top: 5px;
}
#wishlist-table .giftregisty-add .change {
  display: none;
}
#wishlist-table .giftregisty-add li {
  cursor: pointer;
  color: #666;
  margin-bottom: 3px;
}
#wishlist-table .truncated .details {
  background: none;
  color: #666;
}
#wishlist-table td[data-rwd-label]:before {
  font-weight: 600;
  display: none;
}

@media only screen and (max-width: 1279px) {
  #wishlist-table.clean-table td {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 1023px) {
  #wishlist-table.clean-table td {
    padding-left: 5px;
    padding-right: 5px;
  }
  #wishlist-table.clean-table td textarea {
    height: 100px;
  }
  #wishlist-table.clean-table td.customer-wishlist-item-cart {
    width: 110px;
  }
  #wishlist-table .product-name {
    font-size: 13px;
  }
}
@media only screen and (max-width: 770px) {
  #wishlist-table:after {
    content: '';
    display: table;
    clear: both;
  }
  #wishlist-table .product-name {
    font-size: 16px;
  }
  #wishlist-table textarea {
    height: 68px;
    max-width: 100%;
  }
  #wishlist-table .item-manage {
    max-width: 100%;
  }
  #wishlist-table tr {
    position: relative;
  }
  #wishlist-table tr:after {
    content: '';
    display: table;
    clear: both;
  }
  #wishlist-table td.customer-wishlist-item-image {
    width: 70px;
  }
  #wishlist-table td.customer-wishlist-item-image img {
    width: 70px;
    height: 70px;
  }
  #wishlist-table td.customer-wishlist-item-cart p {
    margin-bottom: 0;
  }
  #wishlist-table td.customer-wishlist-item-cart .remove-whishlist-item {
    margin-right: 0;
    padding-top: 4px;
  }
  #wishlist-table td.customer-wishlist-item-cart {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 599px) {
  #wishlist-table td.customer-wishlist-item-quantity {
    padding-left: 0;
  }
  #wishlist-table td.customer-wishlist-item-image,
  #wishlist-table th.customer-wishlist-item-image {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  #wishlist-table tr {
    position: relative;
  }
  #wishlist-table th.customer-wishlist-item-image {
    display: block;
  }
  #wishlist-table td textarea {
    width: 100%;
  }
  #wishlist-table td.customer-wishlist-item-image, #wishlist-table td.customer-wishlist-item-info, #wishlist-table td.customer-wishlist-item-quantity, #wishlist-table td.customer-wishlist-item-price, #wishlist-table td.customer-wishlist-item-cart {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    empty-cells: hide;
  }
  #wishlist-table td.customer-wishlist-item-image {
    display: block;
    overflow: hidden;
  }
  #wishlist-table td.customer-wishlist-item-image a {
    float: none;
  }
  #wishlist-table td.customer-wishlist-item-image a img {
    width: 113px;
    height: 113px;
    margin: 0 auto;
  }
  #wishlist-table td.customer-wishlist-item-quantity, #wishlist-table td.customer-wishlist-item-price {
    text-align: center;
  }
  #wishlist-table td.customer-wishlist-item-quantity:before, #wishlist-table td.customer-wishlist-item-price:before {
    float: left;
    margin-right: 15px;
  }
  #wishlist-table td.customer-wishlist-item-quantity .cart-cell, #wishlist-table td.customer-wishlist-item-price .cart-cell {
    text-align: center;
  }
  #wishlist-table td.customer-wishlist-item-quantity .price-box, #wishlist-table td.customer-wishlist-item-price .price-box {
    margin-top: 0;
  }
  #wishlist-table td.customer-wishlist-item-cart .cart-cell {
    float: left;
    width: 48%;
  }
  #wishlist-table td.customer-wishlist-item-cart > p {
    float: right;
    width: 48%;
  }
  #wishlist-table td.customer-wishlist-item-remove {
    position: absolute;
    top: 15px;
    right: 0px;
    display: block;
    padding: 0px;
    height: 20px;
  }
  #wishlist-table.clean-table td.customer-wishlist-item-cart {
    width: 100%;
  }
  #wishlist-table.clean-table td {
    text-align: center;
    padding: 8px 0;
    border-bottom: none;
  }
}
/* ============================================ *
 * Wishlist Sidebar
 * ============================================ */
.block-wishlist .mini-products-list > li:not(:last-child) {
  padding-bottom: 5px;
}
.block-wishlist .product-details .product-name {
  padding-top: 0;
  margin-bottom: 5px;
}
.block-wishlist .price-box {
  float: left;
  margin: 0;
}
.block-wishlist .price-box,
.block-wishlist .price-box .price,
.block-wishlist .link-cart {
  font-size: 12px;
}
.block-wishlist .link-cart {
  float: left;
  text-transform: uppercase;
  margin-right: 7px;
  padding-right: 7px;
  border-right: 1px solid #EDEDED;
}

/* ============================================ *
 * Checkout - Mini cart
 * ============================================ */
.header-minicart {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .header-minicart {
    display: inline-block;
  }
}
.header-minicart .minicart-message {
  display: block;
  padding: 10px;
}
.header-minicart .minicart-wrapper {
  clear: both;
  position: relative;
  padding: 19px 28px 16px;
  text-align: left;
}
.header-minicart .minicart-wrapper:before, .header-minicart .minicart-wrapper:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.header-minicart .minicart-wrapper:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
.header-minicart .minicart-wrapper:after {
  background-image: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.header-minicart .minicart-wrapper.loading {
  position: relative;
}
.header-minicart .minicart-wrapper.loading:before, .header-minicart .minicart-wrapper.loading:after {
  display: block;
}
.header-minicart .block-content {
  margin: 0;
}
.header-minicart .block-cart {
  display: none;
}
.header-minicart .block-subtitle {
  line-height: 1.4;
  text-align: left;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  margin-bottom: 0px;
  font-weight: normal;
}
.header-minicart .block-subtitle .close {
  display: none;
  width: 40px;
  float: right;
  color: #000;
  text-decoration: none;
  font-weight: normal;
  font-size: 30px;
  position: absolute;
  top: -8px;
  right: -3px;
}
.header-minicart .mini-products-list {
  padding: 10px 0 0;
  padding-top: 14px;
}
.header-minicart .mini-products-list li {
  border-bottom: 1px solid #e7e7e7;
  position: relative;
  padding-bottom: 7px;
  margin-bottom: 19px;
}
.header-minicart .mini-products-list li:last-child, .header-minicart .mini-products-list li.last {
  margin-bottom: 8px;
}
.header-minicart .mini-products-list li .product-details {
  position: relative;
  margin-left: 76px;
}
.header-minicart .mini-products-list li .product-details .btn-edit, .header-minicart .mini-products-list li .product-details .remove {
  font-size: 12px;
  float: none;
  color: #000;
  margin: 0;
}
.header-minicart .mini-products-list li .product-details .button[disabled] {
  display: none;
}
.header-minicart .product-details * {
  font-size: 12px;
  text-transform: capitalize;
  color: #666;
  line-height: 16px;
}
.header-minicart .product-details .product-name {
  padding-top: 0px;
  font-weight: bold;
  margin-bottom: 3px;
}
.header-minicart .product-details .product-name a {
  color: #666;
  letter-spacing: 0;
  text-transform: capitalize;
  font-weight: normal;
  white-space: normal;
}
.header-minicart .info-wrapper {
  margin-bottom: 5px;
}
.header-minicart .info-wrapper th {
  padding-right: 4px;
}
.header-minicart .info-wrapper td {
  color: #000;
  clear: right;
}
.header-minicart .info-wrapper tr {
  display: inline-block;
}
.header-minicart .info-wrapper .price-title {
  visibility: hidden;
  width: 0px;
  height: 0px;
  font-size: 0;
}
.header-minicart .info-wrapper .qty-wrapper input {
  display: none;
}
.header-minicart .info-wrapper .qty {
  padding-left: 4px;
  padding-right: 4px;
  margin-right: 2px;
  width: 3.2em;
  text-align: center;
  height: 30px;
}
.header-minicart .info-wrapper .quantity-button {
  opacity: 0;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -moz-transition-duration: 100ms;
  -o-transition-duration: 100ms;
  -webkit-transition-duration: 100ms;
  transition-duration: 100ms;
}
.header-minicart .info-wrapper .quantity-button[disabled] {
  cursor: default;
}
.header-minicart .info-wrapper .quantity-button.visible {
  opacity: 1;
}
.header-minicart .subtotal {
  line-height: 2em;
  content: '';
  display: table;
  clear: both;
  width: 100%;
}
.header-minicart .subtotal .label {
  color: #000;
  display: inline-block;
  float: left;
}
.header-minicart .subtotal .price {
  color: #000;
  float: right;
}
.header-minicart .minicart-actions {
  margin-top: 7px;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.header-minicart .minicart-actions .checkout-button {
  width: 100%;
}
.header-minicart .minicart-actions .cart-link {
  display: inline-block;
  margin-top: 14px;
  position: relative;
}
.header-minicart .minicart-actions .cart-link:hover {
  text-decoration: none;
}
.header-minicart .minicart-actions .cart-link:hover:after {
  position: absolute;
  content: '';
  border-bottom: 1px solid #bfbfbf;
  bottom: 3px;
  left: 0;
  width: 100%;
}
.header-minicart .minicart-actions .paypal-logo .paypal-or {
  line-height: 1.6;
}
.header-minicart .minicart-actions .freeship-order {
  font-size: 12px;
  color: #000;
  text-align: center;
  background: #e7e7e7;
  margin-top: 10px;
  line-height: 100%;
  padding: 8px 0;
}
.header-minicart .minicart-actions .freeship-order strong {
  text-transform: uppercase;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  display: block;
  font-weight: normal;
}
.header-minicart .minicart-actions .freeship-order img {
  display: none;
}
.header-minicart #minicart-error-message {
  text-align: center;
  color: red;
  display: none;
}
.header-minicart #minicart-success-message {
  text-align: center;
  color: green;
  display: none;
}
.header-minicart .jcarousel-control-prev,
.header-minicart .jcarousel-control-next {
  display: none;
}

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

@media only screen and (min-width: 771px) {
  .checkout-types.minicart {
    float: none;
    text-align: center;
  }
}
@media only screen and (max-width: 770px) {
  .header-minicart .subtotal .label {
    color: #000;
  }
  .header-minicart .minicart-wrapper:before {
    background-color: #EDEDED;
  }
  .header-minicart .quantity-button {
    float: none;
  }
  .header-minicart .header-minicart .block-cart {
    padding: 15px;
  }
  .header-minicart .header-minicart .block-subtitle {
    padding-top: 59px;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li {
    /*display: inline-block;*/
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo > a {
    display: inline;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .bml_button {
    display: inline-block;
    vertical-align: top;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or {
    width: auto;
    float: none;
    display: inline;
    margin: 0 10px 5px 10px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 740px) {
  .header-minicart .minicart-actions .cart-link {
    right: auto;
    left: 0;
    text-align: center;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or,
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-button {
    width: 100%;
    display: block;
    margin-left: 0;
  }
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or {
    line-height: 1.6;
  }
}
@media only screen and (max-width: 599px) {
  .header-minicart .minicart-actions .checkout-button {
    width: 100%;
  }
}
.minicart-afterpay {
  display: block;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 12px;
  background: #e7e7e7;
  margin-top: 10px;
  padding: 8px 0;
}
.minicart-afterpay a {
  color: black;
  text-decoration: none;
}
.minicart-afterpay a:hover {
  color: black;
  text-decoration: none;
}
.minicart-afterpay img {
  display: inline;
  width: 80px;
  position: relative;
  top: 4px;
  margin-left: 6px;
}
.minicart-afterpay img.zip-money {
  width: auto;
  height: auto;
  margin-left: 2px;
  margin-right: 6px;
  max-width: 55px;
  height: auto;
}

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

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

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

@media only screen and (min-width: 771px) {
  .product-review .ratings-table tr {
    float: none;
  }
}
@media only screen and (min-width: 1126px) {
  .product-review .ratings-table tr {
    float: left;
    margin-right: 15px;
  }
}
@media only screen and (max-width: 320px) {
  .product-review .ratings-table tr {
    float: none;
  }
}
/* ============================================ *
 * CMS Pages
 * ============================================ */
.cms-page-view,
.cms-no-route {
  /*    .page-title,
      .page-head {
          h1,
          h3 {
              border: none;
          }
      }*/
}
.cms-page-view .std img,
.cms-no-route .std img {
  max-width: 100%;
}
.cms-page-view .std p,
.cms-no-route .std p {
  color: #000;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 14px;
  /*font-style: italic;*/
  line-height: 24px;
}
.cms-page-view .std li,
.cms-no-route .std li {
  color: #000;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 14px;
  /*font-style: italic;*/
  line-height: 24px;
}
.cms-page-view .std h1,
.cms-no-route .std h1 {
  font: 20px "proximanova-semibold", Verdana, Arial, sans-serif;
  color: #000;
  letter-spacing: 0;
  text-transform: none;
}
.cms-page-view .std h2,
.cms-no-route .std h2 {
  font: 16px "proximanova-semibold", Verdana, Arial, sans-serif;
  color: #000;
  letter-spacing: 0;
  text-transform: none;
}
.cms-page-view .std h3,
.cms-no-route .std h3 {
  font: 14px "proximanova-semibold", Verdana, Arial, sans-serif;
  color: #000;
  letter-spacing: 0;
  text-transform: none;
}
.cms-page-view .col-left:after,
.cms-no-route .col-left:after {
  content: '';
  display: table;
  clear: both;
}
.cms-page-view .col2-left-layout .col-left.sidebar,
.cms-no-route .col2-left-layout .col-left.sidebar {
  display: block;
}

.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: "proximanova-regular", Verdana, Arial, sans-serif;
}
.cms-page-view .std .block-become-vip h2,
.cms-home .std .block-become-vip h2,
.cms-no-route .std .block-become-vip h2 {
  font: 44px "proximanova-light", Verdana, Arial, sans-serif;
  margin-bottom: 0;
}
.cms-page-view .std .block-become-vip h2 strong,
.cms-home .std .block-become-vip h2 strong,
.cms-no-route .std .block-become-vip h2 strong {
  font-family: "AustinItalic";
  font-weight: 400;
}
.cms-page-view .std .block-become-vip h2 span,
.cms-home .std .block-become-vip h2 span,
.cms-no-route .std .block-become-vip h2 span {
  font-family: "proximanova-thin", Verdana, Arial, sans-serif;
  text-transform: uppercase;
}
.cms-page-view .std .block-subscribe,
.cms-home .std .block-subscribe,
.cms-no-route .std .block-subscribe {
  margin-top: 20px;
}
.cms-page-view .std .block-subscribe .input-box input,
.cms-home .std .block-subscribe .input-box input,
.cms-no-route .std .block-subscribe .input-box input {
  padding-right: 120px;
  width: 100%;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  color: #666;
}
.cms-page-view .std .block-subscribe .actions,
.cms-home .std .block-subscribe .actions,
.cms-no-route .std .block-subscribe .actions {
  position: absolute;
  top: 7px;
  right: 10px;
}
.cms-page-view .std .block-subscribe .actions .button,
.cms-home .std .block-subscribe .actions .button,
.cms-no-route .std .block-subscribe .actions .button {
  height: 42px;
  line-height: 22px;
  text-align: center;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
@media only screen and (max-width: 1279px) {
  .cms-page-view .std .block-become-vip h2,
  .cms-home .std .block-become-vip h2,
  .cms-no-route .std .block-become-vip h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1023px) {
  .cms-page-view .std .block-become-vip,
  .cms-home .std .block-become-vip,
  .cms-no-route .std .block-become-vip {
    text-align: center;
  }
  .cms-page-view .std .block-become-vip p,
  .cms-home .std .block-become-vip p,
  .cms-no-route .std .block-become-vip p {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 599px) {
  .cms-page-view .std .block-subscribe .actions,
  .cms-home .std .block-subscribe .actions,
  .cms-no-route .std .block-subscribe .actions {
    right: 0;
  }
}

#accordion .toggle-tabs {
  display: none;
}
#accordion > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #000;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0px;
  padding: 7px 10px;
  border-width: 1px;
  border-style: solid;
  border-color: #e7e7e7;
  position: relative;
  display: block;
}
#accordion > dl > dt:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 4px solid #666;
  border-bottom: none;
  right: 10px;
  top: 50%;
  margin-top: -3px;
}
#accordion > dl > dt:hover {
  background-color: #ededed;
}
#accordion > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #e7e7e7;
}
#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;
}

.cms-menu {
  padding: 41px 0 20px;
}
@media only screen and (max-width: 770px) {
  .cms-menu {
    padding-top: 15px;
  }
}
.cms-menu a {
  color: #000000;
  font-size: 14px;
  line-height: 19px;
  display: inline-block;
  padding: 0 10px;
}
.cms-menu a:hover {
  color: #000000;
}
.cms-menu li.parent > a {
  font: 14px "proximanova-semibold", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  display: block;
  padding: 0 0 6px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 1023px) {
  .cms-menu li.parent > ul {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .cms-menu li.parent > ul {
    display: block !important;
  }
}
.cms-menu ul li {
  padding: 6px 0;
  border-top: 1px solid #EDEDED;
}
.cms-menu ul li#current span {
  display: inline-block;
  font-size: 14px;
  padding-left: 10px;
  line-height: 19px;
  color: #0057a3;
}
.cms-menu .expand {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .cms-menu li.parent {
    position: relative;
    border: 1px solid #e7e7e7;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
  }
  .cms-menu li.parent > a {
    font: 16px "proximanova-light", Verdana, Arial, sans-serif;
    line-height: 20px;
    padding: 10px 15px;
    color: #999;
    text-transform: none;
    margin-bottom: 0;
  }
  .cms-menu li.parent > a:hover {
    text-decoration: none;
    color: #333;
  }
  .cms-menu li.parent > ul > li:last-child {
    border-bottom: none;
  }
  .cms-menu .expand {
    display: block;
    width: 100%;
    height: 42px;
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media only screen and (max-width: 1023px) and (min-width: 600px) {
  .cms-menu .expand {
    width: 100%;
  }
}
@media only screen and (max-width: 1023px) and (min-width: 1024px) {
  .cms-menu .expand {
    width: 42;
  }
}
@media only screen and (max-width: 1023px) {
  .cms-menu .expand:before {
    width: 0;
    height: 0;
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: #999 transparent transparent;
    content: "";
    position: absolute;
    top: 19px;
    right: 15px;
  }
  .cms-menu .expand.active:before {
    border-width: 0 5px 5px;
    border-color: transparent transparent #999;
  }
}

.connect-beacon {
  clear: both;
  padding: 14px 0 9px;
  display: block;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .connect-beacon {
    padding: 0 0 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .connect-beacon {
    padding: 30px 0;
  }
}
.connect-beacon .footer-container {
  border-top: none;
}
.connect-beacon .footer-container > div {
  border: none;
}
.connect-beacon .download-app,
.connect-beacon .join-with-us {
  margin: 0 0 11px;
  min-height: 105px;
  padding: 18px 130px 18px 18px;
  background: #FFF;
  border: 1px solid #e7e7e7;
  position: relative;
}
@media only screen and (min-width: 600px) {
  .connect-beacon .download-app,
  .connect-beacon .join-with-us {
    margin: 0;
  }
}
@media only screen and (min-width: 600px) {
  .connect-beacon .download-app,
  .connect-beacon .join-with-us {
    min-height: 165px;
  }
}
@media only screen and (min-width: 1024px) {
  .connect-beacon .download-app,
  .connect-beacon .join-with-us {
    min-height: 112px;
  }
}
@media only screen and (min-width: 600px) {
  .connect-beacon .download-app,
  .connect-beacon .join-with-us {
    padding: 18px 175px 18px 19px;
  }
}
@media only screen and (min-width: 1024px) {
  .connect-beacon .download-app,
  .connect-beacon .join-with-us {
    padding: 18px 205px 18px 22px;
  }
}
@media only screen and (max-width: 767px) and (min-width: 600px) {
  .connect-beacon .download-app,
  .connect-beacon .join-with-us {
    padding-right: 120px;
    min-height: 203px;
  }
}

@media only screen and (max-width: 599px) and (min-width: 479px) {
  .connect-beacon .download-app,
  .connect-beacon .join-with-us {
    padding-right: 205px;
  }
}

@media only screen and (max-width: 1279px) and (min-width: 1023px) {
  .connect-beacon .download-app,
  .connect-beacon .join-with-us {
    min-height: 123px;
  }
}

.connect-beacon .download-app > img,
.connect-beacon .join-with-us > img {
  position: absolute;
  top: 5px;
  right: 22px;
  width: auto;
  margin-top: 0;
}
@media only screen and (min-width: 600px) {
  .connect-beacon .download-app > img,
  .connect-beacon .join-with-us > img {
    margin-top: 29px;
  }
}
@media only screen and (min-width: 1024px) {
  .connect-beacon .download-app > img,
  .connect-beacon .join-with-us > img {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) and (min-width: 600px) {
  .connect-beacon .download-app > img,
  .connect-beacon .join-with-us > img {
    max-width: 95px;
    top: 20%;
  }
}

@media only screen and (max-width: 599px) and (min-width: 479px) {
  .connect-beacon .download-app > img,
  .connect-beacon .join-with-us > img {
    max-width: auto;
    top: 7%;
  }
}

@media only screen and (max-width: 479px) {
  .connect-beacon .download-app > img,
  .connect-beacon .join-with-us > img {
    max-width: 125px;
    right: 0;
    height: auto;
    top: 20%;
  }
}
.connect-beacon h3 {
  font: 16px "proximanova-regular", Verdana, Arial, sans-serif;
  line-height: 16px;
  text-transform: uppercase;
  margin: 0 0 5px;
  letter-spacing: 1px;
  width: auto;
}
@media only screen and (min-width: 600px) {
  .connect-beacon h3 {
    letter-spacing: 0;
  }
}
@media only screen and (min-width: 600px) {
  .connect-beacon h3 {
    width: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .connect-beacon h3 {
    width: auto;
  }
}
.connect-beacon h3 strong {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-weight: 400;
}
@media only screen and (max-width: 479px) {
  .connect-beacon h3 {
    font-size: 13px;
    line-height: 14px;
  }
}
.connect-beacon p {
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 0;
  letter-spacing: -0.2px;
  width: auto;
}
@media only screen and (min-width: 600px) {
  .connect-beacon p {
    letter-spacing: unset;
  }
}
@media only screen and (min-width: 600px) {
  .connect-beacon p {
    width: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .connect-beacon p {
    width: auto;
  }
}
@media only screen and (max-width: 479px) {
  .connect-beacon p {
    font-size: 12px;
    line-height: 14px;
  }
}

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

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

@media only screen and (max-width: 770px) {
  #contactForm {
    padding-left: 0;
  }
}
/*----- Custom Contact Us page-----*/
.contact-us-info-container {
  display: inline-block;
  width: 100%;
  position: relative;
  margin: 15px 0;
}
.contact-us-info-container:before, .contact-us-info-container:after {
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  content: "";
  background: #e7e7e7;
  left: 32.25%;
}
.contact-us-info-container:after {
  left: 67.75%;
}
@media only screen and (max-width: 770px) {
  .contact-us-info-container:before, .contact-us-info-container:after {
    display: none;
  }
}
.contact-us-info-container .contact-us-info-left,
.contact-us-info-container .contact-us-info-middle,
.contact-us-info-container .contact-us-info-right {
  float: left;
  width: 29%;
  margin: 0 3.25%;
}
.contact-us-info-container .contact-us-info-left h2,
.contact-us-info-container .contact-us-info-middle h2,
.contact-us-info-container .contact-us-info-right h2 {
  padding: 26px 0 15px;
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/contact-page-icons.png) no-repeat top right;
}
@media only screen and (max-width: 770px) {
  .contact-us-info-container .contact-us-info-left,
  .contact-us-info-container .contact-us-info-middle,
  .contact-us-info-container .contact-us-info-right {
    width: 100%;
    margin: 0 0 20px;
  }
}
.contact-us-info-container .contact-us-info-left {
  margin-left: 0;
}
.contact-us-info-container .contact-us-info-middle h2 {
  background-position: right -118px;
}
.contact-us-info-container .contact-us-info-right {
  margin-right: 0;
}
.contact-us-info-container .contact-us-info-right h2 {
  background-position: right -239px;
}

.address-contact-left h3 {
  font: 14px "proximanova-bold", Verdana, Arial, sans-serif;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}
@media only screen and (max-width: 770px) {
  .address-contact-left {
    display: none;
  }
}

.contact-us-inner .address-contact-left {
  display: none;
}
.contact-us-inner .address-contact-left h3 {
  font: 14px "proximanova-bold", Verdana, Arial, sans-serif;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}
@media only screen and (max-width: 770px) {
  .contact-us-inner .address-contact-left {
    display: block;
  }
}

@media only screen and (max-width: 770px) {
  .cms-contact-html .cms-menu {
    padding-top: 0;
  }
}
.cms-cols {
  display: inline-block;
  width: 100%;
  padding: 10px 0;
}
@media only screen and (min-width: 771px) {
  .cms-cols .cols {
    float: left;
    width: 47%;
  }
  .cms-cols .cols.col-2 {
    float: right;
  }
}

/*----- Testimonials page
------------------------------------------*/
.testimonials-index-index .main-container,
.testimonials-addtestimonial-index .main-container {
  padding-top: 30px;
}
@media only screen and (max-width: 770px) {
  .testimonials-index-index .main-container,
  .testimonials-addtestimonial-index .main-container {
    padding-top: 0;
  }
}
.testimonials-index-index p.intro,
.testimonials-addtestimonial-index p.intro {
  padding-bottom: 15px;
}
.testimonials-index-index .col2-left-layout .col-left.sidebar,
.testimonials-addtestimonial-index .col2-left-layout .col-left.sidebar {
  display: block;
}

#testimonials .rate {
  margin: 20px 0 3px;
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/testimonials/blank_star.png) repeat-x;
  width: 85px;
}
#testimonials .rate:after {
  display: table;
  content: " ";
  clear: both;
}
#testimonials .rate img {
  float: left;
  margin-right: 1px;
}
#testimonials > li {
  padding-bottom: 20px;
  border-bottom: 1px solid #e7e7e7;
}
#testimonials .name-date {
  font-style: italic;
}

.testimonial_wrapper .pager {
  padding: 60px 0 20px;
  float: none;
  text-align: center;
}
.testimonial_wrapper .pager .count-container {
  display: none;
}
.testimonial_wrapper .pager .pages.top-toolbar {
  float: none;
  display: inline-block;
}
.testimonial_wrapper .pager .pages.top-toolbar ol li {
  margin-bottom: 5px;
}
.testimonial_wrapper .pager .pages + .pages {
  display: none;
}

#testimonialForm .form-list .input-box {
  padding-top: 4px;
}
#testimonialForm .form-list .input-box > a {
  display: inline-block;
  vertical-align: top;
}
#testimonialForm .form-list .input-box .additional-info {
  margin-left: 10px;
  font-style: italic;
}
#testimonialForm .form-list .input-text, #testimonialForm .form-list .nice-select, #testimonialForm .form-list textarea,
#testimonialForm .form-list textarea {
  width: 100%;
  max-width: 400px;
}
#testimonialForm .form-list textarea {
  padding: 10px 15px;
  height: 170px;
}
#testimonialForm .form-list li.wide {
  padding-top: 10px;
}
#testimonialForm > .fieldset {
  padding-top: 20px;
}
#testimonialForm .buttons-set {
  border: none;
  text-align: left;
}
#testimonialForm .buttons-set button.button {
  float: none;
  margin: 0;
  min-width: 0;
}
@media only screen and (max-width: 770px) {
  #testimonialForm .buttons-set button.button {
    width: auto;
  }
}

.sidebar .balance-box-testimonial-left-bar .balance-box-container {
  position: static;
  overflow: inherit;
}
.sidebar .balance-box-testimonial-left-bar .balance-box-container ul, .sidebar .balance-box-testimonial-left-bar .balance-box-container li {
  list-style: none;
  margin: 0;
}

.cms-vip table td {
  width: 100%;
  float: left;
}
@media only screen and (min-width: 600px) {
  .cms-vip table td {
    width: 50%;
  }
}
@media only screen and (min-width: 1024px) {
  .cms-vip table td {
    width: 50%;
  }
}
.cms-vip table td img {
  width: 100%;
}

@media only screen and (max-width: 479px) {
  .cms-privacy-policy-cookie-restriction-mode .data-table {
    max-width: 300px;
    display: block;
    overflow: hidden;
    table-layout: fixed;
  }
  .cms-privacy-policy-cookie-restriction-mode .data-table tbody th {
    max-width: 140px;
    white-space: normal;
    word-break: break-all;
  }
}
.cms-beacon-lighting-catalogue .col-main iframe {
  width: 100%;
  margin: 0 auto;
}
.cms-beacon-lighting-catalogue .table-images {
  width: 100%;
}
.cms-beacon-lighting-catalogue .table-images li {
  list-style: none;
  float: left;
  margin-left: 0;
  width: calc(100%/2);
}
@media only screen and (min-width: 600px) {
  .cms-beacon-lighting-catalogue .table-images li {
    width: calc(100%/3);
  }
}
@media only screen and (min-width: 1024px) {
  .cms-beacon-lighting-catalogue .table-images li {
    width: calc(100%/4);
  }
}

.zip-pay-container {
  padding-top: 15px;
  text-align: center;
}
.zip-pay-container h2 {
  font-size: 24px !important;
  margin-bottom: 29px;
  text-align: left;
  color: #333333 !important;
}
.zip-pay-container .what-pay {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  text-align: center;
  padding-top: 30px;
  box-sizing: border-box;
  padding-right: 14px;
}
.zip-pay-container .what-pay p {
  font-family: "proximanova-semibold";
  font-size: 16px;
  color: #333333;
  margin-bottom: 27px;
}
.zip-pay-container .what-pay span {
  display: inline-block;
  width: 100%;
  line-height: 1.1em;
  padding-left: 8px;
  margin-top: 2px;
  margin-bottom: 7px;
  vertical-align: top;
}
.zip-pay-container .how-zippay {
  display: inline-block;
  width: 100%;
  background: #f7f7f7;
  margin-top: 48px;
  text-align: center;
  padding-top: 42px;
  box-sizing: border-box;
  padding-left: 2px;
}
.zip-pay-container .how-zippay p {
  font-family: "proximanova-semibold";
  font-size: 16px;
  color: #333333;
  margin-bottom: 1px;
}
.zip-pay-container .how-zippay a {
  font-family: "proximanova-bold";
  color: #000000;
}
.zip-pay-container .how-zippay a:hover {
  text-decoration: none;
}
.zip-pay-container .how-zippay ul {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  list-style: none;
  box-sizing: border-box;
  padding: 0px 14%;
  margin-top: 15px;
  margin-bottom: 58px;
}
.zip-pay-container .how-zippay ul li {
  float: left;
  width: 33.333%;
  vertical-align: top;
  margin-left: 0px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
}
.zip-pay-container .how-zippay ul li:before {
  content: "";
  height: 2px;
  border-bottom: 2px solid #000000;
  left: 0px;
  width: 26%;
  top: 34%;
  position: absolute;
}
.zip-pay-container .how-zippay ul li:after {
  content: "";
  height: 2px;
  border-bottom: 2px solid #000000;
  right: 0px;
  width: 26%;
  top: 34%;
  position: absolute;
}
.zip-pay-container .how-zippay ul li span {
  display: inline-block;
  vertical-align: top;
  width: 100%;
}
.zip-pay-container .how-zippay ul li img {
  display: inline-block;
  float: none;
  vertical-align: top;
  margin-bottom: 13px;
}
.zip-pay-container .how-zippay ul li:first-child:before {
  display: none;
}
.zip-pay-container .how-zippay ul li:last-child:after {
  display: none;
}
.zip-pay-container .questions-zip {
  display: inline-block;
  width: 80%;
  margin: 0 auto;
  text-align: left;
  box-sizing: border-box;
  padding: 36px 35px 43px 35px;
}
.zip-pay-container .questions-zip p {
  font-family: "proximanova-semibold";
  font-size: 16px;
}
.zip-pay-container .questions-zip ul {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  list-style: none;
  margin: 0px;
  padding: 0px;
}
.zip-pay-container .questions-zip ul li {
  list-style: none;
  margin: 0px 0px 23px;
  padding: 0px;
}
.zip-pay-container .questions-zip ul li strong {
  display: inline-block;
  width: 100%;
  font-weight: 300;
  font-family: "proximanova-semibold";
  margin-bottom: 25px;
}
.zip-pay-container .questions-zip ul li span {
  display: inline-block;
  width: 100%;
}
.zip-pay-container .mobile {
  display: none;
}

@media only screen and (max-width: 767px) {
  .zip-pay-container {
    padding-top: 10px;
    padding-bottom: 13px;
  }
  .zip-pay-container .desktop {
    display: none;
  }
  .zip-pay-container h2 {
    margin-bottom: 23px;
  }
  .zip-pay-container .mobile {
    display: block;
    margin-left: -10px;
    margin-right: -10px;
    position: relative;
  }
  .zip-pay-container .mobile img {
    width: 100%;
    height: auto;
  }
  .zip-pay-container .mobile .container-banner {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 50%;
    margin-top: -88px;
  }
  .zip-pay-container .mobile .container-banner .title {
    color: #000000;
    font-weight: 300;
    font-family: "proximanova-semibold";
    background: #faeb00;
    margin-bottom: 30px;
    padding-top: 36px;
    padding-bottom: 24px;
  }
  .zip-pay-container .mobile .container-banner .title strong {
    font-size: 36px;
    display: inline-block;
    width: 100%;
    vertical-align: top;
    margin-bottom: 12px;
  }
  .zip-pay-container .mobile .container-banner .title span {
    font-size: 18px;
    display: inline-block;
    width: 100%;
    vertical-align: top;
  }
  .zip-pay-container .mobile .container-banner a {
    background: #faeb00;
    display: inline-block;
    vertical-align: top;
    text-transform: uppercase;
    width: 160px;
    height: 48px;
    line-height: 48px;
    color: #000000;
    font-weight: 300;
    font-family: "proximanova-semibold";
    font-size: 14px;
    text-decoration: none;
    margin-left: -45px;
    border-radius: 2px;
  }
  .zip-pay-container .mobile .container-banner a:hover {
    text-decoration: none;
  }
  .zip-pay-container .questions-zip {
    width: 100%;
  }
  .zip-pay-container .what-pay p {
    margin-bottom: 23px;
  }
  .zip-pay-container .what-pay span {
    line-height: 1.7em;
    margin-bottom: 1px;
  }
  .zip-pay-container .how-zippay {
    display: block;
    width: auto;
    padding-top: 24px;
    box-sizing: border-box;
    padding-left: 2px;
    margin-left: -10px;
    margin-right: -10px;
    margin-top: 35px;
  }
  .zip-pay-container .how-zippay ul {
    padding: 0px;
    margin-top: 17px;
    margin-bottom: 5px;
  }
  .zip-pay-container .how-zippay ul li {
    width: 100%;
    text-align: left;
    padding-left: 46px;
    box-sizing: border-box;
    margin-bottom: 10px;
  }
  .zip-pay-container .how-zippay ul li:last-child {
    margin-bottom: 0px;
  }
  .zip-pay-container .how-zippay ul li img {
    max-width: 72px;
    margin-right: 7px;
  }
  .zip-pay-container .how-zippay ul li:after {
    display: none;
  }
  .zip-pay-container .how-zippay ul li:before {
    display: none;
  }
  .zip-pay-container .how-zippay ul li span {
    width: auto;
    margin-top: 13px;
  }
  .zip-pay-container .questions-zip {
    padding: 34px 0px 17px 0px;
  }

  .cms-zip-pay .breadcrumbs {
    display: block;
    margin-top: 5px;
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .zip-pay-container .how-zippay ul {
    padding: 0px 2%;
  }
  .zip-pay-container .questions-zip {
    width: 100%;
  }
}
/* ============================================ *
 * Pricing Conditions
 * ============================================ */
.price-box .minimal-price-link .label {
  color: #ef4023;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

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

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

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

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

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

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

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

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

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

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

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

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

@media only screen and (max-width: 770px) {
  .tags-list > li,
  .tags-list {
    float: none;
  }
}
/* ============================================ *
 * Captcha
 * ============================================ */
.captcha-note {
  clear: left;
  padding-top: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

/* ============================================ *
 * Account - Orders, Invoices, Credit Memos.
 * ============================================ */
@media only screen and (max-width: 479px) {
  .sales-order-invoice .sub-title,
  .sales-order-creditmemo .sub-title,
  .sales-order-shipment .sub-title {
    float: left;
    font-size: 15px;
    text-align: center;
    width: 100%;
  }
  .sales-order-invoice .order-links,
  .sales-order-creditmemo .order-links,
  .sales-order-shipment .order-links {
    text-align: center;
    width: 100%;
  }
}
/* ============================================ *
 * Recurring Profiles
 * ============================================ */
#recurring_profile_list_view th {
  white-space: normal;
}
#recurring_profile_list_view th span {
  white-space: inherit;
}
@media only screen and (max-width: 479px) {
  #recurring_profile_list_view {
    font-size: 12px;
  }
  #recurring_profile_list_view a {
    font-size: inherit;
  }
  #recurring_profile_list_view th,
  #recurring_profile_list_view td {
    padding: 2px;
  }
}

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

body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons {
  float: right;
  text-align: right;
  margin-bottom: 30px;
}
@media only screen and (max-width: 479px) {
  body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons {
    text-align: center;
    float: none;
  }
}
body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons .button {
  position: static;
}

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

#recurring_start_date_trig {
  display: inline;
}

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

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

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

@media only screen and (max-width: 1023px) {
  .billing-agreements .data-table .created-at,
  .billing-agreements .data-table .updated-at {
    display: none;
  }
}
/* ============================================ *
 * Popular Search Terms Cloud
 * ============================================ */
.catalogsearch-term-popular .tags-list {
  float: left;
  width: 100%;
}

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

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

.widget {
  clear: both;
}

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

@media only screen and (min-width: 1279px) {
  .col2-left-layout .col-main .widget,
  .col2-right-layout .col-main .widget,
  .col3-layout .col-main .widget {
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd) {
    clear: none;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n) {
    margin-right: 3.33333%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li {
    margin-right: 3.33333%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li {
    width: 22.5%;
    margin-right: 3.33333%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1) {
    clear: left;
  }
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n) {
    margin-right: 0;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd) {
    clear: none;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n) {
    margin-right: 3.33333%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li {
    margin-right: 3.33333%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li {
    width: 17.33333%;
    margin-right: 3.33333%;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1) {
    clear: left;
  }
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 770px) {
  .col1-layout .col-main .widget {
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
    /* Config: Columns + flexible gutter */
    /* Undo three-column config */
    /* Set column config */
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd) {
    clear: none;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n) {
    margin-right: 3.33333%;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
    margin-right: 3.33333%;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
    width: 22.5%;
    margin-right: 3.33333%;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1) {
    clear: left;
  }
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n) {
    margin-right: 0;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd) {
    clear: none;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n) {
    margin-right: 3.33333%;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
    margin-right: 3.33333%;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
    width: 17.33333%;
    margin-right: 3.33333%;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1) {
    clear: left;
  }
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n) {
    margin-right: 0;
  }
}
/* ============================================ *
 * Checkout - Multiple Addresses
 * ============================================ */
body[class*="checkout-multishipping-"] .checkout-progress {
  width: 100%;
  float: left;
  margin-bottom: 25px;
}
body[class*="checkout-multishipping-"] .checkout-progress > li {
  float: left;
  width: 20%;
  text-align: center;
  padding: 8px 1% 6px;
  background: #F4F4F4;
  text-transform: uppercase;
  border-bottom: 1px solid #e7e7e7;
  border-right: 1px solid #e7e7e7;
  margin-bottom: 10px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
body[class*="checkout-multishipping-"] .checkout-progress > li.active {
  background-color: #DDDDDD;
}
body[class*="checkout-multishipping-"] .checkout-progress > li.last {
  border-right: 0px;
}
body[class*="checkout-multishipping-"] .page-title {
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
body[class*="checkout-multishipping-"] .page-title h1 {
  border: 0 none;
  float: left;
  margin-top: 2px;
  margin-right: 2%;
}
body[class*="checkout-multishipping-"] .page-title .button {
  float: right;
}
body[class*="checkout-multishipping-"] .multiple-checkout > h2 {
  text-transform: none;
  font-size: 17px;
  margin-bottom: 15px;
}
body[class*="checkout-multishipping-"] .messages {
  float: left;
  width: 100%;
}
body[class*="checkout-multishipping-"] .col-2.col-wide {
  width: 66%;
}
body[class*="checkout-multishipping-"] .col-1.col-narrow {
  width: 30%;
}
body[class*="checkout-multishipping-"] .actions {
  margin-bottom: 10px;
}
body[class*="checkout-multishipping-"] .grand-total {
  text-align: right;
  font-size: 16px;
  font-weight: bold;
}
body[class*="checkout-multishipping-"] #checkout-review-submit {
  float: right;
}
body[class*="checkout-multishipping-"] #review-buttons-container {
  float: right;
  text-align: right;
}

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

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

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

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

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

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

@media only screen and (max-width: 1023px) {
  body[class*="checkout-multishipping-"] .checkout-progress span {
    word-spacing: 300px;
  }

  #review-order-form .col-1,
  #review-order-form .col-2 {
    float: none;
    width: auto;
    border: 0;
    padding-right: 0;
    padding-left: 0;
  }
}
@media only screen and (max-width: 770px) {
  body[class*="checkout-multishipping-"] .checkout-progress span {
    width: 12px;
  }
  body[class*="checkout-multishipping-"] .checkout-progress li {
    width: 100%;
    margin: 0;
    text-align: left;
    padding-left: 3%;
    border-right: 0px;
  }
  body[class*="checkout-multishipping-"] .checkout-progress span {
    word-spacing: 1px;
    width: 12px;
  }
  body[class*="checkout-multishipping-"] .box-title {
    float: left;
    width: 100%;
  }
  body[class*="checkout-multishipping-"] .page-title .button {
    float: left;
    margin-bottom: 10px;
  }
  body[class*="checkout-multishipping-"] .linearize-table tfoot td {
    text-align: right;
  }
  body[class*="checkout-multishipping-"] .linearize-table select {
    width: 100%;
    min-width: 200px;
  }
  body[class*="checkout-multishipping-"] .col-1.col-narrow, body[class*="checkout-multishipping-"] .col-2.col-wide {
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 599px) {
  .checkout-multishipping-addresses .linearize-table tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 10px;
    margin-top: 12px;
  }
}
@media only screen and (max-width: 479px) {
  body[class*="checkout-multishipping-"] .buttons-set .back-link {
    display: block;
  }
}
/* ============================================ *
 * StyleGuide
 * ============================================ */
.style-guide-container {
  padding: 0 20px;
}
.style-guide-container .sg-section-title {
  font-family: "helvetica-light";
  font-size: 30px;
  color: #999;
  margin: 20px 0;
  text-transform: capitalize;
  font-weight: normal;
}
.style-guide-container .button-group-type ul {
  margin: 10px 0;
}
.style-guide-container .button-group-type ul li {
  display: inline-block;
  margin-right: 7px;
}
.style-guide-container .input-option-group-type ul {
  width: 49%;
  display: inline-block;
}
.style-guide-container .input-option-group-type ul li {
  margin: 5px 0;
}
.style-guide-container .input-field-group-type ul li {
  display: block;
  clear: both;
}
.style-guide-container .input-field-group-type ul li .nice-select {
  margin: 0;
  width: 320px;
}
.style-guide-container .input-field-group-type ul li #search,
.style-guide-container .input-field-group-type ul li input {
  margin: 10px 0 0;
  width: 320px;
}
.style-guide-container .typo-group-type .breadcrumbs {
  margin: 20px 0;
}
.style-guide-container .typo-group-type h1, .style-guide-container .typo-group-type h2, .style-guide-container .typo-group-type h3, .style-guide-container .typo-group-type h4, .style-guide-container .typo-group-type h5 {
  text-transform: capitalize;
  font-weight: normal;
}
.style-guide-container .typo-group-type .heading-type h1 {
  font-family: "proximanova-thin", Verdana, Arial, sans-serif;
  font-size: 48px;
}
.style-guide-container .typo-group-type .heading-type h2 {
  font-family: "proximanova-light", Verdana, Arial, sans-serif;
  font-size: 36px;
  letter-spacing: 0.5px;
}
.style-guide-container .typo-group-type .heading-type h3 {
  font-family: "proximanova-thin", Verdana, Arial, sans-serif;
  font-size: 30px;
  letter-spacing: 0.5px;
}
.style-guide-container .typo-group-type .heading-type h4 {
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
}
.style-guide-container .typo-group-type .heading-type h5 {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.75px;
}
.style-guide-container .typo-group-type .heading-content-type h1 {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 20px;
}
.style-guide-container .typo-group-type .heading-content-type h2 {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 16px;
}
.style-guide-container .misc-group-type > * {
  margin: 20px 0;
  clear: both;
}
.style-guide-container .misc-group-type .pages {
  float: left;
  width: 100%;
}
.style-guide-container .misc-group-type .pages strong {
  display: inline-block;
  float: left;
  margin-right: 15px;
}
.style-guide-container .misc-group-type .add-to-links a {
  padding: 0;
}
.style-guide-container .misc-group-type .rating-box {
  display: block;
  margin: 10px 0;
}
.style-guide-container .misc-group-type .rating-box span {
  color: transparent;
}

/* SEARCH BOX */
#algolia-searchbox {
  margin: 0;
  height: 42px;
}
#algolia-searchbox svg.magnifying-glass {
  fill: #999;
  stroke: #999;
  display: block !important;
  right: 10px;
}
#algolia-searchbox .clear-query-autocomplete {
  background: #fff;
  padding: 10px;
  right: 4px;
  top: 4px;
}
#algolia-searchbox .algolia-search-input {
  width: 100%;
  height: 42px;
  line-height: 42px;
  font-size: 16px;
  border: 1px solid #cacaca;
  border-radius: 4px;
}
#algolia-searchbox .algolia-search-input:-moz-placeholder {
  font-size: 13px;
}
@media only screen and (min-width: 600px) {
  #algolia-searchbox .algolia-search-input:-moz-placeholder {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1024px) {
  #algolia-searchbox .algolia-search-input:-moz-placeholder {
    font-size: 16px;
  }
}
#algolia-searchbox .algolia-search-input::-moz-placeholder {
  font-size: 13px;
}
@media only screen and (min-width: 600px) {
  #algolia-searchbox .algolia-search-input::-moz-placeholder {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1024px) {
  #algolia-searchbox .algolia-search-input::-moz-placeholder {
    font-size: 16px;
  }
}
#algolia-searchbox .algolia-search-input:-ms-input-placeholder {
  font-size: 13px;
}
@media only screen and (min-width: 600px) {
  #algolia-searchbox .algolia-search-input:-ms-input-placeholder {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1024px) {
  #algolia-searchbox .algolia-search-input:-ms-input-placeholder {
    font-size: 16px;
  }
}
#algolia-searchbox .algolia-search-input::-webkit-input-placeholder {
  font-size: 13px;
}
@media only screen and (min-width: 600px) {
  #algolia-searchbox .algolia-search-input::-webkit-input-placeholder {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1024px) {
  #algolia-searchbox .algolia-search-input::-webkit-input-placeholder {
    font-size: 16px;
  }
}
#algolia-searchbox .algolia-search-input:focus {
  border: 1px solid #cacaca;
}
#algolia-searchbox label {
  display: none;
}

#algolia-autocomplete-container svg.magnifying-glass {
  fill: #999;
  stroke: #999;
}

#algolia-autocomplete-container {
  left: 0;
  top: 0;
}
@media only screen and (min-width: 600px) {
  #algolia-autocomplete-container {
    left: 190px;
  }
}
@media only screen and (min-width: 1024px) {
  #algolia-autocomplete-container {
    left: 253px;
  }
}
@media only screen and (min-width: 600px) {
  #algolia-autocomplete-container {
    top: -76px;
  }
}
@media only screen and (min-width: 1024px) {
  #algolia-autocomplete-container {
    top: 55px;
  }
}
#algolia-autocomplete-container .aa-dropdown-menu {
  border-color: #e7e7e7 #cacaca #cacaca;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  #algolia-autocomplete-container .aa-dropdown-menu {
    width: 67%;
  }
}
@media only screen and (min-width: 1024px) {
  #algolia-autocomplete-container .aa-dropdown-menu {
    width: 77%;
  }
}
@media only screen and (max-width: 1279px) and (min-width: 1024px) {
  #algolia-autocomplete-container .aa-dropdown-menu {
    width: 67%;
  }
}

#algolia-autocomplete-container .aa-dropdown-menu .category {
  color: #000000;
  font-size: 14px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  padding: 0;
  margin-bottom: 5px;
  font-weight: normal;
}
#algolia-autocomplete-container .aa-dropdown-menu .other-sections .algoliasearch-autocomplete-hit {
  padding: 0;
}
#algolia-autocomplete-container .aa-dropdown-menu .other-sections .algoliasearch-autocomplete-hit small {
  display: none;
}
#algolia-autocomplete-container .aa-dropdown-menu .info-without-thumb .details {
  display: none;
}
#algolia-autocomplete-container .aa-dropdown-menu .footer_algolia {
  display: none;
}
#algolia-autocomplete-container .aa-dropdown-menu .aa-dataset-products .algoliasearch-autocomplete-hit {
  padding: 12px 22px;
  display: block;
  overflow: hidden;
}
#algolia-autocomplete-container .aa-dropdown-menu .aa-dataset-products .algoliasearch-autocomplete-hit .thumb img {
  width: 58px;
  height: 58px;
}
#algolia-autocomplete-container .aa-dropdown-menu .aa-dataset-products .algoliasearch-autocomplete-hit .info {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  margin-left: 75px;
}
#algolia-autocomplete-container .aa-dropdown-menu .aa-dataset-products .algoliasearch-autocomplete-hit .info .algoliasearch-autocomplete-category {
  color: #666;
  font-size: 12px;
  display: none;
}
#algolia-autocomplete-container .aa-dropdown-menu .aa-dataset-products .algoliasearch-autocomplete-hit .info .algoliasearch-autocomplete-price {
  color: #000000;
  font-size: 14px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
}
#algolia-autocomplete-container .aa-dropdown-menu .aa-dataset-products .algoliasearch-autocomplete-hit .info .algoliasearch-autocomplete-price .promotion {
  color: #ef4023;
}
#algolia-autocomplete-container .aa-dropdown-menu .aa-dataset-products .aa-suggestions {
  margin-top: 10px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 600px) {
  #algolia-autocomplete-container .aa-dropdown-menu .aa-dataset-products .aa-suggestions {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  #algolia-autocomplete-container .aa-dropdown-menu .aa-dataset-products .aa-suggestions {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 600px) {
  #algolia-autocomplete-container .aa-dropdown-menu .aa-dataset-products .aa-suggestions {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  #algolia-autocomplete-container .aa-dropdown-menu .aa-dataset-products .aa-suggestions {
    margin-bottom: 50px;
  }
}
#algolia-autocomplete-container .aa-dropdown-menu .aa-dataset-products #autocomplete-products-footer span {
  font-weight: normal;
}
#algolia-autocomplete-container .aa-dropdown-menu .aa-dataset-products #autocomplete-products-footer span a {
  color: #000000;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
}
#algolia-autocomplete-container .aa-dropdown-menu .other-sections {
  margin: 0 20px;
}
@media only screen and (min-width: 600px) {
  #algolia-autocomplete-container .aa-dropdown-menu .other-sections {
    margin: 0 20px;
  }
}
@media only screen and (min-width: 1024px) {
  #algolia-autocomplete-container .aa-dropdown-menu .other-sections {
    margin: 35px 40px;
  }
}
#algolia-autocomplete-container.reverse .autocomplete-wrapper .col9 {
  float: right;
}
#algolia-autocomplete-container.reverse .autocomplete-wrapper .col3 {
  float: left;
}
#algolia-autocomplete-container.reverse #autocomplete-products-footer {
  right: 0;
  left: auto;
}

/* REFINEMENT LIST */
/* RANGE SLIDER */
/******************
**
** Auto-completion menu
**
******************/
@media only screen and (max-width: 599px) {
  #algolia-autocomplete-container {
    margin: 0 10px;
  }
}
/**
 * Search Box
*/
/**
 * Instant Search
 */
/**
 * Facets
 */
/** INSTANT SEARCH BAR **/
/**
** GRID
*/
#algolia-autocomplete-container .aa-dropdown-menu .aa-dataset-products .aa-suggestion {
  display: inline-block;
  width: 100%;
}

@media only screen and (min-width: 1024px) {
  #algolia-autocomplete-container .aa-dropdown-menu .aa-dataset-products .aa-suggestion {
    display: inline-block;
    width: 50%;
  }
}
#algolia-autocomplete-container .aa-dropdown-menu .aa-dataset-products .algoliasearch-autocomplete-hit {
  padding: 15px 10px;
}

.autocomplete-wrapper {
  width: 100%;
}

.autocomplete-wrapper:after {
  clear: both;
  content: '';
}

.col9 {
  float: right;
  width: 100%;
}

.col3 {
  float: right;
  width: 100%;
}

#algolia-autocomplete-container.reverse .col3 {
  float: left;
  width: 100%;
}

#algolia-autocomplete-container.reverse .col9 {
  float: left;
  width: 100%;
}

@media only screen and (min-width: 1024px) {
  .col9 {
    border-left: solid 1px #eeeeee;
    float: right;
    width: 70%;
  }

  .col3 {
    float: right;
    width: 30%;
  }

  #algolia-autocomplete-container.reverse .col3 {
    float: left;
    width: 30%;
  }

  #algolia-autocomplete-container.reverse .col9 {
    border-right: solid 1px #eeeeee;
    float: left;
    width: 70%;
  }
}
.aa-dataset-suggestions {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .aa-dataset-suggestions {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .aa-dataset-products .aa-suggestions {
    margin: 10px auto 50px auto;
  }
}
#autocomplete-products-footer {
  display: none;
}

@media only screen and (min-width: 1024px) {
  #autocomplete-products-footer {
    display: block;
  }
}
/**
 *
 * Default Box & Group style
 *
 * @package   Balance_Box
 * @author    Balance Internet Team  <info@balanceinternet.com.au>
 * @copyright Copyright (c) 2015, Balance Internet  (http://www.balanceinternet.com.au/)
 *
 */
.balance-box-default,
.balance-box-group-default .balance-box-group-slide {
  position: relative;
}

.balance-box-default .balance-box-container,
.balance-box-group-default .balance-box-group-container {
  position: absolute;
  top: 10px;
  right: 9px;
  bottom: 10px;
  left: 9px;
  z-index: 20;
  overflow: hidden;
}
@media only screen and (min-width: 600px) {
  .balance-box-default .balance-box-container,
  .balance-box-group-default .balance-box-group-container {
    top: 20px;
  }
}
@media only screen and (min-width: 600px) {
  .balance-box-default .balance-box-container,
  .balance-box-group-default .balance-box-group-container {
    right: 20px;
  }
}
@media only screen and (min-width: 600px) {
  .balance-box-default .balance-box-container,
  .balance-box-group-default .balance-box-group-container {
    bottom: 20px;
  }
}
@media only screen and (min-width: 600px) {
  .balance-box-default .balance-box-container,
  .balance-box-group-default .balance-box-group-container {
    left: 20px;
  }
}

.balance-box-default .balance-box-image,
.balance-box-group-default .balance-box-group-image {
  display: block;
  width: 100%;
}

.balance-box-group-default {
  white-space: nowrap;
  overflow-x: hidden;
}

.balance-box-group-default > .balance-box-group-slide {
  display: inline-block;
  vertical-align: top;
}

.balance-box-group-default .balance-box-group-slide {
  width: 100%;
}

.balance-box-group-default .balance-box-layout-middle .balance-box-group-container {
  text-align: center;
}

.balance-box-group-default .balance-box-layout-right .balance-box-group-container {
  left: 50%;
}

.block-layered-nav {
  margin-top: 25px;
}
.block-layered-nav .block-title {
  margin-bottom: 20px;
}
.block-layered-nav .block-title strong {
  font-weight: normal;
}
.block-layered-nav .block-title strong span {
  color: #000000;
}
.block-layered-nav .block-content {
  margin-top: 0;
}
.block-layered-nav .block-content > dl > dt {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  text-transform: none;
  background: transparent;
  padding: 0 0 7px;
  border: 0;
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 10px;
}
.block-layered-nav .block-content > dl > dt:hover {
  background: transparent;
}
.block-layered-nav .block-content > dl > dd {
  border: 0;
  padding: 0;
  margin-bottom: 30px;
}
.block-layered-nav .block-content > dl > dd > ol > li a {
  color: #000000;
  background-color: transparent;
}
.block-layered-nav .block-content > dl > dd > ol > li a:hover {
  text-decoration: none;
}
.block-layered-nav .block-content > dl > dd > ol > li a .count {
  color: #000000;
}
.block-layered-nav .block-content > dl > dd > ol > li.amshopby-cat {
  border-bottom: 1px solid #e7e7e7;
  padding: 5px 10px;
  float: none;
  clear: both;
  width: 100%;
}
.block-layered-nav .block-content > dl > dd > ol > li.amshopby-cat a {
  padding: 0;
  margin: 0;
}
.block-layered-nav .block-content > dl > dd > ol > li.amshopby-cat a .count {
  display: none;
}
.block-layered-nav .block-content .actions {
  margin-bottom: 30px;
}
.block-layered-nav .block-content .actions a {
  color: #0057a3;
}

div.block-layered-nav dd a.amshopby-attr, div.block-layered-nav dd a.amshopby-attr:hover {
  background-image: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/amshopby-cb1.png);
  padding-left: 25px;
}

div.block-layered-nav dd a.amshopby-attr-selected {
  background-image: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/amshopby-cb2.png);
  padding-left: 25px;
  font-weight: normal;
}

.amshopby-slider-ui {
  background-image: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/amshopby-slider-bg.png);
  margin: 20px 25px;
}
.amshopby-slider-ui .ui-slider-range {
  background: #e7e7e7;
  height: 5px;
}
.amshopby-slider-ui .ui-slider-handle {
  background: #bbbdc0;
  border: 0;
  height: 24px;
  width: 11px;
  border-radius: 2px;
  top: -7px;
}

.amshopby-slider-price {
  display: inline-block;
  float: none;
  width: 43%;
  text-align: right;
  margin-bottom: 30px;
}
.amshopby-slider-price.amshopby-slider-price-to {
  float: none;
  text-align: left;
  padding-left: 10px;
  position: relative;
}
.amshopby-slider-price.amshopby-slider-price-to:before {
  content: "to";
  margin-right: 5px;
}
.amshopby-slider-price.amshopby-slider-price-to:after {
  color: #999;
  display: block;
  content: "Drag to indicate price range";
  clear: both;
  text-align: center;
  position: absolute;
  left: -50px;
  bottom: -30px;
  font-size: 12px;
}
.amshopby-slider-price span {
  color: #666;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  min-width: 55px;
  box-sizing: border-box;
  border: 1px solid #e7e7e7;
  text-align: left;
  margin-left: 7px;
}

.currently .multiselect-child {
  display: inline-block;
}
.currently .btn-remove:hover {
  text-decoration: none;
}
.currently .btn-remove-inline {
  background: transparent;
  border: 1px solid #ededed;
  color: transparent;
  display: inline-block;
  /* Hide text */
  font: 0/0 a;
  height: 20px;
  position: relative;
  text-align: center;
  text-shadow: none;
  width: 20px;
  margin-left: 6px;
  float: right;
}
.currently .btn-remove-inline img {
  display: none;
}
.currently .btn-remove-inline:after {
  color: #666;
  content: "X";
  font-family: Arial,"proximanova-regular",Verdana,Arial,sans-serif;
  font-size: 10px;
  font-weight: bold;
  height: 20px;
  line-height: 20px;
  width: 100%;
}
.currently .btn-remove-inline:hover {
  text-decoration: none;
  background: #666;
  border: #666;
}
.currently .btn-remove-inline:hover:after {
  color: #fff;
}

@media only screen and (max-width: 1279px) and (min-width: 1023px) {
  .amshopby-slider-ui {
    margin: 20px 5px;
  }

  .amshopby-slider-price {
    width: 41%;
  }
  .amshopby-slider-price.amshopby-slider-price-to {
    min-width: 108px;
  }
}
@media only screen and (max-width: 1023px) {
  .block-layered-nav {
    margin-top: 10px;
  }
  .block-layered-nav .block-title {
    display: none;
  }
  .block-layered-nav .block-subtitle--filter {
    background-color: #ababab;
    border-radius: 3px;
    padding: 0;
    height: 40px;
    line-height: 40px;
    text-align: center;
    text-transform: none;
    font-size: 14px;
    font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  }
  .block-layered-nav .block-subtitle--filter:hover {
    background-color: #ababab;
  }
  .block-layered-nav .block-subtitle--filter:after,
  .block-layered-nav .block-subtitle--filter.active:after {
    display: none;
  }
  .block-layered-nav .block-content > dl#narrow-by-list {
    border: 0;
  }
  .block-layered-nav .block-content > dl > dt {
    text-transform: uppercase;
    font-size: 14px;
    margin: 0;
    padding: 15px 0;
    clear: both;
  }
  .block-layered-nav .block-content > dl > dt:after {
    width: 17px;
    height: 17px;
    left: auto;
    right: 0;
    top: 15px;
    margin: 0;
    border: 0;
    content: "+";
    font-family: "proximanova-thin", Verdana, Arial, sans-serif;
    font-size: 35px;
    line-height: 20px;
    text-align: center;
  }
  .block-layered-nav .block-content > dl > dt.last {
    border-bottom: 0;
  }
  .block-layered-nav .block-content > dl > dd {
    clear: both;
    margin-bottom: 0;
  }
  .block-layered-nav .block-content > dl > dd > ol {
    overflow: hidden;
    padding-top: 10px;
  }
}
@media only screen and (max-width: 1023px) and (min-width: 600px) {
  .block-layered-nav .block-content > dl > dd > ol > li {
    float: left;
    width: 50%;
  }
}
@media only screen and (max-width: 1023px) {
  .block-layered-nav .block-content > dl > dd > ol > li a {
    margin: 0;
  }
  .block-layered-nav .block-content.accordion-open > dl > dt.current:after {
    width: 17px;
    height: 17px;
    left: auto;
    right: 0;
    top: 15px;
    margin: 0;
    border: 0;
    font-family: "proximanova-thin", Verdana, Arial, sans-serif;
    text-align: center;
    content: "-";
    line-height: 9px;
    font-size: 50px;
  }
  .block-layered-nav .block-content.accordion-open > dl > dt.current.last {
    border-bottom: 1px solid #e7e7e7;
  }
  .block-layered-nav .block-content.accordion-open > dl > dd.current {
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 15px;
  }
  .block-layered-nav .block-content.accordion-open > dl > dd.current:last-child {
    border-bottom: 0;
  }
}
.account-create {
  width: 100%;
}
.account-create .page-title h1 {
  font-size: 48px;
  line-height: 42px;
  text-transform: none;
  letter-spacing: -0.5px;
}
.account-create .col-left, .account-create .col-right {
  padding: 0;
}
@media only screen and (min-width: 769px) {
  .account-create .col-left, .account-create .col-right {
    width: 48%;
  }
}
@media only screen and (max-width: 768px) {
  .account-create .col-left, .account-create .col-right {
    width: 100%;
  }
}
.account-create .fieldset h3 {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 32px;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
}
.account-create .fieldset .form-list {
  padding: 8px 0;
}
.account-create .fieldset .form-list label {
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  text-transform: none;
}
.account-create .fieldset .form-list .input-box {
  position: relative;
  float: none;
}
.account-create .fieldset .form-list input {
  width: 100%;
  height: 42px;
  color: #000000;
}
.account-create .fieldset .form-list input[type=checkbox] {
  position: absolute;
  visibility: hidden;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
}
.account-create .fieldset .form-list .control {
  padding-bottom: 10px;
}
.account-create .fieldset .form-list .control label {
  background: none;
  padding: 0 0 0 30px;
  position: relative;
}
.account-create .fieldset .form-list .control label:before {
  position: absolute;
  top: 5px;
  left: 0;
}
.account-create .fieldset .form-list h2 {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0.75px;
  border-bottom: 1px solid #e7e7e7;
  margin: 10px 0;
  padding: 10px 0;
}
.account-create .col-right {
  margin-bottom: 120px;
  padding-top: 10px;
}
.account-create .col-right .buttons-set {
  border-top: none;
}
.account-create .col-right .buttons-set .back-link {
  display: none;
}
.account-create .col-right .buttons-set .btn-register {
  float: left;
  margin-left: 0;
  min-width: 135px;
  text-transform: none;
}

.customer-account-login .col-left, .customer-account-login .col-right {
  padding: 0;
}
@media only screen and (min-width: 769px) {
  .customer-account-login .col-left, .customer-account-login .col-right {
    width: 48%;
  }
}
@media only screen and (max-width: 768px) {
  .customer-account-login .col-left, .customer-account-login .col-right {
    width: 100%;
  }
}
.customer-account-login .col-right .new-users, .customer-account-login .col-right .registered-users {
  float: none;
  display: block;
  width: 100%;
}
.customer-account-login .col-right .new-users .content > h3, .customer-account-login .col-right .registered-users .content > h3 {
  font-size: 14px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  line-height: 32px;
  letter-spacing: 0.75px;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
}
.customer-account-login .col-right .new-users .content > p, .customer-account-login .col-right .registered-users .content > p {
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  padding-top: 6px;
}
.customer-account-login .col-right .registered-users {
  border-left: none;
  padding-left: 0;
}
.customer-account-login .col-right .registered-users .content .form-list li label {
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 14px;
}
.customer-account-login .col-right .registered-users .content .form-list li input {
  width: 100%;
  height: 48px;
}
.customer-account-login .col-right .registered-users .buttons-set .btn-login {
  min-width: 84px;
}
.customer-account-login .col-right .new-users .buttons-set .btn-register {
  min-width: 95px;
}
.customer-account-login .col-left {
  margin-bottom: 100px;
}

@media only screen and (max-width: 767px) {
  .account-create .col-left, .customer-account-login .col-left {
    display: none;
  }

  .account-create .col-right {
    padding-top: 0;
    margin-bottom: 20px;
  }
  .account-create .col-right .fieldset h3 {
    padding-top: 0;
  }

  .customer-account-login .col2-set .col-2 {
    padding-top: 0;
  }

  .customer-account-login .page-title h1 {
    border-bottom: none;
  }

  .account-create .page-title h1 {
    font-size: 22px;
    line-height: 30px;
    letter-spacing: 0;
  }

  .customer-account-login .col-right .btn-login, .customer-account-login .col-right .btn-register, .account-create .col-right .btn-login, .account-create .col-right .btn-register {
    width: auto;
  }
}
/* -------------------------------------------- *
 * Global
 */
.checkoutcontainer input[type="email"], .checkoutcontainer input[type="search"], .checkoutcontainer input[type="number"], .checkoutcontainer input[type="password"], .checkoutcontainer input[type="tel"], .checkoutcontainer input[type="text"], .checkoutcontainer #billing_address .nice-select, .checkoutcontainer #shipping_address .nice-select, .checkoutcontainer .payment-methods select[name="payment[cc_type]"] + .nice-select {
  max-width: 100%;
  width: 100%;
}
.checkoutcontainer label.required:after, .checkoutcontainer span.required:after {
  content: '';
}
.checkoutcontainer label {
  text-transform: lowercase;
}
.checkoutcontainer label:first-letter {
  text-transform: uppercase;
}
.checkoutcontainer .onestepcheckout-enable-terms label,
.checkoutcontainer .payment-methods label,
.checkoutcontainer .shipment-methods label {
  text-transform: none;
}
.checkoutcontainer .zip-money-custom {
  margin-top: 3px;
}
.checkoutcontainer .zip-money-custom strong {
  font-size: 13px;
  font-weight: 300;
  font-family: "proximanova-semibold";
}
.checkoutcontainer .zip-money-custom a {
  display: inline-block;
  text-decoration: underline;
  color: #29639d;
  font-size: 13px;
}
.checkoutcontainer .zip-money-custom a:hover {
  text-decoration: underline;
}

/* -------------------------------------------- *
 * spacing between label and input
 */
#amorderattr textarea, #amorderattr input[type="email"], #amorderattr input[type="search"], #amorderattr input[type="number"], #amorderattr input[type="password"], #amorderattr input[type="tel"], #amorderattr input[type="text"], #amorderattr .nice-select, #billing_address textarea, #billing_address input[type="email"], #billing_address input[type="search"], #billing_address input[type="number"], #billing_address input[type="password"], #billing_address input[type="tel"], #billing_address input[type="text"], #billing_address .nice-select, #shipping_address textarea, #shipping_address input[type="email"], #shipping_address input[type="search"], #shipping_address input[type="number"], #shipping_address input[type="password"], #shipping_address input[type="tel"], #shipping_address input[type="text"], #shipping_address .nice-select, .payment-method textarea, .payment-method input[type="email"], .payment-method input[type="search"], .payment-method input[type="number"], .payment-method input[type="password"], .payment-method input[type="tel"], .payment-method input[type="text"], .payment-method .nice-select, .shipment-methods textarea, .shipment-methods input[type="email"], .shipment-methods input[type="search"], .shipment-methods input[type="number"], .shipment-methods input[type="password"], .shipment-methods input[type="tel"], .shipment-methods input[type="text"], .shipment-methods .nice-select, .onestepcheckout-coupons textarea, .onestepcheckout-coupons input[type="email"], .onestepcheckout-coupons input[type="search"], .onestepcheckout-coupons input[type="number"], .onestepcheckout-coupons input[type="password"], .onestepcheckout-coupons input[type="tel"], .onestepcheckout-coupons input[type="text"], .onestepcheckout-coupons .nice-select, .onestepcheckout-comments textarea, .onestepcheckout-comments input[type="email"], .onestepcheckout-comments input[type="search"], .onestepcheckout-comments input[type="number"], .onestepcheckout-comments input[type="password"], .onestepcheckout-comments input[type="tel"], .onestepcheckout-comments input[type="text"], .onestepcheckout-comments .nice-select {
  margin-top: 3px;
}
#amorderattr input[type] ~ input[type], #amorderattr input[type] ~ textarea, #amorderattr input[type] ~ .nice-select, #amorderattr textarea ~ input[type], #amorderattr textarea ~ textarea, #amorderattr textarea ~ .nice-select, #amorderattr .nice-select ~ input[type], #amorderattr .nice-select ~ textarea, #amorderattr .nice-select ~ .nice-select, #billing_address input[type] ~ input[type], #billing_address input[type] ~ textarea, #billing_address input[type] ~ .nice-select, #billing_address textarea ~ input[type], #billing_address textarea ~ textarea, #billing_address textarea ~ .nice-select, #billing_address .nice-select ~ input[type], #billing_address .nice-select ~ textarea, #billing_address .nice-select ~ .nice-select, #shipping_address input[type] ~ input[type], #shipping_address input[type] ~ textarea, #shipping_address input[type] ~ .nice-select, #shipping_address textarea ~ input[type], #shipping_address textarea ~ textarea, #shipping_address textarea ~ .nice-select, #shipping_address .nice-select ~ input[type], #shipping_address .nice-select ~ textarea, #shipping_address .nice-select ~ .nice-select, .payment-method input[type] ~ input[type], .payment-method input[type] ~ textarea, .payment-method input[type] ~ .nice-select, .payment-method textarea ~ input[type], .payment-method textarea ~ textarea, .payment-method textarea ~ .nice-select, .payment-method .nice-select ~ input[type], .payment-method .nice-select ~ textarea, .payment-method .nice-select ~ .nice-select, .shipment-methods input[type] ~ input[type], .shipment-methods input[type] ~ textarea, .shipment-methods input[type] ~ .nice-select, .shipment-methods textarea ~ input[type], .shipment-methods textarea ~ textarea, .shipment-methods textarea ~ .nice-select, .shipment-methods .nice-select ~ input[type], .shipment-methods .nice-select ~ textarea, .shipment-methods .nice-select ~ .nice-select, .onestepcheckout-coupons input[type] ~ input[type], .onestepcheckout-coupons input[type] ~ textarea, .onestepcheckout-coupons input[type] ~ .nice-select, .onestepcheckout-coupons textarea ~ input[type], .onestepcheckout-coupons textarea ~ textarea, .onestepcheckout-coupons textarea ~ .nice-select, .onestepcheckout-coupons .nice-select ~ input[type], .onestepcheckout-coupons .nice-select ~ textarea, .onestepcheckout-coupons .nice-select ~ .nice-select, .onestepcheckout-comments input[type] ~ input[type], .onestepcheckout-comments input[type] ~ textarea, .onestepcheckout-comments input[type] ~ .nice-select, .onestepcheckout-comments textarea ~ input[type], .onestepcheckout-comments textarea ~ textarea, .onestepcheckout-comments textarea ~ .nice-select, .onestepcheckout-comments .nice-select ~ input[type], .onestepcheckout-comments .nice-select ~ textarea, .onestepcheckout-comments .nice-select ~ .nice-select {
  margin-top: 10px;
}
#amorderattr .input-box, #billing_address .input-box, #shipping_address .input-box, .payment-method .input-box, .shipment-methods .input-box, .onestepcheckout-coupons .input-box, .onestepcheckout-comments .input-box {
  padding-top: 8px;
}
#amorderattr .input-box .address-select span.current, #billing_address .input-box .address-select span.current, #shipping_address .input-box .address-select span.current, .payment-method .input-box .address-select span.current, .shipment-methods .input-box .address-select span.current, .onestepcheckout-coupons .input-box .address-select span.current, .onestepcheckout-comments .input-box .address-select span.current {
  width: 240px;
}
@media only screen and (min-width: 600px) {
  #amorderattr .input-box .address-select span.current, #billing_address .input-box .address-select span.current, #shipping_address .input-box .address-select span.current, .payment-method .input-box .address-select span.current, .shipment-methods .input-box .address-select span.current, .onestepcheckout-coupons .input-box .address-select span.current, .onestepcheckout-comments .input-box .address-select span.current {
    width: 100%;
  }
}

/* -------------------------------------------- *
 * Layout
 */
.page-header.header-ost {
  background: none;
  padding-bottom: 21px;
  border-bottom: 2px solid #e7e7e7;
}
@media only screen and (min-width: 600px) {
  .page-header.header-ost {
    padding-bottom: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .page-header.header-ost {
    padding-bottom: 21px;
  }
}
.page-header.header-ost .logo {
  margin-right: 0;
}
@media only screen and (min-width: 600px) {
  .page-header.header-ost .logo {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 1024px) {
  .page-header.header-ost .logo {
    margin-right: 43px;
  }
}
.page-header.header-ost .header-top {
  clear: both;
  padding-right: 0;
  overflow: hidden;
  margin-left: 0;
  padding-top: 0;
  text-align: left;
}
@media only screen and (min-width: 600px) {
  .page-header.header-ost .header-top {
    clear: none;
  }
}
@media only screen and (min-width: 600px) {
  .page-header.header-ost .header-top {
    padding-right: 20px;
  }
}
@media only screen and (min-width: 600px) {
  .page-header.header-ost .header-top {
    overflow: visible;
  }
}
@media only screen and (min-width: 600px) {
  .page-header.header-ost .header-top {
    margin-left: 164px;
  }
}
.page-header.header-ost .header-support {
  margin-top: 7px;
  display: block;
}
@media only screen and (min-width: 600px) {
  .page-header.header-ost .header-support {
    margin-top: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  .page-header.header-ost .header-support {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 600px) {
  .page-header.header-ost .header-support {
    display: inline-block;
  }
}
.page-header.header-ost .header-support p {
  float: none;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .page-header.header-ost .header-support p {
    float: left;
  }
}
@media only screen and (min-width: 600px) {
  .page-header.header-ost .header-support p {
    text-align: right;
  }
}
.page-header.header-ost .header-support p:first-child {
  margin-bottom: 0;
  margin-right: 0;
}
@media only screen and (min-width: 600px) {
  .page-header.header-ost .header-support p:first-child {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .page-header.header-ost .header-support p:first-child {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 600px) {
  .page-header.header-ost .header-support p:first-child {
    margin-right: 20px;
  }
}
.page-header.header-ost .header-support p:first-child + p {
  float: none;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  margin-top: 10px;
}
@media only screen and (min-width: 600px) {
  .page-header.header-ost .header-support p:first-child + p {
    float: left;
  }
}
@media only screen and (min-width: 600px) {
  .page-header.header-ost .header-support p:first-child + p {
    margin-top: 0;
  }
}
.page-header.header-ost .header-support p:first-child + p img {
  float: left;
  margin-right: 2px;
  margin-top: 0;
}
@media only screen and (min-width: 600px) {
  .page-header.header-ost .header-support p:first-child + p img {
    margin-top: -4px;
  }
}
@media only screen and (min-width: 1024px) {
  .page-header.header-ost .header-support p:first-child + p img {
    margin-top: 11px;
  }
}
.page-header.header-ost .header-support span {
  display: inline;
}
.page-header.header-ost .header-support img {
  display: none;
}
@media only screen and (min-width: 600px) {
  .page-header.header-ost .header-support img {
    display: block;
  }
}
.page-header.header-ost .back-to-cart {
  position: absolute;
  text-transform: none;
  top: 10px;
  right: 10px;
}
@media only screen and (min-width: 600px) {
  .page-header.header-ost .back-to-cart {
    top: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .page-header.header-ost .back-to-cart {
    top: 32px;
  }
}
@media only screen and (min-width: 600px) {
  .page-header.header-ost .back-to-cart {
    right: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .page-header.header-ost .back-to-cart {
    right: 0px;
  }
}

.footer-ost {
  margin-top: 19px;
}
@media only screen and (min-width: 600px) {
  .footer-ost {
    margin-top: 48px;
  }
}
.footer-ost .footer-bottom {
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .footer-ost .footer-bottom {
    text-align: left;
  }
}
.footer-ost .footer-bottom .footer-container {
  padding: 30px 0;
  border-top: 2px solid #e7e7e7;
}
.footer-ost .footer-bottom .logo {
  max-width: none;
  float: none;
}
.footer-ost .footer-bottom .footer-nav-ost {
  white-space: nowrap;
  float: none;
  margin-top: 0;
}
@media only screen and (min-width: 600px) {
  .footer-ost .footer-bottom .footer-nav-ost {
    float: right;
  }
}
@media only screen and (min-width: 600px) {
  .footer-ost .footer-bottom .footer-nav-ost {
    margin-top: 33px;
  }
}
.footer-ost .footer-bottom .footer-nav-ost ul {
  display: block;
}
@media only screen and (min-width: 600px) {
  .footer-ost .footer-bottom .footer-nav-ost ul {
    display: inline-block;
  }
}
.footer-ost .footer-bottom address {
  margin-top: 0;
}

@media only screen and (min-width: 1024px) {
  /* Config: Three columns + flexible gutter */
  .onestepcheckout-threecolumns {
    /* Undo two-column config */
    /* Set three-column config */
  }
  .onestepcheckout-threecolumns [class*="onestepcheckout-column"] {
    float: left;
  }
  .onestepcheckout-threecolumns > [class*="onestepcheckout-column"]:nth-child(odd) {
    clear: none;
  }
  .onestepcheckout-threecolumns > [class*="onestepcheckout-column"]:nth-child(even) {
    margin-right: 1.72414%;
  }
  .onestepcheckout-threecolumns > [class*="onestepcheckout-column"] {
    width: 32.18391%;
    margin-right: 1.72414%;
  }
  .onestepcheckout-threecolumns > [class*="onestepcheckout-column"]:nth-child(3n+1) {
    clear: left;
  }
  .onestepcheckout-threecolumns > [class*="onestepcheckout-column"]:nth-child(3n) {
    margin-right: 0;
  }
}
/* -------------------------------------------- *
 * Ost number steps & checkout title
 */
.onestepcheckout-title {
  font-family: "proximanova-thin", Verdana, Arial, sans-serif;
  font-size: 48px;
  font-size: 22px;
  line-height: 30px;
  padding: 14px 0 7px;
  text-align: center;
  text-transform: capitalize;
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 17px;
}
@media only screen and (min-width: 600px) {
  .onestepcheckout-title {
    font-size: 48px;
  }
}
@media only screen and (min-width: 600px) {
  .onestepcheckout-title {
    line-height: 132px;
  }
}
@media only screen and (min-width: 600px) {
  .onestepcheckout-title {
    padding: 0;
  }
}

.shipping-address-title,
.onestepcheckout-numbers {
  position: relative;
  font-family: "proximanova-thin", Verdana, Arial, sans-serif;
  font-size: 30px;
  color: #000;
  line-height: 34px;
  padding-bottom: 13px;
  border-bottom: 1px solid #e7e7e7;
}
.shipping-address-title[class*="-numbers-"],
.onestepcheckout-numbers[class*="-numbers-"] {
  padding-left: 46px;
}
.shipping-address-title[class*="-numbers-"]:before,
.onestepcheckout-numbers[class*="-numbers-"]:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  line-height: 34px;
  border-radius: 34px;
  background: #0057a3;
  font-family: "proximanova-light", Verdana, Arial, sans-serif;
  font-size: 20px;
  color: #FFF;
  text-align: center;
}
.shipping-address-title.onestepcheckout-numbers-1:before,
.onestepcheckout-numbers.onestepcheckout-numbers-1:before {
  content: '1';
}
.shipping-address-title.onestepcheckout-numbers-2:before,
.onestepcheckout-numbers.onestepcheckout-numbers-2:before {
  content: '2';
}
.shipping-address-title.onestepcheckout-numbers-3:before,
.onestepcheckout-numbers.onestepcheckout-numbers-3:before {
  content: '3';
}
.shipping-address-title.onestepcheckout-numbers-4:before,
.onestepcheckout-numbers.onestepcheckout-numbers-4:before {
  content: '4';
}
.shipping-address-title.onestepcheckout-numbers-2, .shipping-address-title.onestepcheckout-numbers-4,
.onestepcheckout-numbers.onestepcheckout-numbers-2,
.onestepcheckout-numbers.onestepcheckout-numbers-4 {
  margin-bottom: 12px;
}

.onestepcheckout-login-link {
  border: 1px solid #e7e7e7;
  padding: 22px 28px;
  line-height: 20px;
  margin-bottom: 8px;
}
.onestepcheckout-login-link span {
  display: block;
}

#billing_address .amorderattr-list *, #shipping_address .amorderattr-list * {
  margin: 0;
  padding: 0;
}
#billing_address .input-different-shipping, #shipping_address .input-different-shipping {
  padding-top: 20px;
}
#billing_address .input-different-shipping label, #shipping_address .input-different-shipping label {
  text-transform: none;
}
#billing_address .save-in-address-book,
#billing_address .subcribe-newsletter-osc, #shipping_address .save-in-address-book,
#shipping_address .subcribe-newsletter-osc {
  margin-top: 20px;
  margin-bottom: 15px;
}
#billing_address .save-in-address-book label,
#billing_address .subcribe-newsletter-osc label, #shipping_address .save-in-address-book label,
#shipping_address .subcribe-newsletter-osc label {
  text-transform: none;
}
#billing_address .save-in-address-book label span,
#billing_address .subcribe-newsletter-osc label span, #shipping_address .save-in-address-book label span,
#shipping_address .subcribe-newsletter-osc label span {
  font-weight: bold;
}
@media only screen and (min-width: 600px) {
  #billing_address .save-in-address-book label span,
  #billing_address .subcribe-newsletter-osc label span, #shipping_address .save-in-address-book label span,
  #shipping_address .subcribe-newsletter-osc label span {
    font-weight: normal;
  }
}

#billing_address input ~ label,
#shipping_address input ~ label,
.subcribe-newsletter-osc input ~ label,
.shipment-methods input ~ label,
.payment-method input ~ label {
  position: relative;
  padding-left: 30px;
}
#billing_address input ~ label:before,
#shipping_address input ~ label:before,
.subcribe-newsletter-osc input ~ label:before,
.shipment-methods input ~ label:before,
.payment-method input ~ label:before {
  position: absolute;
  left: 0;
  top: 0;
}

.payment-methods .checkout-logo-zippay {
  max-width: 69px;
  height: auto;
}

.shipping-address-title, p.onestepcheckout-numbers {
  margin: 26px 0 19px;
}

.shipment-methods #li_tal_pickupstore_error {
  display: none;
}
.shipment-methods dd {
  margin-bottom: 4px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 16px;
}
.shipment-methods dt {
  margin-bottom: 16px;
  padding: 5px 0;
  display: inline-block;
  width: 100%;
}
.shipment-methods dt label {
  padding-right: 10px !important;
  float: left;
  max-width: none;
}
.shipment-methods dt .location-state label,
.shipment-methods dt .location-city label {
  display: block;
  line-height: 42px;
  min-width: 65px;
  box-sizing: border-box;
}
.shipment-methods dt .location-state .nice-select,
.shipment-methods dt .location-city .nice-select {
  float: left;
  clear: none;
}
.shipment-methods dt .price:before {
  content: '- ';
}
.shipment-methods dt ul {
  display: block;
}
.shipment-methods input[type="radio"] ~ label {
  padding-left: 26px;
}
.shipment-methods p {
  clear: both;
  margin-top: 10px;
}
.shipment-methods .location-city .nice-select {
  min-width: 190px;
}
.shipment-methods .location-city .nice-select.open .list {
  max-height: 240px;
  overflow-y: auto;
}

.payment-methods .form-list {
  margin: 0;
  width: 100%;
}
.payment-methods input[type="radio"] ~ label {
  padding-left: 26px;
}
.payment-methods .title {
  margin-bottom: 15px;
}

.onestepcheckout-summary {
  width: 100%;
}
.onestepcheckout-summary img {
  float: left;
  margin: 0 10px 0 0;
}
.onestepcheckout-summary th {
  padding: 3px 0 12px;
  border-bottom: 1px solid #e7e7e7;
  border-top: medium none;
}
.onestepcheckout-summary th.qty {
  text-align: center;
}
.onestepcheckout-summary th.total {
  text-align: right;
}
.onestepcheckout-summary th.name {
  width: 65%;
}
.onestepcheckout-summary td {
  border-bottom: 1px solid #e7e7e7;
  padding: 15px 0;
  vertical-align: top;
}
.onestepcheckout-summary tbody td.name .summary-desc {
  line-height: 20px;
  vertical-align: top;
  margin-left: 103px;
  position: relative;
}
.onestepcheckout-summary tbody td.name .summary-desc.item-out-of-stock {
  padding-bottom: 45px;
}
.onestepcheckout-summary tbody td.name .summary-desc.item-out-of-stock .checkout-out-of-stock {
  position: absolute;
  width: 220px;
}
.onestepcheckout-summary tbody td.name .summary-desc.item-out-of-stock .checkout-out-of-stock .validation-advice + a {
  text-decoration: underline;
}
.onestepcheckout-summary tbody td.qty {
  text-align: center;
}
.onestepcheckout-summary tbody td.total {
  text-align: right;
}

.onestepcheckout-place-order .validation-advice {
  word-spacing: -0.5px;
}

.onestepcheckout-totals {
  width: 100%;
}
.onestepcheckout-totals tr:last-child td {
  padding-bottom: 17px;
}
.onestepcheckout-totals tr:first-child td {
  padding-top: 17px;
}
.onestepcheckout-totals td {
  padding: 0;
  vertical-align: top;
  border: none;
}
.onestepcheckout-totals td.title {
  width: 53%;
  text-align: right;
}
@media only screen and (min-width: 600px) {
  .onestepcheckout-totals td.title {
    width: 70%;
  }
}
.onestepcheckout-totals td.value {
  text-align: right;
}
.onestepcheckout-totals.grand-total tr td {
  padding: 15px 0;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  text-transform: uppercase;
}
.onestepcheckout-totals.grand-total tr td .price {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
}
.onestepcheckout-totals .tax td {
  padding-bottom: 8px;
}

.onestepcheckout-coupons {
  margin-top: 14px;
}
.onestepcheckout-coupons label {
  display: block;
  margin-bottom: 5px;
}
.onestepcheckout-coupons input#id_couponcode {
  width: 100%;
  margin-top: 0;
  line-height: 1;
}
.onestepcheckout-coupons .messages li li {
  padding: 7px 10px 7px 20px;
}
.onestepcheckout-coupons .field-right {
  float: right;
  width: 90px;
  margin-left: 10px;
}
@media only screen and (min-width: 600px) {
  .onestepcheckout-coupons .field-right {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .onestepcheckout-coupons .field-right {
    margin-left: 20px;
  }
}
.onestepcheckout-coupons .field-left {
  min-width: 199px;
  width: auto;
  overflow: hidden;
}
.onestepcheckout-coupons #onestepcheckout-coupon-remove,
.onestepcheckout-coupons #onestepcheckout-coupon-add {
  margin: 0;
  width: 100%;
  min-width: 0;
}
.onestepcheckout-coupons #coupon-notice {
  padding: 13px 10px 12px;
  margin-bottom: 6px;
}
.onestepcheckout-coupons #coupon-notice.success-msg {
  color: #4b9427;
  background-color: #d5edca;
}
.onestepcheckout-coupons #coupon-notice.error-msg {
  color: #d91414;
  background-color: #fbb9b9;
}

#onestepcheckout-email-error-message {
  padding: 13px 10px 12px;
  margin: 10px 0;
}
#onestepcheckout-email-error-message.success-msg {
  color: #4b9427;
  background-color: #d5edca;
}
#onestepcheckout-email-error-message.error-msg {
  color: #d91414;
  background-color: #fbb9b9;
}

.gift-card-link {
  float: left;
  margin: 15px 0 10px;
}

.amorderattr-list {
  clear: both;
}
.amorderattr-list #amorderattr .eg-text {
  font-style: italic;
}
.amorderattr-list #comments {
  height: 150px;
  max-width: 100%;
}

#onestepcheckout-toc-link {
  margin-right: 5px;
}

#onestepcheckout-place-order,
#zipmoneypayment-place-order {
  width: 100%;
  margin-top: 20px;
}
#onestepcheckout-place-order:disabled,
#zipmoneypayment-place-order:disabled {
  background: #999;
  color: #FFF;
}
#onestepcheckout-place-order:disabled:hover,
#zipmoneypayment-place-order:disabled:hover {
  background: #999;
  color: #FFF;
}

.onestepcheckout-column-right .checkout-shopsecurely {
  width: 100%;
  text-align: center;
  margin-top: 40px;
}
.onestepcheckout-column-right .checkout-shopsecurely p {
  display: block;
  white-space: nowrap;
  margin-bottom: 28px;
}
@media only screen and (min-width: 600px) {
  .onestepcheckout-column-right .checkout-shopsecurely p {
    margin-bottom: 30px;
  }
}
.onestepcheckout-column-right .checkout-shopsecurely p a {
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}
@media only screen and (min-width: 600px) {
  .onestepcheckout-column-right .checkout-shopsecurely p a {
    margin-left: 20px;
  }
}

#onestepcheckout-form label[for="id_couponcode"] {
  font-size: 14px;
}

.onestepcheckout-totals .grand-total td {
  padding: 9px 0 11px;
  text-transform: capitalize;
}

.onestepcheckout-summary img {
  margin-bottom: 0;
}

div.onestepcheckout-place-order-wrapper {
  margin-top: 25px;
}

.checkout-login-link {
  margin: 6px 0 14px;
  overflow: hidden;
}

#forgot-checkout-link {
  text-decoration: underline;
  float: left;
  line-height: 47px;
}

.onestep-login .checkout-login-link .continue-btn {
  padding: 12px 32px;
  border: 1px solid #e7e7e7;
  float: right;
  margin: 0;
}
.onestep-login .checkout-login-link .continue-btn:hover {
  text-decoration: none;
}

.onestep-login h2 {
  margin: 5px 0 17px;
}

.have-discount-code {
  line-height: 42px;
  background: #fbfbfb;
  border: 1px solid #e5e5e5;
  padding: 0 12px;
  margin-bottom: 16px;
  margin-top: -1px;
}

#onestepcheckout-toc-popup,
#onestepcheckout-login-popup {
  position: fixed;
  left: 0px !important;
  top: 0px !important;
  margin: 0;
  height: 100%;
  width: 100%;
  display: table;
  margin: 0 auto;
  z-index: 10;
}

.onestepcheckout-popup-wrapper {
  display: table-cell;
  vertical-align: middle;
}

#onestepcheckout-toc-popup .onestepcheckout-popup-contents {
  width: auto;
}
@media only screen and (min-width: 600px) {
  #onestepcheckout-toc-popup .onestepcheckout-popup-contents {
    width: 560px;
  }
}
@media only screen and (min-width: 1024px) {
  #onestepcheckout-toc-popup .onestepcheckout-popup-contents {
    width: 880px;
  }
}
#onestepcheckout-toc-popup .onestepcheckout-popup-contents .onestepcheckout-toc-terms {
  height: 145px;
  overflow-y: scroll;
}
@media only screen and (min-width: 600px) {
  #onestepcheckout-toc-popup .onestepcheckout-popup-contents .onestepcheckout-toc-terms {
    height: 350px;
  }
}
@media only screen and (min-width: 1024px) {
  #onestepcheckout-toc-popup .onestepcheckout-popup-contents .onestepcheckout-toc-terms {
    height: 500px;
  }
}

.onestepcheckout-popup-contents {
  display: table;
  text-align: left;
  position: relative;
  width: auto;
  padding: 10px;
  margin: 0 10px;
  -moz-box-shadow: 0 0 20px 7px #e7e7e7;
  -webkit-box-shadow: 0 0 20px 7px #e7e7e7;
  box-shadow: 0 0 20px 7px #e7e7e7;
  background: #FFF;
}
@media only screen and (min-width: 600px) {
  .onestepcheckout-popup-contents {
    width: 480px;
  }
}
@media only screen and (min-width: 600px) {
  .onestepcheckout-popup-contents {
    padding: 24px 40px 40px;
  }
}
@media only screen and (min-width: 600px) {
  .onestepcheckout-popup-contents {
    margin: 0 auto;
  }
}
.onestepcheckout-popup-contents h1 {
  text-transform: capitalize;
  padding-bottom: 2px;
  font-family: "proximanova-thin", Verdana, Arial, sans-serif;
  font-size: 30px;
  margin-top: 30px;
}
@media only screen and (min-width: 600px) {
  .onestepcheckout-popup-contents h1 {
    font-size: 48px;
  }
}
@media only screen and (min-width: 600px) {
  .onestepcheckout-popup-contents h1 {
    margin-top: 0;
  }
}
.onestepcheckout-popup-contents input {
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .onestepcheckout-popup-contents input {
    width: 100%;
  }
}
.onestepcheckout-popup-contents .close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 16px;
  height: 16px;
}
.onestepcheckout-popup-contents .close a {
  width: 100%;
  height: 100%;
}
.onestepcheckout-popup-contents .close a:hover {
  text-decoration: none;
}
.onestepcheckout-popup-contents #onestepcheckout-forgot-table,
.onestepcheckout-popup-contents #onestepcheckout-login-table {
  margin-top: 22px;
}
.onestepcheckout-popup-contents #onestepcheckout-forgot-table li,
.onestepcheckout-popup-contents #onestepcheckout-login-table li {
  margin-bottom: 15px;
}
.onestepcheckout-popup-contents #onestepcheckout-forgot-table .input-box,
.onestepcheckout-popup-contents #onestepcheckout-login-table .input-box {
  padding-top: 4px;
}
.onestepcheckout-popup-contents .buttons-set {
  border: none;
  padding-top: 5px;
  text-align: left;
}
.onestepcheckout-popup-contents .buttons-set button {
  float: left;
  margin-right: 23px;
  margin-left: 0;
  min-width: 85px;
}
.onestepcheckout-popup-contents .buttons-set a {
  padding: 9px 0;
}
.onestepcheckout-popup-contents #onestepcheckout-forgot-form h1 {
  font-size: 28px;
  border-bottom: 1px solid #e7e7e7;
}
@media only screen and (min-width: 600px) {
  .onestepcheckout-popup-contents #onestepcheckout-forgot-form h1 {
    font-size: 48px;
  }
}
.onestepcheckout-popup-contents #onestepcheckout-forgot-error,
.onestepcheckout-popup-contents #onestepcheckout-forgot-success,
.onestepcheckout-popup-contents #onestepcheckout-login-error {
  padding: 13px 10px 12px;
  margin-bottom: 6px;
  margin-top: 10px;
}
.onestepcheckout-popup-contents #onestepcheckout-forgot-error.success-msg,
.onestepcheckout-popup-contents #onestepcheckout-forgot-success.success-msg,
.onestepcheckout-popup-contents #onestepcheckout-login-error.success-msg {
  color: #4b9427;
  background-color: #d5edca;
}
.onestepcheckout-popup-contents #onestepcheckout-forgot-error.error-msg,
.onestepcheckout-popup-contents #onestepcheckout-forgot-success.error-msg,
.onestepcheckout-popup-contents #onestepcheckout-login-error.error-msg {
  color: #d91414;
  background-color: #fbb9b9;
}

#onestepcheckout_popup_overlay {
  width: 100% !important;
  height: 100% !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  background-color: #FFF;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

/* fix bug tooltip */
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  .onestepcheckout-enable-terms .tooltip-container .tooltip-insert {
    left: auto;
    right: -10px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  .onestepcheckout-enable-terms .tooltip-container .tooltip-insert [class*="icon-"] {
    left: auto;
    right: 5px;
  }
}

.checkout-agreements {
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .payment-methods input[type="radio"] ~ label {
    max-width: 100%;
  }
}
.list-pickup-stores strong {
  font-size: 14px;
  font-family: "proximanova-semibold";
}
.list-pickup-stores a {
  color: #4b8413;
  margin-left: 5px;
}
.list-pickup-stores a:hover, .list-pickup-stores a:visited {
  color: #4b8413;
}
.list-pickup-stores span {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  line-height: 1.2em;
}
.list-pickup-stores span.address-branchs {
  margin-top: 10px;
}
.list-pickup-stores span.phone {
  margin-top: 10px;
}
.list-pickup-stores span.phone:before {
  content: "";
  width: 11px;
  height: 12px;
  display: inline-block;
  background-image: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/phone-receiver.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin-right: 5px;
  margin-top: 2px;
  vertical-align: top;
}
.list-pickup-stores span.phone span {
  color: #4b8413;
  display: inline;
  width: auto;
}
.list-pickup-stores span.phone a {
  color: #4b8413;
}
.list-pickup-stores span.phone a:hover, .list-pickup-stores span.phone a:visited {
  color: #4b8413;
}

.blog-title {
  text-align: center;
  margin-top: 30px;
}
.blog-title.with-tagline {
  margin-bottom: 35px;
}
.blog-title > h1 {
  font-family: "proximanova-thin", Verdana, Arial, sans-serif;
  font-size: 48px;
  line-height: 34px;
  border-bottom: none;
  text-transform: uppercase;
  padding-bottom: 0;
  margin-bottom: 10px;
}
.blog-title > h1 span {
  font-family: "AustinItalic";
  font-size: 48px;
  line-height: 31px;
  letter-spacing: -0.25px;
  text-transform: none;
}
.blog-title .blog-tag-line {
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 26px;
}

.wordpress-index-index .col-right.sidebar, .wordpress-post-view .col-right.sidebar, .wordpress-post-category-view .col-right.sidebar {
  display: none;
}
@media only screen and (min-width: 600px) {
  .wordpress-index-index .col-right.sidebar, .wordpress-post-view .col-right.sidebar, .wordpress-post-category-view .col-right.sidebar {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .wordpress-index-index .col-right.sidebar, .wordpress-post-view .col-right.sidebar, .wordpress-post-category-view .col-right.sidebar {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .wordpress-index-index .col-right.sidebar .wp-sidebar .block-recent-posts, .wordpress-index-index .col-right.sidebar .wp-sidebar .block-blog-text, .wordpress-post-view .col-right.sidebar .wp-sidebar .block-recent-posts, .wordpress-post-view .col-right.sidebar .wp-sidebar .block-blog-text, .wordpress-post-category-view .col-right.sidebar .wp-sidebar .block-recent-posts, .wordpress-post-category-view .col-right.sidebar .wp-sidebar .block-blog-text {
    display: none;
  }
}
.wordpress-index-index .col-right.sidebar .wp-sidebar .block-recent-posts .block-content li.item, .wordpress-post-view .col-right.sidebar .wp-sidebar .block-recent-posts .block-content li.item, .wordpress-post-category-view .col-right.sidebar .wp-sidebar .block-recent-posts .block-content li.item {
  margin: 0;
  padding: 6px 0;
  border-bottom: 1px solid #e7e7e7;
}
.wordpress-index-index .col-right.sidebar .wp-sidebar .block-recent-posts .block-content li.item a, .wordpress-post-view .col-right.sidebar .wp-sidebar .block-recent-posts .block-content li.item a, .wordpress-post-category-view .col-right.sidebar .wp-sidebar .block-recent-posts .block-content li.item a {
  color: #000000;
  font-size: 14px;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  line-height: 31px;
}
@media only screen and (min-width: 769px) {
  .wordpress-index-index .col-right.sidebar .wp-sidebar .block-blog-text, .wordpress-post-view .col-right.sidebar .wp-sidebar .block-blog-text, .wordpress-post-category-view .col-right.sidebar .wp-sidebar .block-blog-text {
    margin-top: 40px;
  }
}
.wordpress-index-index .col-right.sidebar .wp-sidebar .block-blog-text .blog-signup .block-subscribe, .wordpress-post-view .col-right.sidebar .wp-sidebar .block-blog-text .blog-signup .block-subscribe, .wordpress-post-category-view .col-right.sidebar .wp-sidebar .block-blog-text .blog-signup .block-subscribe {
  margin-top: 10px;
}
.wordpress-index-index .col-right.sidebar .wp-sidebar .block-blog-text .blog-signup .block-subscribe .actions, .wordpress-post-view .col-right.sidebar .wp-sidebar .block-blog-text .blog-signup .block-subscribe .actions, .wordpress-post-category-view .col-right.sidebar .wp-sidebar .block-blog-text .blog-signup .block-subscribe .actions {
  float: left;
}
.wordpress-index-index .col-right.sidebar .wp-sidebar .block-blog-text .blog-signup .block-subscribe .actions .button, .wordpress-post-view .col-right.sidebar .wp-sidebar .block-blog-text .blog-signup .block-subscribe .actions .button, .wordpress-post-category-view .col-right.sidebar .wp-sidebar .block-blog-text .blog-signup .block-subscribe .actions .button {
  width: 95px;
  height: 45px;
  background: #999999;
  color: #FFF;
  text-transform: none;
}
.wordpress-index-index .col-right.sidebar .wp-sidebar .block-blog-text .blog-signup .block-subscribe .actions .button:hover, .wordpress-index-index .col-right.sidebar .wp-sidebar .block-blog-text .blog-signup .block-subscribe .actions .button:active, .wordpress-index-index .col-right.sidebar .wp-sidebar .block-blog-text .blog-signup .block-subscribe .actions .button.nice-select.open, .wordpress-post-view .col-right.sidebar .wp-sidebar .block-blog-text .blog-signup .block-subscribe .actions .button:hover, .wordpress-post-view .col-right.sidebar .wp-sidebar .block-blog-text .blog-signup .block-subscribe .actions .button:active, .wordpress-post-view .col-right.sidebar .wp-sidebar .block-blog-text .blog-signup .block-subscribe .actions .button.nice-select.open, .wordpress-post-category-view .col-right.sidebar .wp-sidebar .block-blog-text .blog-signup .block-subscribe .actions .button:hover, .wordpress-post-category-view .col-right.sidebar .wp-sidebar .block-blog-text .blog-signup .block-subscribe .actions .button:active, .wordpress-post-category-view .col-right.sidebar .wp-sidebar .block-blog-text .blog-signup .block-subscribe .actions .button.nice-select.open {
  background: #ababab;
}
@media only screen and (min-width: 769px) {
  .wordpress-index-index .col-right.sidebar .wp-sidebar .block-blog-categories, .wordpress-post-view .col-right.sidebar .wp-sidebar .block-blog-categories, .wordpress-post-category-view .col-right.sidebar .wp-sidebar .block-blog-categories {
    margin-top: 35%;
  }
}
.wordpress-index-index .col-right.sidebar .wp-sidebar .block-blog-categories #wp-category-list li.item, .wordpress-post-view .col-right.sidebar .wp-sidebar .block-blog-categories #wp-category-list li.item, .wordpress-post-category-view .col-right.sidebar .wp-sidebar .block-blog-categories #wp-category-list li.item {
  border-bottom: 1px solid #e7e7e7;
  margin: 0;
  padding: 6px 0;
}
.wordpress-index-index .col-main .block-blog-categories, .wordpress-post-view .col-main .block-blog-categories, .wordpress-post-category-view .col-main .block-blog-categories {
  text-align: center;
}
.wordpress-index-index .col-main .block-blog-categories .block-title, .wordpress-post-view .col-main .block-blog-categories .block-title, .wordpress-post-category-view .col-main .block-blog-categories .block-title {
  border-bottom: none;
  background: #999999;
  border-radius: 2px;
  min-height: 40px;
}
.wordpress-index-index .col-main .block-blog-categories .block-title strong, .wordpress-post-view .col-main .block-blog-categories .block-title strong, .wordpress-post-category-view .col-main .block-blog-categories .block-title strong {
  color: #FFF;
  text-transform: none;
  line-height: 20px;
  font-family: "lato", Arial, sans-serif;
  font-weight: bold;
}
.wordpress-index-index .col-main .block-blog-categories .block-content, .wordpress-post-view .col-main .block-blog-categories .block-content, .wordpress-post-category-view .col-main .block-blog-categories .block-content {
  text-align: left;
}
.wordpress-index-index .col-main .block-blog-categories .block-content li.item, .wordpress-post-view .col-main .block-blog-categories .block-content li.item, .wordpress-post-category-view .col-main .block-blog-categories .block-content li.item {
  border-bottom: 1px solid #e7e7e7;
  padding: 10px 0;
  margin: 0;
}

.wordpress-index-index .blog-home .post-list {
  width: 100%;
}
.wordpress-index-index .blog-home .post-list .item {
  width: 100%;
  margin: 0 auto 10px;
  border: 1px solid #e7e7e7;
  display: inline-block;
  vertical-align: top;
  min-height: 485px;
}
@media only screen and (min-width: 600px) {
  .wordpress-index-index .blog-home .post-list .item {
    width: 47%;
  }
}
@media only screen and (min-width: 1024px) {
  .wordpress-index-index .blog-home .post-list .item {
    width: 30%;
  }
}
@media only screen and (min-width: 600px) {
  .wordpress-index-index .blog-home .post-list .item {
    margin: 1%;
  }
}
@media only screen and (min-width: 1024px) {
  .wordpress-index-index .blog-home .post-list .item {
    margin: 10px;
  }
}
.wordpress-index-index .blog-home .post-list .item .post-entry {
  margin-bottom: 0;
  float: left;
}
@media only screen and (max-width: 767px) {
  .wordpress-index-index .blog-home .post-list .item .post-entry {
    float: none;
  }
}
.wordpress-index-index .blog-home .post-list .item .featured-image {
  border: none;
  margin: 0;
  padding: 0;
}
.wordpress-index-index .blog-home .post-list .item .featured-image img {
  width: 100%;
}
.wordpress-index-index .blog-home .post-list .item .post-content {
  padding: 38px 30px 20px;
  display: inline-block;
}
.wordpress-index-index .blog-home .post-list .item .post-content .btn-read-post {
  color: #2756a4;
  font-size: 14px;
  line-height: 30px;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  outline: none;
}
.wordpress-index-index .blog-home .post-list .item .post-content h2 {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.75px;
  cursor: pointer;
}
.wordpress-index-index .blog-home .post-list .item .post-content span {
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 12px;
  color: #999999;
  line-height: 18px;
}
.wordpress-index-index .blog-home .post-list .item .post-content img {
  width: 100%;
}
.wordpress-index-index .blog-home .post-list .item .post-content .post-excerpt {
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 14px;
}
.wordpress-index-index .blog-home .pager {
  text-align: center;
  float: none;
  margin-top: 25px;
  padding-bottom: 0;
}
@media only screen and (min-width: 600px) {
  .wordpress-index-index .blog-home .pager {
    margin-top: 25px;
  }
}
@media only screen and (min-width: 1024px) {
  .wordpress-index-index .blog-home .pager {
    margin-top: 60px;
  }
}
@media only screen and (min-width: 600px) {
  .wordpress-index-index .blog-home .pager {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .wordpress-index-index .blog-home .pager {
    padding-bottom: 100px;
  }
}
.wordpress-index-index .blog-home .pager .amount, .wordpress-index-index .blog-home .pager .limiter {
  display: none;
}
.wordpress-index-index .blog-home .pager .pages {
  float: none;
  display: inline-block;
}
.wordpress-index-index .blog-home .pager .pages > strong {
  display: none;
}
@media only screen and (min-width: 600px) {
  .wordpress-index-index .blog-home .pager .pages > strong {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .wordpress-index-index .blog-home .pager .pages > strong {
    display: block;
  }
}
.wordpress-index-index .blog-home .pager .pages ol li {
  margin-bottom: 9px;
}

.post-meta {
  border-top: 1px solid #ddd;
  padding-top: 25px;
  font-style: normal;
}

.post-date {
  font-style: normal;
}

.comment .comment-when {
  font-style: italic;
}

.post-content .btn-read-post {
  color: #2756a4;
}

#comments h2 {
  font-size: 14px;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  text-transform: none;
}
#comments form .legend {
  border: 0;
  padding: 0;
  margin: 0;
}

.wordpress-post-view .post-view .post-entry, .wordpress-post-view .post-view #comments {
  border: 1px solid #e7e7e7;
  padding: 15px 40px;
}
@media only screen and (max-width: 767px) {
  .wordpress-post-view .post-view .post-entry, .wordpress-post-view .post-view #comments {
    padding: 15px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .wordpress-post-view .post-view .post-entry {
    margin-bottom: 10px;
  }
}
.wordpress-post-view .post-view .post-entry .page-title h1 {
  border-bottom: none;
  letter-spacing: -0.5px;
  margin-bottom: 0;
  line-height: 42px;
}
.wordpress-post-view .post-view .post-entry .post-date {
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #999999;
}
.wordpress-post-view .post-view .post-entry img {
  border: none;
  padding: 0;
  height: auto;
}
.wordpress-post-view .post-view .post-entry p {
  font-size: 14px;
}
.wordpress-post-view .post-view #comments .comment-list {
  margin-bottom: 30px;
}
.wordpress-post-view .post-view #comments .comment-list li {
  padding: 25px 0;
  margin-bottom: 0;
  border-bottom: 1px solid #e7e7e7;
}
.wordpress-post-view .post-view #comments .comment-list li:last-child {
  border-bottom: 2px solid #e7e7e7;
  padding-bottom: 35px;
}
.wordpress-post-view .post-view #comments .comment-meta, .wordpress-post-view .post-view #comments .comment-url, .wordpress-post-view .post-view #comments .comment-when {
  display: inline-block;
}
.wordpress-post-view .post-view #comments #respond .fieldset .legend h3 {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0.75px;
}
.wordpress-post-view .post-view #comments #respond .buttons-set {
  border-top: none;
}
.wordpress-post-view .post-view #comments #respond .buttons-set #post-the-comment {
  float: left;
  margin-left: 0;
  margin-top: 10px;
}
.wordpress-post-view .post-view #comments #respond .input-text, .wordpress-post-view .post-view #comments #respond .nice-select, .wordpress-post-view .post-view #comments #respond textarea, .wordpress-post-view .post-view #comments #respond .nice-select, .wordpress-post-view .post-view #comments #respond textarea {
  max-width: none;
  min-height: 42px;
  height: auto;
}
.wordpress-post-view .post-view #comments #respond .capcha .validation-advice {
  display: none !important;
}
.wordpress-post-view .post-navigation {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 600px) {
  .wordpress-post-view .post-navigation {
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 1024px) {
  .wordpress-post-view .post-navigation {
    margin-bottom: 25px;
  }
}
.wordpress-post-view .post-navigation .post-skips {
  position: relative;
  display: block;
  overflow: hidden;
}
.wordpress-post-view .post-navigation .post-skips a {
  color: #0057a3;
  position: relative;
}
.wordpress-post-view .post-navigation .post-skips a:before {
  position: absolute;
  left: 0;
  top: 1px;
  font-family: "beacon-icon-fontello", Verdana, Arial, sans-serif;
  font-size: 12px;
  color: #0057a3;
}
.wordpress-post-view .post-navigation .post-skips .post-skip-previous {
  float: left;
  padding-left: 10px;
}
.wordpress-post-view .post-navigation .post-skips .post-skip-previous:before {
  content: '\e828';
}
.wordpress-post-view .post-navigation .post-skips .post-skip-next {
  float: right;
  padding-right: 10px;
}
.wordpress-post-view .post-navigation .post-skips .post-skip-next:before {
  content: '\e827';
  left: auto;
  right: 0;
  top: 2px;
}
@media only screen and (max-width: 768px) {
  .wordpress-post-view .col-right.sidebar {
    margin-top: 50px;
  }
  .wordpress-post-view #comments #respond .input-text, .wordpress-post-view #comments #respond .nice-select, .wordpress-post-view #comments #respond textarea, .wordpress-post-view #comments #respond .nice-select, .wordpress-post-view #comments #respond textarea {
    width: 100%;
  }
}
.wordpress-post-view .capcha label {
  display: block;
}
.wordpress-post-view .capcha-post {
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/asphalt.jpg) no-repeat;
  color: #000000;
  display: inline-block;
  font-size: 1.5em;
  font-style: italic;
  padding: 0 7px;
  text-align: center;
  margin-left: 8px;
}
.wordpress-post-view #post-view-capcha-message {
  display: none;
  color: #d91414;
  margin-top: 5px;
}
.wordpress-post-view .capcha-confirm {
  color: #a7a9ab;
  padding: 0 0 0 11px;
  width: 175px;
  border: 1px solid #e7e7e7;
  margin-top: 2px;
}

.wordpress-post-category-view .post-content .btn-read-post:hover {
  color: #2756a4;
}
.wordpress-post-category-view .post-list h2 {
  cursor: pointer;
}
.wordpress-post-category-view .pager {
  text-align: center;
  float: none;
  margin-top: 25px;
  padding-bottom: 0;
}
@media only screen and (min-width: 600px) {
  .wordpress-post-category-view .pager {
    margin-top: 25px;
  }
}
@media only screen and (min-width: 1024px) {
  .wordpress-post-category-view .pager {
    margin-top: 60px;
  }
}
@media only screen and (min-width: 600px) {
  .wordpress-post-category-view .pager {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .wordpress-post-category-view .pager {
    padding-bottom: 100px;
  }
}
.wordpress-post-category-view .pager .amount, .wordpress-post-category-view .pager .limiter {
  display: none;
}
.wordpress-post-category-view .pager .pages {
  float: none;
  display: inline-block;
}
.wordpress-post-category-view .pager .pages > strong {
  display: none;
}
@media only screen and (min-width: 600px) {
  .wordpress-post-category-view .pager .pages > strong {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .wordpress-post-category-view .pager .pages > strong {
    display: block;
  }
}
.wordpress-post-category-view .pager .pages ol li {
  margin-bottom: 9px;
}

/* ============================================ *
 * Checkout - Layout
 * ============================================ */
.checkout-cart-index .cart-empty {
  margin-bottom: 20px;
}
.checkout-cart-index .connect-beacon {
  margin-top: 0;
  padding-top: 0;
}
.checkout-cart-index .shipping {
  display: none;
}
.checkout-cart-index .product-cart-sku {
  display: none;
}
.checkout-cart-index .product-cart-remove .link-remove {
  display: block;
  font-size: 12px;
  color: #0057a3;
}
.checkout-cart-index .product-cart-remove .link-remove:hover {
  text-decoration: none;
}
.checkout-cart-index .product-cart-info .product-name {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 0;
}
.checkout-cart-index .product-cart-info .product-name a {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 1px;
}
.checkout-cart-index .product-cart-info .item-msg,
.checkout-cart-index .product-cart-info .item-msg.notice {
  font-size: 11px;
  font-weight: normal;
  margin: 5px 0;
}
.checkout-cart-index #shopping-cart-table {
  margin-bottom: 0;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index #shopping-cart-table {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .checkout-cart-index #shopping-cart-table {
    margin-bottom: 0;
  }
}
.checkout-cart-index #shopping-cart-table th, .checkout-cart-index #shopping-cart-table td {
  border-bottom: 0;
  vertical-align: middle;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index #shopping-cart-table th, .checkout-cart-index #shopping-cart-table td {
    border-bottom: 1px solid #ededed;
  }
}
.checkout-cart-index #shopping-cart-table th.last, .checkout-cart-index #shopping-cart-table td.last {
  padding-right: 0;
}
.checkout-cart-index #shopping-cart-table th {
  text-transform: none;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 14px;
  border-top: 1px solid #EDEDED;
  color: #333333;
}
.checkout-cart-index #shopping-cart-table th.cart-image-head {
  width: 15%;
}
.checkout-cart-index #shopping-cart-table th.cart-product-name-head {
  width: 45%;
}
.checkout-cart-index #shopping-cart-table .product-cart-image a.product-image {
  display: block;
  max-width: 105px;
}
.checkout-cart-index #shopping-cart-table .product-cart-image .product-cart-remove .link-remove:hover {
  text-decoration: none;
}
.checkout-cart-index #shopping-cart-table .product-cart-price {
  text-align: left;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 14px;
}
.checkout-cart-index #shopping-cart-table .product-cart-price .discount-amount {
  display: block;
}
.checkout-cart-index #shopping-cart-table .product-cart-price .discount-amount .old-price {
  text-decoration: line-through;
  font-size: 12px;
}
.checkout-cart-index #shopping-cart-table .product-cart-price .discount-amount + .cart-price .price {
  color: #ed1c24;
}
.checkout-cart-index #shopping-cart-table .product-cart-price .cart-price {
  display: block;
}
.checkout-cart-index #shopping-cart-table .product-cart-price .cart-price .price {
  color: #000000;
  font-size: 14px;
}
.checkout-cart-index #shopping-cart-table .product-cart-info {
  padding-right: 0;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index #shopping-cart-table .product-cart-info {
    padding-right: 50px;
  }
}
.checkout-cart-index #shopping-cart-table .product-cart-total {
  text-align: left;
}
.checkout-cart-index #shopping-cart-table .product-cart-actions .cart-links {
  display: none;
}
.checkout-cart-index #shopping-cart-table tfoot tr td {
  padding: 10px 0;
}
.checkout-cart-index #shopping-cart-table tfoot .btn-update,
.checkout-cart-index #shopping-cart-table tfoot .btn-continue {
  background: #fff;
  padding: 8px 15px;
}
.checkout-cart-index #shopping-cart-table tfoot .btn-update span,
.checkout-cart-index #shopping-cart-table tfoot .btn-continue span {
  height: 40px;
  line-height: 40px;
  display: block;
  text-decoration: none;
}
.checkout-cart-index #shopping-cart-table tfoot .btn-update span span,
.checkout-cart-index #shopping-cart-table tfoot .btn-continue span span {
  color: #000000;
  text-decoration: none;
  text-transform: none;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  border: 2px solid #ababab;
  height: 40px;
  line-height: 36px;
  box-sizing: border-box;
  padding: 0 15px;
}
.checkout-cart-index #shopping-cart-table tfoot .btn-update {
  float: right;
}
.checkout-cart-index .cart-forms .block {
  border: 0;
  border-bottom: 0;
  margin-bottom: 0;
  padding: 0;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-forms .block {
    border: 1px solid #EDEDED;
  }
}
@media only screen and (min-width: 1024px) {
  .checkout-cart-index .cart-forms .block {
    border: 1px solid #EDEDED;
  }
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-forms .block {
    border-bottom: 1px solid #EDEDED;
  }
}
@media only screen and (min-width: 1024px) {
  .checkout-cart-index .cart-forms .block {
    border-bottom: 0;
  }
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-forms .block {
    padding: 0 20px;
  }
}
.checkout-cart-index .cart-forms .block .block-content {
  margin-top: 0;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dt {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 1px solid #EDEDED;
  padding: 15px 10px;
  position: relative;
  cursor: pointer;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dt:after {
  position: absolute;
  width: 17px;
  height: 17px;
  left: auto;
  right: 10px;
  top: 15px;
  margin: 0;
  border: 0;
  content: "+";
  font-family: "proximanova-thin", Verdana, Arial, sans-serif;
  font-size: 35px;
  line-height: 20px;
  text-align: center;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dt.last {
  border-bottom: 1px solid #EDEDED;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-forms .block .block-content.toggle-content dt.last {
    border-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .checkout-cart-index .cart-forms .block .block-content.toggle-content dt.last {
    border-bottom: 1px solid #EDEDED;
  }
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dt.last.current {
  border-bottom: 1px solid #EDEDED;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd {
  display: none;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd.current {
  display: none;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd .offset-left {
  padding-left: 10px;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-forms .block .block-content.toggle-content dd .offset-left {
    padding-left: 0;
  }
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd h2 {
  display: none;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd label {
  margin-bottom: 8px;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  color: #999;
  line-height: 1.2;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd .col-gift-card label {
  padding-right: 10px;
}
@media only screen and (max-width: 385px) {
  .checkout-cart-index .cart-forms .block .block-content.toggle-content dd .col-gift-card label {
    max-width: 130px;
  }
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd .discount {
  background: transparent;
  border: 0;
  padding: 15px 0;
  margin: 0;
  border-bottom: 1px solid #EDEDED;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd .discount .button-wrapper {
  display: inline-block;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd .discount .button-wrapper > button {
  float: left;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd .giftcard {
  background: transparent;
  border: 0;
  padding: 15px 0;
  margin: 0;
  border-bottom: 1px solid #EDEDED;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-forms .block .block-content.toggle-content dd .giftcard {
    border-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .checkout-cart-index .cart-forms .block .block-content.toggle-content dd .giftcard {
    border-bottom: 1px solid #EDEDED;
  }
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd .giftcard .check-gc-status {
  color: #0057a3;
  background: transparent;
  border-radius: 0;
  text-decoration: none;
  margin-top: 0;
  line-height: 40px;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-forms .block .block-content.toggle-content dd .giftcard .check-gc-status {
    margin-top: 15px;
  }
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd .giftcard .check-gc-status span {
  line-height: 20px;
  height: auto;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd .giftcard .check-gc-status span span {
  color: #0057a3;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 14px;
  text-decoration: none;
  line-height: 20px;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content dd .giftcard .button-wrapper {
  margin-top: 0;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-forms .block .block-content.toggle-content dd .giftcard .button-wrapper {
    margin-top: 15px;
  }
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content.accordion-open dt.current:after {
  content: "-";
  line-height: 9px;
  font-size: 50px;
}
.checkout-cart-index .cart-forms .block .block-content.toggle-content.accordion-open dd.current {
  display: block;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals {
  border: 0;
  border-top: 0;
  padding: 20px 0 0;
  margin-bottom: 15px;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-totals-wrapper .cart-totals {
    border: 1px solid #EDEDED;
  }
}
@media only screen and (min-width: 1024px) {
  .checkout-cart-index .cart-totals-wrapper .cart-totals {
    border: 1px solid #EDEDED;
  }
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-totals-wrapper .cart-totals {
    border-top: 1px solid #EDEDED;
  }
}
@media only screen and (min-width: 1024px) {
  .checkout-cart-index .cart-totals-wrapper .cart-totals {
    border-top: 0;
  }
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .cart-totals-wrapper .cart-totals {
    padding: 15px 20px;
  }
}
.checkout-cart-index .cart-totals-wrapper .cart-totals .cart-message {
  background: #eee;
  font-size: 12px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  text-align: center;
  padding: 15px 5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals #shopping-cart-totals-table {
  text-transform: none;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 0;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals #shopping-cart-totals-table strong {
  font-size: 18px;
  font-family: "proximanova-bold", Verdana, Arial, sans-serif;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals #shopping-cart-totals-table strong .price {
  font-size: 18px;
  font-family: "proximanova-bold", Verdana, Arial, sans-serif;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals #shopping-cart-totals-table .summary-details td {
  padding: 0;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals #shopping-cart-totals-table .summary-details strong {
  font-size: 14px;
  font-weight: normal;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals #shopping-cart-totals-table .summary-details .summary-details-inner {
  border: 1px solid #EDEDED;
  display: inline-block;
  padding: 2px 10px;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals #shopping-cart-totals-table tr:last-child td {
  padding-bottom: 0;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals #shopping-cart-totals-table tfoot {
  border: 0;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals #shopping-cart-totals-table .summary-collapse:before {
  content: "+";
  font-family: "proximanova-thin", Verdana, Arial, sans-serif;
  border: 1px solid #EDEDED;
  display: inline-block;
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
}
.checkout-cart-index .cart-totals-wrapper .cart-totals #shopping-cart-totals-table .show-details .summary-collapse:before {
  content: "-";
  line-height: 12px;
}
.checkout-cart-index .cart-totals-wrapper .checkout-types.bottom {
  float: none;
}
.checkout-cart-index .cart-totals-wrapper .checkout-types.bottom li {
  margin-bottom: 0;
}
.checkout-cart-index .cart-totals-wrapper .checkout-types.bottom .btn-proceed-checkout {
  display: block;
  width: 100%;
}
.checkout-cart-index .crosssell-sc,
.checkout-cart-index .crosssell {
  display: block;
  position: relative;
  float: left;
  width: 50%;
  padding-right: 30px;
  border-right: 1px solid #e7e7e7;
}
@media only screen and (min-width: 600px) {
  .checkout-cart-index .crosssell-sc,
  .checkout-cart-index .crosssell {
    display: block;
  }
}
.checkout-cart-index .crosssell-sc > h2,
.checkout-cart-index .crosssell > h2 {
  font-size: 16px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.4;
  padding: 0 0 15px;
  border-bottom: 1px solid #e7e7e7;
  margin: 0 0 20px;
}
.checkout-cart-index .crosssell-sc .products-grid,
.checkout-cart-index .crosssell .products-grid {
  float: left;
  width: 100%;
  position: static;
  margin: 0 0 30px;
}
.checkout-cart-index .crosssell-sc .products-grid .product-image,
.checkout-cart-index .crosssell .products-grid .product-image {
  margin-bottom: 0;
}
.checkout-cart-index .crosssell-sc .products-grid .product-name,
.checkout-cart-index .crosssell .products-grid .product-name {
  margin: 23px 0 18px;
  height: 68px;
  overflow: hidden;
}
.checkout-cart-index .crosssell-sc .products-grid .owl-wrapper-outer,
.checkout-cart-index .crosssell .products-grid .owl-wrapper-outer {
  float: left;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.checkout-cart-index .crosssell-sc .products-grid .owl-wrapper-outer .owl-item,
.checkout-cart-index .crosssell .products-grid .owl-wrapper-outer .owl-item {
  float: left;
  text-align: center;
}
.checkout-cart-index .crosssell-sc .products-grid .owl-wrapper-outer .owl-item li,
.checkout-cart-index .crosssell .products-grid .owl-wrapper-outer .owl-item li {
  float: left;
  width: 100%;
  padding: 0 15px;
}
.checkout-cart-index .crosssell-sc .products-grid .owl-wrapper-outer .owl-item li .products-detailsbox,
.checkout-cart-index .crosssell .products-grid .owl-wrapper-outer .owl-item li .products-detailsbox {
  padding-bottom: 70px;
  position: relative;
  max-height: 178px;
}
.checkout-cart-index .crosssell-sc .products-grid .owl-wrapper-outer .owl-item li .products-detailsbox .row-button,
.checkout-cart-index .crosssell .products-grid .owl-wrapper-outer .owl-item li .products-detailsbox .row-button {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}
.checkout-cart-index .crosssell-sc .products-grid .owl-controls .owl-buttons,
.checkout-cart-index .crosssell .products-grid .owl-controls .owl-buttons {
  position: absolute;
  right: 30px;
  top: -6px;
  width: 92px;
}
.checkout-cart-index .crosssell-sc .products-grid .owl-controls .owl-buttons .owl-prev,
.checkout-cart-index .crosssell-sc .products-grid .owl-controls .owl-buttons .owl-next,
.checkout-cart-index .crosssell .products-grid .owl-controls .owl-buttons .owl-prev,
.checkout-cart-index .crosssell .products-grid .owl-controls .owl-buttons .owl-next {
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/slide-arrow-02.png) no-repeat 2px 1px;
  width: 41px;
  height: 41px;
  float: left;
  text-indent: -10000em;
  cursor: pointer;
}
.checkout-cart-index .crosssell-sc .products-grid .owl-controls .owl-buttons .owl-next,
.checkout-cart-index .crosssell .products-grid .owl-controls .owl-buttons .owl-next {
  float: right;
  background-position: 4px -68px;
}
@media screen and (max-width: 1023px) {
  .checkout-cart-index .crosssell-sc,
  .checkout-cart-index .crosssell {
    width: 100%;
    padding-right: 0;
    border: none;
  }
  .checkout-cart-index .crosssell-sc .products-grid .product-name,
  .checkout-cart-index .crosssell .products-grid .product-name {
    height: auto;
    overflow: inherit;
  }
  .checkout-cart-index .crosssell-sc .products-grid .owl-wrapper-outer .owl-item li .products-detailsbox,
  .checkout-cart-index .crosssell .products-grid .owl-wrapper-outer .owl-item li .products-detailsbox {
    max-height: none;
    padding-bottom: 50px;
  }
  .checkout-cart-index .crosssell-sc .products-grid .owl-controls .owl-buttons,
  .checkout-cart-index .crosssell .products-grid .owl-controls .owl-buttons {
    right: 0;
  }
}
.checkout-cart-index .crosssell {
  float: right;
  clear: right;
  width: 34%;
  padding: 0 0 0 20px;
  margin: 30px 0 0;
  border-right: none;
}
.checkout-cart-index .crosssell .products-grid .owl-controls .owl-buttons {
  right: 0;
}

.cart-table {
  float: left;
  width: 66%;
}

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

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

.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  padding: 10px;
  background-color: transparent;
  border: 1px solid #EDEDED;
  border-top: 0;
}

.cart-table,
.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  margin-bottom: 10px;
}
@media only screen and (min-width: 600px) {
  .cart-table,
  .cart-totals,
  .cart-forms .discount,
  .cart-forms .giftcard,
  .cart-forms .shipping {
    margin-bottom: 20px;
  }
}

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

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

  .display-both-prices .cart-forms,
  .display-both-prices .cart-totals-wrapper,
  .display-both-prices .crosssell,
  .display-single-price .cart-forms,
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    float: none;
    width: 100%;
  }
}
.display-single-price:after {
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Checkout - Cart
 * ============================================ */
.cart {
  margin-bottom: 40px;
}
@media only screen and (min-width: 600px) {
  .cart {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .cart {
    margin-bottom: 40px;
  }
}
.cart .page-title {
  margin-bottom: 0;
  border-bottom: 0;
}
.cart .page-title:after {
  content: '';
  display: table;
  clear: both;
}
.cart .page-title h1 {
  float: left;
  border-bottom: none;
  margin-bottom: 0;
  margin-right: 10px;
}
.cart .page-title.title-buttons .checkout-types {
  display: none;
  float: none;
  width: 34%;
  padding-left: 20px;
}
@media only screen and (min-width: 600px) {
  .cart .page-title.title-buttons .checkout-types {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .cart .page-title.title-buttons .checkout-types {
    display: block;
  }
}
@media only screen and (min-width: 600px) {
  .cart .page-title.title-buttons .checkout-types {
    float: none;
  }
}
@media only screen and (min-width: 1024px) {
  .cart .page-title.title-buttons .checkout-types {
    float: right;
  }
}
.cart .page-title.title-buttons .checkout-types li {
  display: block;
  margin-bottom: 0;
}
.cart .page-title.title-buttons .checkout-types li .button {
  display: block;
  width: 100%;
  margin-top: 15px;
}

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

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

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

  .checkout-types li {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 599px) {
  .btn-checkout {
    width: 100%;
  }
}
.cart-table {
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
}
.cart-table th,
.cart-table td,
.cart-table tbody td {
  border-bottom: none;
  vertical-align: top;
}
.cart-table h2 {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}
.cart-table thead th,
.cart-table tbody td {
  background-color: transparent;
  padding: 10px 15px;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
}
.cart-table tr {
  border-bottom: 1px solid #C0C0C0;
}
.cart-table tfoot tr {
  background: none;
}
.cart-table tfoot tr > td:after {
  content: '';
  display: table;
  clear: both;
}
.cart-table span.or {
  font-size: 9px;
  padding: 0 5px;
  text-transform: uppercase;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.cart-table .product-cart-image .product-cart-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: "AustinItalic", 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 #000;
  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 #000;
  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;
  color: #0057a3;
  font-size: 12px;
  text-transform: none;
}
.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: 40px;
  border-color: #e7e7e7;
  border-radius: 3px;
  margin-bottom: 5px;
  text-align: center;
  width: 46px;
  padding: 0;
  font-family: "proximanova-light", Verdana, Arial, sans-serif;
  color: #999;
}
.cart-table .product-cart-actions .button, .cart-table .product-cart-actions .button:hover, .cart-table .product-cart-actions .button:active, .cart-table .product-cart-actions .button.nice-select.open, .cart-table .product-cart-actions .button:focus {
  margin-bottom: 5px;
  padding: 0;
  background: transparent;
}
.cart-table .product-cart-actions .button span span, .cart-table .product-cart-actions .button:hover span span, .cart-table .product-cart-actions .button:active span span, .cart-table .product-cart-actions .button.nice-select.open span span, .cart-table .product-cart-actions .button:focus span span {
  color: #0057a3;
  display: block;
  font-size: 12px;
  text-transform: none;
}
.cart-table .item-options {
  padding-left: 15px;
}

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

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

@media only screen and (max-width: 770px) {
  .shipping .shipping-form .form-list > li {
    width: 100%;
    float: none;
  }
  .shipping .shipping-form .form-list > li label {
    display: block;
  }
  .shipping .shipping-form .form-list > li input,
  .shipping .shipping-form .form-list > li select {
    width: 100%;
  }
}
.cart .cart-totals {
  text-align: right;
}
.cart .cart-totals:after {
  content: '';
  display: table;
  clear: both;
}
.cart .cart-totals table {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
  width: 100%;
}
.cart .cart-totals table td {
  padding: 2px 10px;
}
.cart .cart-totals table td:first-child {
  padding-right: 10px;
  min-width: 120px;
}
.cart .cart-totals table tbody tr:last-child td,
.cart .cart-totals table tbody tr:last-child th {
  padding-bottom: 10px;
}
.cart .cart-totals table tfoot {
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
}
.cart .cart-totals table tfoot td {
  font-size: 24px;
  padding: 2px 5px;
  vertical-align: top;
}
.cart .cart-totals table tfoot strong span,
.cart .cart-totals table tfoot span.price {
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
}
.cart .cart-totals table tfoot strong {
  font-weight: 400;
}

@media only screen and (max-width: 600px) {
  .cart-totals {
    text-align: right;
  }
}
@media only screen and (max-width: 771px) {
  .cart .cart-totals table tfoot td {
    font-size: 18px;
  }

  .cart-totals-wrapper .cart-totals {
    border: 0;
  }
}
.discount-form:after,
#giftcard-form:after {
  content: '';
  display: table;
  clear: both;
}

#discount-coupon-form,
.cart .giftcard {
  width: 100%;
}
#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 {
  vertical-align: middle;
  float: right;
}
@media only screen and (min-width: 600px) {
  #discount-coupon-form .button-wrapper,
  .cart .giftcard .button-wrapper {
    float: none;
  }
}
#discount-coupon-form .button-wrapper > button,
.cart .giftcard .button-wrapper > button {
  float: right;
  padding: 0;
}
#discount-coupon-form .button-wrapper > button span,
.cart .giftcard .button-wrapper > button span {
  height: 40px;
  line-height: 40px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 14px;
}
#discount-coupon-form .button-wrapper > button span span,
.cart .giftcard .button-wrapper > button span span {
  background: #999;
  height: 40px;
  padding: 0 25px;
  text-transform: none;
  text-decoration: none;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 14px;
  text-align: center;
  color: #fff;
  border-radius: 3px;
}
#discount-coupon-form .button-wrapper > button:hover span span,
.cart .giftcard .button-wrapper > button:hover span span {
  background: #ababab;
}
#discount-coupon-form .button-wrapper > button.cancel-coupon,
.cart .giftcard .button-wrapper > button.cancel-coupon {
  background: none;
  margin-top: 5px;
  margin-right: 17px;
}
#discount-coupon-form .button-wrapper > button.cancel-coupon > span,
.cart .giftcard .button-wrapper > button.cancel-coupon > span {
  height: auto;
  line-height: 20px;
}
#discount-coupon-form .button-wrapper > button.cancel-coupon > span span,
.cart .giftcard .button-wrapper > button.cancel-coupon > span span {
  height: auto;
  padding: 0;
  color: #0057a3;
  background: none;
  line-height: 20px;
}
#discount-coupon-form .button-wrapper > button.cancel-coupon:hover span,
.cart .giftcard .button-wrapper > button.cancel-coupon:hover span {
  text-decoration: underline;
}
#discount-coupon-form .input-text, #discount-coupon-form .nice-select, #discount-coupon-form textarea,
.cart .giftcard .input-text,
.cart .giftcard .nice-select,
.cart .giftcard textarea {
  border-radius: 3px;
  height: 40px;
  margin: 0;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

@media only screen and (min-width: 600px) {
  #discount-coupon-form .discount-form .button-wrapper {
    float: right;
  }
}
@media only screen and (min-width: 770px) and (max-width: 1025px) {
  #discount-coupon-form .discount-form .input-text, #discount-coupon-form .discount-form .nice-select, #discount-coupon-form .discount-form textarea {
    width: 180px;
  }
}

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

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

/* ============================================ *
 * Checkout - Cart Cross sell
 * ============================================ */
/*.crosssell {
    h2 {
        color: $c-blue;
    }

    .item a.product-image {
        width: auto;
        float: left;
    }
}*/
/* Change the layout to 2 columns at a breakpoint that is higher than a 3 columns layout would normally break */
/*@include bp(max-width, $bp-large) {
    .crosssell {
        .products-grid > li:nth-child(even),
        .products-grid > li:nth-child(3n),
        .products-grid > li {
            width: percentage(210 / 440);
            margin-right: percentage(20 / 440);
        }

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

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

        !* Undo three-column config *!
        .products-grid > li:nth-child(3n+1) {
            clear: none;
        }
    }
}*/
@media only screen and (max-width: 599px) {
  .cart-table .cart-tax-total:after {
    right: -9px;
  }
  .cart-table .cart-tax-total.cart-tax-total-expanded:after {
    right: -13px;
  }
}
/*@include bp(max-width, 320px) {
    .crosssell {
        ul {
            .item {
                padding: 0 0px 40px;
            }

            .product-details .crosssell-actions {
                padding: 0 5px;
            }
        }
    }
}*/
.cms-instagram .std p {
  display: none;
}
.cms-instagram .entry-edit-head {
  text-align: center;
  margin-bottom: 40px;
}
.cms-instagram .entry-edit-head h1 {
  font-family: "proximanova-thin", Verdana, Arial, sans-serif;
  font-size: 36px;
  line-height: 34px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media only screen and (min-width: 600px) {
  .cms-instagram .entry-edit-head h1 {
    font-size: 48px;
  }
}
@media only screen and (min-width: 1024px) {
  .cms-instagram .entry-edit-head h1 {
    font-size: 48px;
  }
}
.cms-instagram .entry-edit-head h1 span {
  font-family: "AustinItalic";
  letter-spacing: -0.25px;
  line-height: 31px;
  text-transform: none;
}
.cms-instagram .entry-edit-head > p span {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  border-bottom: 1px solid #e7e7e7;
}
@media only screen and (max-width: 767px) {
  .cms-instagram .entry-edit .hor-scroll #photos-wrap {
    margin-left: 0;
  }
}
.cms-instagram .entry-edit .hor-scroll #photos-wrap .selected-items .img-wrapper img {
  padding: 0;
  width: 100%;
  height: 100%;
}
.cms-instagram .entry-edit .hor-scroll #photos-wrap .content-bottom .user-instagram {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 16px;
  color: #000000;
}
.cms-instagram .entry-edit .hor-scroll #photos-wrap .content-bottom .caption-image {
  color: #666;
  font-size: 14px;
}
.cms-instagram .entry-edit .hor-scroll #photos-wrap .content-bottom .time-ago {
  text-transform: none;
  font-size: 14px;
}
.cms-instagram .entry-edit .hor-scroll #photos-wrap .content-bottom .btn-info {
  color: #FFF;
  background: #999;
  font-size: 14px;
  width: 185px;
  border-radius: 2px;
  text-transform: capitalize;
  padding: 10px 20px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-weight: normal;
}
.cms-instagram .entry-edit .hor-scroll #photos-wrap .content-bottom .btn-info:hover {
  background: #ababab;
  text-decoration: none;
}
.cms-instagram .entry-edit .hor-scroll #photos-wrap ~ .paginate .view-more {
  background: #999;
  text-transform: none;
  color: #FFF;
  text-shadow: none;
  border: none;
  border-radius: 2px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  outline: none;
  font-size: 14px;
}
.cms-instagram .entry-edit .hor-scroll #photos-wrap ~ .paginate .view-more.btn-loadding {
  background: none !important;
  box-shadow: none !important;
}
@media only screen and (max-width: 767px) {
  .cms-instagram .popup-instagram {
    width: auto !important;
  }
}
.cms-instagram .popup-instagram .user-instagram {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  color: #000000;
  font-size: 16px;
}
@media only screen and (max-width: 479px) {
  .cms-instagram .popup-instagram .user-instagram {
    padding-right: 100px;
    margin-bottom: 20px;
  }
}
.cms-instagram .popup-instagram .caption-image {
  color: #666;
  font-size: 32px;
  font-family: "proximanova-thin", Verdana, Arial, sans-serif;
  line-height: 40px;
  letter-spacing: -0.5px;
}
.cms-instagram .popup-instagram .time-ago {
  text-align: center;
  border-top: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
}
.cms-instagram .popup-instagram .time-ago span {
  position: relative;
  font-size: 14px;
}
.cms-instagram .popup-instagram .time-ago span:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/icon-instagram.png) no-repeat;
  width: 25px;
  height: 25px;
  margin: 0 -25px;
}
.cms-instagram .popup-instagram .btn-info {
  color: #FFF;
  background: #999;
  font-size: 14px;
  width: 185px;
  border-radius: 2px;
  text-transform: capitalize;
  padding: 10px 20px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-weight: normal;
}
.cms-instagram .popup-instagram .btn-info:hover {
  background: #ababab;
  text-decoration: none;
}
.cms-instagram .popup-instagram .share-buttons li.fb a {
  position: relative;
  text-indent: 0;
  width: 21px;
}
.cms-instagram .popup-instagram .share-buttons li.fb a:before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "beacon-icon-fontello", Verdana, Arial, sans-serif;
  content: "\e807";
  display: block;
  font-size: 15px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 1px solid #dddddd;
}
.cms-instagram .popup-instagram .share-buttons li.tw a {
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/instagram-share.png) no-repeat;
  width: 21px;
}
.cms-instagram .popup-instagram .share-buttons li.email-friend a {
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/instagram-email.png) no-repeat;
  background-position: 0 -1px;
}
.cms-instagram .fancybox-close {
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/close-popup-instagram.png) no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  width: 98px;
  height: 58px;
  margin: 45px 30px;
}
.cms-instagram .fancybox-wrap {
  width: 100% !important;
  opacity: 1 !important;
}
@media only screen and (min-width: 600px) {
  .cms-instagram .fancybox-wrap {
    width: auto !important;
  }
}
@media only screen and (min-width: 1024px) {
  .cms-instagram .fancybox-wrap {
    width: auto !important;
  }
}

#confirmOverlay {
  width: 100%;
  height: 100%;
  position: fixed;
  display: table;
  margin: 0 auto;
  top: 0;
  left: 0;
  z-index: 100;
}
#confirmOverlay #hideDiv {
  background: #FFF;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.top-cart #am_minicart_container .block-content {
  background: none;
  position: relative;
  right: 0;
  top: 0px;
  width: auto;
}

#am-block-related {
  display: none;
  text-align: left;
  margin: 0;
}
@media only screen and (min-width: 600px) {
  #am-block-related {
    display: block;
  }
}
#am-block-related .block-title {
  margin-bottom: 7px;
}
#am-block-related tr {
  border-top: 1px solid #e7e7e7;
}
#am-block-related .price-box > .regular-price {
  display: block !important;
  margin-left: 10px;
}

#confirmBox {
  background: #FFF !important;
  -moz-box-shadow: 0 0 20px 7px #e7e7e7;
  -webkit-box-shadow: 0 0 20px 7px #e7e7e7;
  box-shadow: 0 0 20px 7px #e7e7e7;
  width: 300px !important;
  text-align: center;
  margin: 0 auto !important;
  padding: 40px 41px 40px 41px;
  padding: 20px 20px 20px 20px;
  z-index: 100;
  display: table;
  position: relative;
  left: 0 !important;
  top: 30px !important;
}
@media only screen and (min-width: 600px) {
  #confirmBox {
    width: 560px !important;
  }
}
@media only screen and (min-width: 1024px) {
  #confirmBox {
    width: 650px !important;
  }
}
@media only screen and (min-width: 600px) {
  #confirmBox {
    padding: 40px 41px 40px 41px;
  }
}
@media only screen and (min-width: 600px) {
  #confirmBox {
    top: 75px !important;
  }
}

#confirmBox h1 {
  display: none;
  background-color: transparent !important;
}

#confirmBox h1,
#confirmBox p {
  padding: 18px 5px;
  margin: 0;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
  color: #666;
}

#confirmBox h1 {
  letter-spacing: 0.3px;
  color: #888;
  background-image: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/css/main-texture.png);
  background-color: #f4f4f4;
}

#confirmBox p {
  background: none;
  font-size: 16px;
  line-height: 1.4;
  padding-top: 5px;
}

#amcart-count {
  font: 26px/1 'Cuprum','Lucida Sans Unicode','Lucida Grande',sans-serif;
  color: #666666;
  background: none;
  font-size: 16px;
  line-height: 1.4;
  padding-top: 5px;
  display: none;
}
#amcart-count + p {
  display: none;
}

#am-input {
  width: 25px;
  height: 30px;
  text-align: center;
  font: 15px 'Cuprum','Lucida Sans Unicode','Lucida Grande',sans-serif;
}

#am-input:focus {
  border-color: #ffff99;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
  outline: 0 none;
}

.focus {
  border-color: #ffff99;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
  outline: 0 none;
}

#confirmButtons {
  display: none;
  padding: 5px 0 15px;
  text-align: center;
  clear: both;
}

#confirmButtons button {
  display: inline-block;
  position: relative;
  color: white;
  height: 33px;
  font: 17px/33px 'Cuprum','Lucida Sans Unicode', 'Lucida Grande', sans-serif;
  width: 140px;
  overflow: hidden;
  margin-right: 15px;
  padding: 0 30px 0 30px;
  text-decoration: none;
  border-radius: 7px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25), inset 0 0 3px rgba(255, 255, 255, 0.89);
  -moz-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25), inset 0 0 3px rgba(255, 255, 255, 0.89);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25), inset 0 0 3px rgba(255, 255, 255, 0.89);
}

#confirmBox button:last-child {
  margin-right: 0;
}

.amcart-options form {
  text-align: left;
  font: 16px/1 'Cuprum','Lucida Sans Unicode', 'Lucida Grande', sans-serif;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.6);
  color: #666;
}

.amcart-options form dd {
  border-bottom: 1px solid white;
  margin: 0 0 5px 10px;
  padding: 5px 0 10px 0;
}

.amcart-options form dd input {
  padding: 6px 0 4px 0px;
  border: 1px solid #cecece;
  background: #F6F6f6;
}

.amcart-options form dd select {
  border: 1px solid #cecece;
  background: #F6F6f6;
}

.amcart-options form dd textarea {
  /* = ╨ú╨▒╨╕╤Ç╨░╨╡╨╝ ╤ü╨║╤Ç╨╛╨╗╨╗ */
  overflow: auto;
  /* = ╨ú╨▒╨╕╤Ç╨░╨╡╨╝ ╤â╨▓╨╡╨╗╨╕╤ç╨╡╨╜╨╕╨╡ */
  resize: none;
  width: 300px;
  height: 50px;
  /* = ╨ö╨╛╨▒╨░╨▓╨╕╨╝ ╤ä╨╛╨╜, ╤Ç╨░╨╝╨║╤â, ╨╛╤é╤ü╤é╤â╨┐*/
  background: #f6f6f6;
  border: 1px solid #cecece;
  border-radius: 8px 0 0 0;
  padding: 8px 0 8px 10px;
}

.header-amcart {
  content: '';
  display: table;
  clear: both;
  border-bottom: 1px solid #e7e7e7;
  width: 100%;
  padding-bottom: 15px;
}
.header-amcart .header-amcart-right {
  display: none;
}
@media only screen and (min-width: 600px) {
  .header-amcart .header-amcart-right {
    display: block;
  }
}
.header-amcart .header-amcart-right a.button {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
}

.header-amcart-left {
  line-height: 38px;
  font-size: 16px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  float: left;
}
.header-amcart-left [class*="icon-"] {
  margin-right: 8px;
  margin-top: -2px;
}

.am-btn-right:hover {
  text-decoration: none;
  border-bottom: 1px solid #000000;
}

.header-amcart-right {
  float: none;
  text-align: center;
  font-size: 14px;
}
@media only screen and (min-width: 600px) {
  .header-amcart-right {
    float: right;
  }
}
@media only screen and (min-width: 600px) {
  .header-amcart-right {
    text-align: right;
  }
}
.header-amcart-right a.button {
  font-size: 15px;
  text-transform: uppercase;
  color: #f2f2f2;
  font-family: "proximanova-bold", Verdana, Arial, sans-serif;
  line-height: 22px;
  margin-left: 0;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  .header-amcart-right a.button {
    margin-left: 7px;
  }
}
@media only screen and (min-width: 600px) {
  .header-amcart-right a.button {
    width: auto;
  }
}

.footer-amcart {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-top: 15px;
  border-top: 1px solid #e7e7e7;
}
@media only screen and (min-width: 600px) {
  .footer-amcart {
    padding-top: 20px;
  }
}
.footer-amcart .separator {
  display: block;
  margin: 6px 0 9px;
}
@media only screen and (min-width: 600px) {
  .footer-amcart .separator {
    display: inline-block;
  }
}
@media only screen and (min-width: 600px) {
  .footer-amcart .separator {
    margin: 0;
  }
}

#messageBox {
  overflow: visible !important;
  position: relative;
  padding-bottom: 113px;
  max-height: none !important;
}
@media only screen and (min-width: 600px) {
  #messageBox {
    padding-bottom: 57px;
  }
}
#messageBox .add-to-cart {
  overflow: visible !important;
}

#messageBox dt label {
  color: #2F2F2F;
  font-weight: bold;
}

#messageBox div.price-box {
  margin-bottom: 0px;
  margin-top: 5px;
  margin-left: 10px;
}

#messageBox div.price-box p {
  margin: 0px;
  padding: 0px;
}

#messageBox .required em {
  color: red;
  margin-right: 3px;
}

#amimg_container {
  position: absolute;
  top: 340px;
  left: 50%;
  z-index: 9999;
}

#amprogress {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: none;
  z-index: 100000;
}

#messageBox .product {
  margin-left: 0px;
  padding-top: 5px;
}

#messageBox td .price-box p {
  font-size: 13px;
}

#messageBox td {
  text-align: left;
  padding: 12px 0px 12px 0;
  vertical-align: top;
}
@media only screen and (min-width: 600px) {
  #messageBox td {
    padding: 20px 0px 20px 20px;
  }
}
#messageBox td + td {
  text-align: right;
}
#messageBox td .product-name,
#messageBox td .price-box,
#messageBox td .qty-total {
  margin: 4px 0 5px 115px;
  padding: 0;
}
@media only screen and (min-width: 600px) {
  #messageBox td .product-name,
  #messageBox td .price-box,
  #messageBox td .qty-total {
    margin: 5px 0 5px 115px;
  }
}
#messageBox td .product-image {
  float: left;
  margin-right: 10px;
}
#messageBox td .product-name {
  color: #000;
  font-size: 12px;
  line-height: 16px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  padding: 0;
}
@media only screen and (min-width: 600px) {
  #messageBox td .product-name {
    line-height: 14px;
  }
}
#messageBox td .price-box .price {
  font-size: 14px;
}
#messageBox td .price-box,
#messageBox td .qty-total {
  font-size: 14px;
  color: #000;
  margin-top: 17px;
}
#messageBox td .special-price {
  display: none;
}
#messageBox td .special-attribute-price {
  display: inline-block;
  vertical-align: top;
}
#messageBox td .special-attribute-price .dinkus-small {
  display: none;
}
#messageBox td .special-attribute-price span.price {
  float: left;
  font-weight: bold;
}
#messageBox td .special-attribute-price .promo-text-wrapper p {
  display: block;
}
#messageBox td .special-attribute-price .promo-text-wrapper p.you-save {
  color: #ed1c24;
}
#messageBox td .price-box {
  margin: 0;
  display: inline-block;
}
#messageBox td .price-box > .regular-price {
  display: none;
}
#messageBox td .price-box .old-price {
  display: none;
}
#messageBox td .price-box .price {
  color: #000;
}
#messageBox td .qty-total {
  margin-top: 13px;
}
@media only screen and (min-width: 600px) {
  #messageBox td .qty-total {
    margin-top: 17px;
  }
}
#messageBox td .nice-select {
  font-size: 16px;
  color: #999;
  font-family: "proximanova-light", Verdana, Arial, sans-serif;
  width: 70px;
}
#messageBox td .qty-box {
  content: '';
  display: table;
  clear: both;
  display: inline-block;
  margin-right: 11px;
}
#messageBox td .add-to-cart-buttons {
  display: inline;
  vertical-align: top;
}
#messageBox td .add-to-cart-buttons .btn-cart {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  vertical-align: top;
}
#messageBox td .add-to-cart-wrapper .add-to-cart .btn-cart {
  padding-left: 21px;
  padding-right: 21px;
}

#am-block-related table {
  table-layout: fixed;
  width: 398px;
  word-wrap: break-word;
}

div.product-details {
  position: relative;
  bottom: 3px;
}

#messageBox p.block-related-p {
  border-bottom: 1px solid #C4C1BC;
}

#am-qty-input {
  margin: 5px;
}

#am-qty {
  display: none;
  margin: 5px;
}

#am-qty-button-up {
  border: black 1px;
}

#am-qty-button-down {
  border: black 1px;
}

#am-qty-button-update {
  position: relative;
  top: 30px;
  left: -15px;
}

#am_minicart_container {
  background: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/css/header_bg.jpg") repeat-x scroll left bottom #F5F5F5;
  border-radius: 2px 2px 2px 2px;
  color: #555555;
  padding: 8px;
  position: absolute;
  text-align: left;
  right: 0;
  width: 234px;
  z-index: 3000;
  overflow: hidden;
  /*box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset,0 0 8px rgba(82, 168, 236, 0.6);*/
  -webkit-box-shadow: 1px 1px 1px #D3D3D3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(color=#D3D3D3,direction=125,strength=1)";
  box-shadow: 1px 1px 1px #D3D3D3;
}

#am_minicart_container li {
  width: 220px;
  padding: 5px;
  background: none;
}

#am_minicart_container button.button span {
  background-color: #75b2d3;
  border: none;
  border-radius: 2px 2px 2px 2px;
}

#am_minicart_container button.button {
  margin: 5px;
}

#am_minicart_container button.button:hover span {
  background-color: #78bdda;
}

#am_minicart_container li:hover {
  background-color: white;
}

#am_minicart_container a.btn-remove, a.btn-edit {
  float: right;
  margin: 1px 0 2px 5px;
}

@media screen and (max-width: 565px) {
  #confirmBox button:last-child {
    margin-right: 15px;
    margin-top: 5px;
  }
}
.product-options {
  margin-bottom: 30px;
}

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

.giftcard-form .availability,
.giftcard-send-form {
  display: none;
}

.giftcard-form {
  position: relative;
}
.giftcard-form .price-box {
  position: absolute;
  top: -105px;
  margin: 0;
  left: 0;
}
@media only screen and (min-width: 600px) {
  .giftcard-form .price-box {
    top: -80px;
  }
}

#giftcard_amount_input {
  width: 100px;
}

#giftcard_amount_box {
  display: inline-block;
  margin: 0;
  padding: 0;
}
#giftcard_amount_box p {
  color: #999;
  display: inline-block;
  margin: 0;
}

.giftcard-amount-form li .input-box > * {
  vertical-align: middle;
}
.giftcard-amount-form li label,
.giftcard-amount-form li .input-box > span {
  margin-right: 5px;
}

.clr-available-status {
  display: none;
  height: 55px;
  text-align: center;
  vertical-align: middle;
  width: 100%;
  margin: 10px 0 0;
}
.clr-available-status span {
  display: none;
  padding: 0 40px;
  line-height: 1.25;
}

.product-view .chk-availability {
  width: calc(50% - 35px) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 42px;
  box-sizing: border-box;
  font-family: "proximanova-bold", Verdana, Arial, sans-serif;
}
.product-view .chk-availability + .add-to-cart-buttons {
  display: none;
  margin-right: 0;
  width: calc(50% - 35px);
}
@media only screen and (min-width: 600px) {
  .product-view .chk-availability + .add-to-cart-buttons {
    margin-right: 0;
  }
}
.product-view .chk-availability + .add-to-cart-buttons .btn-cart {
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.product-view .available .chk-availability {
  display: none;
}
.product-view .available .chk-availability + .add-to-cart-buttons {
  display: inline-block;
}
.product-view .available .clr-available-status {
  display: table;
  background: #d6f1c9;
}
.product-view .available .clr-available-status .available {
  display: table-cell;
  color: #4b9427;
  vertical-align: middle;
}
.product-view .out-of-stock .chk-availability {
  display: inline-block;
}
.product-view .out-of-stock .chk-availability + .add-to-cart-buttons {
  display: none;
}
.product-view .out-of-stock .clr-available-status {
  display: table;
  background: #f7c2c1;
}
.product-view .out-of-stock .clr-available-status .out-of-stock {
  display: table-cell;
  color: #e22723;
  vertical-align: middle;
}

.postcode.input-text, .postcode.nice-select, textarea.postcode {
  width: calc(50% - 50px);
  margin-right: 5px;
}

.has-clearance {
  width: 100%;
}
.has-clearance.add-to-box {
  float: none !important;
}
.has-clearance + .promo-message {
  margin-top: 10px;
}
.has-clearance .waiting-img {
  display: none !important;
  margin: 5px 0 0 10px;
}
.has-clearance.ajax-loading .waiting-img {
  display: inline-block !important;
}
.has-clearance.ajax-loading .clr-available-status,
.has-clearance.ajax-loading .chk-availability,
.has-clearance.ajax-loading .add-to-cart-buttons {
  display: none !important;
}
.has-clearance.ajax-loading .message-initial-stock-lookup {
  display: none;
}
.has-clearance .message-under-success,
.has-clearance .message-stock-unavailable {
  display: none;
  margin-top: 10px;
}
.has-clearance .message-initial-stock-lookup {
  margin-top: 10px;
}
.has-clearance.available .message-under-success {
  display: block;
}
.has-clearance.available .message-initial-stock-lookup {
  display: none;
}
.has-clearance.out-of-stock .message-stock-unavailable {
  display: block;
}
.has-clearance.out-of-stock .message-initial-stock-lookup {
  display: none;
}

.loc-srch-res-list > h2 {
  margin: 10px 0 !important;
}

.storeavailability-search-index .hide-nice-select .nice-select.search-areas .list {
  display: none;
}
.storeavailability-search-index .nice-select.search-areas .list {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.storeavailability-search-index .location-availability-confirm-in-stock {
  display: none;
}
.storeavailability-search-index .loc-srch h4 {
  float: left;
  margin-top: 12px;
}
.storeavailability-search-index .loc-srch .loc-srch-form {
  float: left;
}
.storeavailability-search-index .loc-srch .loc-srch-form #locator-autocomplete {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  color: #000000;
}
.storeavailability-search-index .show-availability-label {
  float: right;
  margin-top: 10px;
}
.storeavailability-search-index .top-header {
  border-bottom: 1px solid #EDEDED;
  margin-bottom: 15px;
  margin-top: 40px;
  padding-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .storeavailability-search-index .top-header {
    margin-top: 20px;
  }
}
.storeavailability-search-index .top-header:after {
  content: '';
  display: table;
  clear: both;
}
.storeavailability-search-index .top-header .product-infos {
  float: left;
  width: 60%;
}
.storeavailability-search-index .top-header .product-infos:after {
  content: '';
  display: table;
  clear: both;
}
.storeavailability-search-index .top-header .product-infos img {
  float: left;
  width: 90px;
  margin-right: 15px;
  border: 2px solid #EDEDED;
}
.storeavailability-search-index .top-header .product-infos .info {
  float: left;
  width: calc(100% - 105px);
}
.storeavailability-search-index .top-header .product-infos .product-name {
  font-family: "proximanova-light", Verdana, Arial, sans-serif;
  font-size: 18px;
  margin: 5px 0;
}
.storeavailability-search-index .top-header .page-title {
  float: left;
  width: 40%;
}
.storeavailability-search-index .top-header .page-title h1 {
  border-bottom: none;
  margin: 10px 0 0;
  padding-bottom: 0;
}
.storeavailability-search-index div.search-areas {
  width: 95px;
}
@media only screen and (max-width: 953px) and (min-width: 698px) {
  .storeavailability-search-index .show-availability-label {
    margin-top: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .storeavailability-search-index .wrapper {
    min-width: unset;
  }
}
@media only screen and (max-width: 698px) {
  .storeavailability-search-index .top-header .product-infos,
  .storeavailability-search-index .top-header .page-title {
    float: none;
    width: 100%;
  }
  .storeavailability-search-index .loc-srch:after {
    content: '';
    display: table;
    clear: both;
  }
  .storeavailability-search-index .loc-srch .radius-box {
    float: left;
    width: 40%;
    margin-right: 11%;
    text-align: left;
  }
  .storeavailability-search-index .loc-srch .show-availability-label {
    float: right;
    width: 49%;
    margin-left: 0;
    text-align: left;
    margin-top: 20px;
  }
  .storeavailability-search-index .loc-srch .show-availability-label:before {
    margin-bottom: 10px;
    margin-top: 10px;
    float: left;
  }
  .storeavailability-search-index .loc-srch-res-list .locations .loc-ls-item {
    padding-left: 0;
  }
  .storeavailability-search-index .loc-srch-res-list .locations .loc-ls-item .col-sm-3 > *:not(.no-padding-mobile),
  .storeavailability-search-index .loc-srch-res-list .locations .loc-ls-item .col-sm-4 > *:not(.no-padding-mobile),
  .storeavailability-search-index .loc-srch-res-list .locations .loc-ls-item .col-sm-5 > *:not(.no-padding-mobile) {
    padding-left: 63px;
  }
  .storeavailability-search-index .loc-srch-res-list .locations .loc-ls-item .col-sm-3 .select-store,
  .storeavailability-search-index .loc-srch-res-list .locations .loc-ls-item .col-sm-4 .select-store,
  .storeavailability-search-index .loc-srch-res-list .locations .loc-ls-item .col-sm-5 .select-store {
    width: 100%;
    margin-top: 15px;
  }
  .storeavailability-search-index .loc-srch-res-list .locations .loc-ls-item .location-availability-label-in-stock {
    padding-left: 21px;
    position: relative;
  }
  .storeavailability-search-index .loc-srch-res-list .locations .loc-ls-item .location-availability-label-in-stock:before {
    left: 0;
    position: absolute;
    top: 1px;
  }
  .storeavailability-search-index .loc-srch-res-list .locations .loc-ls-item .location-availability-label-in-stock span {
    display: block;
  }
  .storeavailability-search-index .loc-srch-res-list button.locator_loadmore {
    width: 100%;
  }
}
.storeavailability-search-index .availability-status-error:before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/icons.png) no-repeat;
  background-position: 0 -50px;
  display: inline-block;
  vertical-align: -2px;
}

@media only screen and (max-width: 1024px) {
  .fancybox-opened {
    position: fixed !important;
    top: 22px !important;
    z-index: 99999 !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .fancybox-inner {
    overflow: scroll !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .no-scroll {
    overflow: hidden !important;
    touch-action: none;
  }
}
.fancybox-overlay .fancybox-opened .fancybox-skin {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}
.fancybox-overlay.fancybox-overlay-fixed {
  background: rgba(255, 255, 255, 0.8);
}

.fancybox-iframe {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.fancybox-wrap {
  -webkit-overflow-scrolling: touch;
}
.fancybox-wrap .fancybox-close {
  text-align: center;
  border-radius: 100px;
  border: 1px solid #EDEDED;
  background: #fff !important;
  width: 40px;
  height: 40px;
  text-decoration: none;
}
.fancybox-wrap .fancybox-close:before {
  content: "close";
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  text-decoration: underline;
  margin: 0 23px 0 -56px;
  display: inline-block;
  vertical-align: 8px;
  color: #000000;
}
.fancybox-wrap .fancybox-close:after {
  content: "x";
  font-size: 17px;
  font-family: "proximanova-bold", Verdana, Arial, sans-serif;
  line-height: 35px;
  color: #000;
  text-decoration: none;
  color: #000000;
}

.loc-srch-res-list .locations .loc-ls-item {
  position: relative;
  padding-left: 48px;
}
.loc-srch-res-list .locations .loc-ls-item .item-number {
  position: absolute;
  left: 0;
  background: #ffe800;
  border-radius: 30px;
  text-align: center;
  line-height: 38px;
  color: #0057a3;
  font-weight: 900;
  width: 38px;
  height: 38px;
  top: 5px;
}
.loc-srch-res-list .locations .loc-ls-item .pick-up-store-phone-label:before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/icons.png) no-repeat 0 -150px;
  display: inline-block;
  vertical-align: -2px;
}
.loc-srch-res-list .locations .location-availability-out-of-stock:before,
.loc-srch-res-list .locations .location-availability-label-out-of-stock:before,
.loc-srch-res-list .locations .location-availability-in-stock:before,
.loc-srch-res-list .locations .location-availability-label-in-stock:before,
.loc-srch-res-list .locations .pick-up-store-phone-label:before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 5px;
  background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/icons.png) no-repeat;
  display: inline-block;
  vertical-align: -2px;
}
.loc-srch-res-list .locations .pick-up-store-phone-label:before {
  background-position: 0 -150px;
}
.loc-srch-res-list .locations .location-availability-label-in-stock,
.loc-srch-res-list .locations .location-availability-in-stock {
  color: #4b9427;
}
.loc-srch-res-list .locations .location-availability-label-in-stock:before,
.loc-srch-res-list .locations .location-availability-in-stock:before {
  background-position: 0 0;
}
.loc-srch-res-list .locations .location-availability-out-of-stock:before {
  background-position: 0 -50px;
}
.loc-srch-res-list .locations .location-availability-label-out-of-stock:before {
  background-position: 0 -100px;
  margin-bottom: 24px;
  float: left;
}
.loc-srch-res-list .locations .select-store:not(.preferred-store) {
  float: right;
  background: #FFF;
  border: 2px solid #e1e3e5;
  color: #000000;
}
.loc-srch-res-list .locations .preferred-store {
  float: right;
}
.loc-srch-res-list button.locator_loadmore {
  float: right;
  width: auto;
  background: #000000;
  color: #FFF;
  padding-left: 50px;
  padding-right: 50px;
}
.loc-srch-res-list button.locator_loadmore:hover {
  background: #ababab;
}

@media only screen and (max-width: 767px) {
  .location-tab .collateral-tabs {
    position: relative;
    padding-top: 70px;
  }
  .location-tab .collateral-tabs .tab {
    position: absolute;
    width: 50%;
    top: 5px;
    display: flex;
    background: #EDEDED;
  }
  .location-tab .collateral-tabs .tab.current {
    background: #FFF;
    border-top: 1px solid;
    border-bottom-width: 0;
    border-top: 1px solid #EDEDED;
    border-right: 1px solid #EDEDED;
    border-bottom: none;
    top: 0;
  }
  .location-tab .collateral-tabs .tab.current span {
    height: 70px;
    padding-top: 5px;
    border-bottom: none;
  }
  .location-tab .collateral-tabs .tab.last {
    border-right: none;
  }
  .location-tab .collateral-tabs .tab.last.current {
    border-left: 1px solid #EDEDED;
  }
  .location-tab .collateral-tabs .tab span {
    align-items: center;
    height: 65px;
    padding: 0 20px;
    line-height: 20px;
    width: 100%;
    display: flex;
    border-top-width: 0;
  }
  .location-tab .collateral-tabs .tab span:after {
    display: none;
  }
  .location-tab .collateral-tabs .tab span:before {
    display: inline-block;
    height: 21px;
    background: url(https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/tabs.png);
    background-origin: content-box;
    content: "";
    z-index: 55555555;
    margin: 5px 0;
    vertical-align: -5px;
    position: static;
    float: left;
    width: 36px;
  }
  .location-tab .collateral-tabs .tab:first-child {
    left: 0;
  }
  .location-tab .collateral-tabs .tab.last {
    right: 0;
  }
  .location-tab .collateral-tabs .tab.last span {
    padding-right: 30px;
  }
  .location-tab .collateral-tabs .tab.last span:before {
    background-position: -50px 0;
    width: 55px !important;
    margin-right: 8px;
    overflow: hidden;
  }
  .location-tab .collateral-tabs .tab-container.current {
    display: block;
  }
}
@media only screen and (min-width: 698px) and (max-width: 953px) {
  .storeavailability-search-index .loc-srch .show-availability-label:before {
    margin-top: 0;
  }
}
@media only screen and (max-width: 698px) {
  .location-tab .toggle-tabs {
    display: none;
  }
}
@media only screen and (max-width: 698px) and (min-width: 410px) {
  .storeavailability-search-index .loc-srch .show-availability-label {
    margin-top: 10px;
  }
  .storeavailability-search-index .loc-srch .show-availability-label:before {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) and (min-width: 479px) {
  .location-tab .collateral-tabs .tab.last span.pickup:before {
    width: 50px !important;
  }
}
@media only screen and (max-width: 360px) {
  body .location-tab .collateral-tabs .tab.last span {
    padding-right: 0;
  }
}
/* ============================================ *
 * 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;
}

/* ============================================ *
 * Base Styles
 * ============================================ */
body {
  color: #000000;
  font-size: 14px;
}
@media only screen and (min-width: 600px) {
  body {
    font-size: 14px;
  }
}

/* -------------------------------------------- *
 * Base Anchor Styles
 */
a {
  color: #a2c2e1;
  text-decoration: none;
  cursor: pointer;
}

a[class*="over"],
a:hover {
  color: #00498a;
  text-decoration: underline;
}

a:focus {
  outline-color: #606060;
  color: #1a1a1a;
}

/* -------------------------------------------- *
 * Labels
 */
label {
  font-size: 14px;
  font-weight: normal;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
}

/* ============================================ *
 * Typography
 * ============================================ */
h1, .h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #000;
  font-family: "proximanova-thin", Verdana, Arial, sans-serif;
  font-size: 48px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
}

h2, .h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #fff;
  font-family: "proximanova-light", Verdana, Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
}

h3, .h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #fff;
  font-family: "proximanova-thin", Verdana, Arial, sans-serif;
  font-size: 26px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

h4, .h4 {
  margin: 0;
  margin-bottom: 10px;
  color: #fff;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

h5, .h5 {
  margin: 0;
  margin-bottom: 10px;
  color: #fff;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

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

/* ============================================ *
 * Button
 * ============================================ */
.btn-standard, .checkoutcontainer button, a[class*="button"],
.button {
  font-size: 14px;
  color: #FFF;
  text-transform: capitalize;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  background: #999;
  min-width: 115px;
  padding: 10px 20px;
  border: none;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.btn-standard.btn-over, .checkoutcontainer button.btn-over, a.btn-over[class*="button"],
.btn-over.button, .btn-standard:active, .btn-standard.nice-select.open, .checkoutcontainer button.nice-select.open, a.nice-select.open[class*="button"],
.nice-select.open.button, .checkoutcontainer button:active, a[class*="button"]:active,
.button:active, .btn-standard:focus, .checkoutcontainer button:focus, a[class*="button"]:focus,
.button:focus, .btn-standard:hover, .checkoutcontainer button:hover, a[class*="button"]:hover,
.button:hover {
  background: #ababab;
  text-decoration: none;
  color: #FFF;
}

.btn-other, a[class*="btn-continue"],
.btn-continue {
  font-size: 14px;
  color: #000000;
  text-transform: capitalize;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  background: #FFF;
  border: 2px solid #e1e3e5;
  min-width: 150px;
  padding: 8px 20px;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.btn-other.btn-over, a.btn-over[class*="btn-continue"],
.btn-over.btn-continue, .btn-other:active, .btn-other.nice-select.open, a.nice-select.open[class*="btn-continue"],
.nice-select.open.btn-continue, a[class*="btn-continue"]:active,
.btn-continue:active, .btn-other:focus, a[class*="btn-continue"]:focus,
.btn-continue:focus, .btn-other:hover, a[class*="btn-continue"]:hover,
.btn-continue:hover {
  background: #FFF;
  border-color: #ababab;
  color: #000000;
  text-decoration: none;
}

.btn-special, #onestepcheckout-place-order,
#zipmoneypayment-place-order, a[class*="btn-checkout"],
a.btn-cart,
.btn-cart,
.btn-checkout {
  font-size: 15px;
  color: #000000;
  text-transform: uppercase;
  font-family: "proximanova-bold", Verdana, Arial, sans-serif;
  background: #ffe800;
  min-width: 140px;
  padding: 11px 20px;
  line-height: 20px;
  border: none;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.btn-special.btn-over, .btn-over#onestepcheckout-place-order,
.btn-over#zipmoneypayment-place-order, a.btn-over[class*="btn-checkout"],
.btn-over.btn-cart,
.btn-over.btn-checkout, .btn-special:active, .btn-special.nice-select.open, .nice-select.open#onestepcheckout-place-order,
.nice-select.open#zipmoneypayment-place-order, a.nice-select.open[class*="btn-checkout"],
.nice-select.open.btn-cart,
.nice-select.open.btn-checkout, #onestepcheckout-place-order:active,
#zipmoneypayment-place-order:active, a[class*="btn-checkout"]:active,
.btn-cart:active,
.btn-checkout:active, .btn-special:focus, #onestepcheckout-place-order:focus,
#zipmoneypayment-place-order:focus, a[class*="btn-checkout"]:focus,
.btn-cart:focus,
.btn-checkout:focus, .btn-special:hover, #onestepcheckout-place-order:hover,
#zipmoneypayment-place-order:hover, a[class*="btn-checkout"]:hover,
.btn-cart:hover,
.btn-checkout:hover {
  background: #ffef4d;
  color: #000000;
  text-decoration: none;
}

a[class*="cart-link"] {
  color: #010000;
}

.grid12-6 {
  float: left;
  width: 50%;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .grid12-6 {
    width: 100%;
    float: none;
  }
}

/* -------------------------------------------- *
 * Multi tab
 */
.product-collateral .toggle-tabs {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  border: none;
  border-bottom: 1px solid #e7e7e7;
  background: #f7f7f7;
}
.product-collateral .toggle-tabs li {
  display: inline-block;
  float: none;
  border: none;
  width: 33.3%;
}
.product-collateral .toggle-tabs li span {
  font-size: 14px;
  font-weight: normal;
  color: #666;
  height: 42px;
  border: none;
  border-right: 1px solid #e7e7e7;
  letter-spacing: 1px;
  text-align: center;
  width: 100%;
}
.product-collateral .toggle-tabs li.current span,
.product-collateral .toggle-tabs li:hover span {
  color: #000;
}
.product-collateral .toggle-tabs li ~ li.current span {
  margin-left: -1px;
}
.product-collateral .toggle-tabs li.current {
  border: none;
}
.product-collateral .toggle-tabs li.current span {
  position: relative;
  border: 1px solid #e7e7e7;
  border-bottom: none;
  border-top: none;
  background: #FFF;
  height: 42px;
  margin-bottom: -1px;
}
.product-collateral .toggle-tabs li.current span:after {
  content: '';
  position: absolute;
  height: 5px;
  border: 1px solid #e7e7e7;
  background: #FFF;
  border-bottom: none;
  top: -5px;
  left: -1px;
  right: -1px;
}
.product-collateral .toggle-tabs li:last-child span,
.product-collateral .toggle-tabs li.last span {
  border-right: none;
}
.product-collateral dl.collateral-tabs {
  /* border-bottom: 1px solid $c-multi-tab-heading-border; */
  padding-bottom: 10px;
}
.product-collateral dl.collateral-tabs dd {
  border: none;
  padding: 0;
}
.product-collateral dl.collateral-tabs dd .tab-content {
  padding-top: 15px;
  padding-bottom: 35px;
  padding-left: 0;
  line-height: 20px;
}
@media only screen and (min-width: 600px) {
  .product-collateral dl.collateral-tabs dd .tab-content {
    padding-top: 22px;
  }
}
@media only screen and (min-width: 600px) {
  .product-collateral dl.collateral-tabs dd .tab-content {
    padding-bottom: 0;
  }
}
.product-collateral dl.collateral-tabs dd .tab-content table tr th, .product-collateral dl.collateral-tabs dd .tab-content table tr td {
  border: none;
  background: #FFF;
  padding: 4px 16px;
}
.product-collateral dl.collateral-tabs dd .tab-content table tr.odd th, .product-collateral dl.collateral-tabs dd .tab-content table tr.odd td {
  background: #f7f7f7;
}
.product-collateral dl.collateral-tabs dd .tab-content > div,
.product-collateral dl.collateral-tabs dd .tab-content > strong {
  padding-left: 0px;
}
@media only screen and (min-width: 600px) {
  .product-collateral dl.collateral-tabs dd .tab-content > div,
  .product-collateral dl.collateral-tabs dd .tab-content > strong {
    padding-left: 16px;
  }
}
.product-collateral dl.collateral-tabs dt {
  border: none;
  padding: 0;
}
.product-collateral dl.collateral-tabs dt:first-child {
  border-top: 1px solid #e7e7e7;
}
.product-collateral dl.collateral-tabs dt span {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  display: block;
  margin-bottom: 0;
  letter-spacing: 1px;
  border-bottom: 0;
  border-bottom: 1px solid #e7e7e7;
  cursor: pointer;
  position: relative;
  line-height: 50px;
  padding: 0;
  padding-left: 10px;
}
.product-collateral dl.collateral-tabs dt span:after {
  font-family: "beacon-icon-fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  position: absolute;
  content: '\e820';
  right: 13px;
  top: 18px;
  color: #999;
}
.product-collateral dl.collateral-tabs dt span:before {
  position: absolute;
  content: '';
  right: 0;
  top: 0;
  background: #f6f6f6;
  width: 50px;
  height: 50px;
}
.product-collateral dl.collateral-tabs dt:after {
  display: none;
}
.product-collateral.accordion-open dl.collateral-tabs dt.current span {
  background: transparent;
}
.product-collateral.accordion-open dl.collateral-tabs dt.current span:after {
  content: "\e821";
}
.product-collateral.accordion-open dl.collateral-tabs dt.current:after {
  display: none;
}

/* -------------------------------------------- *
 * Socials
 */
.social-links ul > * {
  display: inline-block;
  vertical-align: top;
}
.social-links ul a[class*="icon-"] {
  width: 41px;
  height: 41px;
  line-height: 41px;
  -moz-border-radius: 41px;
  -webkit-border-radius: 41px;
  border-radius: 41px;
  background: #2759a1;
  display: inline-block;
  color: #FFF;
  font-size: 24px;
  text-align: center;
}
.social-links ul a[class*="icon-"]:hover {
  text-decoration: none;
}
.social-links ul a[class*="icon-"].icon-appsocial_icon {
  font-size: 41px;
}
.social-links ul a[class*="icon-"].icon-appsocial_icon:before {
  margin-left: 0;
}

/* -------------------------------------------- *
* Action link
*/
.add-to-links li {
  display: inline-block;
  margin-left: 17px;
  float: left;
  margin-right: 0;
}
.add-to-links li:first-child {
  margin-left: 0;
}
.add-to-links li a {
  color: #000;
  margin: 0;
  padding: 0;
}
.add-to-links li a:hover {
  text-decoration: none;
}
.add-to-links li .link-compare {
  display: none;
}
@media only screen and (min-width: 600px) {
  .add-to-links li .link-compare {
    display: inline-block;
  }
}
.add-to-links [class*="link-"] {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  text-align: center;
  width: 78px;
  font-size: 13px;
  line-height: 14px;
}
@media only screen and (min-width: 600px) {
  .add-to-links [class*="link-"] {
    text-align: left;
  }
}
@media only screen and (min-width: 1024px) {
  .add-to-links [class*="link-"] {
    text-align: left;
  }
}
@media only screen and (min-width: 600px) {
  .add-to-links [class*="link-"] {
    width: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .add-to-links [class*="link-"] {
    width: auto;
  }
}
@media only screen and (min-width: 600px) {
  .add-to-links [class*="link-"] {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1024px) {
  .add-to-links [class*="link-"] {
    font-size: 14px;
  }
}
@media only screen and (min-width: 600px) {
  .add-to-links [class*="link-"] {
    line-height: 21px;
  }
}
.add-to-links [class*="link-"]:before {
  width: 41px;
  height: 41px;
  line-height: 41px;
  -moz-border-radius: 41px;
  -webkit-border-radius: 41px;
  border-radius: 41px;
  border: 1px solid #e7e7e7;
  color: #999;
  font-size: 16px;
  line-height: 37px;
  margin-bottom: 5px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media only screen and (min-width: 600px) {
  .add-to-links [class*="link-"]:before {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .add-to-links [class*="link-"]:before {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 600px) {
  .add-to-links [class*="link-"]:before {
    margin-left: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .add-to-links [class*="link-"]:before {
    margin-left: 0;
  }
}
@media only screen and (min-width: 600px) {
  .add-to-links [class*="link-"]:before {
    margin-right: 9px;
  }
}
@media only screen and (min-width: 1024px) {
  .add-to-links [class*="link-"]:before {
    margin-right: 9px;
  }
}
@media only screen and (min-width: 600px) {
  .add-to-links [class*="link-"]:before {
    display: inline-block;
  }
}
@media only screen and (min-width: 1024px) {
  .add-to-links [class*="link-"]:before {
    display: inline-block;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  .add-to-links [class*="link-"] {
    text-align: center;
    width: 78px;
  }
  .add-to-links [class*="link-"]:before {
    display: block;
    margin: 0 auto 5px;
  }
}

.link-wishlist:before {
  content: '\e80c';
}

.link-specsheet:before {
  content: '\e80d';
}

.link-compare:before {
  content: '\e80e';
}

/* -------------------------------------------- *
* Rating
*/
.rating-box {
  text-align: left;
  position: relative;
  display: inline-block;
  width: 92px;
  height: 20px;
}
.rating-box .rating {
  height: 20px;
}

.rating-number {
  display: none;
}

.rating {
  display: inline-block;
  overflow: hidden;
}
.rating:after, .rating:before {
  font-size: 18px;
  color: #fbe400;
  letter-spacing: 2px;
  left: -3px;
  display: inline-block;
  white-space: nowrap;
}
.rating:after {
  content: '\e814 \e814 \e814 \e814 \e814';
  position: absolute;
  top: 0;
  visibility: visible;
}
.rating:before {
  content: '\e815 \e815 \e815 \e815 \e815';
  visibility: visible;
  position: relative;
  top: 0;
}
.rating.over:after, .rating.over:before, .rating:hover:after, .rating:hover:before {
  color: #ffec2f;
}

.products-grid .product-shop .desc {
  display: none;
}
.products-grid .product-secondary .action {
  display: none;
}

/* -------------------------------------------- *
* pages
*/
.pages * {
  line-height: 42px;
}
.pages ol li {
  border: none;
  margin-left: 9px;
}
.pages .current,
.pages ol li a {
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border: 1px solid #999;
  font-size: 14px;
  color: #000000;
}
.pages a:hover {
  text-decoration: none;
  border-color: #333;
}
.pages .current {
  background: #333;
  border-color: transparent;
  color: #FFF;
}
.pages .current:hover {
  width: 42px;
  height: 42px;
  line-height: 42px;
  background: #333;
  border-color: transparent;
  color: #FFF;
}
.pages .next,
.pages .previous {
  font-size: 14px;
}
.pages .next:hover:before, .pages .next:before,
.pages .previous:hover:before,
.pages .previous:before {
  border: none;
  color: #333;
  line-height: 7px;
}
.pages .next:hover,
.pages .previous:hover {
  border-color: #333;
}
.pages .next img,
.pages .previous img {
  display: none;
}
.pages .next:before {
  content: '\e827';
}
.pages .next:hover:before {
  content: '\e827';
}
.pages .previous:before {
  content: '\e828';
}
.pages .previous:hover:before {
  content: '\e828';
}

/* -------------------------------------------- *
*  Tooltip
*/
.tooltip-container {
  display: inline-block;
  position: relative;
}
.tooltip-container:hover .tooltip-insert {
  display: block;
}
.tooltip-container > [class*="icon-"] {
  color: #FFF;
  display: inline-block;
  width: 17px;
  height: 17px;
  background: #aaa;
  vertical-align: top;
  margin-top: 1px;
  -moz-border-radius: 17px;
  -webkit-border-radius: 17px;
  border-radius: 17px;
}
.tooltip-container > [class*="icon-"]:before {
  line-height: 16px;
  vertical-align: top;
  text-align: left;
  margin-left: 4px;
}
.tooltip-container .tooltip-insert {
  display: none;
  line-height: 17px;
  letter-spacing: -0.3px;
  font-size: 13px;
  border: 1px solid #e7e7e7;
  background: #FFF;
  left: -185px;
  margin-top: 10px;
  padding: 11px 15px;
  position: absolute;
  text-align: left;
  width: 216px;
  z-index: 2222;
}
@media only screen and (min-width: 600px) {
  .tooltip-container .tooltip-insert {
    left: -100px;
  }
}
.tooltip-container .tooltip-insert [class*="icon-"] {
  border-bottom: 1px solid #FFF;
  display: inline-block;
  height: 10px;
  left: 89%;
  margin-left: -8px;
  position: absolute;
  top: -10px;
  width: 17px;
}
@media only screen and (min-width: 600px) {
  .tooltip-container .tooltip-insert [class*="icon-"] {
    left: 50%;
  }
}
.tooltip-container .tooltip-insert [class*="icon-"]:before {
  margin-left: 0;
  position: absolute;
  bottom: -6px;
  left: -1px;
  width: 100%;
  color: #e7e7e7;
  font-size: 19px;
}

/* -------------------------------------------- *
*  Loading Ajax
*/
.loading-ajax {
  background: url("https://www.beaconlighting.com.au/skin/frontend/beacon/default/images/ajax-loader.gif") no-repeat center center transparent;
  height: 50px;
  text-align: center;
  margin: 10px 0;
}

/* -------------------------------------------- *
*  Live chat
*/
.slogan {
  font-family: "AustinItalic";
  font-size: 14px;
  height: 46px;
  line-height: 41px;
  border: 2px solid #e7e7e7;
  padding: 0 10px;
  position: fixed;
  z-index: 20;
  background: #FFF;
  right: 20px;
  bottom: 50px;
  color: #000;
}
@media only screen and (min-width: 600px) {
  .slogan {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1024px) {
  .slogan {
    font-size: 18px;
  }
}
@media only screen and (min-width: 600px) {
  .slogan {
    padding: 0 43px 0 12px;
  }
}
@media only screen and (min-width: 1024px) {
  .slogan {
    padding: 0 43px 0 12px;
  }
}
.slogan span {
  margin-left: 4px;
}
.slogan span a {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  color: #000;
  font-size: 13px;
  text-transform: uppercase;
}
@media only screen and (min-width: 600px) {
  .slogan span a {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1024px) {
  .slogan span a {
    font-size: 14px;
  }
}
.slogan span a:hover {
  text-decoration: none;
}
.slogan img {
  position: absolute;
  right: -17px;
  bottom: -2px;
  width: 59px;
  height: 58px;
  display: none;
}
@media only screen and (min-width: 600px) {
  .slogan img {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .slogan img {
    display: block;
  }
}
.slogan .livechat-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.slogan .livechat-link a {
  color: transparent;
  width: 100%;
  height: 100%;
  display: inline-block;
}

/* ============================================ *
 * Quick short Responsive Styles
 * ============================================ */
.bp-mobile-only {
  display: block;
}
@media only screen and (min-width: 600px) {
  .bp-mobile-only {
    display: none;
  }
}

.bp-tablet-up {
  display: none;
}
@media only screen and (min-width: 600px) {
  .bp-tablet-up {
    display: block;
  }
}

.bp-tablet-down {
  display: block;
}
@media only screen and (min-width: 600px) {
  .bp-tablet-down {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .bp-tablet-down {
    display: none;
  }
}

.bp-tablet-only {
  display: none;
}
@media only screen and (min-width: 600px) {
  .bp-tablet-only {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .bp-tablet-only {
    display: none;
  }
}

.bp-desktop-up {
  display: none;
}
@media only screen and (min-width: 600px) {
  .bp-desktop-up {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .bp-desktop-up {
    display: block;
  }
}

.bp-desktop-only {
  display: none;
}
@media only screen and (min-width: 600px) {
  .bp-desktop-only {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .bp-desktop-only {
    display: block;
  }
}

.main-container, .footer-container, .page-header-container {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 10px;
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 600px) {
  .main-container, .footer-container, .page-header-container {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .main-container, .footer-container, .page-header-container {
    padding: 0;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  .main-container, .footer-container, .page-header-container {
    max-width: 984px;
  }
}

@media only screen and (min-width: 771px) {
  .col2-left-layout .col-left .page-title {
    display: none;
  }
}

#header {
  z-index: 4;
  position: relative;
  background-color: #000000;
}

.footer-container {
  z-index: 2;
}

.page-header-container {
  padding: 0;
}

/* -------------------------------------------- *
 * Header
 */
#header .bp-mobile-only {
  display: block;
}
@media only screen and (min-width: 600px) {
  #header .bp-mobile-only {
    display: none;
  }
}
#header .bp-tablet-up {
  display: none;
}
@media only screen and (min-width: 600px) {
  #header .bp-tablet-up {
    display: block;
  }
}
#header .bp-tablet-down {
  display: block;
}
@media only screen and (min-width: 600px) {
  #header .bp-tablet-down {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  #header .bp-tablet-down {
    display: none;
  }
}
#header .bp-tablet-only {
  display: none;
}
@media only screen and (min-width: 600px) {
  #header .bp-tablet-only {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  #header .bp-tablet-only {
    display: none;
  }
}
#header .bp-desktop-up {
  display: none;
}
@media only screen and (min-width: 600px) {
  #header .bp-desktop-up {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  #header .bp-desktop-up {
    display: block;
  }
}
#header .bp-desktop-only {
  display: none;
}
@media only screen and (min-width: 600px) {
  #header .bp-desktop-only {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  #header .bp-desktop-only {
    display: block;
  }
}
#header .stores-switcher .bp-desktop-only,
#header .stores-switcher .bp-desktop-up,
#header .skip-links .bp-desktop-only,
#header .skip-links .bp-desktop-up {
  display: none;
}
@media only screen and (min-width: 600px) {
  #header .stores-switcher .bp-desktop-only,
  #header .stores-switcher .bp-desktop-up,
  #header .skip-links .bp-desktop-only,
  #header .skip-links .bp-desktop-up {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  #header .stores-switcher .bp-desktop-only,
  #header .stores-switcher .bp-desktop-up,
  #header .skip-links .bp-desktop-only,
  #header .skip-links .bp-desktop-up {
    display: inline-block;
  }
}
#header .stores-switcher .bp-tablet-down,
#header .skip-links .bp-tablet-down {
  display: block;
}
@media only screen and (min-width: 600px) {
  #header .stores-switcher .bp-tablet-down,
  #header .skip-links .bp-tablet-down {
    display: inline-block;
  }
}
@media only screen and (min-width: 1024px) {
  #header .stores-switcher .bp-tablet-down,
  #header .skip-links .bp-tablet-down {
    display: none;
  }
}

.skip-links .label {
  display: block;
}
@media only screen and (min-width: 600px) {
  .skip-links .label {
    display: inline-block;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-links .label {
    display: none;
  }
}

/* -------------------------------------------- *
 * Header Top and Bot
 */
.header-top {
  padding-top: 20px;
  padding-right: 10px;
  text-align: right;
}
@media only screen and (min-width: 600px) {
  .header-top {
    padding-top: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .header-top {
    padding-top: 0;
  }
}
@media only screen and (min-width: 600px) {
  .header-top {
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .header-top {
    padding-right: 0;
  }
}
@media only screen and (min-width: 600px) {
  .header-top {
    text-align: right;
  }
}
@media only screen and (min-width: 1024px) {
  .header-top {
    text-align: left;
  }
}

.header-bottom {
  display: block;
  text-align: center;
  font-size: 13px;
}
@media only screen and (min-width: 600px) {
  .header-bottom {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .header-bottom {
    display: none;
  }
}
.header-bottom img {
  display: none;
}
.header-bottom strong {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-weight: normal;
  line-height: 38px;
}

a.logo {
  display: inline-block;
  margin-right: 0;
  margin: 20px 43px 20px 0px;
}
/*test
@media only screen and (min-width: 600px) {
  a.logo {
	margin: 20px 43px 20px 0px;
  }
}
*/

.header-support {
  line-height: 45px;
  display: inline-block;
  font-size: 13px;
}
@media only screen and (min-width: 600px) {
  .header-support {
    font-size: 14px;
  }
}
.header-support > * {
  float: left;
  vertical-align: top;
}
.header-support strong {
  font-weight: normal;
}
.header-support > p {
  float: left;
  line-height: 100%;
  text-align: right;
  font-size: 13px;
}
@media only screen and (min-width: 600px) {
  .header-support > p {
    line-height: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .header-support > p {
    line-height: inherit;
  }
}
@media only screen and (min-width: 600px) {
  .header-support > p {
    font-size: 13px;
  }
}
@media only screen and (min-width: 1024px) {
  .header-support > p {
    font-size: 14px;
  }
}
.header-support > p strong {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  margin-left: 8px;
}
.header-support > p span {
  display: block;
  margin-top: 4px;
}
@media only screen and (min-width: 600px) {
  .header-support > p span {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .header-support > p span {
    display: inline-block;
  }
}
@media only screen and (min-width: 600px) {
  .header-support > p span {
    margin: 0;
  }
}
@media only screen and (min-width: 600px) {
  .header-support > p span {
    margin-top: 4px;
  }
}
@media only screen and (min-width: 1024px) {
  .header-support > p span {
    margin-top: 0;
  }
}
.header-support div p {
  float: left;
  margin-left: 20px;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
}
.header-support div p img {
  float: left;
  margin-right: 10px;
  margin-top: 11px;
}

.stores-switcher .header-links li:first-child a {
  border-top: none;
}
.stores-switcher .header-links li a {
  display: block;
  padding: 0 20px;
  border-right: none;
  line-height: 49px;
  color: #2756a4;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  border-top: 1px solid #e7e7e7;
  text-transform: uppercase;
}
@media only screen and (min-width: 600px) {
  .stores-switcher .header-links li a {
    border-right: none;
  }
}
@media only screen and (min-width: 1024px) {
  .stores-switcher .header-links li a {
    border-right: 1px solid #e7e7e7;
  }
}
.stores-switcher .header-links li a:hover {
  text-decoration: none;
}
.stores-switcher .header-links li a.active {
  background: #FFF;
  color: #666;
}
.stores-switcher .header-links li.last a {
  color: #ef4023;
}
@media only screen and (min-width: 1024px) {
  .stores-switcher .header-links li a {
    border-top: none;
    text-transform: capitalize;
    padding: 0 24px;
    line-height: 45px;
  }
  .stores-switcher .header-links li:first-child a {
    padding: 0 20px;
    border-left: 1px solid #e7e7e7;
  }
  .stores-switcher .header-links li.last a {
    padding: 0 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .stores-switcher {
    float: right;
  }
  .stores-switcher .header-links li {
    float: left;
  }
  .stores-switcher .header-links li a {
    display: inline-block;
  }
}

/* -------------------------------------------- *
 * Header Search
 */
#header-search {
  float: none;
  width: auto;
}
@media only screen and (min-width: 600px) {
  #header-search {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1024px) {
  #header-search {
    margin-top: 13px;
  }
}
@media only screen and (min-width: 600px) {
  #header-search {
    float: none;
  }
}
@media only screen and (min-width: 1024px) {
  #header-search {
    float: left;
  }
}
@media only screen and (min-width: 600px) {
  #header-search {
    position: absolute;
  }
}
@media only screen and (min-width: 1024px) {
  #header-search {
    position: static;
  }
}
@media only screen and (min-width: 600px) {
  #header-search {
    top: 15px;
  }
}
@media only screen and (min-width: 1024px) {
  #header-search {
    top: 0;
  }
}
@media only screen and (min-width: 600px) {
  #header-search {
    left: 190px;
  }
}
@media only screen and (min-width: 1024px) {
  #header-search {
    left: 0;
  }
}
@media only screen and (min-width: 600px) {
  #header-search {
    display: inline-block;
  }
}
@media only screen and (min-width: 600px) {
  #header-search {
    width: 44%;
  }
}
@media only screen and (min-width: 1024px) {
  #header-search {
    width: auto;
  }
}
#header-search #algolia-glass {
  display: none !important;
}
#header-search #search {
  width: 100%;
  font-size: 13px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  height: 40px;
  line-height: 1;
  padding-right: 35px;
}
@media only screen and (min-width: 600px) {
  #header-search #search {
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  #header-search #search {
    width: 356px;
  }
}
@media only screen and (min-width: 600px) {
  #header-search #search {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1024px) {
  #header-search #search {
    font-size: 16px;
  }
}
@media only screen and (min-width: 600px) {
  #header-search #search {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
  }
}
@media only screen and (min-width: 600px) {
  #header-search #search {
    height: 42px;
  }
}
@media only screen and (min-width: 600px) {
  #header-search #search {
    padding-right: 45px;
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  #header-search #search {
    width: 228px;
  }
}

#header-search #search:focus, #header-search #search:active, #header-search #search.nice-select.open {
  box-shadow: 0 0 3px 0 #ababab;
}
#header-search #algolia-searchbox {
  display: table;
  margin: 0 auto;
  height: 40px;
  width: 100%;
}
@media only screen and (min-width: 600px) {
  #header-search #algolia-searchbox {
    height: 42px;
  }
}
#header-search .algolia-autocomplete {
  position: relative;
  vertical-align: top;
}
#header-search .algolia-autocomplete:after {
  font-family: "beacon-icon-fontello";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
  position: absolute;
  content: '\e80f';
  right: 5px;
  top: 10px;
  font-size: 20px;
  color: #999;
}
@media only screen and (min-width: 600px) {
  #header-search .algolia-autocomplete:after {
    right: 2px;
  }
}
@media only screen and (min-width: 600px) {
  #header-search .algolia-autocomplete:after {
    top: 6px;
  }
}
@media only screen and (min-width: 600px) {
  #header-search .algolia-autocomplete:after {
    font-size: 29px;
  }
}

/* -------------------------------------------- *
 * Header Links
 */
.skip-links {
  overflow: visible;
  position: relative;
  white-space: nowrap;
  text-align: right;
  min-width: auto;
  padding-bottom: 0;
  border: none;
  border-top: 1px solid #e7e7e7;
  margin: 0;
}
@media only screen and (min-width: 600px) {
  .skip-links {
    min-width: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-links {
    min-width: 485px;
  }
}
@media only screen and (min-width: 600px) {
  .skip-links {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 600px) {
  .skip-links {
    border: none;
  }
}
@media only screen and (min-width: 600px) {
  .skip-links {
    border-top: 1px solid #e7e7e7;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-links {
    border-top: none;
  }
}
.skip-links:before {
  position: absolute;
  content: '';
  border-bottom: 3px solid #e7e7e7;
  left: 0;
  top: 53px;
  width: 100%;
  z-index: 1;
  display: block;
}
@media only screen and (min-width: 600px) {
  .skip-links:before {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-links:before {
    display: none;
  }
}
.skip-links [class*="icon-"]:before {
  font-size: 24px;
  color: #999;
  line-height: 42px;
}
@media only screen and (min-width: 600px) {
  .skip-links [class*="icon-"]:before {
    font-size: 25px;
  }
}
.skip-links .icon-search_icon:before {
  font-size: 30px;
}
.skip-links .skip-link {
  border: none;
  text-transform: uppercase;
  padding-top: 0;
  border-right: 1px solid #e7e7e7;
  font-size: 10px;
  color: #999;
}
@media only screen and (min-width: 600px) {
  .skip-links .skip-link {
    padding-top: 5px;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-links .skip-link {
    padding-top: 0;
  }
}
@media only screen and (min-width: 600px) {
  .skip-links .skip-link {
    border-right: 1px solid #e7e7e7;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-links .skip-link {
    border-right: none;
  }
}
@media only screen and (min-width: 600px) {
  .skip-links .skip-link {
    font-size: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-links .skip-link {
    font-size: 14px;
  }
}
@media only screen and (min-width: 600px) {
  .skip-links .skip-link {
    color: #999;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-links .skip-link {
    color: #666;
  }
}
.skip-links .skip-link .label {
  margin-top: -3px;
}
@media only screen and (min-width: 600px) {
  .skip-links .skip-link .label {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-links .skip-link .label {
    margin-top: -3px;
  }
}
@media only screen and (min-width: 600px) {
  .skip-links .skip-link span {
    display: inline-block;
  }
}
@media only screen and (min-width: 600px) {
  .skip-links .skip-link span {
    vertical-align: middle;
  }
}
.skip-links .skip-link:hover {
  text-decoration: none;
}
.skip-links .skip-link.skip-active {
  background: none;
}
.skip-links .skip-link.skip-active .label,
.skip-links .skip-link.skip-active [class*="icon-"]:before {
  color: #666;
}
.skip-links .skip-link.skip-active:after {
  background: #fff;
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 99;
  display: block;
}
@media only screen and (min-width: 600px) {
  .skip-links .skip-link.skip-active:after {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-links .skip-link.skip-active:after {
    display: none;
  }
}
.skip-links .skip-link.skip-active.skip-account:after {
  left: -2px;
}
@media only screen and (min-width: 600px) {
  .skip-links {
    margin: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-links {
    margin: 15px 0 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-links {
    clear: none;
    float: right;
  }
  .skip-links #account_link,
  .skip-links .account-cart-wrapper {
    display: inline-block;
  }
  .skip-links a.skip-link {
    letter-spacing: 1px;
    line-height: 42px;
    width: auto;
    white-space: nowrap;
    text-align: left;
    margin-left: 30px;
    padding: 0;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) and (max-width: 1279px) {
  .skip-links a.skip-link {
    margin-left: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .skip-links a.skip-link .label {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  }
  .skip-links a.skip-link .label[class*="icon-"] {
    position: relative;
    padding-right: 24px;
  }
  .skip-links a.skip-link .label[class*="icon-"]:before {
    position: absolute;
    right: 5px;
    font-size: 10px;
  }
  .skip-links a.skip-link:hover {
    text-decoration: none;
  }
}
.skip-links .skip-cart {
  float: right;
  border: none;
}
@media only screen and (min-width: 600px) {
  .skip-links .skip-cart span.icon-cart_icon {
    margin-right: 5px;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-links .skip-cart span.icon-cart_icon {
    margin-right: 0;
  }
}
.skip-links .skip-cart span.icon-cart_icon:before {
  vertical-align: middle;
}
.skip-links .skip-cart .count {
  background: #ffe800;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  color: #000;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  font-size: 11px;
  height: 19px;
  line-height: 19px;
  display: inline-block;
  background: #ffe800;
  border-radius: 5px;
  padding: 0 7px;
  /*@include easy-left(20px,unset,unset);
  @include easy-right(unset,5px,5px);
  @include easy-top(-1px,5px,5px);
  position: absolute;*/
}
@media only screen and (min-width: 600px) {
  .skip-links .skip-cart .count {
    margin-left: -2px;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-links .skip-cart .count {
    margin-left: 0;
  }
}
@media only screen and (min-width: 600px) {
  .skip-links .skip-cart .count {
    position: static;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-links .skip-cart .count {
    position: absolute;
  }
}
@media only screen and (min-width: 600px) {
  .skip-links .skip-cart .count {
    top: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-links .skip-cart .count {
    top: -3px;
  }
}
@media only screen and (min-width: 600px) {
  .skip-links .skip-cart .count {
    left: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-links .skip-cart .count {
    left: 21px;
  }
}
.skip-links .skip-cart .count:before, .skip-links .skip-cart .count:after {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .skip-links .skip-cart .label {
    padding-left: 9px;
  }
  .skip-links .skip-cart .label .price {
    font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  }
}

.skip-content {
  clear: both;
}
.skip-content.skip-active {
  background: #FFF;
}
.skip-content#header-search {
  padding: 10px 10px 0;
}
@media only screen and (min-width: 600px) {
  .skip-content#header-search {
    padding: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-content#header-search {
    padding: 0;
  }
}
@media only screen and (min-width: 600px) {
  .skip-content {
    clear: both;
  }
}
@media only screen and (min-width: 1024px) {
  .skip-content {
    clear: none;
  }
}

/* -------------------------------------------- *
 * Header Account
 */
#header-account.not-logged-in > ul:first-child {
  display: block;
}
#header-account.not-logged-in > ul:first-child + ul {
  display: none;
}
#header-account.logged-in > ul:first-child {
  display: none;
}
#header-account.logged-in > ul:first-child + ul {
  display: block;
}
#header-account ul {
  display: block;
  position: relative;
}
#header-account ul li {
  position: relative;
  margin-top: 0;
  padding-left: 0;
}
@media only screen and (min-width: 600px) {
  #header-account ul li {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1024px) {
  #header-account ul li {
    margin-top: 16px;
  }
}
@media only screen and (min-width: 600px) {
  #header-account ul li {
    padding-left: 0;
  }
}
@media only screen and (min-width: 1024px) {
  #header-account ul li {
    padding-left: 25px;
  }
}
#header-account ul li:first-child {
  margin-top: 0;
}
#header-account ul li:before {
  content: "\e823";
  position: absolute;
  left: 0;
  top: 3px;
  color: #999;
  display: none;
}
@media only screen and (min-width: 600px) {
  #header-account ul li:before {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  #header-account ul li:before {
    display: block;
  }
}
#header-account ul li h4 {
  margin-bottom: 0;
}
#header-account ul li h4 a {
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  padding: 0 20px;
  font-size: 14px;
  color: #000000;
  line-height: 49px;
  letter-spacing: 1.3px;
  display: block;
  width: 100%;
  height: auto;
  text-decoration: none;
}
@media only screen and (min-width: 600px) {
  #header-account ul li h4 a {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1024px) {
  #header-account ul li h4 a {
    padding: 0;
  }
}
@media only screen and (min-width: 600px) {
  #header-account ul li h4 a {
    line-height: 49px;
  }
}
@media only screen and (min-width: 1024px) {
  #header-account ul li h4 a {
    line-height: 1.4;
  }
}
@media only screen and (min-width: 600px) {
  #header-account ul li h4 a {
    letter-spacing: 1.3px;
  }
}
@media only screen and (min-width: 1024px) {
  #header-account ul li h4 a {
    letter-spacing: inherit;
  }
}
#header-account ul li p {
  text-transform: none;
  color: #000000;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  line-height: 18px;
  display: none;
}
@media only screen and (min-width: 600px) {
  #header-account ul li p {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  #header-account ul li p {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  #header-account {
    background: #FFF;
    position: absolute;
    right: 140px;
    top: 126px;
    width: 260px;
    padding: 25px 18px 36px;
    box-sizing: border-box;
    border: 1px solid #e7e7e7;
    text-align: left;
    -moz-box-shadow: 2px 4px 1px 0px rgba(205, 205, 205, 0.2);
    -webkit-box-shadow: 2px 4px 1px 0px rgba(205, 205, 205, 0.2);
    box-shadow: 2px 4px 1px 0px rgba(205, 205, 205, 0.2);
  }
  #header-account:before {
    border-color: transparent transparent #fff;
    border-style: solid;
    border-width: 0 13px 13px;
    content: "";
    position: absolute;
    right: 53px;
    top: -12px;
    z-index: 2;
  }
  #header-account:after {
    border-color: transparent transparent #e7e7e7;
    border-style: solid;
    border-width: 0 13px 13px;
    content: "";
    position: absolute;
    right: 53px;
    top: -14px;
  }
  #header-account:before, #header-account:after {
    right: 63px;
  }
}

/* -------------------------------------------- *
 * Header MiniCart
 */
#header-cart {
  margin: 0;
  font-size: 13px;
}
@media only screen and (min-width: 600px) {
  #header-cart {
    font-size: 14px;
  }
}
#header-cart.skip-active {
  border: 1px solid #e7e7e7;
  border-top: none;
  top: 0;
}
@media only screen and (min-width: 600px) {
  #header-cart.skip-active {
    border-top: none;
  }
}
@media only screen and (min-width: 1024px) {
  #header-cart.skip-active {
    border-top: 1px solid #e7e7e7;
  }
}
@media only screen and (min-width: 600px) {
  #header-cart.skip-active {
    top: 0;
  }
}
@media only screen and (min-width: 1024px) {
  #header-cart.skip-active {
    top: 59px;
  }
}
@media only screen and (min-width: 1024px) {
  #header-cart {
    -moz-box-shadow: 2px 4px 1px 0px rgba(205, 205, 205, 0.2);
    -webkit-box-shadow: 2px 4px 1px 0px rgba(205, 205, 205, 0.2);
    box-shadow: 2px 4px 1px 0px rgba(205, 205, 205, 0.2);
  }
  #header-cart:before {
    border-color: transparent transparent #fff;
    border-style: solid;
    border-width: 0 13px 13px;
    content: "";
    position: absolute;
    right: 53px;
    top: -12px;
    z-index: 2;
  }
  #header-cart:after {
    border-color: transparent transparent #e7e7e7;
    border-style: solid;
    border-width: 0 13px 13px;
    content: "";
    position: absolute;
    right: 53px;
    top: -14px;
  }
  #header-cart:before, #header-cart:after {
    right: 43px;
  }
}

/* -------------------------------------------- *
 * Header Navigation
 */
#header-nav {
  clear: both;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid #e7e7e7;
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  #header-nav {
    /* MegaMenu Navigation */
    border-top: 1px solid #e7e7e7;
    border-bottom: 2px solid #e7e7e7;
  }
}
#header-nav a:hover {
  text-decoration: none;
}
#header-nav.skip-content {
  background: #a2c2e1;
}
#header-nav + div p img {
  float: left;
}

.nav-container .nav-block-container h4,
.nav-container .pure-link,
.nav-container .level1 > a,
.nav-container a.level0,
.nav-container a.drop {
  background: none;
  font-family: "proximanova-semibold", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}
@media only screen and (min-width: 1024px) {
  .nav-container {
    position: relative;
    display: block;
  }
  .nav-container a, .nav-container span {
    background: none;
    color: #000;
    font-size: 14px;
    text-transform: capitalize;
    font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  }
  .nav-container a.level0, .nav-container a.drop {
    font-size: 16px;
  }
  .nav-container a:hover {
    color: #000;
  }
  .nav-container .nav-block-container h4,
  .nav-container .level1 > a {
    padding: 0;
  }
  .nav-container #menu {
    height: 56px;
    display: table;
    margin: 0 auto;
    float: none;
    width: auto;
  }
  .nav-container #menu li {
    background: none;
    position: static;
  }
  .nav-container #menu li:hover a {
    color: #000;
  }
  .nav-container #menu li:hover [class*="dropdown_"] {
    margin-top: 15px;
    left: -1px;
  }
  .nav-container #menu li li {
    padding: 0;
    width: 100%;
  }
  .nav-container .nav-mega-container.has-cms-block ul.level0:first-child li.level1:nth-child(-n + 5) {
    display: block;
  }
  .nav-container .nav-mega-container.has-cms-block ul.level0:first-child li.level1:nth-child(n + 6) {
    display: none;
  }
  .nav-container .nav-mega-container.has-cms-block ul.level0.column-2 li.level1.nav-1-1, .nav-container .nav-mega-container.has-cms-block ul.level0.column-2 li.level1.nav-1-2, .nav-container .nav-mega-container.has-cms-block ul.level0.column-2 li.level1.nav-1-4 {
    display: none;
  }
  .nav-container .nav-mega-container.has-cms-block ul.level0.column-2 li.level1.nav-1-7, .nav-container .nav-mega-container.has-cms-block ul.level0.column-2 li.level1.nav-1-9, .nav-container .nav-mega-container.has-cms-block ul.level0.column-2 li.level1.nav-1-11, .nav-container .nav-mega-container.has-cms-block ul.level0.column-2 li.level1.nav-1-15 {
    display: block;
  }
}

/* Normal Navigation */
@media only screen and (max-width: 1023px) {
  .nav-primary li li {
    padding: 0;
  }
  li.level0.menu-active .nav-primary + li.level0 {
    border-top: 1px solid #e7e7e7;
  }
  .nav-primary .menu-active > a.has-children:after {
    content: '\e821';
  }
  .nav-primary a.has-children:after {
    font-family: "beacon-icon-fontello";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    /* opacity: .8; */
    /* For safety - reset parent styles, that can break glyph codes*/
    font-variant: normal;
    text-transform: none;
    /* fix buttons height, for twitter bootstrap */
    line-height: 1em;
    /* Animation center compensation - margins should be symmetric */
    /* remove if not needed */
    margin-left: .2em;
    /* you can be more comfortable with increased icons size */
    /* font-size: 120%; */
    /* Font smoothing. That was taken from TWBS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Uncomment for 3D effect */
    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
    position: absolute;
    content: '\e820';
    right: 13px;
    top: 18px;
    color: #999;
  }
  .nav-primary li.level0.menu-active + li > a {
    border-top: 1px solid #e7e7e7;
  }
  .nav-primary li.parent > a.has-children.level0:before {
    position: absolute;
    content: '';
    right: 0;
    top: 0;
    background: #f6f6f6;
    width: 49px;
    height: 49px;
  }
  .nav-primary a {
	/*test
    line-height: 30px;
	*/
    font-size: 12px;
  }
  .nav-primary .level0 > .pure-link,
  .nav-primary a.level0 {
    line-height: 49px;
    font-size: 14px;
    position: relative;
  }
  .nav-primary a.level1 {
    line-height: 32px;
  }
  .nav-primary a.level1.has-children:after {
    top: 9px;
  }
}
.nav-primary .nav-mega-container {
  display: none;
  margin-top: 10px;
  margin-bottom: 4px;
}
.nav-primary li.level0 li.sub-menu-active > ul,
.nav-primary .nav-mega-container > ul.level0,
.nav-primary .parent.menu-active > .nav-mega-container {
  display: block;
}
.nav-primary .nav-mega-container > ul.level0:first-child {
  display: none;
}
@media only screen and (min-width: 600px) {
  .nav-primary .nav-mega-container > ul.level0:first-child {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary .nav-mega-container > ul.level0:first-child {
    display: inline-block;
  }
}
.nav-primary .nav-mega-container > ul.level0:first-child > li:nth-child(2n) {
  display: none;
}
.nav-primary .nav-block-container {
  position: relative;
  padding-left: 50px;
  /* Config: Columns + flexible gutter */
  /* Set column config */
  /*.grid12-6 {*/
  width: 50%;
  display: inline-block;
  vertical-align: top;
  /*}*/
  display: none;
}
@media only screen and (min-width: 600px) {
  .nav-primary .nav-block-container {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .nav-primary .nav-block-container {
    display: inline-block;
  }
}
.nav-primary .nav-block-container:before {
  position: absolute;
  content: '';
  width: 1px;
  height: 228px;
  background: #e7e7e7;
  left: 0;
  top: 0;
}
.nav-primary .nav-block-container .featured-block,
.nav-primary .nav-block-container .promos-block {
  /* Config: Columns + flexible gutter */
  /* Set column config */
  /*.grid12-6 {*/
  width: 50%;
  display: inline-block;
  vertical-align: top;
  /*}*/
}
.nav-primary .nav-block-container .featured-block h4,
.nav-primary .nav-block-container .promos-block h4 {
  line-height: 30px;
  font-size: 14px;
  margin: 0;
}
.nav-primary .nav-block-container .featured-block a,
.nav-primary .nav-block-container .promos-block a {
  float: left;
  clear: both;
  margin-top: 0;
}
.nav-primary .nav-block-container .featured-block a ~ a,
.nav-primary .nav-block-container .promos-block a ~ a {
  margin-top: 9px;
}
.nav-primary .nav-block-container .promos-block a {
  float: right;
}
.nav-primary .nav-block-container .promos-block a:hover:after {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .nav-primary {
    /*display: none;*/
  }
  .nav-primary ul.level0,
  .nav-primary ul.level0 ul, .nav-primary > li {
    position: static;
  }
  .nav-primary li.level0 {
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
  }
  .nav-primary li.level0:hover {
    border-color: #e7e7e7;
  }
  .nav-primary li.level0:hover a.level0:before {
    content: '';
    position: absolute;
    height: 5px;
    border: 1px solid #e7e7e7;
    background: #FFF;
    border-bottom: none;
    top: -5px;
    left: -1px;
    right: -1px;
  }
  .nav-primary li.level0:hover a.level0:after {
    content: '';
    position: absolute;
    height: 1px;
    left: 0px;
    right: -1px;
    bottom: -1px;
    width: 100%;
    height: 1px;
    z-index: 11;
    background: #FFF;
  }
  .nav-primary li li.parent > a:after {
    display: none;
  }
  .nav-primary li li ul {
    display: block;
    border: none;
    background: none;
  }
  .nav-primary li.level2 {
    line-height: 100%;
    margin-bottom: 7px;
  }
  .nav-primary li.level2:first-child {
    margin-top: 0;
  }
  .nav-primary li.level2 ~ li {
    margin-top: 9px;
  }
  .nav-primary .nav-block-container a,
  .nav-primary a {
    line-height: 100%;
    border: none;
  }
  .nav-primary a.level1 {
    line-height: 30px;
  }
  .nav-primary .nav-block-container a,
  .nav-primary a.level2 {
    display: inline-block;
    position: relative;
  }
  .nav-primary .nav-block-container a:hover:after,
  .nav-primary a.level2:hover:after {
    content: '';
    position: absolute;
    border-bottom: 1px solid #ababab;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .nav-primary li:nth-child(4) .nav-mega-container {
    left: 35%;
  }
  .nav-primary li:nth-child(4) .nav-mega-container.has-cms-block {
    left: 0;
  }
  .nav-primary li:nth-child(n+5) .nav-mega-container {
    left: auto;
    right: 0;
  }
  .nav-primary .nav-mega-container {
    background: #FBFBFB;
    border: solid 1px #e7e7e7;
    background: #FFF;
    position: absolute;
    left: 0;
    top: 56px;
    /* Height of ".nav-primary a.level0" */
    z-index: 10;
    width: 624px;
    padding: 39px 50px;
    margin: 0;
    /*padding-left: $box-spacing;
    padding-right: $box-spacing;*/
    display: none;
    /* Hide until displayed. */
  }
  .nav-primary .nav-mega-container.has-cms-block {
    height: 520px;
    overflow: hidden;
    width: 1145px;
  }
  .nav-primary .nav-mega-container.has-cms-block ul.level0 {
    /* Config: Columns + flexible gutter */
    /* Set column config */
    /*.grid12-3 {*/
    width: 25%;
    display: inline-block;
    vertical-align: top;
    /*}*/
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) and (max-width: 1279px) {
  .nav-primary .nav-mega-container {
    width: 984px;
  }
}

@media only screen and (min-width: 1024px) {
  .nav-primary .nav-mega-container ul.level0 {
    padding: 0;
    border: none;
    background: none;
    /* Config: Columns + flexible gutter */
    /* Set column config */
    /*.grid12-6 {*/
    width: 50%;
    display: inline-block;
    vertical-align: top;
    /*}*/
  }
  .nav-primary .nav-mega-container ul.level0 > li:nth-child(2n) {
    display: block;
  }
  .nav-primary .nav-mega-container ul.level0 + ul.level0 > li:nth-child(2n) {
    display: block;
  }
  .nav-primary .nav-mega-container ul.level0 + ul.level0 > li:nth-child(2n+1) {
    display: none;
  }
}

.block-master {
  padding-right: 6px;
}

.block-lighting {
  margin-bottom: 0.4%;
  width: 24.2%;
}

.block-fan {
  padding: 0;
  width: 24.2%;
}

@media screen and (max-width: 1024px) {
  .block-lighting {
    margin-bottom: 0.9%;
  }
}
@media screen and (max-width: 768px) {
  .block-lighting, .block-fan {
    width: 50%;
    padding: 5px;
    margin-top: 5px !important;
  }

  .block-master {
    width: 100%;
    padding: 0 6px;
  }
}
/*--- FOUR SIXTY SLIDER ---*/
.product-view .add-to-cart-wrapper {
  margin-bottom: 20px;
}

#shop-ins {
  font: 26px "proximanova-thin", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  margin-bottom: 15px;
}
#shop-ins span {
  font-family: "AustinItalic";
  text-transform: none;
  font-weight: bold;
}

.fs-slider-container {
  padding-bottom: 20px;
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 20px;
}
.fs-slider-container .fs-slider-next-button,
.fs-slider-container .fs-slider-prev-button {
  bottom: 20px;
}
.fs-slider-container .fs-wrapper {
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  .fs-slider-container .fs-wrapper {
    overflow: auto;
  }
}

.fs-wrapper .fs-has-links {
  font-weight: 400;
}
.fs-wrapper .fs-has-links:after {
  font-weight: 400 !important;
  margin-top: 0 !important;
}
.fs-wrapper .fs-slashes + .fs-slashes {
  display: none;
}
.fs-wrapper .fs-detail-date {
  display: block;
}

.fs-detail-container .fs-overlink-text {
  background: #999999;
  color: #FFF;
  font-weight: 400;
}
.fs-detail-container .fs-overlink-text .fs-arrow-up {
  border-color: transparent transparent #999999 transparent;
}
.fs-detail-container .fs-detail-right {
  position: static;
}
.fs-detail-container .fs-detail-right > .fs-link-list {
  display: none;
}
.fs-detail-container .fs-detail-nav-button {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 4px 10px;
  background: #FFF;
}
.fs-detail-container #fs-next-post {
  left: 70px;
}
.fs-detail-container #fs-detail-close {
  left: auto;
  right: -20px;
  top: -20px;
  padding: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid #e7e7e7;
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  border-radius: 40px;
}
.fs-detail-container #fs-detail-close svg {
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}
.fs-detail-container .fs-text-link-container {
  text-align: left;
  margin-bottom: 0;
}
.fs-detail-container .fs-text-link-container .fs-text-product {
  text-align: left;
}
.fs-detail-container .fs-text-link-container .fs-text-product:hover {
  text-decoration: none;
}
.fs-detail-container .fs-text-link-container .fs-link-text {
  font: 24px "proximanova-thin", Verdana, Arial, sans-serif;
  line-height: 26px;
  text-transform: uppercase;
}
.fs-detail-container .fs-text-link-container .fs-text-product-cta:after {
  content: 'ADD TO CART';
  background: #ffe800;
  font: 15px "proximanova-bold", Verdana, Arial, sans-serif;
  border: none;
  line-height: 20px;
  padding: 10px 24px;
  display: inline-block;
  max-width: none;
  margin-left: 0;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.fs-detail-container .fs-text-link-container .fs-text-product-cta:hover:after {
  background: #ffef4d;
  color: #000000;
}
.fs-detail-container .fs-detail-title {
  text-align: left;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
}
.fs-detail-container .fs-post-info {
  padding: 5px 30px;
}
.fs-detail-container .fs-post-info a {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
}
.fs-detail-container .fs-detail-shares .fs-share {
  width: 30px;
  height: 30px;
  background: #848484;
  color: #FFF;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  line-height: 30px;
  font-size: 14px;
  margin: 0 3px;
  text-align: center;
}
@media only screen and (max-width: 770px) {
  .fs-detail-container {
    margin-top: 50px;
  }
  .fs-detail-container .fs-detail-nav-button,
  .fs-detail-container #fs-prev-post {
    top: 0;
    left: 0;
    margin: 0;
    position: absolute;
  }
  .fs-detail-container #fs-next-post {
    left: 50px;
    position: absolute;
    margin: 0;
  }
  .fs-detail-container #fs-detail-close {
    position: absolute;
    top: -45px;
    margin: 0;
    right: 5px;
  }
}

.landing-instagram {
  padding-top: 25px;
  border-top: 1px solid #e7e7e7;
}
@media only screen and (max-width: 770px) {
  .landing-instagram .fs-wrapper div.fs-timeline-entry {
    margin: 1px;
  }
}

.cms-instagram .instagram-feature {
  text-align: center;
  margin-top: 30px;
}
.cms-instagram .instagram-feature h3 {
  font: 48px "proximanova-thin", Verdana, Arial, sans-serif;
  line-height: 1;
  margin-bottom: 14px;
}
.cms-instagram .instagram-feature h3 span {
  font-family: "AustinItalic";
}
.cms-instagram .instagram-feature p {
  display: block;
}
@media only screen and (max-width: 770px) {
  .cms-instagram .instagram-feature h3 {
    font-size: 30px;
  }
  .cms-instagram .fs-wrapper div.fs-timeline-entry {
    margin: 2px;
  }
}

/* -------------------------------------------- *
 * Custom Check box with icon font
 */
input[type="radio"], input[type="checkbox"] {
  display: none;
}

/* to hide the checkbox itself */
input[type="checkbox"] + label:before {
  border: 1px solid #e7e7e7;
  width: 20px;
  height: 20px;
  text-align: center;
  color: #000;
  vertical-align: top;
  margin: 0;
  padding: 0;
}

input[type="checkbox"].validation-error + label:before,
input[type="checkbox"].validation-failed + label:before {
  border-color: #e22723;
}

input[type="checkbox"] + label:before {
  content: "";
}

/* unchecked icon */
input[type="checkbox"] + label:before {
  letter-spacing: 10px;
}

/* space between checkbox and label */
input[type="checkbox"] + label:before {
  margin-right: 7px;
}

/* more space between checkbox and label */
input[type="checkbox"]:checked + label:before {
  content: "\e811";
}

/* checked icon */
input[type="checkbox"]:checked + label:before {
  letter-spacing: 0px;
  line-height: 1.3em;
}

/* allow space for check mark */
input[type="checkbox"]:disabled + label:before {
  background: #f0f0f0;
  color: #d2d2d2;
}

/* -------------------------------------------- *
 * Custom Radio box with icon font
 */
input[type="radio"] ~ label {
  position: relative;
  padding-left: 30px;
}

input[type="radio"] ~ label:before,
input[type="radio"] ~ label:after {
  content: "";
}

/* unchecked icon */
input[type="radio"] ~ label:before {
  border: 1px solid #e7e7e7;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
}

input[type="radio"]:checked ~ label:after {
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  border: 4px solid #000;
  position: absolute;
  left: 6px;
  top: 6px;
}

input[type="radio"].validation-error ~ label:before,
input[type="radio"].validation-failed ~ label:before {
  border-color: #e22723;
}

input[type="radio"]:disabled ~ label:before {
  background: #f0f0f0;
}

input[type="radio"]:checked:disabled ~ label:after {
  border: 4px solid #ddd;
}

/* -------------------------------------------- *
 * Inputs
 */
input[type="email"], input[type="search"], input[type="number"], input[type="password"], input[type="tel"], input[type="text"],
.input-text,
.nice-select,
textarea {
  color: #999;
  background: #FFF;
  height: 42px;
  font-size: 14px;
  padding: 0px 15px 0px 15px;
}
input[type="email"]:-moz-placeholder, input[type="search"]:-moz-placeholder, input[type="number"]:-moz-placeholder, input[type="password"]:-moz-placeholder, input[type="tel"]:-moz-placeholder, input[type="text"]:-moz-placeholder,
.input-text:-moz-placeholder,
.nice-select:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999;
  font-size: 14px;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  opacity: 1;
}
input[type="email"]::-moz-placeholder, input[type="search"]::-moz-placeholder, input[type="number"]::-moz-placeholder, input[type="password"]::-moz-placeholder, input[type="tel"]::-moz-placeholder, input[type="text"]::-moz-placeholder,
.input-text::-moz-placeholder,
.nice-select::-moz-placeholder,
textarea::-moz-placeholder {
  color: #999;
  font-size: 14px;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  opacity: 1;
}
input[type="email"]:-ms-input-placeholder, input[type="search"]:-ms-input-placeholder, input[type="number"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder, input[type="text"]:-ms-input-placeholder,
.input-text:-ms-input-placeholder,
.nice-select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
  font-size: 14px;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  opacity: 1;
}
input[type="email"]::-webkit-input-placeholder, input[type="search"]::-webkit-input-placeholder, input[type="number"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder, input[type="text"]::-webkit-input-placeholder,
.input-text::-webkit-input-placeholder,
.nice-select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
  font-size: 14px;
  font-family: "proximanova-regular", Verdana, Arial, sans-serif;
  opacity: 1;
}
input[type="email"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="tel"]:focus, input[type="text"]:focus,
.input-text:focus,
.nice-select:focus,
textarea:focus {
  font-size: 14px;
  border-color: #ababab;
  outline: transparent;
  color: #999;
  -moz-box-shadow: 0 0 3px 0 #ababab;
  -webkit-box-shadow: 0 0 3px 0 #ababab;
  box-shadow: 0 0 3px 0 #ababab;
}
input[type="email"]:disabled, input[type="search"]:disabled, input[type="number"]:disabled, input[type="password"]:disabled, input[type="tel"]:disabled, input[type="text"]:disabled,
.input-text:disabled,
.nice-select:disabled,
textarea:disabled {
  color: #c0c0c0;
  background: #f9f9f9;
}

textarea {
  padding: 5px 10px;
}

.nice-select {
  padding-right: 35px;
}
.nice-select .current {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.validation-error .nice-select,
.input-text.validation-failed,
.validation-failed.nice-select,
textarea.validation-failed {
  border-color: #e22723;
  color: #e22723;
}
.validation-error .nice-select:focus,
.input-text.validation-failed:focus,
.validation-failed.nice-select:focus,
textarea.validation-failed:focus {
  border-color: #e22723;
  color: #e22723;
  -moz-box-shadow: 0 0 3px 0 #e22723;
  -webkit-box-shadow: 0 0 3px 0 #e22723;
  box-shadow: 0 0 3px 0 #e22723;
}

.validation-error .nice-select:after {
  color: #e22723;
}
.validation-error .nice-select ul {
  color: #999;
}

label.required:after, span.required:after {
  color: #000;
  font-size: 14px;
}

.language_menu{
	text-align: right;
	word-wrap: break-word;
	white-space: pre-wrap;
	white-space: -moz-pre-wrap;
	white-space: -pre-wrap;
	white-space: -o-pre-wrap;
}
.language_menu a {
	color: #fff;
	margin: 10px 10px;
	cursor: pointer;	
}

body.en .language {
	display: none;
}
body.en .language[lang=en] {
	display: block;
}

body.de .language {
	display: none;
}
body.de .language[lang=de] {
	display: block;
}

body.ja .language {
	display: none;
}
body.ja .language[lang=ja] {
	display: block;
}

body.es .language {
	display: none;
}
body.es .language[lang=es] {
	display: block;
}

body.fr .language {
	display: none;
}
body.fr .language[lang=fr] {
	display: block;
}

body.ko .language {
	display: none;
}
body.ko .language[lang=ko] {
	display: block;
}

body.pt .language {
	display: none;
}
body.pt .language[lang=pt] {
	display: block;
}

body.ru .language {
	display: none;
}

body.ru .language[lang=ru] {
	display: block;
}
/*# sourceMappingURL=styles.css.map */

