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

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

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

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

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

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

// ----------------------------------------------
*/
/*! normalize.css v2.0.1 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 8/9.
 */
@import "https://fonts.googleapis.com/css?family=Baloo+Bhai";
/* line 11, ../scss/vendor/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

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

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

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */
/* line 49, ../scss/vendor/_normalize.scss */
[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.
 */
/* line 63, ../scss/vendor/_normalize.scss */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

/*
 * Removes default margin.
 */
/* line 73, ../scss/vendor/_normalize.scss */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
/* line 85, ../scss/vendor/_normalize.scss */
a:focus {
  outline: thin dotted;
}

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

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

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

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

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */
/* line 132, ../scss/vendor/_normalize.scss */
dfn {
  font-style: italic;
}

/*
 * Addresses styling not present in IE 8/9.
 */
/* line 140, ../scss/vendor/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

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

/*
 * Improves readability of pre-formatted text in all browsers.
 */
/* line 162, ../scss/vendor/_normalize.scss */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * Sets consistent quote types.
 */
/* line 172, ../scss/vendor/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/*
 * Addresses inconsistent and variable font size in all browsers.
 */
/* line 180, ../scss/vendor/_normalize.scss */
small {
  font-size: 80%;
}

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

/* line 196, ../scss/vendor/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 200, ../scss/vendor/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * Removes border when inside `a` element in IE 8/9.
 */
/* line 212, ../scss/vendor/_normalize.scss */
img {
  border: 0;
}

/*
 * Corrects overflow displayed oddly in IE 9.
 */
/* line 220, ../scss/vendor/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE 8/9 and Safari 5.
 */
/* line 232, ../scss/vendor/_normalize.scss */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Define consistent border, margin, and padding.
 */
/* line 244, ../scss/vendor/_normalize.scss */
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.
 */
/* line 255, ../scss/vendor/_normalize.scss */
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
 */
/* line 266, ../scss/vendor/_normalize.scss */
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.
 */
/* line 280, ../scss/vendor/_normalize.scss */
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.
 */
/* line 293, ../scss/vendor/_normalize.scss */
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.
 */
/* line 305, ../scss/vendor/_normalize.scss */
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.
 */
/* line 315, ../scss/vendor/_normalize.scss */
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).
 */
/* line 327, ../scss/vendor/_normalize.scss */
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.
 */
/* line 339, ../scss/vendor/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Removes inner padding and border in Firefox 4+.
 */
/* line 348, ../scss/vendor/_normalize.scss */
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.
 */
/* line 359, ../scss/vendor/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
/* line 372, ../scss/vendor/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ============================================ *
 * Reset
 * ============================================ */
/* line 30, ../scss/core/_reset.scss */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* line 38, ../scss/core/_reset.scss */
html {
  -webkit-tap-highlight-color: transparent;
  /* Prevent tap highlight on iOS/Android */
  -webkit-text-size-adjust: 100%;
  /* Prevent automatic scaling on iOS */
}

/* line 43, ../scss/core/_reset.scss */
body {
  background: #edf2f3;
  color: #000000;
  line-height: 1;
}

/* line 49, ../scss/core/_reset.scss */
html,
body,
img,
fieldset,
abbr,
acronym {
  border: 0;
}

/* line 58, ../scss/core/_reset.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

/* line 68, ../scss/core/_reset.scss */
th,
code,
cite,
caption {
  font-weight: normal;
  font-style: normal;
  text-align: left;
}

/* line 77, ../scss/core/_reset.scss */
address {
  font-style: normal;
}

/* line 81, ../scss/core/_reset.scss */
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

/* line 87, ../scss/core/_reset.scss */
img {
  display: block;
  max-width: 100%;
}

/* line 92, ../scss/core/_reset.scss */
ol,
ul {
  list-style: none;
}

/* line 97, ../scss/core/_reset.scss */
q:before,
q:after {
  content: '';
}

/* line 103, ../scss/core/_reset.scss */
input:focus,
input[type="search"]:focus {
  outline-offset: -2px;
}

/* line 109, ../scss/core/_reset.scss */
input[type="search"] {
  -webkit-appearance: none;
  /* 1 */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  /* 2 */
  box-sizing: border-box;
}

/* ============================================ *
 * Base Styles
 * ============================================ */
@-ms-viewport {
  width: device-width;
}
@-o-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
/* line 45, ../scss/core/_common.scss */
a, button {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/* line 50, ../scss/core/_common.scss */
body,
button,
input,
select,
table,
textarea {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  color: #373c3e;
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* line 66, ../scss/core/_common.scss */
a {
  color: #02b2e7;
  text-decoration: none;
  outline: none;
}

/* line 72, ../scss/core/_common.scss */
a:hover {
  color: #2bccfb;
  outline: none;
}

/* line 77, ../scss/core/_common.scss */
a:focus {
  outline-color: transparent;
  color: #013d4f;
  outline: none;
}

/* line 83, ../scss/core/_common.scss */
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 90, ../scss/core/_common.scss */
strong {
  font-weight: normal !important;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}

/* line 95, ../scss/core/_common.scss */
i {
  font-style: normal !important;
  font-family: "Kievit-RegularItalic", "Helvetica Neue", Arial, sans-serif;
}

/* line 101, ../scss/core/_common.scss */
i strong {
  font-weight: normal !important;
  font-style: normal !important;
  font-family: "Kievit-BoldItalic", "Helvetica Neue", Arial, sans-serif;
}

/* line 109, ../scss/core/_common.scss */
strong i {
  font-weight: normal !important;
  font-style: normal !important;
  font-family: "Kievit-BoldItalic", "Helvetica Neue", Arial, sans-serif;
}

/* ============================================ *
 * Typography
 * ============================================ */
/* line 120, ../scss/core/_common.scss */
h1, .h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #02b2e7;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 50px;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}

/* line 124, ../scss/core/_common.scss */
h2, .h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #373c3e;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 28px;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}

/* line 128, ../scss/core/_common.scss */
h3, .h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #373c3e;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}

/* line 132, ../scss/core/_common.scss */
h4, .h4 {
  margin: 0;
  margin-bottom: 10px;
  color: #373c3e;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 21px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}

/* line 136, ../scss/core/_common.scss */
h5, .h5 {
  margin: 0;
  margin-bottom: 10px;
  color: #373c3e;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}

/* line 140, ../scss/core/_common.scss */
h6, .h6 {
  margin: 0;
  margin-bottom: 5px;
  color: #373c3e;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}

/* ============================================ *
 * Shared Classes
 * ============================================ */
/* line 148, ../scss/core/_common.scss */
.bswrap {
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  padding: 0 25px;
}

/* line 155, ../scss/core/_common.scss */
.bsa-loader {
  background-image: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/ajax-loader2.gif") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
/* line 159, ../scss/core/_common.scss */
.bsa-loader.on-black-bg {
  background-image: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/ajax-loader-white-on-black.gif") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

/* line 166, ../scss/core/_common.scss */
.clear {
  float: none;
  clear: both;
  width: 100%;
}

/* line 172, ../scss/core/_common.scss */
.clear:after {
  content: '';
  display: block;
  clear: both;
}

/* line 178, ../scss/core/_common.scss */
.section {
  width: 100%;
  display: block;
}

/* line 182, ../scss/core/_common.scss */
.section.gray {
  background: #edf2f3;
}

/* line 186, ../scss/core/_common.scss */
.address-list address {
  margin-bottom: 1em;
}

/* line 190, ../scss/core/_common.scss */
.availability {
  margin-bottom: 0;
  font-size: 16px;
  text-transform: uppercase;
}

/* line 196, ../scss/core/_common.scss */
.availability .label {
  display: none;
}

/* line 200, ../scss/core/_common.scss */
.availability.in-stock {
  color: #6fc315;
}

/* line 204, ../scss/core/_common.scss */
.availability.available-soon,
.availability.out-of-stock {
  color: #DF280A;
}

/* line 209, ../scss/core/_common.scss */
.availability-only {
  color: #DF280A;
  margin-bottom: 10px;
}

/* -------------------------------------------- *
 * Page Titles
 */
/* line 218, ../scss/core/_common.scss */
.page-title {
  border-bottom: 1px solid #EDEDED;
}

/* line 222, ../scss/core/_common.scss */
.page-title h1,
.page-title h2,
.product-name h1,
.product-name .h1 {
  color: #373c3e;
  text-align: center;
  padding-bottom: 3px;
  margin-bottom: 15px;
}

/* -------------------------------------------- *
 * Block Module
 */
/* line 233, ../scss/core/_common.scss */
.block,
.col-left-first {
  margin-bottom: 20px;
}

/* line 238, ../scss/core/_common.scss */
.col-left-first .block:last-of-type {
  margin-bottom: 0;
}

/* line 242, ../scss/core/_common.scss */
.block-title {
  position: relative;
  padding: 10px 0 0;
  margin-bottom: 5px;
  border-top: 1px solid #e1e1e0;
}
/* line 248, ../scss/core/_common.scss */
.block-title h2,
.block-title h3,
.block-title strong {
  margin: 0;
  margin-bottom: 10px;
  color: #373c3e;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 21px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  color: #02b2e7;
  margin-bottom: 0;
}
/* line 255, ../scss/core/_common.scss */
.block-title small {
  font-size: 100%;
  font-weight: normal;
  color: #605a54;
}

/* line 263, ../scss/core/_common.scss */
body:not(.customer-account) .block:first-child .block-title {
  border-top: none;
  padding-top: 0;
}

/* line 268, ../scss/core/_common.scss */
.block-subtitle {
  font-weight: bold;
  margin-bottom: 7px;
}

/* line 273, ../scss/core/_common.scss */
.block-content {
  margin-top: 5px;
}

/* line 277, ../scss/core/_common.scss */
.block-content.unpad {
  padding: 0;
}

/* line 281, ../scss/core/_common.scss */
.block-content li.item {
  margin: 0 0 10px 9px;
}

/* line 285, ../scss/core/_common.scss */
.block-content li.item:last-child {
  margin-bottom: 0;
}

/* line 289, ../scss/core/_common.scss */
.block .actions {
  margin: 10px 0 0;
}
/* line 292, ../scss/core/_common.scss */
.block .actions:after {
  content: '';
  display: table;
  clear: both;
}
/* line 296, ../scss/core/_common.scss */
.block .actions a {
  float: left;
}
/* line 299, ../scss/core/_common.scss */
.block .actions .button {
  float: right;
}

/* line 307, ../scss/core/_common.scss */
.col-left .block .actions .button ~ a,
.col-right .block .actions .button ~ a {
  line-height: 33px;
  margin-right: 5px;
}

/* line 313, ../scss/core/_common.scss */
.col-of-2 {
  width: 50%;
  float: left;
}

/* line 317, ../scss/core/_common.scss */
.col-of-3 {
  width: 33.33%;
  float: left;
}

@media only screen and (max-width: 768px) {
  /* line 326, ../scss/core/_common.scss */
  .sidebar .block:not(.block-layered-nav) {
    margin-bottom: 0;
  }
  /* line 329, ../scss/core/_common.scss */
  .sidebar .block:not(.block-layered-nav) .block-title {
    padding: 0;
    margin-top: 0;
    border-bottom: none;
    border-top: none;
    margin-bottom: 0;
  }
  /* line 336, ../scss/core/_common.scss */
  .sidebar .block:not(.block-layered-nav) .block-title > strong {
    margin: 0;
    margin-bottom: 10px;
    color: #373c3e;
    font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
    font-size: 21px;
    font-style: normal;
    line-height: 1.4;
    text-rendering: optimizeSpeed;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0px;
    padding: 7px 10px 7px 24px;
    border-width: 1px;
    border-style: solid;
    border-color: #e1e1e0;
    position: relative;
    background-color: #F4F4F4;
    display: block;
    width: 100%;
    cursor: pointer;
    border-bottom: 0;
  }
  /* line 110, ../scss/mixin/_toggle-content.scss */
  .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 #02b2e7;
    border-right: none;
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }
  /* line 117, ../scss/mixin/_toggle-content.scss */
  .sidebar .block:not(.block-layered-nav) .block-title > strong:hover {
    background-color: #ededed;
  }
  /* line 345, ../scss/core/_common.scss */
  .sidebar .block:not(.block-layered-nav) .block-title.active > strong {
    margin: 0;
    margin-bottom: 10px;
    color: #373c3e;
    font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
    font-size: 21px;
    font-style: normal;
    line-height: 1.4;
    text-rendering: optimizeSpeed;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0px;
    padding: 7px 10px 7px 24px;
    border-width: 1px;
    border-style: solid;
    border-color: #e1e1e0;
    position: relative;
    background-color: #F4F4F4;
  }
  /* line 110, ../scss/mixin/_toggle-content.scss */
  .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 #02b2e7;
    border-bottom: none;
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }
  /* line 117, ../scss/mixin/_toggle-content.scss */
  .sidebar .block:not(.block-layered-nav) .block-title.active > strong:hover {
    background-color: #ededed;
  }
  /* line 351, ../scss/core/_common.scss */
  .sidebar .block:not(.block-layered-nav) .block-content {
    padding: 10px;
    margin-top: 0;
    border-width: 0 1px;
    border-style: solid;
    border-color: #e1e1e0;
  }
  /* line 361, ../scss/core/_common.scss */
  .sidebar .block:last-of-type {
    /*  border-bottom: 1px solid $c-module-border; */
  }
}
/* -------------------------------------------- *
 * Secondary Navigation
 */
/* line 373, ../scss/core/_common.scss */
.block-account .block-title,
.block-cms-menu .block-title {
  padding-top: 0;
  border-top: none;
}
/* line 378, ../scss/core/_common.scss */
.block-account li,
.block-cms-menu li {
  text-transform: uppercase;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  margin: 7px 0;
}
/* line 383, ../scss/core/_common.scss */
.block-account li strong,
.block-cms-menu li strong {
  font-weight: 400;
  color: #02b2e7;
}
/* line 388, ../scss/core/_common.scss */
.block-account li a,
.block-cms-menu li a {
  color: #373c3e;
}
/* line 391, ../scss/core/_common.scss */
.block-account li a:hover,
.block-cms-menu li a:hover {
  color: #02b2e7;
}

/* ============================================ *
 * Buttons
 * ============================================ */
/* Secondary Buttons */
/* .cart .buttons-set .button,
.cart-table .button, */
/* line 405, ../scss/core/_common.scss */
.sidebar .actions .button,
.button.button-secondary {
  background: #efecec;
  color: #373c3e;
  padding: 7px 15px;
}
/* line 411, ../scss/core/_common.scss */
.sidebar .actions .button:hover,
.button.button-secondary:hover {
  background: #d0d0d0;
  cursor: pointer;
}
/* line 416, ../scss/core/_common.scss */
.sidebar .actions .button:active,
.button.button-secondary:active {
  background: #c4c4c4;
  color: #373c3e;
}
/* line 421, ../scss/core/_common.scss */
.sidebar .actions .button:focus,
.button.button-secondary:focus {
  color: #373c3e;
  background: #c4c4c4;
  outline: none;
}

/* line 428, ../scss/core/_common.scss */
.sidebar .actions button.button {
  white-space: normal;
}

/* Primary Buttons */
/* line 434, ../scss/core/_common.scss */
.button,
.cart-table .product-cart-actions .button,
.footer .button {
  background: #02b2e7;
  display: inline-block;
  padding: 10px 15px 7px 15px;
  border: 0;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: normal;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  line-height: 19px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
/* line 451, ../scss/core/_common.scss */
.button:hover,
.cart-table .product-cart-actions .button:hover,
.footer .button:hover {
  background: #2bccfb;
  cursor: pointer;
}
/* line 455, ../scss/core/_common.scss */
.button:active,
.cart-table .product-cart-actions .button:active,
.footer .button:active {
  background: #029ecc;
  color: #FFFFFF;
}
/* line 459, ../scss/core/_common.scss */
.button:focus,
.cart-table .product-cart-actions .button:focus,
.footer .button:focus {
  background-color: #029ecc;
  outline: none;
  color: #FFFFFF;
}

/* line 466, ../scss/core/_common.scss */
a.button {
  text-decoration: none;
}

/* line 470, ../scss/core/_common.scss */
a.button:hover {
  color: #FFFFFF;
}

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

/* Adjacent buttons */
/* line 483, ../scss/core/_common.scss */
.button + .button {
  margin-left: 5px;
}

/* line 497, ../scss/core/_common.scss */
.button2 {
  border: 0;
  padding: 0 5px;
  margin: 0;
  background: transparent;
  cursor: pointer;
  vertical-align: middle;
}
/* line 505, ../scss/core/_common.scss */
.button2:hover, .button2:focus, .button2:visited, .button2:active {
  background-color: unset;
}

/* line 513, ../scss/core/_common.scss */
.button2:focus {
  outline: none;
}

/* line 517, ../scss/core/_common.scss */
.button2 span,
.button2 span span {
  line-height: 30px;
  height: 30px;
  text-decoration: underline;
  text-transform: uppercase;
  display: inline-block;
  color: #02b2e7;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}
/* line 527, ../scss/core/_common.scss */
.button2 span:hover,
.button2 span span:hover {
  text-decoration: none;
  color: #01789b;
}

@media only screen and (max-width: 768px) {
  /* line 535, ../scss/core/_common.scss */
  .col2-set .buttons-set .button,
  .col2-set .buttons-set .button2 {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  /* line 542, ../scss/core/_common.scss */
  .col2-set .buttons-set .back-link {
    display: none;
  }
  /* line 545, ../scss/core/_common.scss */
  .col2-set .buttons-set .required {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  /* line 553, ../scss/core/_common.scss */
  .buttons-set .button {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 7px;
  }
  /* line 560, ../scss/core/_common.scss */
  .buttons-set .back-link {
    display: none;
  }
  /* line 563, ../scss/core/_common.scss */
  .buttons-set .required {
    display: none;
  }
}
/* -------------------------------------------- *
 * Paypal Button
 */
/* line 573, ../scss/core/_common.scss */
.paypal-logo.paypal-after {
  float: left;
}

/* line 577, ../scss/core/_common.scss */
.paypal-after .paypal-or {
  float: left;
}

/* line 581, ../scss/core/_common.scss */
.paypal-or {
  line-height: 34px;
  margin: 0px 10px 5px;
}

/* line 586, ../scss/core/_common.scss */
.paypal-after .paypal-button {
  float: left;
}

/* line 590, ../scss/core/_common.scss */
.paypal-button {
  line-height: 0px;
}

/* line 594, ../scss/core/_common.scss */
.paypal-button img {
  display: inline;
}

@media only screen and (max-width: 740px) {
  /* line 599, ../scss/core/_common.scss */
  .paypal-or {
    line-height: 20px;
  }

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

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

/* line 679, ../scss/core/_common.scss */
.breadcrumbs li {
  float: left;
  font-size: 14px;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
}

/* line 686, ../scss/core/_common.scss */
.breadcrumbs a {
  float: left;
  color: #373c3e;
}

/* line 691, ../scss/core/_common.scss */
.breadcrumbs a:hover {
  color: #02b2e7;
}

/* line 695, ../scss/core/_common.scss */
.breadcrumbs strong {
  color: #373c3e;
  font-weight: normal;
}

/* line 700, ../scss/core/_common.scss */
.breadcrumbs span {
  float: left;
  padding: 0 7px;
}

@media only screen and (max-width: 768px) {
  /* line 707, ../scss/core/_common.scss */
  .breadcrumbs {
    display: none;
  }
}
/* -------------------------------------------- *
 * Button - Remove / Previous
 */
/* line 717, ../scss/core/_common.scss */
.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;
}
/* line 730, ../scss/core/_common.scss */
.btn-remove:hover,
.btn-previous:hover {
  background-color: #02b2e7;
  border-color: #02b2e7;
}

/* line 737, ../scss/core/_common.scss */
.btn-remove:after {
  content: 'X';
  color: #02b2e7;
  height: 20px;
  line-height: 20px;
  width: 100%;
  font-size: 10px;
  font-family: Arial, "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-weight: bold;
}
/* line 747, ../scss/core/_common.scss */
.btn-remove:hover:after {
  color: #FFFFFF;
  text-decoration: none;
}

/* line 753, ../scss/core/_common.scss */
.btn-remove2 {
  background-position: 4px -648px;
  border: none;
  vertical-align: top;
}
/* line 760, ../scss/core/_common.scss */
.btn-remove2:after {
  display: none;
}
/* line 763, ../scss/core/_common.scss */
.btn-remove2:hover {
  background-color: transparent;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

/* line 770, ../scss/core/_common.scss */
.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 #02b2e7;
  border-left: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -2px;
  margin-top: -4px;
}
/* line 778, ../scss/core/_common.scss */
.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;
}

/* line 787, ../scss/core/_common.scss */
.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
 */
/* line 798, ../scss/core/_common.scss */
.checkout-agreements li {
  margin-bottom: 20px;
}

/* line 802, ../scss/core/_common.scss */
.checkout-agreements .agreement-content {
  overflow-y: auto;
  max-width: 670px;
  max-height: 125px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #e1e1e0;
  background: #F4F4F4;
}

/* -------------------------------------------- *
 * CVV Security Code
 */
/* line 816, ../scss/core/_common.scss */
.cvv-what-is-this {
  margin-left: 10px;
  font-size: 16px;
  line-height: 1.5;
  padding-top: 7px;
  display: inline-block;
}

/* -------------------------------------------- *
 * Container
 */
/* line 828, ../scss/core/_common.scss */
.main-container {
  position: relative;
  margin: 0 auto;
  padding: 0 15px 100px 15px;
}
/* line 832, ../scss/core/_common.scss */
.main-container:after {
  content: '';
  display: table;
  clear: both;
}
/* line 835, ../scss/core/_common.scss */
.main-container.full-width {
  padding-left: 0;
  padding-right: 0;
}

/* line 841, ../scss/core/_common.scss */
.footer-container {
  position: relative;
  margin: 0 auto;
}
/* line 844, ../scss/core/_common.scss */
.footer-container:after {
  content: '';
  display: table;
  clear: both;
}

/* line 849, ../scss/core/_common.scss */
.main-container {
  padding-left: 25px;
  padding-right: 25px;
}
/* line 852, ../scss/core/_common.scss */
.main-container .bswrap {
  padding-left: 0;
  padding-right: 0;
}

/* line 857, ../scss/core/_common.scss */
.main-container.full-width {
  padding-left: 0;
  padding-right: 0;
}
/* line 860, ../scss/core/_common.scss */
.main-container.full-width .bswrap {
  padding-left: 25px;
  padding-right: 25px;
}

@media only screen and (max-width: 480px) {
  /* line 867, ../scss/core/_common.scss */
  .main-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* line 871, ../scss/core/_common.scss */
  .main-container.full-width {
    padding: 0;
  }
  /* line 873, ../scss/core/_common.scss */
  .main-container.full-width .bswrap {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* line 880, ../scss/core/_common.scss */
.footer-container {
  padding-top: 0px;
}

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

/* line 893, ../scss/core/_common.scss */
.col-left,
.col-right,
.col-main {
  padding: 0 15px;
}

/* line 899, ../scss/core/_common.scss */
.col-left {
  float: left;
  width: 25%;
  padding-left: 0;
  /* Remove the 15px padding */
  clear: left;
}
/* line 905, ../scss/core/_common.scss */
.col-left img {
  max-width: 100%;
}

/* line 910, ../scss/core/_common.scss */
.col-right {
  float: right;
  width: 25%;
  padding-right: 0;
  /* Remove the 15px padding */
}
/* line 915, ../scss/core/_common.scss */
.col-right img {
  max-width: 100%;
}

/* line 921, ../scss/core/_common.scss */
.col2-even-layout .col-main,
.col2-even-layout .col-left,
.col2-even-layout .col-right {
  width: 50%;
}

/* line 929, ../scss/core/_common.scss */
.col1-layout .skinny {
  max-width: 680px;
  margin: 0 auto;
}
/* line 933, ../scss/core/_common.scss */
.col1-layout .bswrap.skinny {
  max-width: 740px;
}

/* line 938, ../scss/core/_common.scss */
.col-main {
  float: left;
  width: 75%;
}

/* line 944, ../scss/core/_common.scss */
.col1-layout .col-main {
  float: none;
  width: auto;
  padding: 0;
  /* Remove the 15px padding */
}

/* line 952, ../scss/core/_common.scss */
.col2-left-layout .col-main {
  float: right;
  padding-right: 0;
  /* Remove the 15px padding */
}

/* line 959, ../scss/core/_common.scss */
.col2-right-layout .col-main {
  padding-left: 0;
  /* Remove the 15px padding */
}

/* line 965, ../scss/core/_common.scss */
.col3-layout .col-right {
  width: 20.83333%;
}
/* line 969, ../scss/core/_common.scss */
.col3-layout .col-wrapper {
  float: left;
  width: 79.16667%;
}
/* line 973, ../scss/core/_common.scss */
.col3-layout .col-wrapper .col-main {
  float: right;
  width: 73.68421%;
}
/* line 978, ../scss/core/_common.scss */
.col3-layout .col-wrapper .col-left {
  width: 26.31579%;
}

@media only screen and (max-width: 1000px) {
  /* line 986, ../scss/core/_common.scss */
  .col3-layout .col-right {
    float: left;
    clear: left;
    padding-left: 0;
    padding-right: 10px;
    width: 25%;
  }
  /* line 994, ../scss/core/_common.scss */
  .col3-layout .col-wrapper {
    float: right;
    width: 100%;
  }
  /* line 998, ../scss/core/_common.scss */
  .col3-layout .col-wrapper .col-main {
    float: right;
    width: 75%;
  }
  /* line 1003, ../scss/core/_common.scss */
  .col3-layout .col-wrapper .col-left {
    width: 25%;
  }
}
@media only screen and (max-width: 768px) {
  /* line 1011, ../scss/core/_common.scss */
  .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;
  }

  /* line 1032, ../scss/core/_common.scss */
  .col3-layout .col-wrapper {
    float: none;
    width: auto;
  }

  /* line 1037, ../scss/core/_common.scss */
  .col-main {
    float: none;
    width: auto;
  }

  /* line 1042, ../scss/core/_common.scss */
  .col-main .col-left {
    padding: 0;
    /* On product listing pages, the left column gets moved inside col-main on small viewports */
  }

  /* line 1047, ../scss/core/_common.scss */
  .col2-even-layout .col-main,
  .col2-even-layout .col-left,
  .col2-even-layout .col-right {
    width: auto;
  }
}
/* Content Columns */
/* line 1057, ../scss/core/_common.scss */
.col2-set {
  width: 100%;
}
/* line 1060, ../scss/core/_common.scss */
.col2-set .col-1,
.col2-set .col-2 {
  width: 50%;
  padding: 20px;
}
@media only screen and (max-width: 768px) {
  /* line 1060, ../scss/core/_common.scss */
  .col2-set .col-1,
  .col2-set .col-2 {
    padding: 10px;
  }
}
/* line 1070, ../scss/core/_common.scss */
.col2-set .col-1 {
  float: left;
  padding-left: 0;
}
/* line 1075, ../scss/core/_common.scss */
.col2-set .col-2 {
  float: right;
  padding-right: 0;
}
@media only screen and (max-width: 480px) {
  /* line 1081, ../scss/core/_common.scss */
  .col2-set .col-1,
  .col2-set .col-2 {
    float: none;
    width: auto;
    border: 0;
    padding-right: 0;
    padding-left: 0;
  }
}
/* line 1091, ../scss/core/_common.scss */
.col2-set .narrow {
  width: 33%;
}
/* line 1095, ../scss/core/_common.scss */
.col2-set .wide {
  width: 65%;
}
/* line 1099, ../scss/core/_common.scss */
.col2-set:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Top Container
 */
@media only screen and (min-width: 769px) {
  /* line 1108, ../scss/core/_common.scss */
  .top-container {
    margin: 0 auto;
    padding: 0 25px;
  }
}
/* -------------------------------------------- *
 * Global Site Notice
 */
/* line 1118, ../scss/core/_common.scss */
.global-site-notice {
  background: #676157;
  color: #fff;
  font-size: 12px;
}
/* line 1123, ../scss/core/_common.scss */
.global-site-notice .notice-inner {
  padding-left: 120px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  line-height: 12px;
  min-height: 40px;
  padding-top: 14px;
  padding-bottom: 14px;
  background-image: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/Mobile_Logo.png");
  background-position-x: 75px;
  background-position-y: 10px;
  background-size: 35px;
  background-repeat: no-repeat;
}
/* line 1140, ../scss/core/_common.scss */
.global-site-notice p {
  margin-bottom: 0;
}

/* -------------------------------------------- *
 * Promotional Message Banner
 */
/* line 1149, ../scss/core/_common.scss */
.promo-msg {
  color: #02b2e7;
  text-align: center;
  margin: 10px;
  text-transform: uppercase;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}

/* -------------------------------------------- *
 * Grid
 */
/* line 1161, ../scss/core/_common.scss */
.grid:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Messages
 */
/* line 1168, ../scss/core/_common.scss */
.success {
  color: #6fc315;
}

/* line 1172, ../scss/core/_common.scss */
.error {
  color: #DF280A;
  font-weight: bold;
}

/* line 1177, ../scss/core/_common.scss */
.notice {
  color: #E26703;
  font-weight: bold;
}

/* -------------------------------------------- *
 * Messages
 */
/* line 1186, ../scss/core/_common.scss */
.messages {
  margin-bottom: 0;
}

/* line 1190, ../scss/core/_common.scss */
.messages li li {
  position: relative;
  margin-bottom: 0;
  padding: 7px 10px 7px 20px;
  background: #F4F4F4;
  font-size: 14px;
}

/* line 1198, ../scss/core/_common.scss */
.messages li li:before {
  top: 50%;
  left: 0;
  margin-top: -6px;
}

/* line 1204, ../scss/core/_common.scss */
.messages .error-msg li {
  color: #000000;
  border-left: 5px solid #DF280A;
  background-color: #FAEBE7;
}

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

/* line 1214, ../scss/core/_common.scss */
.messages .notice-msg li {
  color: #000000;
  border-left: 5px solid #E26703;
  background-color: #F9EBE6;
}

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

/* line 1224, ../scss/core/_common.scss */
.messages .success-msg li {
  color: #000000;
  border-left: 5px solid #6fc315;
  background-color: #EFF5EA;
}

/* line 1230, ../scss/core/_common.scss */
.messages .success-msg li:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #6fc315;
  border-right: none;
}

@media only screen and (min-width: 915px) {
  /* line 1238, ../scss/core/_common.scss */
  .order-list-grid .col-1 {
    width: 30%;
  }

  /* line 1242, ../scss/core/_common.scss */
  .order-list-grid .col-2 {
    width: 50%;
    padding-right: 20px;
  }

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

/* line 1265, ../scss/core/_common.scss */
.page-popup h1 {
  margin: 0 0 0.5em;
  font-size: 36px;
}

/* -------------------------------------------- *
 * Payment Methods
 */
/* line 1274, ../scss/core/_common.scss */
.payment-methods {
  margin-bottom: 20px;
}

/* line 1278, ../scss/core/_common.scss */
.payment-methods dt {
  padding: 5px 0;
}

/* line 1282, ../scss/core/_common.scss */
.payment-methods dd {
  padding-top: 10px;
}

/* line 1286, ../scss/core/_common.scss */
.payment-methods .form-list {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin: 5px 15px 15px;
  padding: 15px;
  border: 1px solid #e1e1e0;
  background: #F4F4F4;
}

/* line 1296, ../scss/core/_common.scss */
.payment-methods .form-list:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #e1e1e0;
  border-top: none;
  top: -11px;
  left: 30px;
}

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

/* line 1308, ../scss/core/_common.scss */
.payment-methods .form-list li:last-child {
  margin-bottom: 0;
}

/* -------------------------------------------- *
 * Please Wait (Loading Indicator)
 */
/* line 1316, ../scss/core/_common.scss */
.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 */
}
/* line 1324, ../scss/core/_common.scss */
.please-wait img {
  float: left;
  margin-right: 5px;
  width: 24px;
}

/* -------------------------------------------- *
 * Price Box - Standard
 */
/* line 1335, ../scss/core/_common.scss */
.price-box {
  margin: 7px 0;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}

/* line 1340, ../scss/core/_common.scss */
.price-box p {
  margin-bottom: 0;
}

/* line 1344, ../scss/core/_common.scss */
.price-notice {
  color: #605a54;
}

/* line 1348, ../scss/core/_common.scss */
.price-box .price {
  color: #373c3e;
  font-size: 20px;
}

/* line 1353, ../scss/core/_common.scss */
.price-box .price,
.price {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}

/* line 1358, ../scss/core/_common.scss */
.price-box .price-label {
  color: #605a54;
  white-space: nowrap;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}

/* line 1364, ../scss/core/_common.scss */
.price-box .minimal-price-link {
  padding-left: 1em;
  color: #02b2e7;
  display: block;
  /* We want this to show on its own line, otherwise the layout looks funky */
}
/* line 1369, ../scss/core/_common.scss */
.price-box .minimal-price-link .label {
  color: #605a54;
}

/* -------------------------------------------- *
 * Price Box - Special
 */
/* line 1378, ../scss/core/_common.scss */
.price-box .old-price,
.price-box .special-price {
  display: inline-block;
}
/* line 1382, ../scss/core/_common.scss */
.price-box .old-price .price-label,
.price-box .special-price .price-label {
  display: none;
}
/* line 1386, ../scss/core/_common.scss */
.price-box .old-price .price,
.price-box .special-price .price {
  display: inline-block;
}

/* line 1392, ../scss/core/_common.scss */
.price-box .old-price .price {
  color: #777e80;
  text-decoration: line-through;
}

/* line 1398, ../scss/core/_common.scss */
.price-box .special-price {
  color: #373c3e;
  padding-left: .5em;
}
/* line 1402, ../scss/core/_common.scss */
.price-box .special-price .price-label {
  color: #D84D3C;
}

/* -------------------------------------------- *
 * Price Box - Taxes
 */
/* line 1411, ../scss/core/_common.scss */
.price-box .price-excluding-tax,
.price-box .price-including-tax {
  display: block;
}

/* line 1416, ../scss/core/_common.scss */
span.weee {
  display: block;
}

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

/* ============================================ *
 * Item Options
 * ============================================ */
/* line 1448, ../scss/core/_common.scss */
.item-options {
  font-size: 18px;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}
/* line 1452, ../scss/core/_common.scss */
.item-options:after {
  content: '';
  display: table;
  clear: both;
}
/* line 1456, ../scss/core/_common.scss */
.item-options dt {
  float: left;
  clear: left;
  font-weight: 600;
  padding-right: 5px;
  font-style: italic;
}
/* line 1463, ../scss/core/_common.scss */
.item-options dt:after {
  content: ': ';
}
/* line 1468, ../scss/core/_common.scss */
.item-options dd {
  float: left;
  padding-left: 10px;
  margin: 0 0 6px;
}

/* line 1475, ../scss/core/_common.scss */
.truncated,
.truncated a.dots {
  cursor: help;
}

/* line 1480, ../scss/core/_common.scss */
.truncated a.details {
  cursor: help;
  height: 16px;
  line-height: 16px;
}
/* line 1485, ../scss/core/_common.scss */
.truncated a.details:hover {
  text-decoration: none;
}

/* line 1490, ../scss/core/_common.scss */
.truncated .truncated_full_value {
  position: relative;
  z-index: 300;
}

/* line 1495, ../scss/core/_common.scss */
.truncated .truncated_full_value .item-options {
  display: none;
  position: absolute;
  z-index: 300;
  width: 200px;
  padding: 8px;
  border: 1px solid #02b2e7;
  background-color: #F6F6F6;
  top: 21px;
  left: -100px;
}
/* line 1506, ../scss/core/_common.scss */
.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 #02b2e7;
  border-top: none;
  left: 97px;
  top: -7px;
}

/* line 1513, ../scss/core/_common.scss */
.truncated .truncated_full_value .item-options > p {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* line 1519, ../scss/core/_common.scss */
.truncated .show .item-options {
  display: block;
}

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

/* -------------------------------------------- *
 * Add to links
 */
/* line 1568, ../scss/core/_common.scss */
.add-to-links {
  margin: 7px 0;
}
/* line 1571, ../scss/core/_common.scss */
.add-to-links a {
  display: inline-block;
  padding: 0px 3px 3px;
}

/* line 1577, ../scss/core/_common.scss */
.add-to-links .separator {
  display: none;
}

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

@media only screen and (max-width: 768px) {
  /* line 1592, ../scss/core/_common.scss */
  body .product-img-box .product-image:hover {
    border-color: #EDEDED;
  }
}
/* line 1597, ../scss/core/_common.scss */
.no-touch .product-image:hover {
  border-color: transparent;
}

/* -------------------------------------------- *
 * Ratings
 */
/* line 1605, ../scss/core/_common.scss */
.ratings {
  margin: 7px 0;
}
/* line 1608, ../scss/core/_common.scss */
.ratings .rating-box,
.ratings .rating-links {
  margin: 5px 0;
}
/* line 1613, ../scss/core/_common.scss */
.ratings .rating-box {
  width: 65px;
  height: 13px;
  background-repeat: repeat-x;
  background-position: 0 -615px;
  overflow: hidden;
}
/* line 1621, ../scss/core/_common.scss */
.ratings .rating-box .rating {
  float: left;
  height: 13px;
  background-repeat: repeat-x;
  background-position: 0 -600px;
}
/* line 1628, ../scss/core/_common.scss */
.ratings .amount {
  display: block;
  margin: 5px auto;
}
/* line 1634, ../scss/core/_common.scss */
.ratings .rating-links .separator {
  margin: 0 3px;
}

/* -------------------------------------------- *
 * Standard Formatted Text Block
 */
/* line 1644, ../scss/core/_common.scss */
.std p {
  margin: 0 0 1.5em;
}

/* line 1648, ../scss/core/_common.scss */
.std ol {
  list-style: decimal outside;
  margin-bottom: 1.5em;
}

/* line 1653, ../scss/core/_common.scss */
.std ol li {
  margin-left: 2em;
}

/* line 1657, ../scss/core/_common.scss */
.std ul {
  list-style: disc outside;
  margin-bottom: 1.5em;
}

/* line 1662, ../scss/core/_common.scss */
.std ul li {
  margin-left: 2em;
}

/* line 1666, ../scss/core/_common.scss */
.std .note {
  color: #605a54;
  font-size: 16px;
}

/* -------------------------------------------- *
 * Tabs
 */
/* line 1675, ../scss/core/_common.scss */
.tabs {
  margin-bottom: 10px;
  background: #FFFFFF;
}

/* -------------------------------------------- *
 * Toolbar
 */
/* line 1684, ../scss/core/_common.scss */
.toolbar {
  margin-top: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e1e1e0;
  border-top: 1px solid #e1e1e0;
  background: #F4F4F4;
  padding: 5px 10px 0px 10px;
}
/* line 1692, ../scss/core/_common.scss */
.toolbar:after {
  content: '';
  display: table;
  clear: both;
}

/* line 1697, ../scss/core/_common.scss */
.pager-no-toolbar {
  margin-bottom: 10px;
}

/* line 1702, ../scss/core/_common.scss */
.pager-no-toolbar ~ .pager-no-toolbar {
  margin-top: 10px;
}

/* line 1706, ../scss/core/_common.scss */
.toolbar,
.pager {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  color: #373c3e;
  line-height: 30px;
  font-size: 14px;
}

/* line 1714, ../scss/core/_common.scss */
.toolbar label,
.pager-no-toolbar label {
  font-weight: normal;
  text-transform: uppercase;
}

/* line 1722, ../scss/core/_common.scss */
.sorter {
  float: left;
  margin-bottom: 5px;
}
/* line 1726, ../scss/core/_common.scss */
.sorter label {
  float: left;
  margin-right: 5px;
}
/* line 1730, ../scss/core/_common.scss */
.sorter label:after {
  content: ':';
}

/* line 1736, ../scss/core/_common.scss */
.sorter > .sort-by {
  float: left;
  margin-right: 5px;
  height: 30px;
}
/* line 1741, ../scss/core/_common.scss */
.sorter > .sort-by .sort-by-switcher {
  width: 30px;
  height: 30px;
  display: inline-block;
}
/* line 1747, ../scss/core/_common.scss */
.sorter > .sort-by .sort-by-switcher--asc {
  background-position: 4px -542px;
}
/* line 1749, ../scss/core/_common.scss */
.sorter > .sort-by .sort-by-switcher--asc:hover {
  background-position: -46px -542px;
}
/* line 1753, ../scss/core/_common.scss */
.sorter > .sort-by .sort-by-switcher--desc {
  background-position: 4px -567px;
}
/* line 1755, ../scss/core/_common.scss */
.sorter > .sort-by .sort-by-switcher--desc:hover {
  background-position: -46px -567px;
}

/* line 1761, ../scss/core/_common.scss */
.sorter > .view-mode {
  float: right;
}
/* line 1764, ../scss/core/_common.scss */
.sorter > .view-mode .grid,
.sorter > .view-mode .list {
  float: left;
  width: 30px;
  height: 30px;
}
/* line 1771, ../scss/core/_common.scss */
.sorter > .view-mode .grid {
  margin-right: 5px;
  background-position: 8px -492px;
}
/* line 1775, ../scss/core/_common.scss */
.sorter > .view-mode strong.grid,
.sorter > .view-mode a.grid:hover {
  background-position: -42px -492px;
}
/* line 1779, ../scss/core/_common.scss */
.sorter > .view-mode .list {
  background-position: 11px -517px;
}
/* line 1783, ../scss/core/_common.scss */
.sorter > .view-mode strong.list,
.sorter > .view-mode a.list:hover {
  background-position: -39px -517px;
}

/* line 1789, ../scss/core/_common.scss */
.pager {
  float: right;
  overflow: hidden;
}
/* line 1793, ../scss/core/_common.scss */
.pager > .count-container {
  float: left;
}
/* line 1797, ../scss/core/_common.scss */
.pager .amount {
  float: left;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  white-space: nowrap;
  margin: 0 15px 0 0;
}
/* line 1804, ../scss/core/_common.scss */
.pager .limiter {
  float: left;
  height: 30px;
  line-height: 30px;
}
/* line 1809, ../scss/core/_common.scss */
.pager .limiter > label {
  padding-right: 5px;
}
/* line 1812, ../scss/core/_common.scss */
.pager .limiter > label:after {
  content: ':';
}
/* line 1818, ../scss/core/_common.scss */
.pager .amount,
.pager .limiter,
.pager .pages {
  margin-bottom: 5px;
}

/* line 1826, ../scss/core/_common.scss */
.pages {
  float: right;
  overflow: hidden;
  margin-left: 15px;
}
/* line 1831, ../scss/core/_common.scss */
.pages strong {
  display: none;
}

/* line 1836, ../scss/core/_common.scss */
.pages li {
  float: left;
}

/* line 1840, ../scss/core/_common.scss */
.pages a,
.pages .current {
  display: inline-block;
  border: 0;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  line-height: 30px;
  width: 25px;
  height: 30px;
  padding: 0;
  color: #02b2e7;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}

/* line 1857, ../scss/core/_common.scss */
.pages .current,
.pages .current:hover {
  color: #373c3e;
  border: 1px solid #e1e1e0;
  width: 30px;
  background-color: #FFFFFF;
  cursor: default;
}

/* line 1866, ../scss/core/_common.scss */
.pages .next,
.pages .previous {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
  position: relative;
}
/* line 1875, ../scss/core/_common.scss */
.pages .next:hover,
.pages .previous:hover {
  border: 1px solid #02b2e7;
}

/* line 1881, ../scss/core/_common.scss */
.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 #02b2e7;
  border-right: none;
  top: 50%;
  margin-top: -3px;
  left: 50%;
  margin-left: -2px;
}
/* line 1888, ../scss/core/_common.scss */
.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 #01789b;
  border-right: none;
}

/* line 1894, ../scss/core/_common.scss */
.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 #02b2e7;
  border-left: none;
  top: 50%;
  margin-top: -3px;
  left: 50%;
  margin-left: -2px;
}
/* line 1901, ../scss/core/_common.scss */
.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 #01789b;
  border-left: none;
}

@media only screen and (max-width: 480px) {
  /* line 1909, ../scss/core/_common.scss */
  .pager .amount--has-pages {
    display: none;
  }

  /* line 1913, ../scss/core/_common.scss */
  .pages {
    float: left;
  }

  /* line 1918, ../scss/core/_common.scss */
  .limiter label {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  /* line 1926, ../scss/core/_common.scss */
  .col1-layout .sorter,
  .col1-layout .pager {
    width: 100%;
  }
  /* line 1931, ../scss/core/_common.scss */
  .col1-layout .pager {
    float: left;
    clear: both;
  }
  /* line 1935, ../scss/core/_common.scss */
  .col1-layout .pager .pages {
    float: left;
    margin-left: 0;
  }
  /* line 1940, ../scss/core/_common.scss */
  .col1-layout .pager .count-container {
    float: right;
  }
}
@media only screen and (max-width: 979px) {
  /* line 1952, ../scss/core/_common.scss */
  .col2-left-layout .sorter,
  .col2-left-layout .pager,
  .col2-right-layout .sorter,
  .col2-right-layout .pager,
  .col3-layout .sorter,
  .col3-layout .pager {
    width: 100%;
  }
  /* line 1957, ../scss/core/_common.scss */
  .col2-left-layout .pager,
  .col2-right-layout .pager,
  .col3-layout .pager {
    float: left;
    clear: both;
  }
  /* line 1961, ../scss/core/_common.scss */
  .col2-left-layout .pager .pages,
  .col2-right-layout .pager .pages,
  .col3-layout .pager .pages {
    float: left;
    margin-left: 0;
  }
  /* line 1966, ../scss/core/_common.scss */
  .col2-left-layout .pager .count-container,
  .col2-right-layout .pager .count-container,
  .col3-layout .pager .count-container {
    float: right;
  }
}
@media only screen and (max-width: 1279px) {
  /* line 1975, ../scss/core/_common.scss */
  .toolbar .view-mode > label {
    display: none;
  }
}
/* ============================================ *
 * Tax - Full Tax Summary
 * ============================================ */
/* #checkout-review-table, */
/* #shopping-cart-totals-table, */
/* line 1987, ../scss/core/_common.scss */
body.customer-account .data-table .summary-collapse {
  position: relative;
  cursor: pointer;
}
/* line 1991, ../scss/core/_common.scss */
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 #02b2e7;
  border-bottom: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}
/* line 1997, ../scss/core/_common.scss */
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 #01789b;
  border-bottom: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}
/* line 2007, ../scss/core/_common.scss */
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 #02b2e7;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}
/* line 2013, ../scss/core/_common.scss */
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 #01789b;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}

/* line 2025, ../scss/core/_common.scss */
#shopping-cart-totals-table tfoot td .summary-collapse:before, #shopping-cart-totals-table tfoot td .summary-collapse:hover:before {
  margin-bottom: 5px;
}

/* ============================================ *
 * Magento Helpers
 * ============================================ */
/* line 2035, ../scss/core/_common.scss */
.a-center {
  text-align: center;
}

/* line 2039, ../scss/core/_common.scss */
.a-right,
.align-right {
  text-align: right;
}

/* line 2044, ../scss/core/_common.scss */
.no-display {
  display: none !important;
}

/* line 2048, ../scss/core/_common.scss */
.nobr,
.nowrap {
  white-space: nowrap;
}

/* line 2053, ../scss/core/_common.scss */
.width-full {
  width: 100%;
}

/* ============================================ *
 * Custom Helpers
 * ============================================ */
/* line 2061, ../scss/core/_common.scss */
.hidden {
  display: none;
}

/* doesnt appear to work in nvda */
/* line 2067, ../scss/core/_common.scss */
.sreader-hidden-text {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

/* ============================================ *
 * Print Styles
 * ============================================ */
/* line 2077, ../scss/core/_common.scss */
.page-print .print-head {
  margin: 0 0 15px;
}

/* line 2081, ../scss/core/_common.scss */
.page-print .print-head .logo {
  float: none;
  max-height: 50px;
  width: auto;
}

/* ============================================ *
 * overlay holder v2
 * ============================================ */
/* line 2091, ../scss/core/_common.scss */
body .overlay-holder-v2 {
  position: absolute;
  top: 5px;
  left: 0;
  text-align: left;
}
/* line 2096, ../scss/core/_common.scss */
body .overlay-holder-v2 .badge {
  margin: 5px 0 5px 10px;
}
/* line 2098, ../scss/core/_common.scss */
body .overlay-holder-v2 .badge .badge-inner {
  line-height: 100%;
}
/* line 2100, ../scss/core/_common.scss */
body .overlay-holder-v2 .badge .badge-inner span {
  font-size: 14px;
  display: inline-block;
  color: #fff;
  padding: 3px 5px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}
/* line 2109, ../scss/core/_common.scss */
body .overlay-holder-v2 .badge .badge-inner span.mini {
  display: none;
  font-size: 12px;
  padding: 0 4px;
}
/* line 2114, ../scss/core/_common.scss */
body .overlay-holder-v2 .badge .badge-inner span.reissue {
  background: #02b2e7;
}
/* line 2117, ../scss/core/_common.scss */
body .overlay-holder-v2 .badge .badge-inner span.sole-source {
  background: #d21d05;
}

/* ============================================ *
 * Sample Player, and sole source badge and reissue Image Overlay
 * ============================================ */
/* line 2129, ../scss/core/_common.scss */
.result-thumbnail,
.img-wrap,
.algoliasearch-autocomplete-hit,
.result-thumbnail {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
/* line 2136, ../scss/core/_common.scss */
.result-thumbnail .overlay-holder,
.img-wrap .overlay-holder,
.algoliasearch-autocomplete-hit .overlay-holder,
.result-thumbnail .overlay-holder {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 33.3%;
  overflow: hidden;
}
/* line 2143, ../scss/core/_common.scss */
.result-thumbnail .overlay-holder.top,
.img-wrap .overlay-holder.top,
.algoliasearch-autocomplete-hit .overlay-holder.top,
.result-thumbnail .overlay-holder.top {
  top: 0;
  left: 0;
}
/* line 2146, ../scss/core/_common.scss */
.result-thumbnail .overlay-holder.top .overlay-inner,
.img-wrap .overlay-holder.top .overlay-inner,
.algoliasearch-autocomplete-hit .overlay-holder.top .overlay-inner,
.result-thumbnail .overlay-holder.top .overlay-inner {
  float: left;
}
/* line 2150, ../scss/core/_common.scss */
.result-thumbnail .overlay-holder .overlay-inner,
.img-wrap .overlay-holder .overlay-inner,
.algoliasearch-autocomplete-hit .overlay-holder .overlay-inner,
.result-thumbnail .overlay-holder .overlay-inner {
  float: right;
  width: 33.3%;
  height: 100%;
  padding-bottom: 8px;
  position: relative;
}
/* line 2156, ../scss/core/_common.scss */
.result-thumbnail .overlay-holder .overlay-inner .overlay-inner-background,
.img-wrap .overlay-holder .overlay-inner .overlay-inner-background,
.algoliasearch-autocomplete-hit .overlay-holder .overlay-inner .overlay-inner-background,
.result-thumbnail .overlay-holder .overlay-inner .overlay-inner-background {
  position: absolute;
  z-index: 10;
  bottom: 0;
  width: 100%;
  height: 100%;
}
/* line 2163, ../scss/core/_common.scss */
.result-thumbnail .overlay-holder .overlay-inner .add-to-cart-button,
.result-thumbnail .overlay-holder .overlay-inner .overlay-inner-play,
.result-thumbnail .overlay-holder .overlay-inner .overlay-inner-pause,
.img-wrap .overlay-holder .overlay-inner .add-to-cart-button,
.img-wrap .overlay-holder .overlay-inner .overlay-inner-play,
.img-wrap .overlay-holder .overlay-inner .overlay-inner-pause,
.algoliasearch-autocomplete-hit .overlay-holder .overlay-inner .add-to-cart-button,
.algoliasearch-autocomplete-hit .overlay-holder .overlay-inner .overlay-inner-play,
.algoliasearch-autocomplete-hit .overlay-holder .overlay-inner .overlay-inner-pause,
.result-thumbnail .overlay-holder .overlay-inner .add-to-cart-button,
.result-thumbnail .overlay-holder .overlay-inner .overlay-inner-play,
.result-thumbnail .overlay-holder .overlay-inner .overlay-inner-pause {
  float: right;
  position: relative;
  z-index: 12;
  height: auto;
  width: auto;
  display: inline-block;
  color: #fff;
  font-size: 28px;
}
/* line 2174, ../scss/core/_common.scss */
.result-thumbnail .overlay-holder .overlay-inner .add-to-cart-button .icon-font,
.result-thumbnail .overlay-holder .overlay-inner .overlay-inner-play .icon-font,
.result-thumbnail .overlay-holder .overlay-inner .overlay-inner-pause .icon-font,
.img-wrap .overlay-holder .overlay-inner .add-to-cart-button .icon-font,
.img-wrap .overlay-holder .overlay-inner .overlay-inner-play .icon-font,
.img-wrap .overlay-holder .overlay-inner .overlay-inner-pause .icon-font,
.algoliasearch-autocomplete-hit .overlay-holder .overlay-inner .add-to-cart-button .icon-font,
.algoliasearch-autocomplete-hit .overlay-holder .overlay-inner .overlay-inner-play .icon-font,
.algoliasearch-autocomplete-hit .overlay-holder .overlay-inner .overlay-inner-pause .icon-font,
.result-thumbnail .overlay-holder .overlay-inner .add-to-cart-button .icon-font,
.result-thumbnail .overlay-holder .overlay-inner .overlay-inner-play .icon-font,
.result-thumbnail .overlay-holder .overlay-inner .overlay-inner-pause .icon-font {
  display: inline;
  position: absolute;
  bottom: 2%;
  right: 2%;
  font-size: 10vw;
}
/* line 2181, ../scss/core/_common.scss */
.result-thumbnail .overlay-holder .overlay-inner .add-to-cart-button.hidden,
.result-thumbnail .overlay-holder .overlay-inner .overlay-inner-play.hidden,
.result-thumbnail .overlay-holder .overlay-inner .overlay-inner-pause.hidden,
.img-wrap .overlay-holder .overlay-inner .add-to-cart-button.hidden,
.img-wrap .overlay-holder .overlay-inner .overlay-inner-play.hidden,
.img-wrap .overlay-holder .overlay-inner .overlay-inner-pause.hidden,
.algoliasearch-autocomplete-hit .overlay-holder .overlay-inner .add-to-cart-button.hidden,
.algoliasearch-autocomplete-hit .overlay-holder .overlay-inner .overlay-inner-play.hidden,
.algoliasearch-autocomplete-hit .overlay-holder .overlay-inner .overlay-inner-pause.hidden,
.result-thumbnail .overlay-holder .overlay-inner .add-to-cart-button.hidden,
.result-thumbnail .overlay-holder .overlay-inner .overlay-inner-play.hidden,
.result-thumbnail .overlay-holder .overlay-inner .overlay-inner-pause.hidden {
  display: none;
}
/* line 2184, ../scss/core/_common.scss */
.result-thumbnail .overlay-holder .overlay-inner .add-to-cart-button:hover,
.result-thumbnail .overlay-holder .overlay-inner .overlay-inner-play:hover,
.result-thumbnail .overlay-holder .overlay-inner .overlay-inner-pause:hover,
.img-wrap .overlay-holder .overlay-inner .add-to-cart-button:hover,
.img-wrap .overlay-holder .overlay-inner .overlay-inner-play:hover,
.img-wrap .overlay-holder .overlay-inner .overlay-inner-pause:hover,
.algoliasearch-autocomplete-hit .overlay-holder .overlay-inner .add-to-cart-button:hover,
.algoliasearch-autocomplete-hit .overlay-holder .overlay-inner .overlay-inner-play:hover,
.algoliasearch-autocomplete-hit .overlay-holder .overlay-inner .overlay-inner-pause:hover,
.result-thumbnail .overlay-holder .overlay-inner .add-to-cart-button:hover,
.result-thumbnail .overlay-holder .overlay-inner .overlay-inner-play:hover,
.result-thumbnail .overlay-holder .overlay-inner .overlay-inner-pause:hover {
  text-decoration: none;
}
/* line 2188, ../scss/core/_common.scss */
.result-thumbnail .overlay-holder .overlay-inner .add-to-cart-button,
.img-wrap .overlay-holder .overlay-inner .add-to-cart-button,
.algoliasearch-autocomplete-hit .overlay-holder .overlay-inner .add-to-cart-button,
.result-thumbnail .overlay-holder .overlay-inner .add-to-cart-button {
  float: left;
}
/* line 2190, ../scss/core/_common.scss */
.result-thumbnail .overlay-holder .overlay-inner .add-to-cart-button .icon-font,
.img-wrap .overlay-holder .overlay-inner .add-to-cart-button .icon-font,
.algoliasearch-autocomplete-hit .overlay-holder .overlay-inner .add-to-cart-button .icon-font,
.result-thumbnail .overlay-holder .overlay-inner .add-to-cart-button .icon-font {
  position: relative;
}

/* line 2198, ../scss/core/_common.scss */
.featherlight-bsacustom-dark {
  background: transparent;
}
/* line 2200, ../scss/core/_common.scss */
.featherlight-bsacustom-dark .featherlight-close-icon {
  display: none;
}
/* line 2203, ../scss/core/_common.scss */
.featherlight-bsacustom-dark .featherlight-content {
  background: rgba(0, 0, 0, 0.8);
}
/* line 2205, ../scss/core/_common.scss */
.featherlight-bsacustom-dark .featherlight-content .left-col,
.featherlight-bsacustom-dark .featherlight-content .right-col {
  display: inline-block;
  float: left;
  text-align: left;
}
/* line 2210, ../scss/core/_common.scss */
.featherlight-bsacustom-dark .featherlight-content .left-col h1,
.featherlight-bsacustom-dark .featherlight-content .left-col h2,
.featherlight-bsacustom-dark .featherlight-content .left-col h3,
.featherlight-bsacustom-dark .featherlight-content .left-col p,
.featherlight-bsacustom-dark .featherlight-content .right-col h1,
.featherlight-bsacustom-dark .featherlight-content .right-col h2,
.featherlight-bsacustom-dark .featherlight-content .right-col h3,
.featherlight-bsacustom-dark .featherlight-content .right-col p {
  color: #fff;
}
/* line 2217, ../scss/core/_common.scss */
.featherlight-bsacustom-dark .featherlight-content h3 {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 2220, ../scss/core/_common.scss */
.featherlight-bsacustom-dark .featherlight-content .right-col {
  padding-left: 10px;
}
/* line 2222, ../scss/core/_common.scss */
.featherlight-bsacustom-dark .featherlight-content .right-col h3 {
  line-height: 188%;
}
/* line 2226, ../scss/core/_common.scss */
.featherlight-bsacustom-dark .featherlight-content .icon-checkmark {
  font-size: 42px;
  color: #6fc315;
}

/* ============================================ *
 * FORMS - COMMON
 * ============================================ */
/* -------------------------------------------- *
 * Fieldsets
 */
/* line 36, ../scss/core/_form.scss */
.fieldset p {
  margin-bottom: 7px;
}
/* line 40, ../scss/core/_form.scss */
.fieldset p.required {
  margin-bottom: 5px;
  float: right;
  font-size: 14px;
  margin-top: 0px;
}

/* line 48, ../scss/core/_form.scss */
.fieldset + .fieldset {
  margin-top: 5px;
}

/* line 52, ../scss/core/_form.scss */
form .legend {
  margin: 0;
  margin-bottom: 10px;
  color: #373c3e;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  margin-bottom: 15px;
  padding-bottom: 7px;
  border-bottom: 1px solid #d3d8d9;
}

/* -------------------------------------------- *
 * Input Box
 */
/* line 65, ../scss/core/_form.scss */
.input-box:after {
  content: '';
  display: table;
  clear: both;
}
/* line 68, ../scss/core/_form.scss */
.input-box input {
  background: #fff;
}
/* line 71, ../scss/core/_form.scss */
.input-box.has-icon {
  position: relative;
}
/* line 73, ../scss/core/_form.scss */
.input-box.has-icon input {
  padding-left: 32px;
}
/* line 76, ../scss/core/_form.scss */
.input-box.has-icon .icon-font {
  position: absolute;
  left: 8px;
  top: 9px;
}
/* line 81, ../scss/core/_form.scss */
.input-box.has-icon .icon-lock {
  left: 12px;
}

@media only screen and (max-width: 480px) {
  /* line 90, ../scss/core/_form.scss */
  .input-box.has-icon .icon-lock {
    left: 8px;
  }
}
/* line 98, ../scss/core/_form.scss */
li.centinel-logos div.input-box img {
  display: inline;
  vertical-align: middle;
}

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

/* -------------------------------------------- *
 * Labels
 */
/* line 116, ../scss/core/_form.scss */
label {
  display: inline-block;
  font-size: 16px;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  line-height: normal;
}

/* line 124, ../scss/core/_form.scss */
label.required:after,
span.required:after {
  content: ' *';
  color: #DF280A;
  font-weight: normal;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
}

/* line 133, ../scss/core/_form.scss */
label.required em,
span.required em {
  display: none;
}

/* -------------------------------------------- *
 * Hints
 */
/* line 142, ../scss/core/_form.scss */
.input-hint {
  color: #605a54;
  font-size: 14px;
}

/* -------------------------------------------- *
 * Select
 */
/* line 151, ../scss/core/_form.scss */
select {
  font-size: 14px;
  background-color: #fff;
}

/* line 156, ../scss/core/_form.scss */
select::-ms-expand {
  display: none;
}

/* line 160, ../scss/core/_form.scss */
select + select {
  margin-left: 5px;
}

/* line 164, ../scss/core/_form.scss */
select[multiple] {
  width: 270px;
  border: 1px solid #abb2b3;
  font-size: 19px;
  padding: 5px;
}

/* line 171, ../scss/core/_form.scss */
.bsaStyledSelectWrapper select,
select.bsaStyledSelect {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/downarrow@2x.png");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 15px 9px;
  padding: 7px 35px 7px 5px;
  outline: none;
}

/* -------------------------------------------- *
 * Textarea
 */
/* line 187, ../scss/core/_form.scss */
textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  padding: 5px;
}

/* -------------------------------------------- *
 * Inputs
 */
/* line 198, ../scss/core/_form.scss */
.input-text {
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #abb2b3;
  background: transparent;
  font-size: 16px;
}
/* line 205, ../scss/core/_form.scss */
.input-text:focus {
  border: 1px solid #abb2b3;
  background-color: #ffffff;
}

/* line 211, ../scss/core/_form.scss */
.input-text.validation-failed,
select.validation-failed {
  border-color: #DF280A;
  border: 1px solid #eb340a !important;
  background: #faebe7 !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

/* line 224, ../scss/core/_form.scss */
.input-text.validation-failed:focus {
  outline-color: #ef9485;
}

/* line 228, ../scss/core/_form.scss */
input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  padding: 7px 8px;
  margin-bottom: 8px;
}

/* line 238, ../scss/core/_form.scss */
input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=tel],
input[type=text] {
  width: 100%;
  max-width: 100%;
}

/* line 249, ../scss/core/_form.scss */
input.input-text::-webkit-input-placeholder, input.input-text::-moz-placeholder, input.input-text:-ms-input-placeholder, input.input-text:-moz-placeholder {
  /* Firefox 18- */
  color: #919799;
}

/* 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) {
  /* line 259, ../scss/core/_form.scss */
  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 */
  }
}
/* line 270, ../scss/core/_form.scss */
.ie8 .input-text {
  max-width: none;
}

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

/* -------------------------------------------- *
 * Placeholder
 */
/* line 289, ../scss/core/_form.scss */
::-webkit-input-placeholder {
  color: #919799;
}

/* line 292, ../scss/core/_form.scss */
:-ms-input-placeholder {
  /* IE 10+ */
  color: #919799;
}

/* line 295, ../scss/core/_form.scss */
input:-moz-placeholder {
  color: #919799;
}

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

/* line 310, ../scss/core/_form.scss */
.checkbox + label,
.radio + label {
  width: auto;
  max-width: 85%;
  padding: 0 0 0 8px;
  font-size: 18px;
  font-weight: normal;
  vertical-align: top;
}

/* -------------------------------------------- *
 * Validation
 */
/* line 324, ../scss/core/_form.scss */
p.required,
.validation-advice {
  color: #DF280A;
  font-size: 14px;
  position: static !important;
  border-width: 0;
  background: transparent;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  box-shadow: 0 0 0 #333;
  -moz-box-shadow: 0 0 0 #333;
  -webkit-box-shadow: 0 0 0 #333;
  padding: 0 0 10px 0;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}

/* ============================================ *
 * Form List
 * ============================================ */
/* line 345, ../scss/core/_form.scss */
select {
  width: 100%;
  max-width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 8px;
  font-size: 16px;
  border: 1px solid #abb2b3;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -o-border-radius: 4px;
}
/* line 359, ../scss/core/_form.scss */
select:hover, select:active, select:focus {
  border: 1px solid #abb2b3;
}
/* line 365, ../scss/core/_form.scss */
select option {
  background: #edf2f3;
  font-size: 16px;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  color: #373c3e;
}
/* line 372, ../scss/core/_form.scss */
select option:not(:checked) {
  background: white;
  font-size: 16px;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}

/* line 381, ../scss/core/_form.scss */
.form-list .inactive-text {
  color: #919799;
}
/* line 385, ../scss/core/_form.scss */
.form-list .active-text {
  color: #373c3e;
}
/* line 389, ../scss/core/_form.scss */
.form-list > li {
  margin-bottom: 10px;
}
/* line 393, ../scss/core/_form.scss */
.form-list .input-range .input-text {
  width: 74px;
}
/* line 397, ../scss/core/_form.scss */
.form-list .field,
.form-list .wide,
.form-list .control {
  margin-bottom: 10px;
}

/* line 406, ../scss/core/_form.scss */
body .wrapper input,
body .wrapper select {
  border-color: #abb2b3;
}
/* line 409, ../scss/core/_form.scss */
body .wrapper input:hover,
body .wrapper select:hover {
  border-color: #919799;
  outline: 0;
}
/* line 413, ../scss/core/_form.scss */
body .wrapper input:focus,
body .wrapper select:focus {
  border-color: #919799;
  outline: 0;
}

/* Turn the label of controls (radio/checkbox) into a button style that wraps the input */
/* line 422, ../scss/core/_form.scss */
.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 */
}
/* line 428, ../scss/core/_form.scss */
.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;
}
/* line 432, ../scss/core/_form.scss */
.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;
}
/* line 437, ../scss/core/_form.scss */
.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;
}
/* line 445, ../scss/core/_form.scss */
.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: #373c3e;
  background-color: #F4F4F4;
  padding: 5px 10px;
  display: inline-block;
  width: auto;
  max-width: none;
  min-width: 250px;
  float: none;
  padding: 6px 10px 6px 40px;
}
/* line 454, ../scss/core/_form.scss */
.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;
}
/* line 460, ../scss/core/_form.scss */
.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;
}
/* line 464, ../scss/core/_form.scss */
.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;
}

/* line 471, ../scss/core/_form.scss */
.product-options ul.options-list label,
.col2-set .form-list .control label {
  min-width: inherit;
  width: 250px;
  max-width: 100%;
}

/* line 479, ../scss/core/_form.scss */
.form-list .control.remember-me-box label {
  width: auto;
  max-width: none;
  min-width: inherit;
}

/* line 486, ../scss/core/_form.scss */
.form-list .control {
  margin-top: 10px;
}
/* line 489, ../scss/core/_form.scss */
.form-list .control label {
  float: none;
}
/* line 492, ../scss/core/_form.scss */
.form-list .control .radio,
.form-list .control .checkbox {
  margin-right: 6px;
}
/* line 496, ../scss/core/_form.scss */
.form-list .control .input-box {
  clear: none;
  display: inline-block;
  width: auto;
  padding: 0;
}

/* line 505, ../scss/core/_form.scss */
form .form-instructions {
  font-style: italic;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: #605a54;
}

/* ============================================ *
 * Table Helpers
 * ============================================ */
/* line 30, ../scss/core/_table.scss */
.hide-th {
  text-indent: -9999px;
}

/* ============================================ *
 * Data Table
 * ============================================ */
/* line 38, ../scss/core/_table.scss */
.data-table {
  width: 100%;
}

/* line 42, ../scss/core/_table.scss */
.data-table td,
.data-table th {
  padding: 10px;
  vertical-align: top;
}

/* line 48, ../scss/core/_table.scss */
.data-table th {
  background: #F4F4F4;
  text-transform: uppercase;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.4;
  white-space: nowrap;
}

/* line 56, ../scss/core/_table.scss */
.data-table thead th,
.data-table tbody td {
  border-bottom: 1px solid #C0C0C0;
}

/* line 61, ../scss/core/_table.scss */
.data-table tbody td,
.data-table tfoot td {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}

/* line 66, ../scss/core/_table.scss */
.data-table tfoot tr {
  background: #F4F4F4;
}

/* line 70, ../scss/core/_table.scss */
.data-table tbody td .item-options {
  margin-left: 20px;
  margin-top: 10px;
}
/* line 74, ../scss/core/_table.scss */
.data-table tbody td .item-options dt:after {
  content: ':';
}

/* ============================================ *
 * Generic Info Table
 * ============================================ */
/* line 83, ../scss/core/_table.scss */
.info-box {
  border: 1px solid #C0C0C0;
  padding: 12px 15px;
  margin: 0 0 15px;
  display: inline-block;
}
/* line 89, ../scss/core/_table.scss */
.info-box h2 {
  font-weight: bold;
  font-size: 13px;
}

/* line 95, ../scss/core/_table.scss */
.info-table th,
.info-table td {
  vertical-align: top;
}

/* line 100, ../scss/core/_table.scss */
.info-table th {
  font-weight: bold;
  padding: 4px 20px 4px 0;
}

/* line 105, ../scss/core/_table.scss */
.info-table td {
  padding: 4px 0;
}

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

/* ============================================ *
 * div style table
 * ============================================ */
/* line 139, ../scss/core/_table.scss */
.divTable {
  display: table;
  width: 100%;
}
/* line 142, ../scss/core/_table.scss */
.divTable .divTableRow {
  display: table-row;
}
/* line 145, ../scss/core/_table.scss */
.divTable .divTableHeading {
  display: table-header-group;
}
/* line 148, ../scss/core/_table.scss */
.divTable .divTableCell,
.divTable .divTableHead {
  display: table-cell;
  padding: 5px;
}
/* line 153, ../scss/core/_table.scss */
.divTable .divTableHeading {
  display: table-header-group;
}
/* line 156, ../scss/core/_table.scss */
.divTable .divTableFoot {
  display: table-footer-group;
}
/* line 159, ../scss/core/_table.scss */
.divTable .divTableBody {
  display: table-row-group;
}

/* ============================================ *
 * Linearize Table
 * ============================================ */
@media only screen and (max-width: 480px) {
  /* line 270, ../scss/core/_table.scss */
  .linearize-table {
    /* Helpers */
  }
  /* line 170, ../scss/core/_table.scss */
  .linearize-table tr,
  .linearize-table th,
  .linearize-table td {
    display: block;
  }
  /* line 176, ../scss/core/_table.scss */
  .linearize-table thead th {
    border-right: 0;
    border-left: 0;
  }
  /* line 181, ../scss/core/_table.scss */
  .linearize-table thead th.lin-hide {
    display: none;
  }
  /* line 185, ../scss/core/_table.scss */
  .linearize-table thead th:nth-child(1n+2) {
    display: none;
  }
  /* line 189, ../scss/core/_table.scss */
  .linearize-table tbody tr {
    position: relative;
    border-bottom: 1px solid #e1e1e0;
  }
  /* line 194, ../scss/core/_table.scss */
  .linearize-table tbody td {
    padding: 0 10px 4px;
    border-right: 0;
    border-bottom: 0;
  }
  /* line 200, ../scss/core/_table.scss */
  .linearize-table tbody td.lin-hide {
    display: none;
  }
  /* line 204, ../scss/core/_table.scss */
  .linearize-table tbody td:first-child {
    padding-top: 10px;
  }
  /* line 208, ../scss/core/_table.scss */
  .linearize-table tbody td:first-child,
  .linearize-table tbody td:first-child h3 {
    font-weight: bold;
  }
  /* line 213, ../scss/core/_table.scss */
  .linearize-table tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 30px;
  }
  /* line 218, ../scss/core/_table.scss */
  .linearize-table tbody td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 14px;
    font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
    padding-right: 5px;
    text-transform: uppercase;
  }
  /* line 226, ../scss/core/_table.scss */
  .linearize-table tfoot tr {
    display: block;
    text-align: right;
  }
  /* line 231, ../scss/core/_table.scss */
  .linearize-table tfoot tr:after {
    content: '';
    display: table;
    clear: both;
  }
  /* line 235, ../scss/core/_table.scss */
  .linearize-table tfoot td {
    display: block;
    float: left;
  }
  /* line 240, ../scss/core/_table.scss */
  .linearize-table tfoot td.lin-hide {
    display: none;
  }
  /* line 244, ../scss/core/_table.scss */
  .linearize-table tfoot td:nth-child(odd) {
    clear: left;
    width: 60%;
  }
  /* line 249, ../scss/core/_table.scss */
  .linearize-table tfoot td:nth-child(even) {
    text-align: left;
    width: 40%;
  }
  /* line 256, ../scss/core/_table.scss */
  .linearize-table .linearize-hide {
    display: none;
  }
  /* line 260, ../scss/core/_table.scss */
  .linearize-table .linearize-unpad {
    padding: 0;
  }
  /* line 264, ../scss/core/_table.scss */
  .linearize-table .linearize-show {
    display: block;
  }
}
@media only screen and (max-width: 600px) {
  /* line 276, ../scss/core/_table.scss */
  .linearize-table-large {
    /* Helpers */
  }
  /* line 170, ../scss/core/_table.scss */
  .linearize-table-large tr,
  .linearize-table-large th,
  .linearize-table-large td {
    display: block;
  }
  /* line 176, ../scss/core/_table.scss */
  .linearize-table-large thead th {
    border-right: 0;
    border-left: 0;
  }
  /* line 181, ../scss/core/_table.scss */
  .linearize-table-large thead th.lin-hide {
    display: none;
  }
  /* line 185, ../scss/core/_table.scss */
  .linearize-table-large thead th:nth-child(1n+2) {
    display: none;
  }
  /* line 189, ../scss/core/_table.scss */
  .linearize-table-large tbody tr {
    position: relative;
    border-bottom: 1px solid #e1e1e0;
  }
  /* line 194, ../scss/core/_table.scss */
  .linearize-table-large tbody td {
    padding: 0 10px 4px;
    border-right: 0;
    border-bottom: 0;
  }
  /* line 200, ../scss/core/_table.scss */
  .linearize-table-large tbody td.lin-hide {
    display: none;
  }
  /* line 204, ../scss/core/_table.scss */
  .linearize-table-large tbody td:first-child {
    padding-top: 10px;
  }
  /* line 208, ../scss/core/_table.scss */
  .linearize-table-large tbody td:first-child,
  .linearize-table-large tbody td:first-child h3 {
    font-weight: bold;
  }
  /* line 213, ../scss/core/_table.scss */
  .linearize-table-large tbody td[data-rwd-label] {
    text-align: left;
    padding-left: 30px;
  }
  /* line 218, ../scss/core/_table.scss */
  .linearize-table-large tbody td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 14px;
    font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
    padding-right: 5px;
    text-transform: uppercase;
  }
  /* line 226, ../scss/core/_table.scss */
  .linearize-table-large tfoot tr {
    display: block;
    text-align: right;
  }
  /* line 231, ../scss/core/_table.scss */
  .linearize-table-large tfoot tr:after {
    content: '';
    display: table;
    clear: both;
  }
  /* line 235, ../scss/core/_table.scss */
  .linearize-table-large tfoot td {
    display: block;
    float: left;
  }
  /* line 240, ../scss/core/_table.scss */
  .linearize-table-large tfoot td.lin-hide {
    display: none;
  }
  /* line 244, ../scss/core/_table.scss */
  .linearize-table-large tfoot td:nth-child(odd) {
    clear: left;
    width: 60%;
  }
  /* line 249, ../scss/core/_table.scss */
  .linearize-table-large tfoot td:nth-child(even) {
    text-align: left;
    width: 40%;
  }
  /* line 256, ../scss/core/_table.scss */
  .linearize-table-large .linearize-hide {
    display: none;
  }
  /* line 260, ../scss/core/_table.scss */
  .linearize-table-large .linearize-unpad {
    padding: 0;
  }
  /* line 264, ../scss/core/_table.scss */
  .linearize-table-large .linearize-show {
    display: block;
  }
}
@media only screen and (min-width: 601px) {
  /* line 282, ../scss/core/_table.scss */
  .linearize-table .linearize-collapse {
    display: none;
  }
}
/* ============================================ *
 * Global
 * ============================================ */
/* line 30, ../scss/layout/_global.scss */
html,
body {
  height: 100%;
}

/* line 35, ../scss/layout/_global.scss */
:focus {
  outline-color: transparent;
}

/* line 39, ../scss/layout/_global.scss */
.wrapper {
  min-width: 320px;
  min-height: 100%;
  margin: 0 auto;
  background: #2c3033;
}

/* line 46, ../scss/layout/_global.scss */
.wrapper:after {
  content: '';
  display: table;
  clear: both;
}

/* line 50, ../scss/layout/_global.scss */
.main-container {
  background: #edf2f3;
}

/* ============================================ *
 * Header
 * ============================================ */
/* line 30, ../scss/layout/_header.scss */
#header {
  display: table;
  width: 100%;
}
/* line 33, ../scss/layout/_header.scss */
#header .bswrap {
  position: static;
}

/* line 38, ../scss/layout/_header.scss */
.page-header {
  margin: 0 auto;
}
/* line 40, ../scss/layout/_header.scss */
.page-header .bswrap {
  padding: 0 25px;
}

/* line 45, ../scss/layout/_header.scss */
.page-header-container {
  position: relative;
}

@media only screen and (max-width: 480px) {
  /* line 51, ../scss/layout/_header.scss */
  .page-header .bswrap {
    padding: 0 15px;
  }
}
/* line 57, ../scss/layout/_header.scss */
.header-language-container,
.page-header {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}

/* ============================================ *
 * Language switcher + welcome message
 * ============================================ */
/* line 66, ../scss/layout/_header.scss */
.header-language-background {
  padding: 10px;
  background-color: #02b2e7;
  text-transform: uppercase;
}
/* line 71, ../scss/layout/_header.scss */
.header-language-background .header-language-container {
  margin-left: auto;
  margin-right: auto;
}
/* line 76, ../scss/layout/_header.scss */
.header-language-background:after {
  content: '';
  display: table;
  clear: both;
}
/* line 80, ../scss/layout/_header.scss */
.header-language-background .form-language,
.header-language-background .currency-switcher {
  float: left;
  margin-right: 10px;
}
/* line 86, ../scss/layout/_header.scss */
.header-language-background .welcome-msg {
  float: right;
}

/* line 91, ../scss/layout/_header.scss */
.page-header-container .store-language-container {
  float: right;
  max-width: 35%;
  padding: 13px 15px 10px 10px;
}
/* line 96, ../scss/layout/_header.scss */
.page-header-container .store-language-container label {
  display: none;
}
/* line 99, ../scss/layout/_header.scss */
.page-header-container .store-language-container select {
  max-width: 100%;
}

@media only screen and (max-width: 480px) {
  /* line 105, ../scss/layout/_header.scss */
  .page-header-container .store-language-container {
    padding-top: 8px;
  }
  /* line 108, ../scss/layout/_header.scss */
  .page-header-container .store-language-container select {
    font-size: 14px;
  }
}
/* line 115, ../scss/layout/_header.scss */
.header-language-background,
.header-language-background a {
  color: #fff;
}

@media only screen and (max-width: 768px) {
  /* line 122, ../scss/layout/_header.scss */
  .header-language-background {
    display: none;
  }
}
/* ============================================ *
 * Logo
 * ============================================ */
/* line 133, ../scss/layout/_header.scss */
#header .logo {
  display: inline-block;
  float: left;
  min-width: 100px;
  min-height: 44px;
  text-align: center;
  padding: 10px 10px 10px 0;
  max-width: 200px;
  margin-top: 8px;
  outline: none;
}
/* line 144, ../scss/layout/_header.scss */
#header .logo img {
  max-width: 100%;
  padding: 10px 0;
}
/* line 149, ../scss/layout/_header.scss */
#header .logo .medium {
  display: none;
}
/* line 153, ../scss/layout/_header.scss */
#header .logo .small {
  display: none;
}

@media only screen and (max-width: 800px) {
  /* line 163, ../scss/layout/_header.scss */
  .logo {
    width: 100%;
    text-align: center;
  }
  /* line 166, ../scss/layout/_header.scss */
  .logo .large {
    margin: 0 auto;
  }

  /* line 172, ../scss/layout/_header.scss */
  #header .page-header-container {
    text-align: center;
  }
  /* line 174, ../scss/layout/_header.scss */
  #header .page-header-container .logo {
    float: none;
    margin-top: 0;
  }
  /* line 177, ../scss/layout/_header.scss */
  #header .page-header-container .logo img {
    padding-top: 0;
  }

  /* line 188, ../scss/layout/_header.scss */
  body.search-starts-open.search-hide-close #header .page-header-container .logo img {
    position: relative;
    right: 23px;
  }
}
@media only screen and (max-width: 480px) {
  /* line 201, ../scss/layout/_header.scss */
  #header .logo img {
    margin: 0 auto;
    text-align: center;
  }
  /* line 206, ../scss/layout/_header.scss */
  #header .logo .large {
    display: none;
  }
  /* line 209, ../scss/layout/_header.scss */
  #header .logo .small {
    display: block;
    width: 37px;
  }

  /* line 218, ../scss/layout/_header.scss */
  body.search-starts-open.search-hide-close #header .logo .small {
    position: relative;
    right: 20px;
  }
}
@media only screen and (max-width: 410px) {
  /* line 231, ../scss/layout/_header.scss */
  #header .page-header-container .logo {
    max-width: 168px;
  }
}
@media only screen and (max-width: 360px) {
  /* line 241, ../scss/layout/_header.scss */
  #header .page-header-container .logo {
    max-width: 150px;
    position: relative;
    /*right:20px;*/
    padding-top: 12px;
  }
}
/* ============================================ *
 * Skip Links
 * ============================================ */
/* line 255, ../scss/layout/_header.scss */
.skip-links {
  clear: both;
  overflow: hidden;
  border-top: 1px solid #EDEDED;
  border-bottom: 1px solid #EDEDED;
}

@media only screen and (min-width: 769px) {
  /* line 266, ../scss/layout/_header.scss */
  .skip-links {
    border: 0;
    display: none;
  }
}
/* -------------------------------------------- *
 * Skip - Link
 */
/* line 277, ../scss/layout/_header.scss */
.skip-link {
  position: relative;
  float: left;
  width: 20%;
  height: 44px;
  background: #FFFFFF;
  color: #373c3e;
  line-height: 42px;
  text-align: center;
}

/* line 288, ../scss/layout/_header.scss */
a.skip-link {
  text-decoration: none;
}

/* line 292, ../scss/layout/_header.scss */
.skip-link:not(.skip-active):hover {
  opacity: 0.8;
}

@media only screen and (max-width: 768px) {
  /* line 300, ../scss/layout/_header.scss */
  .skip-link {
    border-right: 1px solid #EDEDED;
  }

  /* line 304, ../scss/layout/_header.scss */
  .skip-link:last-child {
    border-right: 0;
  }
}
@media only screen and (min-width: 500px) {
  /* line 314, ../scss/layout/_header.scss */
  .skip-link {
    width: 25%;
  }
}
/* -------------------------------------------- *
 * Skip Link - Active
 */
@media only screen and (max-width: 768px) {
  /* line 325, ../scss/layout/_header.scss */
  .skip-link.skip-active {
    background: #EDEDED;
    color: inherit;
  }

  /* line 330, ../scss/layout/_header.scss */
  .skip-link.skip-active span {
    color: inherit;
  }
}
/* -------------------------------------------- *
 * Skip Link - Icon
 */
/* line 340, ../scss/layout/_header.scss */
.skip-link .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
}

/* line 347, ../scss/layout/_header.scss */
.skip-link.skip-nav .icon,
.skip-link.skip-cart:not(.no-count) .icon {
  margin-right: 3px;
}

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

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

/* line 386, ../scss/layout/_header.scss */
.skip-content.skip-active {
  display: block;
  background: #EDEDED;
}

/* ============================================ *
 * Global Header Navigation
 * ============================================ */
/* line 395, ../scss/layout/_header.scss */
#header-credits,
#header-account {
  float: right;
}

/* line 400, ../scss/layout/_header.scss */
#header-credits {
  display: none;
}
/* line 402, ../scss/layout/_header.scss */
#header-credits li {
  height: 100px;
}
/* line 404, ../scss/layout/_header.scss */
#header-credits li a {
  display: inline-block;
  height: 100%;
  padding: 31px 9px 0 9px;
}
/* line 408, ../scss/layout/_header.scss */
#header-credits li a .credit-count-wrap {
  padding-top: 3px;
  display: inline-block;
  text-align: center;
  border: 2px solid #6fc315;
  font-size: 16px;
  color: #6fc315;
  height: 30px;
  width: 30px;
  border-radius: 200%;
  -moz-border-radius: 200%;
  -webkit-border-radius: 200%;
  -o-border-radius: 200%;
}
/* line 422, ../scss/layout/_header.scss */
#header-credits li a:hover {
  background: #000000;
}

/* line 429, ../scss/layout/_header.scss */
body.showcredits #header-credits {
  display: block;
}

@media only screen and (max-width: 768px) {
  /* line 434, ../scss/layout/_header.scss */
  #header-credits {
    float: left;
  }
  /* line 436, ../scss/layout/_header.scss */
  #header-credits li {
    height: auto;
  }
  /* line 438, ../scss/layout/_header.scss */
  #header-credits li a {
    padding: 11px 9px 15px 9px;
  }

  /* line 444, ../scss/layout/_header.scss */
  body.showcredits #header .page-header-container .logo {
    position: relative;
    left: -24px;
  }
}
@media screen and (max-width: 812px) {
  /* line 454, ../scss/layout/_header.scss */
  #header-credits li a {
    padding: 31px 4px 0 4px;
  }
}
@media screen and (max-width: 800px) {
  /* line 462, ../scss/layout/_header.scss */
  #header {
    height: 56px !important;
  }
  /* line 464, ../scss/layout/_header.scss */
  #header .logo {
    padding: 10px 0 0 0;
  }
  /* line 466, ../scss/layout/_header.scss */
  #header .logo img {
    padding-bottom: 0;
  }
  /* line 471, ../scss/layout/_header.scss */
  #header #header-close-search span {
    height: 56px;
    padding: 15px 10px 5px 10px;
  }
  /* line 475, ../scss/layout/_header.scss */
  #header #header-close-search span.fulltext {
    display: none;
  }
  /* line 478, ../scss/layout/_header.scss */
  #header #header-close-search span.smalltext {
    display: inline-block;
    font-size: 28px;
  }
  /* line 481, ../scss/layout/_header.scss */
  #header #header-close-search span.smalltext:hover {
    background: transparent;
  }

  /* line 488, ../scss/layout/_header.scss */
  #header-credits li {
    height: 52px;
  }
  /* line 490, ../scss/layout/_header.scss */
  #header-credits li a {
    padding: 12px 9px 0 9px;
  }
}
@media only screen and (max-width: 768px) {
  /* line 501, ../scss/layout/_header.scss */
  #header-account li a,
  .nav-primary a.level0 {
    padding: 0 15px 0 25px;
    border-bottom: 1px solid #e1e1e0;
    text-align: left;
    color: #373c3e;
    text-transform: uppercase;
    line-height: 30px;
  }

  /* line 511, ../scss/layout/_header.scss */
  #header-account li:last-child a,
  .nav-primary li.level0:last-child a.level0 {
    border-bottom: 0;
  }

  /* line 516, ../scss/layout/_header.scss */
  .no-touch #header-account a:hover,
  .no-touch .nav-primary a:hover {
    background-color: #F4F4F4;
    text-decoration: none;
  }
}
/* line 524, ../scss/layout/_header.scss */
.account-cart-wrapper {
  position: absolute;
  top: 0px;
  right: 0px;
  display: none;
}
@media only screen and (max-width: 768px) {
  /* line 524, ../scss/layout/_header.scss */
  .account-cart-wrapper {
    position: static;
    display: block;
  }
}

/* line 537, ../scss/layout/_header.scss */
#header-close-search {
  float: right;
  display: none;
}
/* line 540, ../scss/layout/_header.scss */
#header-close-search span {
  height: 100px;
  color: #fff;
  padding: 38px 10px;
  font-size: 19px;
  display: block;
  cursor: pointer;
}
/* line 548, ../scss/layout/_header.scss */
#header-close-search span:hover {
  background: #000;
}
/* line 551, ../scss/layout/_header.scss */
#header-close-search span.fulltext {
  display: inline-block;
}
/* line 554, ../scss/layout/_header.scss */
#header-close-search span.smalltext {
  display: none;
}

/* line 559, ../scss/layout/_header.scss */
body.search-hide-close.search-open #header-close-search {
  display: none;
}
/* line 562, ../scss/layout/_header.scss */
body.search-hide-close.search-open #header-cart,
body.search-hide-close.search-open #header-account {
  display: inline-block;
}

/* line 568, ../scss/layout/_header.scss */
body.search-open #header-cart,
body.search-open #header-account,
body.search-open #header-credits {
  display: none;
}
/* line 573, ../scss/layout/_header.scss */
body.search-open #header-close-search {
  display: block;
}
/* line 577, ../scss/layout/_header.scss */
body.search-open.search-cover-navitem1 #header-nav {
  display: none;
}

/* ============================================ *
 * Header Cart
 * ============================================ */
/* line 586, ../scss/layout/_header.scss */
#header-cart {
  float: right;
  display: inline-block;
}
/* line 589, ../scss/layout/_header.scss */
#header-cart a {
  height: 100px;
  padding: 30px 10px 0 10px;
  font-size: 28px;
  color: #fff;
  display: block;
}
/* line 596, ../scss/layout/_header.scss */
#header-cart a:hover {
  text-decoration: none;
  background: #000;
}

@media only screen and (max-width: 800px) {
  /* line 604, ../scss/layout/_header.scss */
  #header #header-cart a {
    height: auto;
    padding: 10px 0 0 0;
  }
}
/* ============================================ *
 * Fixed Mobile Header
 * ============================================ */
@media only screen and (max-width: 600px) {
  /* line 619, ../scss/layout/_header.scss */
  body .wrapper #header {
    background: #2c3033;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
  }
  /* line 626, ../scss/layout/_header.scss */
  body .wrapper .main-container {
    margin-top: 56px;
  }

  /* line 633, ../scss/layout/_header.scss */
  body.search-starts-open.search-hide-close .wrapper .main-container {
    margin-top: 115px;
  }
}
/* ============================================ *
 * Nav - BSA NAV
 * ============================================ */
/* line 31, ../scss/layout/_header-nav.scss */
.carrot-accent {
  overflow: visible !important;
  width: 100%;
}
/* line 34, ../scss/layout/_header-nav.scss */
.carrot-accent .pointer {
  position: absolute;
  border-style: solid;
  border-width: 0 15px 15px;
  border-color: #edf2f3 transparent;
  display: block;
  width: 0;
  z-index: 1;
  margin-left: -15px;
  top: -30px;
  left: 50%;
}

/* line 49, ../scss/layout/_header-nav.scss */
.level0.double .carrot-accent .pointer {
  left: 100%;
  margin-left: -16px;
}

/* line 57, ../scss/layout/_header-nav.scss */
.level0.triple .carrot-accent .pointer {
  margin-left: 145px;
}

/* line 64, ../scss/layout/_header-nav.scss */
.level0.quad .carrot-accent .pointer {
  margin-left: 119px;
}

/* line 70, ../scss/layout/_header-nav.scss */
#header #account-nav,
#header .nav-wrap {
  float: left;
  display: inline-block;
  height: 100px;
}
/* line 75, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal,
#header .nav-wrap ul.menu-type-horizontal {
  height: 100%;
}
/* line 77, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.nav-item-browse ul.level0,
#header .nav-wrap ul.menu-type-horizontal li.nav-item-browse ul.level0 {
  width: 500px;
}
/* line 80, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.nav-item-formats ul.level0,
#header .nav-wrap ul.menu-type-horizontal li.nav-item-formats ul.level0 {
  width: 171px;
}
/* line 83, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li,
#header .nav-wrap ul.menu-type-horizontal li {
  background: none;
  display: inline-block;
}
/* line 86, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li a,
#header .nav-wrap ul.menu-type-horizontal li a {
  color: #fff;
  height: 100%;
  display: inline-block;
  font-size: 19px;
  outline: none;
}
/* line 93, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li a span,
#header .nav-wrap ul.menu-type-horizontal li a span {
  height: 100%;
  padding: 36px 9px 0;
}
/* line 97, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li a span:hover,
#header .nav-wrap ul.menu-type-horizontal li a span:hover {
  background: #000;
}
/* line 102, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.level0,
#header .nav-wrap ul.menu-type-horizontal li.level0 {
  height: 100%;
  background: none;
}
/* line 106, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.level0 #account-pulldown-window,
#header .nav-wrap ul.menu-type-horizontal li.level0 #account-pulldown-window {
  width: 265px;
  top: 100px;
  left: -30px;
}
/* line 111, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.level0 #account-pulldown-window li a,
#header .nav-wrap ul.menu-type-horizontal li.level0 #account-pulldown-window li a {
  width: 100%;
}
/* line 113, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.level0 #account-pulldown-window li a span,
#header .nav-wrap ul.menu-type-horizontal li.level0 #account-pulldown-window li a span {
  padding: 0 5px 0 0;
  text-align: left;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
/* line 120, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.level0 #account-pulldown-window li a span.icon-font,
#header .nav-wrap ul.menu-type-horizontal li.level0 #account-pulldown-window li a span.icon-font {
  width: auto;
}
/* line 123, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.level0 #account-pulldown-window li a span.org-info-item,
#header .nav-wrap ul.menu-type-horizontal li.level0 #account-pulldown-window li a span.org-info-item {
  border-bottom: 1px solid #d3d8d9;
}
/* line 125, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.level0 #account-pulldown-window li a span.org-info-item .user-name,
#header .nav-wrap ul.menu-type-horizontal li.level0 #account-pulldown-window li a span.org-info-item .user-name {
  display: block;
  color: #919799;
  font-size: 14px;
}
/* line 136, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.level0 ul,
#header .nav-wrap ul.menu-type-horizontal li.level0 ul {
  padding: 15px 24px;
  background: #edf2f3;
  border: 1px solid #ccc;
  z-index: 200;
}
/* line 142, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.level0 ul li,
#header .nav-wrap ul.menu-type-horizontal li.level0 ul li {
  border-width: 0;
  float: left;
  display: inline;
  overflow: hidden;
}
/* line 147, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.level0 ul li a,
#header .nav-wrap ul.menu-type-horizontal li.level0 ul li a {
  font-size: 16px;
}
/* line 149, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.level0 ul li a span:hover,
#header .nav-wrap ul.menu-type-horizontal li.level0 ul li a span:hover {
  background: none;
  color: #02b2e7;
}
/* line 154, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.level0 ul li a,
#header .nav-wrap ul.menu-type-horizontal li.level0 ul li a {
  color: #605a54;
}
/* line 156, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.level0 ul li a span,
#header .nav-wrap ul.menu-type-horizontal li.level0 ul li a span {
  padding: 3px 0;
}
/* line 164, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.double ul li,
#header .nav-wrap ul.menu-type-horizontal li.double ul li {
  width: 50%;
}
/* line 167, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.double ul li a span,
#header .nav-wrap ul.menu-type-horizontal li.double ul li a span {
  margin: auto 17px;
}
/* line 173, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.triple ul,
#header .nav-wrap ul.menu-type-horizontal li.triple ul {
  padding: 15px 7px;
}
/* line 175, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.triple ul li,
#header .nav-wrap ul.menu-type-horizontal li.triple ul li {
  width: 33%;
}
/* line 178, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.triple ul li a span,
#header .nav-wrap ul.menu-type-horizontal li.triple ul li a span {
  margin: auto 17px;
}
/* line 183, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.triple ul li.double-nav-item-header,
#header .nav-wrap ul.menu-type-horizontal li.triple ul li.double-nav-item-header {
  width: 66%;
  padding-bottom: 10px;
  font-family: Kievit-Bold;
}
/* line 187, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.triple ul li.double-nav-item-header a,
#header .nav-wrap ul.menu-type-horizontal li.triple ul li.double-nav-item-header a {
  width: 300px;
  cursor: default;
}
/* line 190, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.triple ul li.double-nav-item-header a span,
#header .nav-wrap ul.menu-type-horizontal li.triple ul li.double-nav-item-header a span {
  border-bottom: 1px solid #d3d8d9;
  width: 266px;
}
/* line 193, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.triple ul li.double-nav-item-header a span:hover,
#header .nav-wrap ul.menu-type-horizontal li.triple ul li.double-nav-item-header a span:hover {
  color: #605a54;
}
/* line 197, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.triple ul li.double-nav-item-header a:hover,
#header .nav-wrap ul.menu-type-horizontal li.triple ul li.double-nav-item-header a:hover {
  color: #605a54;
}
/* line 202, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.triple ul li.nav-item-header,
#header .nav-wrap ul.menu-type-horizontal li.triple ul li.nav-item-header {
  padding-bottom: 10px;
  font-family: Kievit-Bold;
}
/* line 205, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.triple ul li.nav-item-header a,
#header .nav-wrap ul.menu-type-horizontal li.triple ul li.nav-item-header a {
  cursor: default;
}
/* line 207, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.triple ul li.nav-item-header a span,
#header .nav-wrap ul.menu-type-horizontal li.triple ul li.nav-item-header a span {
  border-bottom: 1px solid #d3d8d9;
  width: 133px;
}
/* line 210, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.triple ul li.nav-item-header a span:hover,
#header .nav-wrap ul.menu-type-horizontal li.triple ul li.nav-item-header a span:hover {
  color: #605a54;
}
/* line 214, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.triple ul li.nav-item-header a:hover,
#header .nav-wrap ul.menu-type-horizontal li.triple ul li.nav-item-header a:hover {
  color: #605a54;
}
/* line 221, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.triple ul li.blank-url a span,
#header .nav-wrap ul.menu-type-horizontal li.triple ul li.blank-url a span {
  color: #edf2f3;
}
/* line 227, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.triple ul li,
#header .nav-wrap ul.menu-type-horizontal li.triple ul li {
  width: 33.333%;
}
/* line 231, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.quad ul.level0,
#header .nav-wrap ul.menu-type-horizontal li.quad ul.level0 {
  left: 222%;
}
/* line 234, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.quad ul li,
#header .nav-wrap ul.menu-type-horizontal li.quad ul li {
  width: 25%;
}
/* line 238, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.quad ul li.blank-url a span,
#header .nav-wrap ul.menu-type-horizontal li.quad ul li.blank-url a span {
  color: #edf2f3;
}
/* line 243, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.quad ul li.double-nav-item-header,
#header .nav-wrap ul.menu-type-horizontal li.quad ul li.double-nav-item-header {
  width: 50%;
  padding-bottom: 10px;
  font-family: Kievit-Bold;
}
/* line 247, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.quad ul li.double-nav-item-header a,
#header .nav-wrap ul.menu-type-horizontal li.quad ul li.double-nav-item-header a {
  width: 300px;
  cursor: default;
}
/* line 250, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.quad ul li.double-nav-item-header a span,
#header .nav-wrap ul.menu-type-horizontal li.quad ul li.double-nav-item-header a span {
  border-bottom: 1px solid #d3d8d9;
  width: 266px;
}
/* line 253, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.quad ul li.double-nav-item-header a span:hover,
#header .nav-wrap ul.menu-type-horizontal li.quad ul li.double-nav-item-header a span:hover {
  color: #605a54;
}
/* line 257, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.quad ul li.double-nav-item-header a:hover,
#header .nav-wrap ul.menu-type-horizontal li.quad ul li.double-nav-item-header a:hover {
  color: #605a54;
}
/* line 262, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.quad ul li.nav-item-header,
#header .nav-wrap ul.menu-type-horizontal li.quad ul li.nav-item-header {
  padding-bottom: 10px;
  font-family: Kievit-Bold;
}
/* line 265, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.quad ul li.nav-item-header a,
#header .nav-wrap ul.menu-type-horizontal li.quad ul li.nav-item-header a {
  cursor: default;
}
/* line 267, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.quad ul li.nav-item-header a span,
#header .nav-wrap ul.menu-type-horizontal li.quad ul li.nav-item-header a span {
  border-bottom: 1px solid #d3d8d9;
  width: 133px;
}
/* line 270, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.quad ul li.nav-item-header a span:hover,
#header .nav-wrap ul.menu-type-horizontal li.quad ul li.nav-item-header a span:hover {
  color: #605a54;
}
/* line 274, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.quad ul li.nav-item-header a:hover,
#header .nav-wrap ul.menu-type-horizontal li.quad ul li.nav-item-header a:hover {
  color: #605a54;
}
/* line 282, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li.six ul li,
#header .nav-wrap ul.menu-type-horizontal li.six ul li {
  width: 16.666%;
}
/* line 285, ../scss/layout/_header-nav.scss */
#header #account-nav ul.menu-type-horizontal li ul li.full-width-li,
#header .nav-wrap ul.menu-type-horizontal li ul li.full-width-li {
  width: 100%;
}

/* ============================================ *
 * Nav - Mobile
 * ============================================ */
/* line 297, ../scss/layout/_header-nav.scss */
#header .mobile-menu button,
#header .mobile-menu .icon-font {
  color: #edf2f3;
}
/* line 301, ../scss/layout/_header-nav.scss */
#header .mobile-menu a:hover {
  text-decoration: none;
}
/* line 306, ../scss/layout/_header-nav.scss */
#header .mobile-menu #mobile-header-nav {
  -webkit-transition: left .5s, width .5s;
  -moz-transition: left .5s, width .5s;
  -o-transition: left .5s, width .5s;
  transition: left .5s, width .5s;
  left: 0;
  top: 0;
  position: absolute;
  display: block;
  width: 0;
  overflow: hidden;
}
/* line 317, ../scss/layout/_header-nav.scss */
#header .mobile-menu #mobile-header-nav ul.menu-manager-menu {
  width: 260px;
}
/* line 322, ../scss/layout/_header-nav.scss */
#header .mobile-menu {
  pointer-events: all;
  background: none;
}
/* line 325, ../scss/layout/_header-nav.scss */
#header .mobile-menu #mobile-header-nav {
  background: #edf2f3;
  -webkit-box-shadow: inset -1.5px 1px 1px 1px rgba(22, 25, 26, 0.3);
  -moz-box-shadow: inset -1.5px 1px 1px 1px rgba(22, 25, 26, 0.3);
  box-shadow: inset -1.5px 1px 1px 1px rgba(22, 25, 26, 0.3);
}
/* line 331, ../scss/layout/_header-nav.scss */
#header .mobile-menu #mobile-header-nav ul li.level0 {
  text-align: left;
  width: 258px;
}
/* line 334, ../scss/layout/_header-nav.scss */
#header .mobile-menu #mobile-header-nav ul li.level0 a {
  width: 100%;
  display: inline-block;
  line-height: 1.75;
  font-size: 21px;
  padding: 5px 10px 5px 10px;
  color: #373c3e;
}
/* line 342, ../scss/layout/_header-nav.scss */
#header .mobile-menu #mobile-header-nav ul li.level0 a .icon-right {
  float: right;
  color: #373c3e;
  position: relative;
  top: 6px;
}
/* line 348, ../scss/layout/_header-nav.scss */
#header .mobile-menu #mobile-header-nav ul li.level0 a .icon-right {
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
/* line 361, ../scss/layout/_header-nav.scss */
#header .mobile-menu #mobile-header-nav ul li.parent.open > a > .icon-right {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

/* line 374, ../scss/layout/_header-nav.scss */
body .page {
  -webkit-transition: left .5s;
  -moz-transition: left .5s;
  -o-transition: left .5s;
  transition: left .5s;
  left: 0;
  position: relative;
}

/* line 385, ../scss/layout/_header-nav.scss */
#header .mobile-menu {
  display: none;
}
/* line 387, ../scss/layout/_header-nav.scss */
#header .mobile-menu .mobile-menu-hotdog {
  color: #edf2f3;
  padding-bottom: 3px;
  margin-top: 8px;
  margin-right: 10px;
  padding: 0;
  font-size: 28px;
}
/* line 393, ../scss/layout/_header-nav.scss */
#header .mobile-menu .mobile-menu-hotdog .tcon-menu__lines,
#header .mobile-menu .mobile-menu-hotdog .tcon-menu__lines::before,
#header .mobile-menu .mobile-menu-hotdog .tcon-menu__lines::after {
  background-color: #edf2f3;
}
/* line 401, ../scss/layout/_header-nav.scss */
#header .mobile-menu .mobile-menu-hotdog.tcon-transform .tcon-menu__lines {
  background-color: transparent;
}
/* line 405, ../scss/layout/_header-nav.scss */
#header .mobile-menu #mobile-header-nav {
  padding: 0;
}
/* line 410, ../scss/layout/_header-nav.scss */
#header .mobile-menu #mobile-header-nav ul li.mobile-nav-login-item a,
#header .mobile-menu #mobile-header-nav ul li.mobile-nav-login-item .icon-font,
#header .mobile-menu #mobile-header-nav ul li.mobile-nav-myaccount-item a,
#header .mobile-menu #mobile-header-nav ul li.mobile-nav-myaccount-item .icon-font {
  font-size: 21px;
  color: #373c3e;
}
/* line 415, ../scss/layout/_header-nav.scss */
#header .mobile-menu #mobile-header-nav ul li.mobile-nav-login-item .icon-font,
#header .mobile-menu #mobile-header-nav ul li.mobile-nav-myaccount-item .icon-font {
  position: relative;
  top: 1px;
  padding-right: 10px;
  font-size: 21px;
}
/* line 421, ../scss/layout/_header-nav.scss */
#header .mobile-menu #mobile-header-nav ul li.mobile-nav-login-item .icon-right,
#header .mobile-menu #mobile-header-nav ul li.mobile-nav-myaccount-item .icon-right {
  top: 6px;
  padding-right: 0;
}
/* line 426, ../scss/layout/_header-nav.scss */
#header .mobile-menu #mobile-header-nav ul li.mobile-nav-myaccount-item {
  border-bottom: 1px solid #e0e4e5;
}
/* line 429, ../scss/layout/_header-nav.scss */
#header .mobile-menu #mobile-header-nav ul li.mobile-nav-login-item {
  display: block;
  text-align: center;
}
/* line 432, ../scss/layout/_header-nav.scss */
#header .mobile-menu #mobile-header-nav ul li.mobile-nav-login-item a,
#header .mobile-menu #mobile-header-nav ul li.mobile-nav-login-item .icon-font {
  color: #fff;
}
/* line 436, ../scss/layout/_header-nav.scss */
#header .mobile-menu #mobile-header-nav ul li.mobile-nav-login-item a {
  border-radius: 999px;
  -moz-border-radius: 999px;
  -webkit-border-radius: 999px;
  -o-border-radius: 999px;
  background: #02b2e7;
  display: inline-block;
  padding: 7px 15px 14px 15px;
  margin: 10px auto;
  width: 240px;
  border: 0;
  color: #FFFFFF;
  font-size: 21px;
  font-weight: normal;
  font-family: "Kievit-Regular", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 19px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
/* line 457, ../scss/layout/_header-nav.scss */
#header .mobile-menu #mobile-header-nav ul li.mobile-nav-myaccount-item,
#header .mobile-menu #mobile-header-nav ul li.mobile-nav-buy-credits-menu-link {
  display: none;
}
/* line 461, ../scss/layout/_header-nav.scss */
#header .mobile-menu #mobile-header-nav ul li.open {
  background: #d3d8d9;
}
/* line 465, ../scss/layout/_header-nav.scss */
#header .mobile-menu #mobile-header-nav ul li > ul {
  background: #fff;
  padding-left: 0;
  position: relative;
  height: 300px;
  overflow-y: scroll;
}
/* line 471, ../scss/layout/_header-nav.scss */
#header .mobile-menu #mobile-header-nav ul li > ul > a {
  padding-left: 32px;
}

/* line 485, ../scss/layout/_header-nav.scss */
body.logged-in #header .mobile-menu #mobile-header-nav ul li.mobile-nav-login-item {
  display: none;
}
/* line 488, ../scss/layout/_header-nav.scss */
body.logged-in #header .mobile-menu #mobile-header-nav ul li.mobile-nav-myaccount-item {
  display: block;
}

/* line 502, ../scss/layout/_header-nav.scss */
body.has-membership #header .mobile-menu #mobile-header-nav ul li.mobile-nav-buy-credits-menu-link {
  display: block;
}

/* line 511, ../scss/layout/_header-nav.scss */
html.mobileNavOpen {
  overflow: hidden;
}
/* line 513, ../scss/layout/_header-nav.scss */
html.mobileNavOpen body {
  overflow: hidden;
}
/* line 515, ../scss/layout/_header-nav.scss */
html.mobileNavOpen body .page {
  -webkit-transition: left .5s;
  -moz-transition: left .5s;
  -o-transition: left .5s;
  transition: left .5s;
  position: relative;
  left: 260px;
  pointer-events: none;
}
/* line 525, ../scss/layout/_header-nav.scss */
html.mobileNavOpen body .page #header .mobile-menu #mobile-header-nav {
  -webkit-transition: left .4s, width .4s;
  -moz-transition: left .4s, width .4s;
  -o-transition: left .4s, width .4s;
  transition: left .4s, width .4s;
  pointer-events: all;
  display: block;
  position: absolute;
  top: 0;
  left: -260px;
  z-index: 300;
  width: 260px;
}

@media only screen and (max-width: 800px) {
  /* line 546, ../scss/layout/_header-nav.scss */
  body #header {
    -webkit-transition: left .5s;
    -moz-transition: left .5s;
    -o-transition: left .5s;
    transition: left .5s;
  }

  /* line 555, ../scss/layout/_header-nav.scss */
  html.mobileNavOpen body #header {
    left: 260px;
  }
}
/* ============================================ *
 * Nav - Skip Link
 * ============================================ */
/* line 568, ../scss/layout/_header-nav.scss */
.skip-nav {
  width: 40%;
}
/* line 571, ../scss/layout/_header-nav.scss */
.skip-nav:not(.skip-active):hover {
  text-decoration: none;
}
/* line 574, ../scss/layout/_header-nav.scss */
.skip-nav:not(.skip-active):hover .icon {
  background-position: -46px 4px;
}

/* line 580, ../scss/layout/_header-nav.scss */
.skip-nav .label {
  display: inline;
}

/* line 584, ../scss/layout/_header-nav.scss */
.skip-nav .icon {
  background-position: 4px 4px;
}

@media only screen and (min-width: 500px) {
  /* line 593, ../scss/layout/_header-nav.scss */
  .skip-nav {
    width: 25%;
  }
}
@media only screen and (min-width: 769px) {
  /* line 603, ../scss/layout/_header-nav.scss */
  .skip-nav {
    display: none;
  }
}
/* ============================================ *
 * Mobile Nav
 * ============================================ */
@media only screen and (max-width: 800px) {
  /* line 615, ../scss/layout/_header-nav.scss */
  #header #header-nav,
  #header #header-account {
    display: none;
  }
  /* line 619, ../scss/layout/_header-nav.scss */
  #header .mobile-menu {
    display: inline-block;
    float: left;
  }
}
@media only screen and (max-width: 480px) {
  /* line 628, ../scss/layout/_header-nav.scss */
  #header .mobile-menu {
    margin-left: -5px;
  }
  /* line 633, ../scss/layout/_header-nav.scss */
  #header .mobile-menu-hotdog.tcon-transform .tcon-menu__lines {
    margin-left: -5px;
  }
}
@media only screen and (min-width: 769px) {
  /* line 644, ../scss/layout/_header-nav.scss */
  #header-nav {
    display: inline-block;
    /* Force visibility */
  }
}
/* ============================================ *
 * Nav Primary
 * ============================================ */
@media only screen and (min-width: 769px) {
  /* line 655, ../scss/layout/_header-nav.scss */
  .nav-primary {
    display: block;
    margin-top: 28px;
  }
}
/* ============================================ *
 * General Navigation Styles
 * ============================================ */
/* line 669, ../scss/layout/_header-nav.scss */
.nav-primary a {
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  display: block;
  color: #fff;
  line-height: 30px;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 21px;
}
/* line 680, ../scss/layout/_header-nav.scss */
.nav-primary li {
  position: relative;
}
/* line 684, ../scss/layout/_header-nav.scss */
.nav-primary li.level1 a {
  border-bottom: 1px solid #e1e1e0;
}
/* line 688, ../scss/layout/_header-nav.scss */
.nav-primary li.current-page a {
  border-bottom: 2px solid #fe721d;
}

/* line 694, ../scss/layout/_header-nav.scss */
.nav-primary .menu-active > ul.level0,
.nav-primary li.level0 li.sub-menu-active > ul {
  display: block;
}

/* line 699, ../scss/layout/_header-nav.scss */
.nav-primary li.level0 > a {
  text-transform: uppercase;
}

/* ============================================ *
 * Small Viewports - Accordion Style Menu
 * ============================================ */
/* line 707, ../scss/layout/_header-nav.scss */
.skip-links a:hover {
  color: #373c3e;
}

@media only screen and (max-width: 768px) {
  /* line 716, ../scss/layout/_header-nav.scss */
  .nav-primary a.level0,
  .nav-primary a {
    line-height: 35px;
  }
  /* line 722, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 ul {
    display: none;
  }
  /* line 727, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 li {
    padding: 0 0 0 25px;
  }
  /* line 731, ../scss/layout/_header-nav.scss */
  .nav-primary li.level1 a {
    padding: 0 15px 0 25px;
  }
  /* line 735, ../scss/layout/_header-nav.scss */
  .nav-primary li.parent > a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #ccc;
    border-right: none;
    top: 50%;
    left: 10px;
    right: auto;
    margin-top: -5px;
  }
  /* line 744, ../scss/layout/_header-nav.scss */
  .nav-primary li.parent.sub-menu-active > a:after,
  .nav-primary li.parent.menu-active > a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 5px solid #ccc;
    border-bottom: none;
    top: 50%;
    left: 10px;
    right: auto;
    margin-top: -5px;
  }
  /* line 753, ../scss/layout/_header-nav.scss */
  .nav-primary li.menu-active > a,
  .nav-primary li.sub-menu-active > a {
    color: #02b2e7;
  }
}
/* ============================================ *
 * Large Viewports - Dropdown Menu
 * ============================================ */
@media only screen and (min-width: 769px) {
  /* line 766, ../scss/layout/_header-nav.scss */
  .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+ */
  }
  /* line 768, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 {
    padding: 0 15px;
  }
  /* line 771, ../scss/layout/_header-nav.scss */
  .nav-primary li.last {
    padding-right: 0;
  }
  /* line 775, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0,
  .nav-primary a.level0 {
    display: inline-block;
  }
  /* line 780, ../scss/layout/_header-nav.scss */
  .nav-primary a:hover,
  .nav-primary li:hover > a {
    color: #02b2e7;
  }
  /* line 785, ../scss/layout/_header-nav.scss */
  .nav-primary .menu-active {
    z-index: 200;
  }
  /* line 790, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 ul {
    background: #FBFBFB;
    border: solid 1px #e1e1e0;
    position: absolute;
    left: 0;
    top: 30px;
    /* Height of ".nav-primary a.level0" */
    z-index: 10;
    width: 250px;
    padding-left: 10px;
    padding-right: 10px;
    display: none;
    /* Hide until displayed. */
  }
  /* line 803, ../scss/layout/_header-nav.scss */
  .nav-primary li.level1 ul {
    left: 60px;
    top: 15px;
  }
  /* line 809, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 ul.level0.position-test {
    display: block;
  }
  /* line 814, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 ul.level0.spill {
    right: 0;
    left: auto;
  }
  /* line 819, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 ul.level0.spill li.level1 ul {
    left: auto;
    right: 50px;
    top: 20px;
  }
  /* line 827, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 li.parent > a {
    position: relative;
  }
  /* line 830, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 li.parent > a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #ccc;
    border-right: none;
    right: 5px;
    top: 50%;
    margin-top: -3px;
  }
}
/* line 841, ../scss/layout/_header-nav.scss */
.nav-primary li.menu-active > ul {
  display: block;
}

/* ============================================ *
 * Algolia Header Search
 * ============================================ */
/* line 30, ../scss/layout/_header-search.scss */
#header #header-search {
  margin-right: 7px;
}
/* line 32, ../scss/layout/_header-search.scss */
#header #header-search #search_mini_form {
  position: absolute;
}
/* line 34, ../scss/layout/_header-search.scss */
#header #header-search #search_mini_form .algolia-search-resize-wrapper {
  width: 0;
  height: 92px;
  position: relative;
  overflow: hidden;
  display: block !important;
  float: right;
}
/* line 42, ../scss/layout/_header-search.scss */
#header #header-search #search_mini_form .algolia-autocomplete {
  width: 100%;
  overflow: hidden;
}
/* line 45, ../scss/layout/_header-search.scss */
#header #header-search #search_mini_form .algolia-autocomplete .algolia-search-input {
  width: 100%;
  font-size: 18px;
}
/* line 50, ../scss/layout/_header-search.scss */
#header #header-search #search_mini_form #algolia-glass2.magnifying-glass {
  display: none !important;
}
/* line 53, ../scss/layout/_header-search.scss */
#header #header-search #search_mini_form #algolia-glass.magnifying-glass {
  padding-top: 19px;
  background: transparent;
  font-family: icomoon;
  color: #fff;
  font-size: 28px;
}
/* line 59, ../scss/layout/_header-search.scss */
#header #header-search #search_mini_form #algolia-glass.magnifying-glass:before {
  content: "\e902";
}

/* line 71, ../scss/layout/_header-search.scss */
body.search-mag-glass.search-open #header #header-search #search_mini_form .algolia-search-input {
  padding-left: 30px;
}
/* line 74, ../scss/layout/_header-search.scss */
body.search-mag-glass.search-open #header #header-search #search_mini_form #algolia-glass2.magnifying-glass {
  color: #919799;
  position: absolute;
  z-index: 500;
  top: 3px;
  display: inline !important;
  left: 0;
  width: 26px;
}

@media only screen and (max-width: 800px) {
  /* line 93, ../scss/layout/_header-search.scss */
  #header #header-search #search_mini_form #algolia-searchbox .algolia-search-resize-wrapper {
    height: 42px;
    max-width: none !important;
  }
  /* line 97, ../scss/layout/_header-search.scss */
  #header #header-search #search_mini_form #algolia-searchbox #algolia-glass2.magnifying-glass {
    height: 35px;
  }
  /* line 100, ../scss/layout/_header-search.scss */
  #header #header-search #search_mini_form #algolia-searchbox .algolia-autocomplete {
    height: auto;
  }
  /* line 102, ../scss/layout/_header-search.scss */
  #header #header-search #search_mini_form #algolia-searchbox .algolia-autocomplete #search {
    top: 0;
  }
  /* line 106, ../scss/layout/_header-search.scss */
  #header #header-search #search_mini_form #algolia-searchbox #algolia-glass {
    height: 40px;
    padding-top: 0;
  }

  /* line 116, ../scss/layout/_header-search.scss */
  body.search-open #header .logo {
    display: none;
  }

  /* line 122, ../scss/layout/_header-search.scss */
  body.search-starts-open.search-hide-close #header {
    height: 115px !important;
  }
  /* line 124, ../scss/layout/_header-search.scss */
  body.search-starts-open.search-hide-close #header #header-search {
    clear: both;
    float: none;
    margin-top: 2px;
  }
  /* line 129, ../scss/layout/_header-search.scss */
  body.search-starts-open.search-hide-close #header .logo {
    display: inline-block;
    float: none;
  }
}
@media only screen and (max-width: 600px) {
  /* line 138, ../scss/layout/_header-search.scss */
  #header #header-search {
    max-height: 43px;
  }
}
@media only screen and (max-width: 480px) {
  /* line 145, ../scss/layout/_header-search.scss */
  #header #header-close-search span {
    padding-left: 0;
    padding-right: 0;
  }
  /* line 152, ../scss/layout/_header-search.scss */
  #header #header-search #search_mini_form .algolia-autocomplete .algolia-search-input {
    font-size: 16px;
  }
}
/* ============================================ *
 * Search - Skip Link
 * ============================================ */
/* line 168, ../scss/layout/_header-search.scss */
.skip-search:not(.skip-active):hover .icon {
  background-position: -46px -146px;
}
/* line 173, ../scss/layout/_header-search.scss */
.skip-search .icon {
  background-position: 4px -146px;
}

@media only screen and (min-width: 769px) {
  /* line 183, ../scss/layout/_header-search.scss */
  .skip-search {
    display: none;
  }
}
/* ============================================ *
 * Search - Skip Content
 * ============================================ */
/* line 193, ../scss/layout/_header-search.scss */
#header-search {
  /*padding: 20px;*/
  float: right;
  margin-top: 7px;
}

@media only screen and (min-width: 801px) {
  /* line 203, ../scss/layout/_header-search.scss */
  #header-search {
    display: block;
  }
}
/* ============================================ *
 * Search Input
 * ============================================ */
/* line 213, ../scss/layout/_header-search.scss */
#search_mini_form .input-box {
  position: relative;
  padding-top: 0;
}

/* line 218, ../scss/layout/_header-search.scss */
#search_mini_form label {
  display: none;
}

/* line 222, ../scss/layout/_header-search.scss */
#search {
  width: 100%;
  height: 40px;
  padding-right: 40px;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 0;
}

@media screen and (max-width: 480px) {
  /* line 231, ../scss/layout/_header-search.scss */
  #search {
    height: 36px;
    margin-top: 2px;
  }
}
/* line 236, ../scss/layout/_header-search.scss */
#search_mini_form .search-button {
  text-indent: -9999px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: none;
}

/* line 247, ../scss/layout/_header-search.scss */
#search_mini_form .search-button:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  margin-left: -15px;
  background-position: 4px -146px;
}

/* line 260, ../scss/layout/_header-search.scss */
#search_mini_form .search-button:hover:before {
  opacity: 0.8;
}

/* line 264, ../scss/layout/_header-search.scss */
#search_mini_form .search-button:active:before {
  margin-top: -13px;
  margin-left: -13px;
}

/* ============================================ *
 * Header - Account
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Account
 */
/* line 40, ../scss/layout/_header-account.scss */
#header #header-account #account-nav ul.menu-type-horizontal li.nav-item-account a .top-header-account-icon {
  font-size: 34px;
  top: 0;
  padding-top: 30px;
}
/* line 44, ../scss/layout/_header-account.scss */
#header #header-account #account-nav ul.menu-type-horizontal li.nav-item-account a .top-header-account-icon.hidden {
  display: none;
}
/* line 48, ../scss/layout/_header-account.scss */
#header #header-account #account-nav ul.menu-type-horizontal li.nav-item-account a #my-account-grav {
  padding-top: 31px;
}
/* line 50, ../scss/layout/_header-account.scss */
#header #header-account #account-nav ul.menu-type-horizontal li.nav-item-account a #my-account-grav .top-header-account-grav {
  margin: 0 auto;
  border-radius: 100%;
  width: 32px;
}

/* line 66, ../scss/layout/_header-account.scss */
.skip-account:not(.skip-active):hover .icon {
  background-position: -46px -44px;
}
/* line 71, ../scss/layout/_header-account.scss */
.skip-account .icon {
  background-position: 4px -44px;
}

@media only screen and (min-width: 769px) {
  /* line 81, ../scss/layout/_header-account.scss */
  .skip-account {
    float: none;
    width: auto;
    vertical-align: top;
    display: inline-block;
    padding: 0 10px;
    text-transform: uppercase;
  }

  /* line 93, ../scss/layout/_header-account.scss */
  #header-account.skip-active {
    background: #FBFBFB;
    border: solid 1px #e1e1e0;
    display: block;
    position: absolute;
    z-index: 200;
    top: 40px;
    right: 115px;
    width: 200px;
  }

  /* line 103, ../scss/layout/_header-account.scss */
  #header-account a {
    display: block;
    padding: 5px 10px;
    color: #373c3e;
    line-height: 2;
  }

  /* line 110, ../scss/layout/_header-account.scss */
  #header-account a:hover {
    color: #02b2e7;
  }
}
/* -------------------------------------------- *
 * Account Links
 */
/* line 120, ../scss/layout/_header-account.scss */
#header-account {
  padding: 0;
}

/* line 124, ../scss/layout/_header-account.scss */
#header-account a {
  position: relative;
  display: block;
  padding: 0;
  line-height: 1.2;
  text-align: center;
}

/* line 132, ../scss/layout/_header-account.scss */
#header-account a:hover {
  color: #02b2e7;
}

/* line 140, ../scss/layout/_header-account.scss */
#header #header-account #account-nav ul .carrot-accent .pointer {
  left: 76% !important;
}
/* line 143, ../scss/layout/_header-account.scss */
#header #header-account #account-nav ul li {
  width: 100%;
}
/* line 145, ../scss/layout/_header-account.scss */
#header #header-account #account-nav ul li span.icon-font {
  position: relative;
  top: 2px;
}
/* line 149, ../scss/layout/_header-account.scss */
#header #header-account #account-nav ul li .org-info-item {
  line-height: 1.2;
}
/* line 152, ../scss/layout/_header-account.scss */
#header #header-account #account-nav ul li .user-name {
  padding-bottom: 15px !important;
}
/* line 156, ../scss/layout/_header-account.scss */
#header #header-account #account-nav ul li.last {
  border-top: 1px solid #d3d8d9;
  margin-top: 10px;
  padding-top: 15px;
}

/* ============================================ *
 * Header - Cart
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Cart
 */
/* line 33, ../scss/layout/_header-cart.scss */
#header-cart a {
  position: relative;
}
/* line 35, ../scss/layout/_header-cart.scss */
#header-cart a .cart-counter-bubble-wrap {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  text-align: right;
}
/* line 42, ../scss/layout/_header-cart.scss */
#header-cart a .cart-counter-bubble-wrap .cart-counter-bubble {
  display: inline-block;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  -o-border-radius: 100%;
  position: relative;
  right: 5px;
  background: #ff6000;
  font-size: 10px;
  padding: 2px 7px;
  top: 12px;
  -webkit-transition: font-size 1s;
  -moz-transition: font-size 1s;
  -o-transition: font-size 1s;
  transition: font-size 1s;
}

/* line 64, ../scss/layout/_header-cart.scss */
.skip-cart:not(.skip-active):hover .icon {
  background-position: -50px -95px;
}
/* line 69, ../scss/layout/_header-cart.scss */
.skip-cart .icon {
  background-position: 0px -95px;
}

@media only screen and (min-width: 769px) {
  /* line 79, ../scss/layout/_header-cart.scss */
  .skip-cart {
    width: auto;
    padding: 0 10px;
  }

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

/* line 120, ../scss/layout/_header-cart.scss */
.skip-link.skip-active .count {
  color: white;
}

/* line 128, ../scss/layout/_header-cart.scss */
.skip-cart.no-count .count {
  display: none;
}

@media only screen and (max-width: 499px) {
  /* line 133, ../scss/layout/_header-cart.scss */
  .skip-cart .count {
    margin-left: -12px;
  }
}
@media only screen and (min-width: 769px) {
  /* line 139, ../scss/layout/_header-cart.scss */
  .skip-cart {
    color: #02b2e7;
    text-transform: uppercase;
  }
  /* line 143, ../scss/layout/_header-cart.scss */
  .skip-cart:hover {
    text-decoration: none;
  }
  /* line 147, ../scss/layout/_header-cart.scss */
  .skip-cart .count {
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
    position: static;
    background: none;
    margin-left: 0px;
    font-size: 18px;
    width: auto;
  }
  /* line 155, ../scss/layout/_header-cart.scss */
  .skip-cart .count:before {
    content: '(';
  }
  /* line 158, ../scss/layout/_header-cart.scss */
  .skip-cart .count:after {
    content: ')';
  }

  /* line 163, ../scss/layout/_header-cart.scss */
  .skip-cart .count,
  .skip-link.skip-active .count {
    color: #02b2e7;
  }
}
/* line 169, ../scss/layout/_header-cart.scss */
.skip-cart .count.empty {
  display: none;
}

/* -------------------------------------------- *
 * Mini Cart - Empty
 */
/* line 177, ../scss/layout/_header-cart.scss */
.cart-menu .empty {
  padding: 20px;
  text-align: center;
}

/* -------------------------------------------- *
 * Mini Cart - Full
 */
/* Actions */
/* line 188, ../scss/layout/_header-cart.scss */
.cart-menu .actions {
  overflow: hidden;
  padding: 15px;
}

/* line 193, ../scss/layout/_header-cart.scss */
.cart-menu .actions .button {
  float: left;
  width: 48%;
}

/* line 198, ../scss/layout/_header-cart.scss */
.cart-menu .actions .button + .button {
  margin-left: 4%;
}

/* Subtotal */
/* line 204, ../scss/layout/_header-cart.scss */
.cart-menu .subtotal {
  padding: 0 15px 15px;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

/* List */
/* line 213, ../scss/layout/_header-cart.scss */
.mini-cart-list {
  margin-bottom: 5px;
}

/* line 217, ../scss/layout/_header-cart.scss */
.mini-cart-list li {
  position: relative;
  min-height: 90px;
  padding: 15px 15px 15px 90px;
  border-top: 1px solid #e1e1e0;
  font-size: 16px;
  line-height: 1.35;
}

/* line 226, ../scss/layout/_header-cart.scss */
.mini-cart-list .product-name {
  display: inline-block;
}

/* line 230, ../scss/layout/_header-cart.scss */
.mini-cart-list .product-image {
  position: absolute;
  left: 15px;
  top: 15px;
}

/* line 236, ../scss/layout/_header-cart.scss */
.mini-cart-list .product-image img {
  width: 60px;
  height: 60px;
}

/* line 243, ../scss/layout/_header-cart.scss */
.mini-cart-list .has-options {
  margin-bottom: 0;
  color: #605a54;
  font-size: 14px;
}

/* Too full - additional items will be shown in cart */
/* line 250, ../scss/layout/_header-cart.scss */
.cart-menu .last-added {
  padding: 10px 15px 15px;
  border-top: 1px solid #e1e1e0;
  font-size: 16px;
}

/* ============================================ *
 * Footer
 * ============================================ */
/* -------------------------------------------- *
 * Footer
 */
/* line 34, ../scss/layout/_footer.scss */
.footer,
.footer button {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}

/* line 39, ../scss/layout/_footer.scss */
.footer {
  clear: both;
  width: 100%;
  /* -------------------------------------------- *
   * Social icons
   */
}
/* line 43, ../scss/layout/_footer.scss */
.footer .block-title {
  border-bottom: 0;
  padding: 3px 0;
}
/* line 48, ../scss/layout/_footer.scss */
.footer .block-title strong {
  font-weight: normal;
}
/* line 52, ../scss/layout/_footer.scss */
.footer .block-title,
.footer address {
  color: #02b2e7;
}
/* line 57, ../scss/layout/_footer.scss */
.footer .icon-font {
  margin-right: 10px;
}
/* line 61, ../scss/layout/_footer.scss */
.footer .links {
  float: left;
  width: 17%;
  padding: 0 25px 0 0;
  margin-bottom: 25px;
}
/* line 67, ../scss/layout/_footer.scss */
.footer .links li {
  word-break: break-all;
  line-height: 1.4;
  padding: 4px 0;
}
/* line 73, ../scss/layout/_footer.scss */
.footer .links a {
  color: #373c3e;
}
/* line 75, ../scss/layout/_footer.scss */
.footer .links a:hover {
  color: #02b2e7;
}
/* line 81, ../scss/layout/_footer.scss */
.footer .block-subscribe {
  float: right;
  width: 320px;
  margin-bottom: 25px;
}
/* line 87, ../scss/layout/_footer.scss */
.footer .links,
.footer .block-subscribe {
  text-transform: uppercase;
  font-size: 14px;
}
/* line 93, ../scss/layout/_footer.scss */
.footer .form-subscribe-header {
  display: none;
}
/* line 101, ../scss/layout/_footer.scss */
.footer .links.social-media em {
  background-image: url(https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/social_icons.png);
  background-repeat: no-repeat;
  width: 13px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 7px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 4 / 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  /* line 111, ../scss/layout/_footer.scss */
  .footer .links.social-media em {
    background-image: url(https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/social_icons@2x.png);
    background-size: 50px 125px;
  }
}
/* line 118, ../scss/layout/_footer.scss */
.footer .links.social-media em.facebook {
  background-position: 0 -0px;
  height: 13px;
}
/* line 123, ../scss/layout/_footer.scss */
.footer .links.social-media a:hover em.facebook {
  background-position: -25px -0px;
}
/* line 118, ../scss/layout/_footer.scss */
.footer .links.social-media em.twitter {
  background-position: 0 -24px;
  height: 13px;
}
/* line 123, ../scss/layout/_footer.scss */
.footer .links.social-media a:hover em.twitter {
  background-position: -25px -24px;
}
/* line 118, ../scss/layout/_footer.scss */
.footer .links.social-media em.youtube {
  background-position: 0 -49px;
  height: 13px;
}
/* line 123, ../scss/layout/_footer.scss */
.footer .links.social-media a:hover em.youtube {
  background-position: -25px -49px;
}
/* line 118, ../scss/layout/_footer.scss */
.footer .links.social-media em.pinterest {
  background-position: 0 -74px;
  height: 15px;
}
/* line 123, ../scss/layout/_footer.scss */
.footer .links.social-media a:hover em.pinterest {
  background-position: -25px -74px;
}
/* line 118, ../scss/layout/_footer.scss */
.footer .links.social-media em.rss {
  background-position: 0 -99px;
  height: 13px;
}
/* line 123, ../scss/layout/_footer.scss */
.footer .links.social-media a:hover em.rss {
  background-position: -25px -99px;
}
/* line 136, ../scss/layout/_footer.scss */
.footer .block-subscribe .input-box {
  float: left;
  width: 65.625%;
  padding-top: 0;
}
/* line 142, ../scss/layout/_footer.scss */
.footer .block-subscribe .input-text {
  width: 100%;
  border-right: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
/* line 148, ../scss/layout/_footer.scss */
.footer .block-subscribe .block-content {
  padding-top: 7px;
}
/* line 151, ../scss/layout/_footer.scss */
.footer .block-subscribe .block-content:after {
  content: '';
  display: table;
  clear: both;
}
/* line 156, ../scss/layout/_footer.scss */
.footer .block-subscribe .actions {
  float: left;
  width: 34.375%;
  margin: 0;
}
/* line 162, ../scss/layout/_footer.scss */
.footer .block-subscribe .actions .button {
  height: 30px;
  line-height: 17px;
  float: left;
}
/* line 168, ../scss/layout/_footer.scss */
.footer .bugs,
.footer address {
  clear: both;
}
/* line 173, ../scss/layout/_footer.scss */
.footer .bugs {
  display: none;
}
/* line 177, ../scss/layout/_footer.scss */
.footer .form-language,
.footer .currency-switcher,
.footer .store-switcher {
  clear: both;
  margin-bottom: 10px;
}
/* line 184, ../scss/layout/_footer.scss */
.footer .currency-switcher {
  display: none;
}
/* line 188, ../scss/layout/_footer.scss */
.footer address {
  text-align: right;
  width: 100%;
  font-size: 12px;
  margin-top: 0;
  padding: 0;
}
@media only screen and (max-width: 1199px) {
  /* line 200, ../scss/layout/_footer.scss */
  .footer .links {
    width: 22.65625%;
    padding-right: 0;
    margin-right: 3.125%;
  }
  /* line 206, ../scss/layout/_footer.scss */
  .footer .links:nth-child(4) {
    margin-right: 0;
  }
  /* line 210, ../scss/layout/_footer.scss */
  .footer .block-subscribe {
    clear: both;
    float: none;
    margin: 0 auto 25px auto;
  }
}
@media only screen and (max-width: 768px) {
  /* line 218, ../scss/layout/_footer.scss */
  .footer .form-language,
  .footer .currency-switcher {
    display: block;
  }
}
@media only screen and (max-width: 600px) {
  /* line 228, ../scss/layout/_footer.scss */
  .footer .links {
    width: 48.4375%;
    margin-right: 0;
  }
  /* line 233, ../scss/layout/_footer.scss */
  .footer .links:nth-child(odd) {
    margin-right: 3.125%;
    clear: both;
  }
  /* line 238, ../scss/layout/_footer.scss */
  .footer .block-subscribe {
    clear: both;
    float: left;
    width: 100%;
  }
}

/* line 248, ../scss/layout/_footer.scss */
.footer-container .footer h1,
.footer-container .footer h2,
.footer-container .footer h3,
.footer-container .footer h4,
.footer-container .footer h5,
.footer-container .footer h6,
.footer-container .footer p,
.footer-container .footer address,
.footer-container .footer .text {
  color: #fff;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
}
/* line 263, ../scss/layout/_footer.scss */
.footer-container .footer .footer_about_us_left_blurb,
.footer-container .footer .footer_right {
  display: block;
  float: left;
  width: 50%;
}
/* line 268, ../scss/layout/_footer.scss */
.footer-container .footer .footer_about_us_left_blurb .top-pad,
.footer-container .footer .footer_right .top-pad {
  border-right: 1px solid #373c3e;
  margin: 50px 0;
}
/* line 272, ../scss/layout/_footer.scss */
.footer-container .footer .footer_about_us_left_blurb .side-pad,
.footer-container .footer .footer_right .side-pad {
  padding: 0 70px;
}
/* line 277, ../scss/layout/_footer.scss */
.footer-container .footer .footer-divider {
  margin: 35px 0;
  float: left;
  width: 1px;
  height: 165px;
  background-color: #373c3e;
}
/* line 285, ../scss/layout/_footer.scss */
.footer-container .footer .footer_about_us_left_blurb {
  float: left;
}
/* line 289, ../scss/layout/_footer.scss */
.footer-container .footer .footer_about_us_left_blurb .footer_left_logo_phone_wrap {
  display: table;
  width: 100%;
  text-align: center;
}
/* line 294, ../scss/layout/_footer.scss */
.footer-container .footer .footer_about_us_left_blurb .footer_left_logo_phone_wrap .logo {
  vertical-align: middle;
  display: inline-block;
  max-width: 200px;
  padding: 0 0 20px 0;
}
/* line 302, ../scss/layout/_footer.scss */
.footer-container .footer .footer_about_us_left_blurb .footer_left_logo_phone_wrap .contact h1,
.footer-container .footer .footer_about_us_left_blurb .footer_left_logo_phone_wrap .contact h2,
.footer-container .footer .footer_about_us_left_blurb .footer_left_logo_phone_wrap .contact h3,
.footer-container .footer .footer_about_us_left_blurb .footer_left_logo_phone_wrap .contact h4,
.footer-container .footer .footer_about_us_left_blurb .footer_left_logo_phone_wrap .contact h5,
.footer-container .footer .footer_about_us_left_blurb .footer_left_logo_phone_wrap .contact h6,
.footer-container .footer .footer_about_us_left_blurb .footer_left_logo_phone_wrap .contact p {
  margin-bottom: 0;
}
/* line 316, ../scss/layout/_footer.scss */
.footer-container .footer .footer_right {
  padding: 50px 70px;
  text-align: center;
}
/* line 320, ../scss/layout/_footer.scss */
.footer-container .footer .footer_right .footer_right_mobile {
  display: none;
}
/* line 324, ../scss/layout/_footer.scss */
.footer-container .footer .footer_right ul {
  text-align: left;
  width: 32%;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  padding: 0;
}
/* line 332, ../scss/layout/_footer.scss */
.footer-container .footer .footer_right ul li {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  line-height: 27px;
  font-size: 16px;
}
/* line 338, ../scss/layout/_footer.scss */
.footer-container .footer .footer_right ul li a {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 25px;
}

/* line 351, ../scss/layout/_footer.scss */
.footer-before-container .footer-contact-bar {
  background: #7cbe02;
  text-align: center;
}
/* line 354, ../scss/layout/_footer.scss */
.footer-before-container .footer-contact-bar p {
  font-size: 21px;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  line-height: 50px;
  color: #fff;
}

/* line 362, ../scss/layout/_footer.scss */
.end-footer-line {
  color: #919799;
  font-size: 14px;
  padding: 12px 0;
  width: 100%;
  margin: 0 auto;
}
/* line 368, ../scss/layout/_footer.scss */
.end-footer-line a {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  color: #919799;
}
/* line 372, ../scss/layout/_footer.scss */
.end-footer-line .left,
.end-footer-line .right {
  float: left;
  width: 50%;
  text-align: right;
}
/* line 378, ../scss/layout/_footer.scss */
.end-footer-line .left {
  padding-right: 10px;
}
/* line 381, ../scss/layout/_footer.scss */
.end-footer-line .right {
  border-left: 1px solid #373c3e;
  padding-left: 10px;
  float: right;
  text-align: left;
}
/* line 387, ../scss/layout/_footer.scss */
.end-footer-line a {
  border-left: 1px solid #373c3e;
  padding: 0 10px;
}
/* line 390, ../scss/layout/_footer.scss */
.end-footer-line a.first {
  border-left-width: 0;
  padding-left: 0;
}
/* line 395, ../scss/layout/_footer.scss */
.end-footer-line .center {
  text-align: center;
}
/* line 397, ../scss/layout/_footer.scss */
.end-footer-line .center .copyright-line {
  padding-right: 20px;
}
/* line 401, ../scss/layout/_footer.scss */
.end-footer-line .copyright-line-mobile {
  display: none;
}

/* line 405, ../scss/layout/_footer.scss */
.footer-lower {
  border-top: 1px solid #373c3e;
  clear: both;
}
/* line 409, ../scss/layout/_footer.scss */
.footer-lower .bswrap {
  padding: 0 25px;
}
/* line 413, ../scss/layout/_footer.scss */
.footer-lower .copyright {
  text-align: center;
  color: #919799;
  font-size: 14px;
  line-height: 26px;
  padding: 12px 0;
  max-width: 505px;
  margin: 0 auto;
}
/* line 422, ../scss/layout/_footer.scss */
.footer-lower .copyright .copy-links {
  float: right;
}
/* line 426, ../scss/layout/_footer.scss */
.footer-lower .copyright a {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  color: #919799;
}

@media only screen and (max-width: 768px) {
  /* line 436, ../scss/layout/_footer.scss */
  .footer-container .footer .footer-divider {
    display: none;
  }
  /* line 439, ../scss/layout/_footer.scss */
  .footer-container .footer .footer_right {
    padding-top: 0;
  }
  /* line 442, ../scss/layout/_footer.scss */
  .footer-container .footer .footer_about_us_left_blurb,
  .footer-container .footer .footer_right {
    width: 100%;
    border-right: 0;
    margin: 0 auto;
  }
  /* line 447, ../scss/layout/_footer.scss */
  .footer-container .footer .footer_about_us_left_blurb ul,
  .footer-container .footer .footer_right ul {
    text-align: center;
    display: inline-block;
  }
  /* line 453, ../scss/layout/_footer.scss */
  .footer-container .footer .footer_about_us_left_blurb .side-pad {
    padding: 0;
  }
  /* line 457, ../scss/layout/_footer.scss */
  .footer-container .footer .footer_about_us_left_blurb .footer_left_logo_phone_wrap .logo,
  .footer-container .footer .footer_about_us_left_blurb .footer_left_logo_phone_wrap .contact {
    width: 100%;
    float: none;
    text-align: center;
    margin: 0 auto;
    display: block;
  }
  /* line 465, ../scss/layout/_footer.scss */
  .footer-container .footer .footer_about_us_left_blurb .footer_left_logo_phone_wrap .contact {
    margin: 20px auto;
  }
  /* line 472, ../scss/layout/_footer.scss */
  .footer-container .footer address {
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 609px) {
  /* line 482, ../scss/layout/_footer.scss */
  .end-footer-line .copyright-line {
    display: none;
  }
  /* line 485, ../scss/layout/_footer.scss */
  .end-footer-line .copyright-line-mobile {
    display: block;
    width: 100%;
  }

  /* line 494, ../scss/layout/_footer.scss */
  .footer-lower .copyright {
    padding: 14px 0;
  }
  /* line 497, ../scss/layout/_footer.scss */
  .footer-lower .copyright .copy-links,
  .footer-lower .copyright .copy-text {
    width: 100%;
  }
  /* line 502, ../scss/layout/_footer.scss */
  .footer-lower .copyright .copy-spacer {
    display: none;
  }
}
@media only screen and (max-width: 770px) {
  /* line 512, ../scss/layout/_footer.scss */
  .footer-container .footer .footer_about_us_left_blurb .top-pad {
    border-right-width: 0;
  }
}
@media only screen and (max-width: 480px) {
  /* line 522, ../scss/layout/_footer.scss */
  .footer-container .footer .footer_about_us_left_blurb {
    padding: 16px 25px 0 25px;
  }
  /* line 525, ../scss/layout/_footer.scss */
  .footer-container .footer .footer_about_us_left_blurb .text {
    display: none;
  }
  /* line 530, ../scss/layout/_footer.scss */
  .footer-container .footer .footer_right {
    padding: 0 25px 25px 25px;
  }
  /* line 533, ../scss/layout/_footer.scss */
  .footer-container .footer .footer_right ul {
    display: none;
  }
  /* line 537, ../scss/layout/_footer.scss */
  .footer-container .footer .footer_right .footer_right_mobile {
    display: unset;
  }
  /* line 540, ../scss/layout/_footer.scss */
  .footer-container .footer .footer_right .footer_right_mobile ul {
    display: inline-table;
    float: left;
    width: 100%;
    text-align: center;
  }
  /* line 546, ../scss/layout/_footer.scss */
  .footer-container .footer .footer_right .footer_right_mobile ul li {
    display: inline;
  }
  /* line 550, ../scss/layout/_footer.scss */
  .footer-container .footer .footer_right .footer_right_mobile ul .frm-01 {
    padding-right: 16px;
    border-right: solid 1px #373c3e;
  }
  /* line 555, ../scss/layout/_footer.scss */
  .footer-container .footer .footer_right .footer_right_mobile ul .frm-02 {
    padding-left: 16px;
    padding-right: 16px;
    border-right: solid 1px #373c3e;
  }
  /* line 561, ../scss/layout/_footer.scss */
  .footer-container .footer .footer_right .footer_right_mobile ul .frm-03 {
    padding-left: 16px;
  }

  /* line 573, ../scss/layout/_footer.scss */
  .footer-lower .bswrap {
    padding: 0 15px;
  }
}
/* ================================================= *
 * General Product List Styles (not module-specific)
 * ================================================= */
/* -------------------------------------------- *
 * Product List General
 */
/* line 35, ../scss/module/_product-list.scss */
body.catalog-category-view .page-title-outer {
  background: #fff;
}
/* line 37, ../scss/module/_product-list.scss */
body.catalog-category-view .page-title-outer .page-title {
  border-bottom: 0;
  padding-top: 15px;
  width: 100%;
  max-width: 100%;
  padding-bottom: 6px;
  margin-bottom: 0;
  line-height: 24px;
}
/* line 46, ../scss/module/_product-list.scss */
body.catalog-category-view .page-title-outer .page-title h2 {
  text-align: left;
  font-size: 24px;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  color: #373c3e;
  margin-bottom: 0;
  display: inline-block;
}
/* line 54, ../scss/module/_product-list.scss */
body.catalog-category-view .page-title-outer .page-title .category-search-results {
  display: inline-block;
  font-size: 16px;
  color: #777e80;
}
/* line 62, ../scss/module/_product-list.scss */
body.catalog-category-view .block-amseorichdata {
  display: none;
}
/* line 65, ../scss/module/_product-list.scss */
body.catalog-category-view .toolbar {
  background: transparent;
}
/* line 68, ../scss/module/_product-list.scss */
body.catalog-category-view .toolbar-top {
  clear: left;
}
/* line 70, ../scss/module/_product-list.scss */
body.catalog-category-view .toolbar-top .toolbar {
  border-top: 0;
}
/* line 72, ../scss/module/_product-list.scss */
body.catalog-category-view .toolbar-top .toolbar .pager {
  display: none;
}
/* line 75, ../scss/module/_product-list.scss */
body.catalog-category-view .toolbar-top .toolbar .sorter {
  float: right;
  margin-bottom: 24px;
}
/* line 82, ../scss/module/_product-list.scss */
body.catalog-category-view .toolbar-bottom .toolbar {
  padding-top: 20px;
  padding-bottom: 20px;
}
/* line 85, ../scss/module/_product-list.scss */
body.catalog-category-view .toolbar-bottom .toolbar .pager {
  width: 100%;
}
/* line 88, ../scss/module/_product-list.scss */
body.catalog-category-view .toolbar-bottom .toolbar .pager .getTotalNum {
  display: none;
}
/* line 91, ../scss/module/_product-list.scss */
body.catalog-category-view .toolbar-bottom .toolbar .pager .count-container {
  display: none;
}
/* line 95, ../scss/module/_product-list.scss */
body.catalog-category-view .toolbar-bottom .toolbar .pager .pages a.pager-previous,
body.catalog-category-view .toolbar-bottom .toolbar .pager .pages a.pager-next {
  width: auto;
  font-size: 24px;
  font-weight: bold;
  color: #606060;
  text-transform: none;
}
/* line 103, ../scss/module/_product-list.scss */
body.catalog-category-view .toolbar-bottom .toolbar .pager .pages a.pager-previous {
  margin-right: 16px;
}
/* line 106, ../scss/module/_product-list.scss */
body.catalog-category-view .toolbar-bottom .toolbar .pager .pages a.pager-next {
  margin-left: 16px;
}
/* line 109, ../scss/module/_product-list.scss */
body.catalog-category-view .toolbar-bottom .toolbar .pager .pages a.pager-link-num {
  border-radius: 4px;
  font-size: 16px;
  border: 1px solid #abb2b3;
  background: transparent;
  padding: 3px 10px 0 10px;
  margin: 0 5px;
  line-height: 25px;
  color: #727272;
  width: auto;
}
/* line 119, ../scss/module/_product-list.scss */
body.catalog-category-view .toolbar-bottom .toolbar .pager .pages a.pager-link-num.pager-link-num-current {
  background: #777e80;
  color: #fff;
  border: 1px solid #777e80;
}
/* line 127, ../scss/module/_product-list.scss */
body.catalog-category-view .toolbar-bottom .toolbar .sorter {
  display: none;
}

/* line 134, ../scss/module/_product-list.scss */
.category-title h1,
body.catalogsearch-result-index .page-title h1 {
  border-bottom: none;
}

/* line 139, ../scss/module/_product-list.scss */
.category-image {
  margin-bottom: 1.5em;
}

/* line 144, ../scss/module/_product-list.scss */
.products-list .action .button,
.products-grid .actions .button {
  white-space: normal;
}

/* -------------------------------------------- *
 * Product Name
 */
/* line 153, ../scss/module/_product-list.scss */
h2.product-name,
h3.product-name,
h4.product-name,
h5.product-name,
p.product-name {
  margin: 0;
  margin-bottom: 0.5em;
  color: #373c3e;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 28px;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
  line-height: 1.4;
}
/* line 164, ../scss/module/_product-list.scss */
h2.product-name a,
h3.product-name a,
h4.product-name a,
h5.product-name a,
p.product-name a {
  color: #373c3e;
}
/* line 166, ../scss/module/_product-list.scss */
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: #02b2e7;
  text-decoration: none;
}

/* line 173, ../scss/module/_product-list.scss */
.products-grid .product-name,
.products-grid .product-author,
.products-list .product-name {
  margin-bottom: 5px;
  font-size: 16px;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  color: #373c3e;
}
/* line 180, ../scss/module/_product-list.scss */
.products-grid .product-name.text-ellipsis,
.products-grid .product-author.text-ellipsis,
.products-list .product-name.text-ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
/* line 185, ../scss/module/_product-list.scss */
.products-grid .product-name a,
.products-grid .product-author a,
.products-list .product-name a {
  font-weight: 500;
}

/* line 190, ../scss/module/_product-list.scss */
.products-grid .product-author {
  color: #777e80;
}

/* ============================================ *
 * Product Grid
 * ============================================ */
/* line 200, ../scss/module/_product-list.scss */
.products-grid {
  position: relative;
}

/* line 204, ../scss/module/_product-list.scss */
.products-grid:after {
  content: '';
  display: table;
  clear: both;
}

/* line 208, ../scss/module/_product-list.scss */
.products-grid > li {
  position: relative;
  margin-bottom: 20px;
  text-align: center;
}
/* line 213, ../scss/module/_product-list.scss */
.products-grid > li:after {
  content: '';
  display: table;
  clear: both;
}

/* line 218, ../scss/module/_product-list.scss */
.products-grid .product-image {
  width: 100%;
  margin-bottom: 15px;
}
/* line 222, ../scss/module/_product-list.scss */
.products-grid .product-image .image-container {
  position: relative;
}
/* line 224, ../scss/module/_product-list.scss */
.products-grid .product-image .image-container .overlay-holder {
  position: absolute;
  bottom: 0;
  right: 0;
}
/* line 228, ../scss/module/_product-list.scss */
.products-grid .product-image .image-container .overlay-holder img {
  margin-right: 8px;
  margin-bottom: 8px;
  height: 40px;
  width: 40px;
}
/* line 237, ../scss/module/_product-list.scss */
.products-grid .product-image .overlay-inner {
  opacity: 0;
  transition: opacity 1s;
  -moz-transition: opacity 1s;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
}
/* line 245, ../scss/module/_product-list.scss */
.products-grid .product-image:hover .overlay-inner {
  opacity: 1;
}
/* line 250, ../scss/module/_product-list.scss */
.products-grid .product-image.playing .overlay-inner {
  opacity: 1;
}

/* line 256, ../scss/module/_product-list.scss */
.products-grid .product-image img {
  width: 100%;
  height: auto;
  max-width: 280px;
}
/* line 261, ../scss/module/_product-list.scss */
.products-grid .product-image img:hidden {
  display: none;
}

/* line 267, ../scss/module/_product-list.scss */
.widget-new-products .products-grid .product-image {
  width: 75%;
  margin-bottom: 15px;
  margin-left: 10%;
}

/* line 277, ../scss/module/_product-list.scss */
.products-grid .product-info {
  position: relative;
  padding: 19px 10px 11px 10px;
  background-color: #fff;
}

/* line 283, ../scss/module/_product-list.scss */
.products-grid .actions {
  padding-top: 10px;
  position: absolute;
  bottom: 0px;
  min-height: 85px;
  width: 100%;
}

/* line 291, ../scss/module/_product-list.scss */
.products-grid .ratings .rating-box {
  margin: 0 auto;
}

/* line 295, ../scss/module/_product-list.scss */
.products-grid .ratings .amount {
  display: none;
}

/* line 299, ../scss/module/_product-list.scss */
.products-grid .price-box {
  color: #605a54;
  font-size: 16px;
  margin: 0 0 5px;
}

/* line 305, ../scss/module/_product-list.scss */
.products-grid .add-to-links {
  margin-bottom: 0;
}

/* Config: Two columns + flexible gutter */
/* line 316, ../scss/module/_product-list.scss */
.products-grid > li {
  float: left;
  width: 47.72727%;
  margin-right: 4.54545%;
}

/* line 322, ../scss/module/_product-list.scss */
.products-grid > li:nth-child(odd) {
  clear: left;
}

/* line 326, ../scss/module/_product-list.scss */
.products-grid > li:nth-child(even) {
  margin-right: 0;
}

/* line 330, ../scss/module/_product-list.scss */
.products-grid .product-image {
  outline-color: transparent;
  outline-style: none;
  outline-width: 0;
  padding: 0;
  margin: 0 0 20px 0;
  overflow: hidden;
  border-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
}
/* line 349, ../scss/module/_product-list.scss */
.products-grid .product-image:hover {
  border-color: transparent;
}
/* line 27, ../scss/mixin/_loading-overlay.scss */
.products-grid .product-image:before, .products-grid .product-image:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
/* line 38, ../scss/mixin/_loading-overlay.scss */
.products-grid .product-image:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
/* line 44, ../scss/mixin/_loading-overlay.scss */
.products-grid .product-image:after {
  background-image: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
/* line 51, ../scss/mixin/_loading-overlay.scss */
.products-grid .product-image.loading {
  position: relative;
}
/* line 54, ../scss/mixin/_loading-overlay.scss */
.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 */
  /* line 367, ../scss/module/_product-list.scss */
  .products-grid {
    /* Undo two-column config */
    /* Set three-column config */
  }
  /* line 369, ../scss/module/_product-list.scss */
  .products-grid > li:nth-child(odd) {
    clear: none;
  }
  /* line 372, ../scss/module/_product-list.scss */
  .products-grid > li:nth-child(even) {
    margin-right: 3.63636%;
  }
  /* line 377, ../scss/module/_product-list.scss */
  .products-grid > li {
    width: 30.90909%;
    margin-right: 3.63636%;
  }
  /* line 381, ../scss/module/_product-list.scss */
  .products-grid > li:nth-child(3n+1) {
    clear: left;
  }
  /* line 384, ../scss/module/_product-list.scss */
  .products-grid > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 960px) {
  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  /* line 404, ../scss/module/_product-list.scss */
  .products-grid--max-4-col > li:nth-child(odd) {
    clear: none;
  }

  /* line 407, ../scss/module/_product-list.scss */
  .products-grid--max-4-col > li:nth-child(3n+1) {
    clear: none;
  }

  /* line 410, ../scss/module/_product-list.scss */
  .products-grid--max-4-col > li:nth-child(even),
  .products-grid--max-4-col > li:nth-child(3n) {
    margin-right: 2.1978%;
  }

  /* Set column config */
  /* line 416, ../scss/module/_product-list.scss */
  .products-grid--max-4-col > li {
    margin-right: 2.1978%;
  }

  /* line 419, ../scss/module/_product-list.scss */
  .products-grid--max-4-col > li {
    width: 23.35165%;
    margin-right: 2.1978%;
  }

  /* line 423, ../scss/module/_product-list.scss */
  .products-grid--max-4-col > li:nth-child(4n+1) {
    clear: left;
  }

  /* line 426, ../scss/module/_product-list.scss */
  .products-grid--max-4-col > li:nth-child(4n) {
    margin-right: 0;
  }

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

  /* line 407, ../scss/module/_product-list.scss */
  .products-grid--max-5-col > li:nth-child(3n+1) {
    clear: none;
  }

  /* line 410, ../scss/module/_product-list.scss */
  .products-grid--max-5-col > li:nth-child(even),
  .products-grid--max-5-col > li:nth-child(3n) {
    margin-right: 2.1978%;
  }

  /* Set column config */
  /* line 416, ../scss/module/_product-list.scss */
  .products-grid--max-5-col > li {
    margin-right: 2.1978%;
  }

  /* line 419, ../scss/module/_product-list.scss */
  .products-grid--max-5-col > li {
    width: 18.24176%;
    margin-right: 2.1978%;
  }

  /* line 423, ../scss/module/_product-list.scss */
  .products-grid--max-5-col > li:nth-child(5n+1) {
    clear: left;
  }

  /* line 426, ../scss/module/_product-list.scss */
  .products-grid--max-5-col > li:nth-child(5n) {
    margin-right: 0;
  }

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

  /* line 407, ../scss/module/_product-list.scss */
  .products-grid--max-6-col > li:nth-child(3n+1) {
    clear: none;
  }

  /* line 410, ../scss/module/_product-list.scss */
  .products-grid--max-6-col > li:nth-child(even),
  .products-grid--max-6-col > li:nth-child(3n) {
    margin-right: 2.1978%;
  }

  /* Set column config */
  /* line 416, ../scss/module/_product-list.scss */
  .products-grid--max-6-col > li {
    margin-right: 2.1978%;
  }

  /* line 419, ../scss/module/_product-list.scss */
  .products-grid--max-6-col > li {
    width: 14.83516%;
    margin-right: 2.1978%;
  }

  /* line 423, ../scss/module/_product-list.scss */
  .products-grid--max-6-col > li:nth-child(6n+1) {
    clear: left;
  }

  /* line 426, ../scss/module/_product-list.scss */
  .products-grid--max-6-col > li:nth-child(6n) {
    margin-right: 0;
  }
}
/* ============================================ *
 * Product List
 * ============================================ */
/* line 443, ../scss/module/_product-list.scss */
.products-list {
  margin-top: 20px;
  margin-bottom: 20px;
}
/* line 447, ../scss/module/_product-list.scss */
.products-list > li {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #EDEDED;
}
/* line 452, ../scss/module/_product-list.scss */
.products-list > li:after {
  content: '';
  display: table;
  clear: both;
}
/* line 455, ../scss/module/_product-list.scss */
.products-list > li .product-image {
  float: left;
  width: 33.33333%;
}
/* line 459, ../scss/module/_product-list.scss */
.products-list > li .product-image img {
  width: 100%;
  max-width: 100%;
}
/* line 465, ../scss/module/_product-list.scss */
.products-list > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/* line 471, ../scss/module/_product-list.scss */
.products-list .product-shop {
  float: right;
  width: 66.66667%;
  padding-left: 20px;
}
/* line 476, ../scss/module/_product-list.scss */
.products-list .product-shop .product-name {
  margin-bottom: 0;
}
/* line 479, ../scss/module/_product-list.scss */
.products-list .product-shop .ratings {
  margin: 0;
}
/* line 482, ../scss/module/_product-list.scss */
.products-list .product-shop .ratings .rating-box,
.products-list .product-shop .ratings .rating-links {
  float: left;
  margin-right: 7px;
}
/* line 487, ../scss/module/_product-list.scss */
.products-list .product-shop .ratings .rating-links {
  margin-top: 4px;
}
/* line 491, ../scss/module/_product-list.scss */
.products-list .product-shop .price-box {
  margin-top: 0;
}
/* line 494, ../scss/module/_product-list.scss */
.products-list .product-shop .price-box .price {
  font-size: 21px;
}
/* line 497, ../scss/module/_product-list.scss */
.products-list .product-shop .action {
  margin: 7px 0;
}
/* line 500, ../scss/module/_product-list.scss */
.products-list .product-shop .desc {
  margin-top: 7px;
}
/* line 504, ../scss/module/_product-list.scss */
.products-list .product-shop .product-primary,
.products-list .product-shop .desc {
  float: left;
  width: 65%;
  overflow: hidden;
}
/* line 510, ../scss/module/_product-list.scss */
.products-list .product-shop .product-secondary {
  float: right;
  width: 35%;
  text-align: right;
  clear: right;
}

@media only screen and (min-width: 480px) {
  /* line 519, ../scss/module/_product-list.scss */
  .products-list .product-name a {
    font-size: 21px;
  }
}
@media only screen and (max-width: 1279px) {
  /* line 526, ../scss/module/_product-list.scss */
  .products-list .product-shop .product-primary,
  .products-list .product-shop .desc {
    float: left;
    width: 60%;
    padding-right: 20px;
  }
  /* line 532, ../scss/module/_product-list.scss */
  .products-list .product-shop .product-secondary {
    float: right;
    width: 40%;
  }
}
@media only screen and (max-width: 600px) {
  /* line 540, ../scss/module/_product-list.scss */
  .products-list .product-shop .price-box .special-price {
    padding-left: 0;
  }

  /* line 544, ../scss/module/_product-list.scss */
  .products-list .product-shop .product-primary,
  .products-list .product-shop .product-secondary,
  .products-list .product-shop .desc {
    float: none;
    width: 100%;
    padding-right: 0;
    text-align: left;
  }
}
/* ============================================ *
 * Mini Product List
 * ============================================ */
/* line 561, ../scss/module/_product-list.scss */
.mini-products-list .product-image {
  float: left;
  min-width: 50px;
}
/* line 565, ../scss/module/_product-list.scss */
.mini-products-list .product-details {
  margin-left: 60px;
}
/* line 570, ../scss/module/_product-list.scss */
.mini-products-list .product-details .product-name {
  padding-top: 10px;
}
/* line 574, ../scss/module/_product-list.scss */
.mini-products-list li {
  margin-bottom: 10px;
  clear: both;
}
/* line 578, ../scss/module/_product-list.scss */
.mini-products-list li:after {
  content: '';
  display: table;
  clear: both;
}

/* line 586, ../scss/module/_product-list.scss */
.mini-products-images-list:after {
  content: '';
  display: table;
  clear: both;
}
/* line 590, ../scss/module/_product-list.scss */
.mini-products-images-list li.item {
  float: left;
  width: 50%;
  margin: 0;
  padding: 0 5px 10px 0;
}
/* line 596, ../scss/module/_product-list.scss */
.mini-products-images-list li.item:nth-child(even) {
  padding-right: 0;
  padding-left: 5px;
}
/* line 601, ../scss/module/_product-list.scss */
.mini-products-images-list li.item .product-image {
  display: block;
}
/* line 604, ../scss/module/_product-list.scss */
.mini-products-images-list li.item .product-image img {
  width: 100%;
  max-width: 100%;
}

/* ============================================ *
 * Catalog - List
 * ============================================ */
/* line 619, ../scss/module/_product-list.scss */
.category-image {
  border: 1px solid #e1e1e0;
  padding: 10px;
}
/* line 623, ../scss/module/_product-list.scss */
.category-image img {
  width: 100%;
  max-width: 100%;
}
/* line 627, ../scss/module/_product-list.scss */
.category-image img:hidden {
  display: none;
}

/* ============================================ *
 * Layered Navigation
 * ============================================ */
/* line 637, ../scss/module/_product-list.scss */
.block-layered-nav .block-subtitle--filter {
  display: none;
  margin: 0;
  margin-bottom: 10px;
  color: #373c3e;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 21px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0px;
  padding: 7px 10px 7px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #e1e1e0;
  position: relative;
  background-color: #F4F4F4;
  cursor: pointer;
}
/* line 110, ../scss/mixin/_toggle-content.scss */
.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 #02b2e7;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px;
}
/* line 117, ../scss/mixin/_toggle-content.scss */
.block-layered-nav .block-subtitle--filter:hover {
  background-color: #ededed;
}

/* line 123, ../scss/mixin/_toggle-content.scss */
.block-layered-nav .block-content .toggle-tabs {
  display: none;
}
/* line 128, ../scss/mixin/_toggle-content.scss */
.block-layered-nav .block-content > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #373c3e;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 21px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0px;
  padding: 7px 10px 7px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #e1e1e0;
  position: relative;
  background-color: #F4F4F4;
  display: block;
}
/* line 110, ../scss/mixin/_toggle-content.scss */
.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 #02b2e7;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px;
}
/* line 117, ../scss/mixin/_toggle-content.scss */
.block-layered-nav .block-content > dl > dt:hover {
  background-color: #ededed;
}
/* line 133, ../scss/mixin/_toggle-content.scss */
.block-layered-nav .block-content > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #e1e1e0;
}
/* line 140, ../scss/mixin/_toggle-content.scss */
.block-layered-nav .block-content > dl > dd:last-child {
  border-width: 0 1px 1px 1px;
}

/* line 649, ../scss/module/_product-list.scss */
.block-layered-nav dl dd {
  margin-bottom: 10px;
  margin-top: 10px;
}
/* line 653, ../scss/module/_product-list.scss */
.block-layered-nav dl dd ol > li > span, .block-layered-nav dl dd ol > li > a {
  padding: 5px 15px;
  display: block;
}
/* line 657, ../scss/module/_product-list.scss */
.block-layered-nav dl dd ol > li > a .count {
  color: #605a54;
}

@media only screen and (min-width: 771px) {
  /* line 663, ../scss/module/_product-list.scss */
  .block-layered-nav .block-content > dl > dt {
    padding-left: 10px;
  }
  /* line 666, ../scss/module/_product-list.scss */
  .block-layered-nav .block-content > dl > dt:after {
    display: none;
  }
}
@media only screen and (max-width: 770px) {
  /* line 673, ../scss/module/_product-list.scss */
  .sidebar .block.block-layered-nav {
    border-bottom: none;
  }

  /* line 678, ../scss/module/_product-list.scss */
  .block-layered-nav--no-filters .block-title {
    display: none;
  }

  /* line 683, ../scss/module/_product-list.scss */
  .block-layered-nav .block-content {
    padding-top: 0;
    margin-top: 15px;
  }
  /* line 148, ../scss/mixin/_toggle-content.scss */
  .block-layered-nav .block-content > dl > dt {
    cursor: pointer;
    border-bottom-width: 0;
  }
  /* line 152, ../scss/mixin/_toggle-content.scss */
  .block-layered-nav .block-content > dl > dt:hover {
    color: #02b2e7;
  }
  /* line 155, ../scss/mixin/_toggle-content.scss */
  .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 #02b2e7;
    border-right: none;
  }
  /* line 158, ../scss/mixin/_toggle-content.scss */
  .block-layered-nav .block-content > dl > dt.last {
    border-bottom-width: 1px;
  }
  /* line 163, ../scss/mixin/_toggle-content.scss */
  .block-layered-nav .block-content > dl > dd {
    display: none;
  }
  /* line 171, ../scss/mixin/_toggle-content.scss */
  .block-layered-nav .block-content.accordion-open > dl > dt.current {
    border-bottom-width: 1px;
  }
  /* line 175, ../scss/mixin/_toggle-content.scss */
  .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 #02b2e7;
    border-bottom: none;
    left: 6px;
    top: 50%;
    margin-top: -3px;
  }
  /* line 183, ../scss/mixin/_toggle-content.scss */
  .block-layered-nav .block-content.accordion-open > dl > dd.current {
    display: block;
  }

  /* line 689, ../scss/module/_product-list.scss */
  .block-layered-nav .block-subtitle--filter {
    background-color: #02b2e7;
    border: 0;
    margin-bottom: 0;
    display: block;
    color: #FFFFFF;
  }
  /* line 696, ../scss/module/_product-list.scss */
  .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;
  }
  /* line 703, ../scss/module/_product-list.scss */
  .block-layered-nav .block-subtitle--filter:hover {
    background-color: #2bccfb;
    color: #FFFFFF;
  }
  /* line 708, ../scss/module/_product-list.scss */
  .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;
  }

  /* line 716, ../scss/module/_product-list.scss */
  #narrow-by-list,
  #narrow-by-list2 {
    padding: 10px;
    border: 1px solid #e1e1e0;
    border-top: 0;
  }

  /* line 723, ../scss/module/_product-list.scss */
  .block-layered-nav dl ol > li > a,
  .block-layered-nav dl ol > li > span {
    padding: 7px;
    margin: 5px;
  }

  /* line 729, ../scss/module/_product-list.scss */
  .block-layered-nav dl ol > li > a {
    color: #373c3e;
    background-color: #F4F4F4;
    padding: 5px 10px;
  }
  /* line 732, ../scss/module/_product-list.scss */
  .block-layered-nav dl ol > li > a:hover {
    text-decoration: none;
    background: #ededed;
  }
}
/* line 740, ../scss/module/_product-list.scss */
.block-layered-nav .currently .block-subtitle {
  display: block;
  margin: 0;
  margin-bottom: 10px;
  color: #373c3e;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 21px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}
/* line 745, ../scss/module/_product-list.scss */
.block-layered-nav .currently ol {
  padding-left: 10px;
  margin-bottom: 10px;
}
/* line 749, ../scss/module/_product-list.scss */
.block-layered-nav .currently ol li {
  margin-bottom: 5px;
}
/* line 752, ../scss/module/_product-list.scss */
.block-layered-nav .currently ol li .label {
  font-weight: bold;
}
/* line 756, ../scss/module/_product-list.scss */
.block-layered-nav .currently ol li:after {
  content: '';
  display: table;
  clear: both;
}

/* line 762, ../scss/module/_product-list.scss */
.block-layered-nav .actions {
  text-align: right;
  margin-bottom: 7px;
}

/* ============================================ *
 * Catalog - Product
 * ============================================ */
/* line 35, ../scss/module/_catalog-product.scss */
.product-view .product-essential .extra-info .ratings .rating-box,
.product-view .product-essential .extra-info .ratings .amount {
  float: left;
}
/* line 40, ../scss/module/_catalog-product.scss */
.product-view .product-essential .extra-info .ratings .rating-box {
  margin-top: 8px;
  margin-right: 10px;
}
/* line 45, ../scss/module/_catalog-product.scss */
.product-view .product-essential .extra-info .ratings:after {
  content: '';
  display: table;
  clear: both;
}
/* line 51, ../scss/module/_catalog-product.scss */
.product-view .product-essential:after {
  content: '';
  display: table;
  clear: both;
}
/* line 56, ../scss/module/_catalog-product.scss */
.product-view .product-shop .product-name .h1,
.product-view .product-img-box .product-name h1 {
  color: #02b2e7;
  margin-bottom: 10px;
  border: 0;
}
/* line 63, ../scss/module/_catalog-product.scss */
.product-view .product-shop {
  width: 50%;
  float: right;
}
/* line 67, ../scss/module/_catalog-product.scss */
.product-view .product-shop .product-name {
  display: none;
  float: left;
}
/* line 71, ../scss/module/_catalog-product.scss */
.product-view .product-shop .product-name .h1 {
  float: left;
  margin-bottom: 5px;
}
/* line 76, ../scss/module/_catalog-product.scss */
.product-view .product-shop .extra-info {
  float: left;
  padding-right: 12.5px;
  clear: left;
  width: 70%;
}
/* line 83, ../scss/module/_catalog-product.scss */
.product-view .product-shop .price-info {
  float: right;
  padding-left: 12.5px;
  text-align: right;
}
/* line 89, ../scss/module/_catalog-product.scss */
.product-view .product-shop .extra-info,
.product-view .product-shop .price-info {
  max-width: 70%;
  margin-bottom: 10px;
}
/* line 95, ../scss/module/_catalog-product.scss */
.product-view .product-shop .short-description {
  margin-bottom: 10px;
  clear: both;
}
/* line 100, ../scss/module/_catalog-product.scss */
.product-view .product-shop .ratings {
  margin-bottom: 8px;
}
/* line 104, ../scss/module/_catalog-product.scss */
.product-view .product-shop .availability {
  font-size: 20px;
}
/* line 108, ../scss/module/_catalog-product.scss */
.product-view .product-shop .price-box {
  margin-top: 0;
}
/* line 111, ../scss/module/_catalog-product.scss */
.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;
}
/* line 118, ../scss/module/_catalog-product.scss */
.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: #02b2e7;
  font-size: 24px;
}
/* line 127, ../scss/module/_catalog-product.scss */
.product-view .product-shop .price-box .special-price .price-label {
  font-size: 20px;
  text-transform: uppercase;
}
/* line 132, ../scss/module/_catalog-product.scss */
.product-view .product-shop .price-box .special-price span.weee {
  color: #373c3e;
}
/* line 135, ../scss/module/_catalog-product.scss */
.product-view .product-shop .price-box .special-price span.weee span.price {
  font-size: 20px;
}
/* line 141, ../scss/module/_catalog-product.scss */
.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: #373c3e;
}
/* line 147, ../scss/module/_catalog-product.scss */
.product-view .product-shop .price-box .price-excluding-tax .label,
.product-view .product-shop .price-box .price-including-tax .label {
  font-size: 20px;
  font-weight: 300;
}
/* line 152, ../scss/module/_catalog-product.scss */
.product-view .product-shop .price-box .price-excluding-tax .price,
.product-view .product-shop .price-box .price-including-tax .price {
  font-size: 20px;
}
/* line 160, ../scss/module/_catalog-product.scss */
.product-view .price-box.map-info a {
  display: inherit;
}
/* line 165, ../scss/module/_catalog-product.scss */
.product-view .old-price .price-label {
  display: none;
}
/* line 170, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart-wrapper,
.product-view .block-related {
  width: 50%;
  float: right;
  clear: right;
}

@media only screen and (max-width: 850px) {
  /* line 185, ../scss/module/_catalog-product.scss */
  .product-view .product-shop .price-box .price-excluding-tax .label,
  .product-view .product-shop .price-box .price-including-tax .label {
    font-size: 19px;
  }
  /* line 189, ../scss/module/_catalog-product.scss */
  .product-view .product-shop .price-box .price-excluding-tax .price,
  .product-view .product-shop .price-box .price-including-tax .price {
    font-size: 21px;
  }
}
@media only screen and (max-width: 770px) {
  /* line 200, ../scss/module/_catalog-product.scss */
  .product-view .add-to-cart-wrapper {
    float: none;
    width: 100%;
    clear: both;
  }
  /* line 210, ../scss/module/_catalog-product.scss */
  .product-view .product-shop .price-box .price-excluding-tax .label,
  .product-view .product-shop .price-box .price-including-tax .label {
    font-size: 20px;
  }
  /* line 214, ../scss/module/_catalog-product.scss */
  .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) {
  /* line 227, ../scss/module/_catalog-product.scss */
  .product-view .product-shop .price-box .price-excluding-tax,
  .product-view .product-shop .price-box .price-including-tax {
    margin-bottom: 5px;
  }
  /* line 231, ../scss/module/_catalog-product.scss */
  .product-view .product-shop .price-box .price-excluding-tax span,
  .product-view .product-shop .price-box .price-including-tax span {
    display: block;
  }
}
/* line 240, ../scss/module/_catalog-product.scss */
.product-img-box {
  width: 50%;
  float: left;
}
/* line 245, ../scss/module/_catalog-product.scss */
.product-img-box .product-name h1 {
  border: 0;
}
/* line 250, ../scss/module/_catalog-product.scss */
.product-img-box .product-image {
  margin-bottom: 10px;
}
/* line 254, ../scss/module/_catalog-product.scss */
.product-img-box .product-image img {
  max-width: 100%;
  max-height: 750px;
  margin: 0px auto;
}

@media only screen and (max-width: 479px) {
  /* line 268, ../scss/module/_catalog-product.scss */
  .product-img-box .product-image img {
    max-height: 450px;
  }
}
/* line 273, ../scss/module/_catalog-product.scss */
.product-image-gallery {
  position: relative;
}
/* line 276, ../scss/module/_catalog-product.scss */
.product-image-gallery .gallery-image {
  display: none;
}
/* line 279, ../scss/module/_catalog-product.scss */
.product-image-gallery .gallery-image.visible {
  display: block;
}
/* line 282, ../scss/module/_catalog-product.scss */
.product-image-gallery .gallery-image.visible.hidden {
  visibility: hidden;
}
/* line 27, ../scss/mixin/_loading-overlay.scss */
.product-image-gallery:before, .product-image-gallery:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
/* line 38, ../scss/mixin/_loading-overlay.scss */
.product-image-gallery:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
/* line 44, ../scss/mixin/_loading-overlay.scss */
.product-image-gallery:after {
  background-image: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
/* line 51, ../scss/mixin/_loading-overlay.scss */
.product-image-gallery.loading {
  position: relative;
}
/* line 54, ../scss/mixin/_loading-overlay.scss */
.product-image-gallery.loading:before, .product-image-gallery.loading:after {
  display: block;
}

/* line 292, ../scss/module/_catalog-product.scss */
.product-image-thumbs li {
  display: inline-block;
}
/* line 295, ../scss/module/_catalog-product.scss */
.product-image-thumbs li:first-child {
  margin-left: -1px;
}
/* line 298, ../scss/module/_catalog-product.scss */
.product-image-thumbs a {
  display: inline-block;
  border: 1px solid transparent;
}

/* line 305, ../scss/module/_catalog-product.scss */
.no-touch .product-image-thumbs a:hover {
  border-color: #c7c7c7;
}

/* line 310, ../scss/module/_catalog-product.scss */
.product-view .product-shop,
.product-view .add-to-cart-wrapper,
.product-view .block-related {
  padding-left: 12.5px;
}

/* line 316, ../scss/module/_catalog-product.scss */
.product-img-box {
  padding-right: 12.5px;
}

/* line 320, ../scss/module/_catalog-product.scss */
.product-view .product-shop,
.product-img-box,
.product-collateral,
.product-view .block-related,
.box-collateral {
  margin-bottom: 10px;
}

/* line 328, ../scss/module/_catalog-product.scss */
.product-view {
  /* Set a min-height so that the floated elements break appropriately */
}
/* line 330, ../scss/module/_catalog-product.scss */
.product-view .add-to-box:after,
.product-view .add-to-cart:after {
  content: '';
  display: table;
  clear: both;
}
/* line 335, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart {
  padding-bottom: 3px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e1e1e0;
}
/* line 342, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart .qty-wrapper,
.product-view .product-options-bottom .price-box,
.product-view .add-to-cart-buttons {
  min-height: 40px;
}
/* line 348, ../scss/module/_catalog-product.scss */
.product-view .product-options-bottom .price-box,
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart-buttons .button,
.product-view .add-to-cart-buttons .paypal-logo {
  margin-bottom: 10px;
}
/* line 355, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart .qty-wrapper label {
  margin-right: 7px;
  float: left;
}
/* line 361, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart .qty-wrapper label {
  line-height: 40px;
}
/* line 365, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart .qty-wrapper .qty {
  float: left;
  height: 40px;
}
/* line 370, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart-buttons {
  float: left;
  margin-right: 10px;
  max-width: 100%;
}
/* line 375, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart-buttons .paypal-logo {
  clear: left;
  text-align: center;
}
/* line 379, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart-buttons .paypal-logo .paypal-button {
  margin: 0 auto;
  display: block;
  width: 170px;
}
/* line 385, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart-buttons .paypal-logo .bml_button {
  display: block;
  width: 174px;
  margin: 0 auto;
}
/* line 390, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart-buttons .paypal-logo .bml_button a {
  text-align: center;
}
/* line 395, ../scss/module/_catalog-product.scss */
.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;
}
/* line 406, ../scss/module/_catalog-product.scss */
.product-view .add-to-cart-buttons .button {
  min-height: 40px;
  line-height: 40px;
  font-size: 20px;
  padding: 0px 30px;
  float: left;
  min-width: 160px;
  width: 100%;
  white-space: normal;
}
/* line 417, ../scss/module/_catalog-product.scss */
.product-view .alert-price,
.product-view .alert-stock {
  clear: both;
}

@media only screen and (max-width: 479px) {
  /* line 425, ../scss/module/_catalog-product.scss */
  .product-view .add-to-cart-buttons .paypal-or {
    line-height: 20px;
  }
  /* line 429, ../scss/module/_catalog-product.scss */
  .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 */
/* line 444, ../scss/module/_catalog-product.scss */
.add-to-box .or {
  display: none;
}

/* line 448, ../scss/module/_catalog-product.scss */
.product-view .add-to-links {
  clear: both;
  margin-top: 0px;
  margin-right: 15px;
  float: left;
}
/* line 454, ../scss/module/_catalog-product.scss */
.product-view .add-to-links:after {
  content: '';
  display: table;
  clear: both;
}
/* line 458, ../scss/module/_catalog-product.scss */
.product-view .add-to-links li {
  float: left;
}
/* line 462, ../scss/module/_catalog-product.scss */
.product-view .add-to-links a {
  padding: 2px 7px 2px 0px;
  margin-left: 7px;
  border-right: 1px solid #e1e1e0;
}
/* line 468, ../scss/module/_catalog-product.scss */
.product-view .add-to-links li:first-child a {
  margin-left: 0px;
}
/* line 472, ../scss/module/_catalog-product.scss */
.product-view .add-to-links li:last-child a {
  border-right: 0px;
}

/* line 477, ../scss/module/_catalog-product.scss */
.product-view .sharing-links {
  float: left;
}
/* line 480, ../scss/module/_catalog-product.scss */
.product-view .sharing-links:after {
  content: '';
  display: table;
  clear: both;
}
/* line 484, ../scss/module/_catalog-product.scss */
.product-view .sharing-links li {
  float: left;
  padding: 0px 7px 7px;
}
/* line 489, ../scss/module/_catalog-product.scss */
.product-view .sharing-links a {
  text-indent: -9999px;
  display: block;
  width: 26px;
  height: 26px;
}
/* line 496, ../scss/module/_catalog-product.scss */
.product-view .sharing-links a:hover {
  opacity: 0.8;
}
/* line 499, ../scss/module/_catalog-product.scss */
.product-view .sharing-links a.link-wishlist {
  background-position: 0px -225px;
}
/* line 502, ../scss/module/_catalog-product.scss */
.product-view .sharing-links a.link-compare {
  background-position: 0px -250px;
}
/* line 505, ../scss/module/_catalog-product.scss */
.product-view .sharing-links a.link-email-friend {
  background-position: 0px -322px;
}
/* line 508, ../scss/module/_catalog-product.scss */
.product-view .sharing-links a.link-facebook {
  background-position: 0px -425px;
}
/* line 511, ../scss/module/_catalog-product.scss */
.product-view .sharing-links a.link-twitter {
  background-position: 0px -372px;
}

@media only screen and (max-width: 599px) {
  /* line 518, ../scss/module/_catalog-product.scss */
  .add-to-box .add-to-links a {
    float: none;
    width: auto;
    text-indent: 0;
  }
}
/* line 526, ../scss/module/_catalog-product.scss */
.product-collateral {
  clear: both;
}

/* line 532, ../scss/module/_catalog-product.scss */
.collateral-tabs dd h2 {
  display: none;
}

/* line 538, ../scss/module/_catalog-product.scss */
.box-collateral {
  clear: both;
}

@media only screen and (min-width: 771px) {
  /* line 27, ../scss/mixin/_toggle-content.scss */
  .product-collateral .toggle-tabs {
    display: block;
    width: 100%;
    position: relative;
    border: 1px solid #e1e1e0;
    background-color: #F4F4F4;
  }
  /* line 34, ../scss/mixin/_toggle-content.scss */
  .product-collateral .toggle-tabs li {
    float: left;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
  }
  /* line 39, ../scss/mixin/_toggle-content.scss */
  .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 25px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    bottom: -1px;
  }
  /* line 53, ../scss/mixin/_toggle-content.scss */
  .product-collateral .toggle-tabs li.current {
    border-right: 1px solid #e1e1e0;
    border-left: 1px solid #e1e1e0;
  }
  /* line 57, ../scss/mixin/_toggle-content.scss */
  .product-collateral .toggle-tabs li.current > span {
    background-color: #FFFFFF;
    z-index: 5;
  }
  /* line 63, ../scss/mixin/_toggle-content.scss */
  .product-collateral .toggle-tabs li.current span,
  .product-collateral .toggle-tabs li:hover span {
    color: #02b2e7;
  }
  /* line 68, ../scss/mixin/_toggle-content.scss */
  .product-collateral .toggle-tabs li:first-child {
    border-left: none;
  }
  /* line 72, ../scss/mixin/_toggle-content.scss */
  .product-collateral .toggle-tabs:after {
    content: '';
    display: table;
    clear: both;
  }
  /* line 77, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl {
    width: 100%;
  }
  /* line 80, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dt {
    display: none;
  }
  /* line 84, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dd {
    width: 100%;
    display: none;
    padding: 15px;
    border: 1px solid #e1e1e0;
    border-top: 0;
  }
  /* line 92, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dd.current {
    display: block;
  }
}
@media only screen and (max-width: 770px) {
  /* line 123, ../scss/mixin/_toggle-content.scss */
  .product-collateral .toggle-tabs {
    display: none;
  }
  /* line 128, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dt {
    margin: 0;
    margin-bottom: 10px;
    color: #373c3e;
    font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
    font-size: 21px;
    font-style: normal;
    line-height: 1.4;
    text-rendering: optimizeSpeed;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0px;
    padding: 7px 10px 7px 24px;
    border-width: 1px;
    border-style: solid;
    border-color: #e1e1e0;
    position: relative;
    background-color: #F4F4F4;
    display: block;
  }
  /* line 110, ../scss/mixin/_toggle-content.scss */
  .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 #02b2e7;
    border-bottom: none;
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }
  /* line 117, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dt:hover {
    background-color: #ededed;
  }
  /* line 133, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dd {
    padding: 10px;
    margin: 0;
    border-width: 0 1px;
    border-style: solid;
    border-color: #e1e1e0;
  }
  /* line 140, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dd:last-child {
    border-width: 0 1px 1px 1px;
  }
  /* line 148, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dt {
    cursor: pointer;
    border-bottom-width: 0;
  }
  /* line 152, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dt:hover {
    color: #02b2e7;
  }
  /* line 155, ../scss/mixin/_toggle-content.scss */
  .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 #02b2e7;
    border-right: none;
  }
  /* line 158, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dt.last {
    border-bottom-width: 1px;
  }
  /* line 163, ../scss/mixin/_toggle-content.scss */
  .product-collateral > dl > dd {
    display: none;
  }
  /* line 171, ../scss/mixin/_toggle-content.scss */
  .product-collateral.accordion-open > dl > dt.current {
    border-bottom-width: 1px;
  }
  /* line 175, ../scss/mixin/_toggle-content.scss */
  .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 #02b2e7;
    border-bottom: none;
    left: 6px;
    top: 50%;
    margin-top: -3px;
  }
  /* line 183, ../scss/mixin/_toggle-content.scss */
  .product-collateral.accordion-open > dl > dd.current {
    display: block;
  }
}
@media only screen and (max-width: 770px) {
  /* line 559, ../scss/module/_catalog-product.scss */
  .product-view .product-shop,
  .product-view .add-to-cart-wrapper,
  .product-view .block-related,
  .product-img-box,
  .product-collateral {
    width: 100%;
    float: none;
    padding-right: 0;
    padding-left: 0;
  }
}
@media only screen and (min-width: 771px) {
  /* line 573, ../scss/module/_catalog-product.scss */
  .product-view .product-shop .product-name {
    display: block;
  }

  /* line 576, ../scss/module/_catalog-product.scss */
  .product-img-box .product-name {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  /* line 583, ../scss/module/_catalog-product.scss */
  .product-view .product-shop,
  .product-img-box,
  .product-collateral,
  .product-view .block-related,
  .box-collateral {
    margin-bottom: 15px;
  }
}
/* line 593, ../scss/module/_catalog-product.scss */
.product-view .ratings .rating-links {
  clear: left;
  float: left;
  margin-top: 0;
}

/* line 600, ../scss/module/_catalog-product.scss */
#product-attribute-specs-table {
  max-width: 50em;
  border: 1px solid #C0C0C0;
}
/* line 604, ../scss/module/_catalog-product.scss */
#product-attribute-specs-table th {
  border-right: 1px solid #C0C0C0;
  border-bottom: 1px solid #C0C0C0;
}

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

/* line 629, ../scss/module/_catalog-product.scss */
.grouped-items-table .name-wrapper {
  color: #02b2e7;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}
/* line 634, ../scss/module/_catalog-product.scss */
.grouped-items-table .qty-wrapper {
  padding-top: 7px;
}
/* line 638, ../scss/module/_catalog-product.scss */
.grouped-items-table .qty-label {
  margin-left: 7px;
}
/* line 643, ../scss/module/_catalog-product.scss */
.grouped-items-table td {
  padding: 4px;
}
/* line 646, ../scss/module/_catalog-product.scss */
.grouped-items-table td:last-child {
  width: 30%;
  text-align: left;
}
/* line 651, ../scss/module/_catalog-product.scss */
.grouped-items-table .price-box {
  text-align: right;
}

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

/* line 669, ../scss/module/_catalog-product.scss */
.product-options p.required {
  position: absolute;
  top: 6px;
  right: 15px;
  text-align: right;
}

@media only screen and (max-width: 979px) {
  /* line 677, ../scss/module/_catalog-product.scss */
  .product-view .product-options .required {
    position: static;
  }
}
/* line 682, ../scss/module/_catalog-product.scss */
.product-options dt {
  margin: 10px 0 3px;
  font-weight: normal;
}

/* line 687, ../scss/module/_catalog-product.scss */
.product-options dt:first-child {
  margin-top: 0;
}

/* line 691, ../scss/module/_catalog-product.scss */
.product-options dd .qty-holder {
  display: block;
  padding: 10px 0 0 0;
}

/* line 696, ../scss/module/_catalog-product.scss */
.product-options dd .qty-holder .qty {
  width: 3em;
}

/* line 700, ../scss/module/_catalog-product.scss */
.product-options dd .qty-holder label {
  vertical-align: middle;
}

/* line 704, ../scss/module/_catalog-product.scss */
.product-options dd .qty-disabled {
  background: none;
  border: 0;
  padding: 0 2px;
}

/* line 710, ../scss/module/_catalog-product.scss */
.product-options dd {
  padding: 0 0 10px 0;
  margin: 0 0 5px;
  border-bottom: 1px solid #EDEDED;
}

/* line 716, ../scss/module/_catalog-product.scss */
.product-options dl.last dd.last {
  border-bottom: 0;
  padding-bottom: 5px;
  margin-bottom: 0;
}

/* line 722, ../scss/module/_catalog-product.scss */
.product-options dd .input-text {
  width: 98%;
}

/* line 726, ../scss/module/_catalog-product.scss */
.product-options dd .input-box {
  padding-top: 0;
}

/* line 730, ../scss/module/_catalog-product.scss */
.product-options dd input.datetime-picker {
  width: 150px;
}

/* line 734, ../scss/module/_catalog-product.scss */
.product-options dd .time-picker {
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  padding: 2px 0;
  vertical-align: middle;
}

/* line 740, ../scss/module/_catalog-product.scss */
.product-options dd textarea {
  width: 98%;
  height: 8em;
}

/* line 745, ../scss/module/_catalog-product.scss */
.product-options dd select {
  width: 330px;
  max-width: 100%;
}

/* line 750, ../scss/module/_catalog-product.scss */
.product-options ul.options-list {
  margin-right: 5px;
}

/* line 754, ../scss/module/_catalog-product.scss */
.product-options ul.options-list li {
  line-height: 1.5;
  margin-bottom: 7px;
}

/* line 759, ../scss/module/_catalog-product.scss */
.product-options ul.options-list li:last-child {
  margin-bottom: 0;
}

/* line 763, ../scss/module/_catalog-product.scss */
.product-options ul.options-list .radio,
.product-options ul.options-list .checkbox {
  float: left;
  margin-top: 5px;
}

/* line 769, ../scss/module/_catalog-product.scss */
.product-options ul.options-list .label {
  display: block;
}

/* line 773, ../scss/module/_catalog-product.scss */
.product-options ul.options-list label {
  font-weight: normal;
}

/* line 777, ../scss/module/_catalog-product.scss */
.product-options p.note {
  margin: 0;
  font-size: 12px;
}

/* line 782, ../scss/module/_catalog-product.scss */
.product-options-bottom {
  background-color: #F4F4F4;
  padding: 15px 20px;
  border: 1px solid #CCCCCC;
  border-top: 0;
  margin-bottom: 10px;
}

/* line 790, ../scss/module/_catalog-product.scss */
.product-options-bottom:after {
  content: '';
  display: table;
  clear: both;
}

/* line 794, ../scss/module/_catalog-product.scss */
.product-options-bottom .product-pricing,
.product-options-bottom .tier-prices {
  float: right;
  margin: 0;
  padding: 0 0 10px;
  border: 0;
  background: 0;
  color: #373c3e;
}
@media only screen and (max-width: 1199px) {
  /* line 794, ../scss/module/_catalog-product.scss */
  .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;
  }
}

/* line 813, ../scss/module/_catalog-product.scss */
.product-options-bottom .tier-prices li {
  background: 0;
  padding: 2px 0;
}

/* line 818, ../scss/module/_catalog-product.scss */
.product-options-bottom .tier-prices .price,
.product-options-bottom .tier-prices .benefit {
  color: #373c3e;
}

/* "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 */
/* line 825, ../scss/module/_catalog-product.scss */
.product-options-bottom .price-box {
  display: none;
  float: right;
  margin: 0 0 10px;
  padding: 0;
}

@media only screen and (max-width: 479px) {
  /* line 833, ../scss/module/_catalog-product.scss */
  .product-options-bottom .price-box .price-as-configured {
    text-align: right;
  }
  /* line 836, ../scss/module/_catalog-product.scss */
  .product-options-bottom .price-box .price-as-configured .price-label {
    display: block;
  }
}
/* line 842, ../scss/module/_catalog-product.scss */
.product-options-bottom .price-tax {
  float: left;
}

/* -------------------------------------------- *
 * Related Products
 */
/* Block: Related */
/* line 854, ../scss/module/_catalog-product.scss */
.block-related li {
  margin-bottom: 7px;
}
/* line 858, ../scss/module/_catalog-product.scss */
.block-related .block-title {
  border-bottom: none;
}
/* line 861, ../scss/module/_catalog-product.scss */
.block-related .block-title h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #373c3e;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 28px;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
/* line 867, ../scss/module/_catalog-product.scss */
.block-related .block-subtitle {
  margin-bottom: 7px;
}
/* line 871, ../scss/module/_catalog-product.scss */
.block-related .product {
  margin-left: 20px;
  position: relative;
}
/* line 875, ../scss/module/_catalog-product.scss */
.block-related .checkbox {
  float: left;
  margin-top: 36px;
}
/* line 880, ../scss/module/_catalog-product.scss */
.block-related .product-details {
  margin-left: 90px;
}
/* line 884, ../scss/module/_catalog-product.scss */
.block-related .product-name {
  margin-bottom: 3px;
}
/* line 888, ../scss/module/_catalog-product.scss */
.block-related .product-details .price-box {
  margin: 2px 0 3px;
}
/* line 891, ../scss/module/_catalog-product.scss */
.block-related .product-details .price-box a,
.block-related .product-details .price-box p,
.block-related .product-details .price-box span {
  float: left;
  margin-left: 3px;
}
/* line 897, ../scss/module/_catalog-product.scss */
.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: 20px;
  padding-right: 5px;
  padding-left: 5px;
}
/* line 904, ../scss/module/_catalog-product.scss */
.block-related .product-details .price-box:after {
  content: '';
  display: table;
  clear: both;
}
/* line 908, ../scss/module/_catalog-product.scss */
.block-related .link-wishlist {
  display: none;
}

/* -------------------------------------------- *
 * Upsell Products
 */
/* line 917, ../scss/module/_catalog-product.scss */
.box-up-sell {
  margin-top: 20px;
}
/* line 920, ../scss/module/_catalog-product.scss */
.box-up-sell .ratings {
  display: none;
}

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

/* line 40, ../scss/module/_catalog-msrp.scss */
.map-cart-sidebar-total {
  color: red;
  display: block;
  font-size: 10px;
  font-weight: bold;
  text-align: left;
  padding: 2px 5px;
}

/* line 49, ../scss/module/_catalog-msrp.scss */
.map-popup {
  background: #FFFFFF;
  border: 5px solid #e1e1e0;
  margin: 12px 0 0;
  position: absolute;
  text-align: left;
  width: 450px;
  z-index: 100;
}
@media only screen and (min-width: 771px) {
  /* line 59, ../scss/module/_catalog-msrp.scss */
  .map-popup.map-popup-right {
    left: 10px !important;
  }
  /* line 63, ../scss/module/_catalog-msrp.scss */
  .map-popup.map-popup-left {
    left: auto !important;
    right: 10px !important;
  }
}
@media only screen and (max-width: 770px) {
  /* line 49, ../scss/module/_catalog-msrp.scss */
  .map-popup {
    width: 100%;
    left: 0px !important;
  }
}
/* line 74, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-heading {
  padding: 8px 10px;
  margin-right: 40px;
  width: auto;
}
/* line 79, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-heading h3 {
  font-size: 18px;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: break-word;
  text-align: left;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 479px) {
  /* line 79, ../scss/module/_catalog-msrp.scss */
  .map-popup .map-popup-heading h3 {
    text-align: center;
  }
}
/* line 94, ../scss/module/_catalog-msrp.scss */
.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;
}
/* line 106, ../scss/module/_catalog-msrp.scss */
.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) {
  /* line 106, ../scss/module/_catalog-msrp.scss */
  .map-popup .map-popup-content {
    text-align: center;
  }
}
/* line 118, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout {
  padding: 10px 0;
}
/* line 121, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout form:after {
  content: '';
  display: table;
  clear: both;
}
/* line 125, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout span {
  display: block;
}
/* line 129, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout .button {
  float: left;
  margin: 0 2px;
  clear: left;
}
/* line 135, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout .additional-addtocart-box {
  float: left;
  min-width: 210px;
}
/* line 139, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout .additional-addtocart-box li {
  list-style-type: none;
}
/* line 144, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout .paypal-logo {
  width: auto;
}
/* line 147, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout .paypal-logo a {
  display: inline-block;
  float: left;
  clear: left;
}
/* line 153, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout .paypal-logo .paypal-or {
  float: left;
  text-align: center;
  padding: 5px 15px;
  clear: left;
}
/* line 160, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout .paypal-logo:after {
  content: '';
  display: table;
  clear: both;
}
/* line 165, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout .paypal-logo .bml_button a {
  clear: left;
}
@media only screen and (max-width: 479px) {
  /* line 118, ../scss/module/_catalog-msrp.scss */
  .map-popup .map-popup-checkout {
    text-align: center;
  }
  /* line 174, ../scss/module/_catalog-msrp.scss */
  .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;
  }
  /* line 181, ../scss/module/_catalog-msrp.scss */
  .map-popup .map-popup-checkout .additional-addtocart-box {
    min-width: 0px;
  }
  /* line 185, ../scss/module/_catalog-msrp.scss */
  .map-popup .map-popup-checkout .paypal-logo .paypal-or {
    margin: 0px;
    margin-bottom: 10px;
  }
}
/* line 191, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-checkout:after {
  content: '';
  display: table;
  clear: both;
}
/* line 196, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-price {
  padding: 10px 0;
}
@media only screen and (max-width: 479px) {
  /* line 196, ../scss/module/_catalog-msrp.scss */
  .map-popup .map-popup-price {
    text-align: center;
    padding-top: 0px;
  }
}
/* line 203, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-price .price-box,
.map-popup .map-popup-price .price-box .special-price {
  display: inline-block;
  margin: 0;
  padding: 0;
}
/* line 210, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-price .price-box .minimal-price-link {
  display: inline-block;
}
/* line 215, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-text {
  padding: 10px 0;
  margin: 0 10px;
  word-wrap: break-word;
}
/* line 221, ../scss/module/_catalog-msrp.scss */
.map-popup .map-popup-text,
.map-popup .map-popup-only-text {
  border-top: 1px solid #EDEDED;
}

/* ============================================ *
 * Catalog - MSRP Product Listing
 * ============================================ */
/* line 231, ../scss/module/_catalog-msrp.scss */
.price-box .map-link {
  display: block;
  text-align: center;
}

/* ============================================ *
 * Catalog - Compare
 * ============================================ */
/* line 30, ../scss/module/_catalog-compare.scss */
.block-compare .product-name:after {
  content: '';
  display: table;
  clear: both;
}

/* line 34, ../scss/module/_catalog-compare.scss */
.compare-table .product-image {
  display: inline-block;
}

/* line 40, ../scss/module/_catalog-compare.scss */
.compare-table .product-shop-row.top td {
  padding-bottom: 0;
  border-bottom: 0;
}
/* line 45, ../scss/module/_catalog-compare.scss */
.compare-table .product-shop-row.bottom td {
  padding-top: 0;
}

/* ============================================ *
 * Checkout - Layout
 * ============================================ */
/* line 30, ../scss/module/_checkout-cart.scss */
.cart-empty {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  text-align: center;
  padding-bottom: 50px;
}

/* line 38, ../scss/module/_checkout-cart.scss */
.cart-wrapper-inner {
  margin: 0 auto;
}

/* line 42, ../scss/module/_checkout-cart.scss */
.cart-wrapper-outer-inner {
  background: #ffffff;
}

/* line 46, ../scss/module/_checkout-cart.scss */
.order-notes,
.cart-table {
  float: left;
  width: 59%;
  margin-top: 35px;
}
/* line 52, ../scss/module/_checkout-cart.scss */
.order-notes .mobile-remove-item,
.cart-table .mobile-remove-item {
  display: none;
}
/* line 54, ../scss/module/_checkout-cart.scss */
.order-notes .mobile-remove-item a,
.cart-table .mobile-remove-item a {
  color: #373c3e;
  text-decoration: none;
}

/* line 61, ../scss/module/_checkout-cart.scss */
.cart .button {
  white-space: normal;
}

/* line 65, ../scss/module/_checkout-cart.scss */
.cart-forms,
.cart-totals-wrapper,
.crosssell {
  float: right;
  clear: right;
  width: 39%;
}

/* line 73, ../scss/module/_checkout-cart.scss */
.cart-forms {
  margin-top: 53px;
}

/* line 77, ../scss/module/_checkout-cart.scss */
.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  padding: 20px;
  background-color: #F4F4F4;
  border: 1px solid #e0e4e5;
  background: #ffffff;
}

/* line 87, ../scss/module/_checkout-cart.scss */
.cart-totals {
  padding-bottom: 0;
  padding-top: 0;
}
/* line 92, ../scss/module/_checkout-cart.scss */
.cart-totals .summary-details .a-right,
.cart-totals .summary-total .a-right {
  font-size: 16px;
}
/* line 96, ../scss/module/_checkout-cart.scss */
.cart-totals .summary-collapse {
  font-size: 16px;
}

/* line 101, ../scss/module/_checkout-cart.scss */
.cart-table,
.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  margin-bottom: 20px;
}

/* line 109, ../scss/module/_checkout-cart.scss */
.cart-forms .discount,
.cart-forms .shipping {
  border-bottom: 0;
  margin-bottom: 0;
}

/* line 115, ../scss/module/_checkout-cart.scss */
.cart-forms .discount {
  padding-bottom: 0;
  padding-top: 20px;
}
/* line 119, ../scss/module/_checkout-cart.scss */
.cart-forms .discount .discount-inner {
  padding-bottom: 15px;
}
/* line 121, ../scss/module/_checkout-cart.scss */
.cart-forms .discount .discount-inner #coupon-oops {
  color: #d21d05;
  float: right;
  margin-bottom: 8px;
  padding-right: 36px;
}
/* line 128, ../scss/module/_checkout-cart.scss */
.cart-forms .discount .di-border {
  border-bottom: 1px solid #e0e4e5;
}

/* line 133, ../scss/module/_checkout-cart.scss */
.cart-forms .shipping {
  border-top: 0;
  padding-bottom: 15px;
  padding-top: 0;
  height: 46px;
  font-size: 16px;
  line-height: 16px;
}
/* line 141, ../scss/module/_checkout-cart.scss */
.cart-forms .shipping .shipping-inner {
  font-size: 16px;
  line-height: 16px;
  border-top: 1px solid #e0e4e5;
  padding-top: 15px;
}
/* line 147, ../scss/module/_checkout-cart.scss */
.cart-forms .shipping .shipping-inner .button-wrapper {
  font-size: 16px;
  line-height: 16px;
}

/* line 154, ../scss/module/_checkout-cart.scss */
#mobile-calculate-shipping {
  display: block;
  float: right;
  text-transform: capitalize;
  text-decoration: none;
  line-height: 16px;
  height: 16px;
}

/* line 164, ../scss/module/_checkout-cart.scss */
.cart-forms .cs-height-adj-01 {
  height: auto;
  padding-bottom: 15px;
}

/* line 171, ../scss/module/_checkout-cart.scss */
.discount-form #apply-promo-code {
  display: none;
}
/* line 175, ../scss/module/_checkout-cart.scss */
.discount-form .buttons-set {
  border-top: 0;
  padding: 0;
  margin: 0;
}

/* line 184, ../scss/module/_checkout-cart.scss */
#discount-coupon-form #coupon_code {
  margin-bottom: 15px;
  width: 100%;
  max-width: 285px;
  margin-right: 0;
  float: right;
}
/* line 191, ../scss/module/_checkout-cart.scss */
#discount-coupon-form #cancel-promo-code-link {
  margin-left: 0;
}
/* line 194, ../scss/module/_checkout-cart.scss */
#discount-coupon-form #coupon_code_submitted {
  padding-top: 3px;
  padding-bottom: 2px;
  outline: none;
  cursor: default;
}
/* line 199, ../scss/module/_checkout-cart.scss */
#discount-coupon-form #coupon_code_submitted:hover {
  background: #edf2f3;
}
/* line 202, ../scss/module/_checkout-cart.scss */
#discount-coupon-form #coupon_code_submitted .icon-remove {
  top: 2px;
  position: relative;
  cursor: pointer;
}

/* line 210, ../scss/module/_checkout-cart.scss */
.cart-totals {
  border-top: 0;
}

/* line 215, ../scss/module/_checkout-cart.scss */
.checkout-cart-index #postcode {
  width: 100%;
}

/* line 221, ../scss/module/_checkout-cart.scss */
.display-both-prices .cart-table {
  float: none;
  width: 100%;
}
/* line 226, ../scss/module/_checkout-cart.scss */
.display-both-prices .cart-forms {
  float: left;
  padding-right: 10px;
  padding-left: 0;
}
/* line 232, ../scss/module/_checkout-cart.scss */
.display-both-prices .cart-totals-wrapper,
.display-both-prices .crosssell {
  padding-left: 10px;
}
/* line 237, ../scss/module/_checkout-cart.scss */
.display-both-prices .cart-forms,
.display-both-prices .cart-totals-wrapper,
.display-both-prices .crosssell {
  width: 50%;
}
/* line 243, ../scss/module/_checkout-cart.scss */
.display-both-prices .crosssell {
  clear: right;
  float: right;
}

@media only screen and (max-width: 979px) {
  /* line 221, ../scss/module/_checkout-cart.scss */
  .display-single-price .cart-table {
    float: none;
    width: 100%;
  }
  /* line 226, ../scss/module/_checkout-cart.scss */
  .display-single-price .cart-forms {
    float: left;
    padding-right: 10px;
    padding-left: 0;
  }
  /* line 232, ../scss/module/_checkout-cart.scss */
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    padding-left: 10px;
  }
  /* line 237, ../scss/module/_checkout-cart.scss */
  .display-single-price .cart-forms,
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    width: 50%;
  }
  /* line 243, ../scss/module/_checkout-cart.scss */
  .display-single-price .crosssell {
    clear: right;
    float: right;
  }
}
@media screen and (max-width: 680px) {
  /* line 260, ../scss/module/_checkout-cart.scss */
  .product-cart-sku {
    display: none;
  }

  /* line 266, ../scss/module/_checkout-cart.scss */
  .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%;
  }
  /* line 275, ../scss/module/_checkout-cart.scss */
  .display-both-prices .cart-forms,
  .display-single-price .cart-forms {
    margin-bottom: 0;
  }
}
/* line 282, ../scss/module/_checkout-cart.scss */
.display-single-price:after {
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * Checkout - Cart
 * ============================================ */
/* line 291, ../scss/module/_checkout-cart.scss */
.cart-wrapper-inner-inner {
  max-width: 1250px;
  padding: 0 25px;
  margin: 0 auto;
}

/* line 297, ../scss/module/_checkout-cart.scss */
.cart .page-title {
  max-width: 1250px;
  border: 0;
  height: 110px;
  margin-bottom: 0;
  padding: 59px 25px 15px 25px;
}
/* line 304, ../scss/module/_checkout-cart.scss */
.cart .page-title:after {
  content: '';
  display: table;
  clear: both;
}
/* line 308, ../scss/module/_checkout-cart.scss */
.cart .page-title h1 {
  float: left;
  border-bottom: none;
  margin: 0;
  font-size: 36px;
  line-height: 36px;
  padding-bottom: 0;
}
/* line 317, ../scss/module/_checkout-cart.scss */
.cart .page-title h2 {
  float: right;
  border-bottom: none;
  font-size: 21px;
  line-height: 21px;
  padding-top: 15px;
  padding-left: 40px;
}

/* line 330, ../scss/module/_checkout-cart.scss */
.download-marcs-wrapper #add-cart-to-list,
.download-marcs-wrapper #download-all-marcs,
.download-marcs-wrapper #export-to-csv,
.add-cart-to-list-wrapper #add-cart-to-list,
.add-cart-to-list-wrapper #download-all-marcs,
.add-cart-to-list-wrapper #export-to-csv,
.export-to-csv-wrapper #add-cart-to-list,
.export-to-csv-wrapper #download-all-marcs,
.export-to-csv-wrapper #export-to-csv {
  padding: 0;
  padding-left: 10px;
  margin-bottom: 0;
  font-size: 16px;
  color: #373c3e;
}
/* line 338, ../scss/module/_checkout-cart.scss */
.download-marcs-wrapper #add-cart-to-list a,
.download-marcs-wrapper #download-all-marcs a,
.download-marcs-wrapper #export-to-csv a,
.add-cart-to-list-wrapper #add-cart-to-list a,
.add-cart-to-list-wrapper #download-all-marcs a,
.add-cart-to-list-wrapper #export-to-csv a,
.export-to-csv-wrapper #add-cart-to-list a,
.export-to-csv-wrapper #download-all-marcs a,
.export-to-csv-wrapper #export-to-csv a {
  color: #373c3e;
}
/* line 341, ../scss/module/_checkout-cart.scss */
.download-marcs-wrapper #add-cart-to-list .icon-font,
.download-marcs-wrapper #download-all-marcs .icon-font,
.download-marcs-wrapper #export-to-csv .icon-font,
.add-cart-to-list-wrapper #add-cart-to-list .icon-font,
.add-cart-to-list-wrapper #download-all-marcs .icon-font,
.add-cart-to-list-wrapper #export-to-csv .icon-font,
.export-to-csv-wrapper #add-cart-to-list .icon-font,
.export-to-csv-wrapper #download-all-marcs .icon-font,
.export-to-csv-wrapper #export-to-csv .icon-font {
  padding-right: 2px;
  position: relative;
  top: 4px;
  font-size: 24px;
}

/* line 349, ../scss/module/_checkout-cart.scss */
.empty-cart-wrapper {
  float: left;
}
/* line 351, ../scss/module/_checkout-cart.scss */
.empty-cart-wrapper #empty-cart {
  padding-left: 20px;
  padding-top: 10px;
}
/* line 354, ../scss/module/_checkout-cart.scss */
.empty-cart-wrapper #empty-cart a {
  font-size: 14px;
}

/* line 360, ../scss/module/_checkout-cart.scss */
.checkout-types {
  text-align: right;
  max-width: 100%;
  /* We always want this shipping method to display on its own line */
}
/* line 364, ../scss/module/_checkout-cart.scss */
.checkout-types li {
  float: right;
  width: 50%;
  vertical-align: top;
  padding: 0 0 25px 10px;
}
/* line 368, ../scss/module/_checkout-cart.scss */
.checkout-types li:after {
  content: '';
  display: table;
  clear: both;
}
/* line 374, ../scss/module/_checkout-cart.scss */
.checkout-types li img {
  display: inline;
  vertical-align: top;
}
/* line 379, ../scss/module/_checkout-cart.scss */
.checkout-types li button {
  width: 100%;
}
/* line 384, ../scss/module/_checkout-cart.scss */
.checkout-types li.first {
  padding-right: 10px;
  padding-left: 0;
  float: left;
}
/* line 390, ../scss/module/_checkout-cart.scss */
.checkout-types .method-checkout-cart-methods-multishipping {
  display: none;
}
/* line 395, ../scss/module/_checkout-cart.scss */
.checkout-types.top li {
  display: inline-block;
}
/* line 399, ../scss/module/_checkout-cart.scss */
.checkout-types.top .bml_button {
  display: inline-block;
  vertical-align: top;
}
/* line 403, ../scss/module/_checkout-cart.scss */
.checkout-types.top .bml_button img {
  display: block;
}
/* line 408, ../scss/module/_checkout-cart.scss */
.checkout-types.top .paypal-logo .paypal-or {
  margin-top: 5px;
}
/* line 416, ../scss/module/_checkout-cart.scss */
.checkout-types.bottom .paypal-logo a, .checkout-types.minicart .paypal-logo a {
  display: block;
}
/* line 420, ../scss/module/_checkout-cart.scss */
.checkout-types.bottom .paypal-or, .checkout-types.minicart .paypal-or {
  margin: 0px;
  display: block;
  text-align: center;
}

/* line 429, ../scss/module/_checkout-cart.scss */
.noCreditProds .credit-prod-col-spacer,
.noCreditProds .cart-credits-head,
.noCreditProds .product-cart-credits,
.noCreditProds .checkout-credit-info-wrapper {
  display: none;
}

@media only screen and (max-width: 1025px) {
  /* line 439, ../scss/module/_checkout-cart.scss */
  .checkout-types li {
    width: 100%;
    padding-left: 0;
  }
  /* line 443, ../scss/module/_checkout-cart.scss */
  .checkout-types li.first {
    padding-right: 0;
  }
}
@media only screen and (min-width: 741px) {
  /* line 451, ../scss/module/_checkout-cart.scss */
  .checkout-types.bottom .paypal-or {
    text-align: right;
    padding-right: 70px;
  }
}
@media only screen and (max-width: 740px) {
  /* line 459, ../scss/module/_checkout-cart.scss */
  .checkout-types {
    float: none;
    text-align: center;
  }
  /* line 465, ../scss/module/_checkout-cart.scss */
  .checkout-types.bottom .paypal-or, .checkout-types.minicart .paypal-or {
    width: auto;
    float: none;
  }

  /* line 472, ../scss/module/_checkout-cart.scss */
  .checkout-types li {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 600px) {
  /* line 480, ../scss/module/_checkout-cart.scss */
  .btn-checkout {
    width: 100%;
  }
}
/* line 485, ../scss/module/_checkout-cart.scss */
.cart-table {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}
/* line 488, ../scss/module/_checkout-cart.scss */
.cart-table th,
.cart-table td,
.cart-table tbody td {
  border-bottom: none;
  vertical-align: top;
}
/* line 496, ../scss/module/_checkout-cart.scss */
.cart-table .product-name {
  font-size: 16px;
  margin-bottom: 0;
  color: #777e80;
}
/* line 500, ../scss/module/_checkout-cart.scss */
.cart-table .product-name a {
  font-size: 16px;
  line-height: 120%;
  display: block;
}
/* line 505, ../scss/module/_checkout-cart.scss */
.cart-table .product-name .row {
  display: block;
}
/* line 510, ../scss/module/_checkout-cart.scss */
.cart-table thead th,
.cart-table tbody td {
  background-color: transparent;
  padding: 0 5px 6px 5px;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  text-transform: capitalize;
}
/* line 518, ../scss/module/_checkout-cart.scss */
.cart-table tbody td {
  padding: 20px 5px;
}
/* line 522, ../scss/module/_checkout-cart.scss */
.cart-table thead th {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 16px;
}
/* line 528, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-info {
  padding-left: 15px;
}
/* line 532, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-credits {
  text-align: center;
}
/* line 534, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-credits label {
  white-space: nowrap;
}
/* line 539, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-credit-toggle {
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
/* line 546, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-actions {
  padding-left: 5px;
}
/* line 550, ../scss/module/_checkout-cart.scss */
.cart-table .move-to-wishlist-td {
  text-align: right;
  padding: 0;
}
/* line 555, ../scss/module/_checkout-cart.scss */
.cart-table .move-to-wishlist {
  font-size: 14px;
  text-decoration: none;
}
/* line 560, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-info {
  width: 205px;
  padding-left: 0;
  padding-right: 15px;
}
/* line 566, ../scss/module/_checkout-cart.scss */
.cart-table tr {
  border-bottom: 1px solid #C0C0C0;
}
/* line 570, ../scss/module/_checkout-cart.scss */
.cart-table .cart-item-row {
  border-bottom: 0;
}
/* line 575, ../scss/module/_checkout-cart.scss */
.cart-table tfoot tr {
  background: none;
}
/* line 579, ../scss/module/_checkout-cart.scss */
.cart-table tfoot tr > td:after {
  content: '';
  display: table;
  clear: both;
}
/* line 584, ../scss/module/_checkout-cart.scss */
.cart-table tfoot {
  display: none;
}
/* line 588, ../scss/module/_checkout-cart.scss */
.cart-table span.or {
  font-size: 9px;
  padding: 0 5px;
  text-transform: uppercase;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}
/* line 595, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-image .cart-links,
.cart-table .product-cart-info .btn-remove {
  display: none;
}
/* line 600, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-image {
  padding-left: 0;
  padding-right: 15px;
  width: 101px;
  border-bottom: 1px solid #C0C0C0;
}
/* line 605, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-image .overlay-holder-v2 {
  top: 2px;
}
/* line 607, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-image .overlay-holder-v2 .badge {
  margin: 1px 0 1px 3px;
}
/* line 610, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-image .overlay-holder-v2 .badge .badge-inner span {
  display: none;
}
/* line 612, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-image .overlay-holder-v2 .badge .badge-inner span.mini {
  display: inline-block;
}
/* line 619, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-image img {
  width: 100px;
}
/* line 623, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-image a.cart-edit {
  display: none;
}
/* line 628, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-sku {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-style: italic;
  font-size: 14px;
  margin: 5px 0 12px;
}
/* line 634, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-sku .label {
  font-weight: 600;
}
/* line 639, ../scss/module/_checkout-cart.scss */
.cart-table .btn-empty {
  float: left;
}
/* line 643, ../scss/module/_checkout-cart.scss */
.cart-table .desktop-remove-item {
  padding-right: 0;
  text-align: right;
}
/* line 648, ../scss/module/_checkout-cart.scss */
.cart-table .remove-item-link {
  text-decoration: none;
  color: #373c3e;
}
/* line 654, ../scss/module/_checkout-cart.scss */
.cart-table .cart-total-head,
.cart-table .product-cart-total {
  text-align: right;
}
/* line 660, ../scss/module/_checkout-cart.scss */
.cart-table .original-price.crossed-out {
  color: #919799;
  text-decoration: line-through;
  display: block;
}
/* line 667, ../scss/module/_checkout-cart.scss */
.cart-table .bsa-addon-options .disabled-addon {
  /*color:$c-inactive-text;*/
}
/* line 672, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-price {
  text-align: center;
  padding: 20px 5px;
}
/* line 677, ../scss/module/_checkout-cart.scss */
.cart-table .cart-tax-total {
  position: relative;
  cursor: pointer;
}
/* line 681, ../scss/module/_checkout-cart.scss */
.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 #02b2e7;
  border-left: none;
  position: absolute;
  top: 3px;
  right: -11px;
}
/* line 689, ../scss/module/_checkout-cart.scss */
.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 #02b2e7;
  border-bottom: none;
  right: -15px;
  top: 6px;
}
/* line 697, ../scss/module/_checkout-cart.scss */
.cart-table .cart-links > li {
  white-space: nowrap;
  line-height: 1.3;
  margin-bottom: 5px;
  min-width: 65px;
  font-size: 16px;
}
/* line 703, ../scss/module/_checkout-cart.scss */
.cart-table .cart-links > li > a {
  display: none;
}
/* line 707, ../scss/module/_checkout-cart.scss */
.cart-table .cart-links > li:last-child {
  margin-bottom: 0;
}
/* line 712, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-actions {
  min-width: 60px;
  text-align: center;
}
/* line 716, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-actions .qty {
  /*height: 30px;
  border-color: $c-input-border;
  border-radius: 0;
  margin-bottom: 10px;
  text-align: center;
  width: 3.2em;*/
  background: #fff;
}
/* line 726, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-actions .button {
  margin-bottom: 5px;
}
/* line 731, ../scss/module/_checkout-cart.scss */
.cart-table .item-options {
  padding-left: 15px;
}
/* line 735, ../scss/module/_checkout-cart.scss */
.cart-table .price {
  font-size: 16px;
}
/* line 740, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-remove a {
  color: #373c3e;
  font-size: 16px;
  font-size: 16px;
  outline: none;
}
/* line 746, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-remove a:hover {
  text-decoration: none;
}

/* line 754, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-actions .btn-update {
  display: block;
  margin-top: -10px;
}
/* line 757, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-actions .btn-update span {
  font-size: 14px;
}

/* line 766, ../scss/module/_checkout-cart.scss */
body.ajaxify-cart-update .cart-table .product-cart-actions .btn-update {
  display: none;
}

@media only screen and (max-width: 768px) {
  /* line 776, ../scss/module/_checkout-cart.scss */
  .cart-table th {
    font-size: 14px;
  }
  /* line 780, ../scss/module/_checkout-cart.scss */
  .cart-table th,
  .cart-table td {
    padding: 7px 6px;
  }
  /* line 785, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-actions > li {
    white-space: inherit;
  }
}
@media only screen and (max-width: 699px) {
  /* line 794, ../scss/module/_checkout-cart.scss */
  .display-both-prices .cart-table thead th.cart-total-head,
  .display-both-prices .cart-table td.product-cart-total {
    display: none;
  }
}
/* ============================================ *
 * Checkout - Estimate Shipping and Tax
 * ============================================ */
/* line 811, ../scss/module/_checkout-cart.scss */
body.isFirefox .shipping .form-list .shipping-country .bsaStyledSelect,
body.isFirefox .shipping .form-list .shipping-region .bsaStyledSelect {
  padding-top: 9.5px;
  padding-bottom: 9.5px;
}
/* line 818, ../scss/module/_checkout-cart.scss */
body.isFirefox .shipping #co-shipping-method-form .bsaStyledSelect {
  padding-top: 9.5px;
  padding-bottom: 9.5px;
}

/* line 828, ../scss/module/_checkout-cart.scss */
.shipping h2 {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 5px;
}
/* line 834, ../scss/module/_checkout-cart.scss */
.shipping select {
  max-width: 100%;
  display: block;
  border: 1px solid #abb2b3;
}
/* line 840, ../scss/module/_checkout-cart.scss */
.shipping select.validation-failed {
  border-color: #DF280A;
}
/* line 844, ../scss/module/_checkout-cart.scss */
.shipping .shipping-desc {
  display: none;
}
/* line 848, ../scss/module/_checkout-cart.scss */
.shipping .buttons-set {
  border: none;
  margin: 0;
  padding: 0 0 16px 0;
}
/* line 855, ../scss/module/_checkout-cart.scss */
.shipping #co-shipping-method-form select[name="estimate_method"] {
  width: 100%;
  max-width: 285px;
  margin-top: 8px;
  margin-bottom: 20px;
  float: right;
}
/* line 865, ../scss/module/_checkout-cart.scss */
.shipping .form-list:after {
  content: '';
  display: table;
  clear: both;
}
/* line 868, ../scss/module/_checkout-cart.scss */
.shipping .form-list li {
  float: left;
  margin: 0 2% 10px 0;
}
/* line 873, ../scss/module/_checkout-cart.scss */
.shipping .form-list .shipping-country {
  width: 37%;
}
/* line 877, ../scss/module/_checkout-cart.scss */
.shipping .form-list .shipping-region {
  width: 41%;
}
/* line 881, ../scss/module/_checkout-cart.scss */
.shipping .form-list .shipping-postcode {
  margin-right: 0;
  width: 18%;
}
/* line 885, ../scss/module/_checkout-cart.scss */
.shipping .form-list .shipping-postcode input {
  /*   margin-top: 4px; */
}
/* line 890, ../scss/module/_checkout-cart.scss */
.shipping .form-list .input-box {
  padding-top: 0;
}
/* line 894, ../scss/module/_checkout-cart.scss */
.shipping .form-list input {
  /*   margin-top: 4px; */
}
/* line 898, ../scss/module/_checkout-cart.scss */
.shipping .form-list label {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}
/* line 907, ../scss/module/_checkout-cart.scss */
.shipping .sp-methods {
  padding: 10px 0 0;
  text-align: left;
}
/* line 911, ../scss/module/_checkout-cart.scss */
.shipping .sp-methods dd {
  margin-bottom: 12px;
  float: right;
}
/* line 916, ../scss/module/_checkout-cart.scss */
.shipping .sp-methods label {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-style: italic;
  min-width: 100px;
}
/* line 922, ../scss/module/_checkout-cart.scss */
.shipping .sp-methods label span {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
}
/* line 930, ../scss/module/_checkout-cart.scss */
.shipping #co-shipping-method-form .buttons-set .button {
  float: right;
  margin-left: 0;
}
/* line 935, ../scss/module/_checkout-cart.scss */
.shipping #cancel-shipping-form {
  margin-right: 5px;
}
/* line 939, ../scss/module/_checkout-cart.scss */
.shipping #co-shipping-method-form .sp-methods dd label {
  border: 1px solid #e1e1e0;
  background-color: #ededed;
  min-width: 220px;
}
/* line 944, ../scss/module/_checkout-cart.scss */
.shipping #co-shipping-method-form .sp-methods dd label:hover {
  background-color: gainsboro;
}

@media only screen and (max-width: 768px) {
  /* line 953, ../scss/module/_checkout-cart.scss */
  .shipping .shipping-form .form-list > li {
    width: 100%;
    float: none;
  }
  /* line 957, ../scss/module/_checkout-cart.scss */
  .shipping .shipping-form .form-list > li label {
    display: block;
  }
  /* line 961, ../scss/module/_checkout-cart.scss */
  .shipping .shipping-form .form-list > li input,
  .shipping .shipping-form .form-list > li select {
    width: 100%;
  }
  /* line 967, ../scss/module/_checkout-cart.scss */
  .shipping #co-shipping-method-form select[name="estimate_method"] {
    width: 100%;
    max-width: unset;
  }
  /* line 972, ../scss/module/_checkout-cart.scss */
  .shipping #co-shipping-method-form .buttons-set button {
    min-width: 47%;
  }
  /* line 975, ../scss/module/_checkout-cart.scss */
  .shipping #co-shipping-method-form .buttons-set #cancel-shipping-form {
    margin-right: 6%;
  }

  /* line 982, ../scss/module/_checkout-cart.scss */
  #apply-promo-code,
  #cancel-promo-code-link {
    min-width: 47%;
  }

  /* line 986, ../scss/module/_checkout-cart.scss */
  #discount-coupon-form {
    min-width: unset;
  }
  /* line 988, ../scss/module/_checkout-cart.scss */
  #discount-coupon-form .field-wrapper {
    width: 100%;
  }
  /* line 990, ../scss/module/_checkout-cart.scss */
  #discount-coupon-form .field-wrapper #coupon_code {
    width: 100%;
    max-width: unset;
  }
  /* line 994, ../scss/module/_checkout-cart.scss */
  #discount-coupon-form .field-wrapper #cancel-promo-code-link {
    float: left;
    margin-left: 0;
  }
  /* line 998, ../scss/module/_checkout-cart.scss */
  #discount-coupon-form .field-wrapper #coupon-oops {
    text-align: center;
    padding-right: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  /* line 1010, ../scss/module/_checkout-cart.scss */
  .shipping #co-shipping-method-form {
    padding-top: 10px;
  }
  /* line 1012, ../scss/module/_checkout-cart.scss */
  .shipping #co-shipping-method-form .buttons-set {
    padding-top: 12px;
  }
  /* line 1014, ../scss/module/_checkout-cart.scss */
  .shipping #co-shipping-method-form .buttons-set #cancel-shipping-form {
    margin-right: 0;
  }
}
/* line 1028, ../scss/module/_checkout-cart.scss */
.cart .cart-totals {
  text-align: right;
}
/* line 1032, ../scss/module/_checkout-cart.scss */
.cart .cart-totals #cart-grand-total-tr td {
  font-size: 21px;
}
/* line 1037, ../scss/module/_checkout-cart.scss */
.cart .cart-totals:after {
  content: '';
  display: table;
  clear: both;
}
/* line 1041, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  margin-bottom: 25px;
  text-transform: capitalize;
  width: 100%;
  border-bottom: 1px solid #e0e4e5;
  border-top: 1px solid #e0e4e5;
  display: table;
  padding: 10px 0;
}
/* line 1052, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table td {
  padding: 0;
  line-height: 150%;
  font-size: 16px;
}
/* line 1058, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table .authorizenet {
  width: 100%;
}
/* line 1060, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table .authorizenet img {
  float: right;
}
/* line 1064, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table .authorizenet-holder {
  width: 100%;
}
/* line 1067, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table .cart-price-right,
.cart .cart-totals table .cart-label-left {
  min-width: 70px;
}
/* line 1072, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table tbody,
.cart .cart-totals table tfoot {
  width: 100%;
  display: block;
}
/* line 1079, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table tbody tr.first td {
  padding-top: 10px;
}
/* line 1085, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table tfoot td {
  font-size: 21px;
  line-height: 1.5;
  padding: 0 0 6px 0;
  vertical-align: top;
  min-width: 80px;
}
/* line 1093, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table tfoot strong span,
.cart .cart-totals table tfoot span.price {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}
/* line 1099, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table tfoot strong span.price {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 1103, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table tfoot strong {
  font-size: 21px;
}

@media only screen and (max-width: 979px) {
  /* line 1111, ../scss/module/_checkout-cart.scss */
  .cart .cart-totals table {
    border-top: 0;
  }

  /* line 1114, ../scss/module/_checkout-cart.scss */
  .cart-totals {
    border: 1px solid #ECECEC;
  }

  /* line 1117, ../scss/module/_checkout-cart.scss */
  .cart-forms {
    margin-top: 0;
    margin-bottom: 25px;
  }

  /* line 1121, ../scss/module/_checkout-cart.scss */
  .cart-forms .discount {
    border: 1px solid #ECECEC;
  }

  /* line 1124, ../scss/module/_checkout-cart.scss */
  .hasShipping .cart-forms .discount {
    border-bottom: 0;
  }

  /* line 1127, ../scss/module/_checkout-cart.scss */
  .cart-forms .shipping {
    border-bottom: 1px solid #ECECEC;
  }

  /* line 1130, ../scss/module/_checkout-cart.scss */
  .checkout-types li {
    width: 50%;
  }

  /* line 1133, ../scss/module/_checkout-cart.scss */
  .checkout-types li.first {
    padding-right: 10px;
  }
}
@media only screen and (max-width: 830px) {
  /* line 1139, ../scss/module/_checkout-cart.scss */
  .checkout-types li {
    width: 100%;
  }

  /* line 1142, ../scss/module/_checkout-cart.scss */
  .checkout-types li.first {
    padding-right: 0;
  }
}
@media only screen and (max-width: 600px) {
  /* line 1149, ../scss/module/_checkout-cart.scss */
  .cart-totals {
    text-align: right;
  }

  /* line 1154, ../scss/module/_checkout-cart.scss */
  .cart .cart-totals table {
    border-top: 1px solid #e0e4e5;
  }

  /* line 1158, ../scss/module/_checkout-cart.scss */
  .cart-forms .shipping {
    border-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  /* line 1165, ../scss/module/_checkout-cart.scss */
  .cart .cart-totals table tfoot td {
    font-size: 21px;
  }
}
/* line 1174, ../scss/module/_checkout-cart.scss */
.discount-form:after,
#giftcard-form:after {
  content: '';
  display: table;
  clear: both;
}

/* line 1179, ../scss/module/_checkout-cart.scss */
#discount-coupon-form,
.cart .giftcard {
  width: 100%;
}
/* line 1183, ../scss/module/_checkout-cart.scss */
#discount-coupon-form h2,
.cart .giftcard h2 {
  display: none;
}
/* line 1187, ../scss/module/_checkout-cart.scss */
#discount-coupon-form label,
.cart .giftcard label {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
  min-width: 105px;
  display: inline-block;
  margin-right: 10px;
}
/* line 1198, ../scss/module/_checkout-cart.scss */
#discount-coupon-form .field-wrapper,
.cart .giftcard .field-wrapper {
  display: inline-block;
  float: right;
  line-height: 16px;
  font-size: 16px;
}
/* line 1205, ../scss/module/_checkout-cart.scss */
#discount-coupon-form .validation-advice,
.cart .giftcard .validation-advice {
  display: inline;
}
/* line 1209, ../scss/module/_checkout-cart.scss */
#discount-coupon-form .button-wrapper,
.cart .giftcard .button-wrapper {
  vertical-align: bottom;
}
/* line 1212, ../scss/module/_checkout-cart.scss */
#discount-coupon-form .button-wrapper > button,
.cart .giftcard .button-wrapper > button {
  float: right;
  line-height: 16px;
}
/* line 1216, ../scss/module/_checkout-cart.scss */
#discount-coupon-form .button-wrapper > button span,
.cart .giftcard .button-wrapper > button span {
  text-transform: capitalize;
  text-decoration: none;
  line-height: 16px;
  height: 16px;
}
/* line 1225, ../scss/module/_checkout-cart.scss */
#discount-coupon-form .input-text,
.cart .giftcard .input-text {
  border-radius: 4px;
  margin: 4px 10px 0 0;
  width: 190px;
}

/* line 1233, ../scss/module/_checkout-cart.scss */
.cart .giftcard p {
  margin-bottom: 7px;
}

/* line 1237, ../scss/module/_checkout-cart.scss */
.cart .giftcard .check-gc-status {
  float: left;
  padding: 0px;
}
/* line 1241, ../scss/module/_checkout-cart.scss */
.cart .giftcard .check-gc-status > span > span {
  font-size: 18px;
  text-transform: none;
}

/* ============================================ *
 * Checkout - Cart Update Locker
 * ============================================ */
/* line 1251, ../scss/module/_checkout-cart.scss */
.checkout-cart-index .cart-locker {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 999;
}
/* line 1262, ../scss/module/_checkout-cart.scss */
.checkout-cart-index.cart-updating .cart-locker {
  display: block;
}

/* ============================================ *
 * Checkout - Cart Cross sell
 * ============================================ */
/* line 1273, ../scss/module/_checkout-cart.scss */
.crosssell h2 {
  color: #02b2e7;
}
/* line 1277, ../scss/module/_checkout-cart.scss */
.crosssell .item a.product-image {
  width: auto;
  float: left;
}

/* Change the layout to 2 columns at a breakpoint that is higher than a 3 columns layout would normally break */
@media only screen and (max-width: 979px) {
  /* line 1285, ../scss/module/_checkout-cart.scss */
  .crosssell {
    /* Undo three-column config */
  }
  /* line 1286, ../scss/module/_checkout-cart.scss */
  .crosssell .products-grid > li:nth-child(even),
  .crosssell .products-grid > li:nth-child(3n),
  .crosssell .products-grid > li {
    width: 47.72727%;
    margin-right: 4.54545%;
  }
  /* line 1293, ../scss/module/_checkout-cart.scss */
  .crosssell .products-grid > li:nth-child(odd) {
    clear: left;
  }
  /* line 1297, ../scss/module/_checkout-cart.scss */
  .crosssell .products-grid > li:nth-child(even) {
    margin-right: 0;
  }
  /* line 1302, ../scss/module/_checkout-cart.scss */
  .crosssell .products-grid > li:nth-child(3n+1) {
    clear: none;
  }
}
@media only screen and (max-width: 600px) {
  /* line 1311, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-tax-total:after {
    right: -9px;
  }
  /* line 1315, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-tax-total.cart-tax-total-expanded:after {
    right: -13px;
  }
}
@media only screen and (max-width: 320px) {
  /* line 1326, ../scss/module/_checkout-cart.scss */
  .crosssell ul .item {
    padding: 0 0px 40px;
  }
  /* line 1330, ../scss/module/_checkout-cart.scss */
  .crosssell ul .product-details .crosssell-actions {
    padding: 0 5px;
  }
}
/* ============================================ *
 * Checkout - custom styles
 * ============================================ */
@media only screen and (max-width: 600px) {
  /* line 1342, ../scss/module/_checkout-cart.scss */
  .checkout-cart-index .col-main {
    margin-bottom: 0;
  }

  /* line 1346, ../scss/module/_checkout-cart.scss */
  .cart-wrapper-inner-inner {
    padding: 0;
  }

  /* line 1350, ../scss/module/_checkout-cart.scss */
  .cart-forms {
    margin-top: 0;
    margin-bottom: 0;
  }
  /* line 1354, ../scss/module/_checkout-cart.scss */
  .cart-forms .discount {
    padding: 20px 25px;
  }
  /* line 1358, ../scss/module/_checkout-cart.scss */
  .cart-forms .shipping {
    padding: 5px 25px 45px 25px;
  }

  /* line 1371, ../scss/module/_checkout-cart.scss */
  .cart-totals {
    margin-bottom: 0;
    padding: 0 25px;
  }

  /* line 1376, ../scss/module/_checkout-cart.scss */
  .cart-table {
    margin-top: 0;
    margin-bottom: 0;
  }
  /* line 1380, ../scss/module/_checkout-cart.scss */
  .cart-table .mobile-remove-item {
    display: block;
    width: 40px;
    position: relative;
    float: right;
    top: -54px;
    padding: 0;
    right: 12px;
  }
  /* line 1390, ../scss/module/_checkout-cart.scss */
  .cart-table .desktop-remove-item {
    display: none;
  }
  /* line 1394, ../scss/module/_checkout-cart.scss */
  .cart-table colgroup, .cart-table thead {
    display: none;
  }
  /* line 1398, ../scss/module/_checkout-cart.scss */
  .cart-table tr {
    display: block;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
    width: 100%;
  }
  /* line 1405, ../scss/module/_checkout-cart.scss */
  .cart-table tr:after {
    content: '';
    display: table;
    clear: both;
  }
  /* line 1409, ../scss/module/_checkout-cart.scss */
  .cart-table tr:last-child {
    margin-bottom: 0;
  }
  /* line 1414, ../scss/module/_checkout-cart.scss */
  .cart-table tfoot tr {
    padding-bottom: 0;
  }
  /* line 1418, ../scss/module/_checkout-cart.scss */
  .cart-table td {
    border: none;
    display: block;
  }
  /* line 1422, ../scss/module/_checkout-cart.scss */
  .cart-table td[data-rwd-label] {
    /* padding-left: 15px;
    margin-bottom: 6px; */
  }
  /* line 1426, ../scss/module/_checkout-cart.scss */
  .cart-table td[data-rwd-label] .price {
    font-weight: normal;
  }
  /* line 1430, ../scss/module/_checkout-cart.scss */
  .cart-table td[data-rwd-label]:before {
    /*   content: attr(data-rwd-label) ":"; */
    font-size: 14px;
    font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
    padding-right: 5px;
    text-transform: uppercase;
  }
  /* line 1439, ../scss/module/_checkout-cart.scss */
  .cart-table td.product-cart-price {
    text-align: left;
    float: right;
    position: relative;
    padding: 0;
    right: -13px;
  }
  /* line 1448, ../scss/module/_checkout-cart.scss */
  .cart-table h2 {
    font-size: 14px;
  }
  /* line 1452, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-links {
    padding-top: 5px;
    padding-right: 5px;
  }
  /* line 1456, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-links > li {
    white-space: normal;
    text-align: center;
  }
  /* line 1460, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-links > li > a {
    padding: 2px 0px;
  }
  /* line 1466, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-tax-info {
    font-style: italic;
    padding-left: 15px;
    font-size: 16px;
  }
  /* line 1471, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-tax-info .price {
    font-size: 16px;
  }
  /* line 1476, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-image {
    width: 130px;
    float: left;
    padding-left: 25px;
    padding-bottom: 0;
    border-bottom: 0;
  }
  /* line 1483, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-image a.cart-edit {
    display: block;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
  }
  /* line 1491, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-info,
  .cart-table td[data-rwd-label] {
    /*   float: right;
       width: percentage(3/4); */
  }
  /* line 1497, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-actions,
  .cart-table .product-cart-price {
    padding-bottom: 0;
    padding-top: 0;
  }
  /* line 1503, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-remove,
  .cart-table .product-cart-total,
  .cart-table .product-cart-actions .cart-links {
    display: none;
  }
  /* line 1509, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-image .cart-links,
  .cart-table .product-cart-info .btn-remove {
    display: block;
  }
  /* line 1515, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-actions .button {
    display: none;
  }
  /* line 1521, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-info .btn-remove {
    float: right;
    margin: -4px 0px 2px 7px;
  }
  /* line 1526, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-info .product-cart-sku {
    margin-bottom: 5px;
  }
  /* line 1531, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-actions {
    text-align: left;
  }
  /* line 1534, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-actions .qty {
    margin-right: 7px;
    margin-bottom: 7px;
  }
  /* line 1540, ../scss/module/_checkout-cart.scss */
  .cart-table .price,
  .cart-table .product-cart-price:before {
    font-weight: 500;
    font-size: 19px;
    font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  }
  /* line 1547, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-footer-actions {
    text-align: center;
    width: 100%;
  }
  /* line 1551, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-footer-actions #empty_cart_button {
    float: right;
  }
  /* line 1555, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-footer-actions .btn-continue {
    float: left;
  }
  /* line 1559, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-footer-actions .btn-update,
  .cart-table .cart-footer-actions span.or {
    display: none;
  }
  /* line 1566, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-credits {
    text-align: left;
    padding-top: 0;
    padding-left: 127px;
  }

  /* line 1577, ../scss/module/_checkout-cart.scss */
  .display-both-prices .cart-table td[data-rwd-tax-label]:before {
    content: attr(data-rwd-tax-label) ":";
  }

  /* line 1585, ../scss/module/_checkout-cart.scss */
  .checkout-types li.first {
    padding-right: 0;
  }

  /* line 1589, ../scss/module/_checkout-cart.scss */
  .checkout-types li {
    padding-left: 0;
  }

  /* line 1593, ../scss/module/_checkout-cart.scss */
  .cart-table .move-to-wishlist-td {
    padding: 0 0 0 30px;
    text-align: left;
  }

  /* line 1598, ../scss/module/_checkout-cart.scss */
  .btn-remove {
    background-image: none;
  }

  /* line 1603, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-remove {
    display: block;
  }
  /* line 1606, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-info {
    width: 95%;
  }
  /* line 1608, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-info .btn-remove {
    display: none;
  }
  /* line 1612, ../scss/module/_checkout-cart.scss */
  .cart-table .desktop-remove-item {
    display: none;
  }
  /* line 1615, ../scss/module/_checkout-cart.scss */
  .cart-table h2 {
    font-size: 16px;
  }

  /* line 1621, ../scss/module/_checkout-cart.scss */
  .cart .page-title {
    float: none;
    height: auto;
    margin: 0 auto;
    padding-top: 39px;
  }
  /* line 1627, ../scss/module/_checkout-cart.scss */
  .cart .page-title h1 {
    width: 100%;
  }
  /* line 1631, ../scss/module/_checkout-cart.scss */
  .cart .page-title h2 {
    font-size: 18px;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 0;
  }
  /* line 1638, ../scss/module/_checkout-cart.scss */
  .cart .page-title #cart-credits-available {
    float: left;
  }

  /* line 1644, ../scss/module/_checkout-cart.scss */
  .cart-totals {
    border-top: 0;
  }

  /* line 1647, ../scss/module/_checkout-cart.scss */
  .cart-forms .discount {
    border-bottom: 0;
  }

  /* line 1651, ../scss/module/_checkout-cart.scss */
  .cart-forms .discount .discount-inner {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 480px) {
  /* line 1659, ../scss/module/_checkout-cart.scss */
  .cart .page-title {
    float: none;
    height: auto;
    margin: 0 auto;
    padding: 25px 15px 14px 15px;
  }
  /* line 1665, ../scss/module/_checkout-cart.scss */
  .cart .page-title h1 {
    font-size: 24px;
    width: 100%;
  }
  /* line 1670, ../scss/module/_checkout-cart.scss */
  .cart .page-title h2 {
    font-size: 16px;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-left: 0;
  }
  /* line 1677, ../scss/module/_checkout-cart.scss */
  .cart .page-title #cart-credits-available {
    float: left;
  }

  /* line 1683, ../scss/module/_checkout-cart.scss */
  .cart-wrapper-inner {
    max-width: 100%;
    padding: 0;
  }

  /* line 1688, ../scss/module/_checkout-cart.scss */
  .display-single-price .cart-table {
    margin: 0;
    padding: 0 15px;
  }

  /* line 1693, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-image {
    width: 130px;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* line 1699, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-info {
    width: 100%;
  }

  /* line 1703, ../scss/module/_checkout-cart.scss */
  .cart-table .move-to-wishlist-td {
    padding: 0 0 0 15px;
  }

  /* line 1707, ../scss/module/_checkout-cart.scss */
  .cart-table .mobile-remove-item {
    right: 2px;
  }

  /* line 1711, ../scss/module/_checkout-cart.scss */
  .cart-table td.product-cart-price {
    right: -26px;
  }

  /* line 1715, ../scss/module/_checkout-cart.scss */
  .cart-forms .discount {
    padding: 20px 15px 16px 15px;
  }

  /* line 1719, ../scss/module/_checkout-cart.scss */
  .cart-forms .shipping {
    padding: 5px 15px 16px 15px;
  }

  /* line 1722, ../scss/module/_checkout-cart.scss */
  .cart-totals {
    padding: 0 15px;
  }

  /* line 1726, ../scss/module/_checkout-cart.scss */
  .shipping #cancel-shipping-form {
    margin-right: 0;
    margin-top: 16px;
  }

  /* line 1731, ../scss/module/_checkout-cart.scss */
  #cancel-promo-code-link {
    margin-top: 16px;
  }

  /* line 1735, ../scss/module/_checkout-cart.scss */
  .shipping .sp-methods dd {
    float: none;
  }

  /* line 1743, ../scss/module/_checkout-cart.scss */
  .cart-forms .shipping .shipping-form #shipping-zip-form button {
    margin-top: 7px;
  }

  /* line 1751, ../scss/module/_checkout-cart.scss */
  #co-shipping-method-form .sp-methods dd label {
    width: 100%;
  }

  /* line 1755, ../scss/module/_checkout-cart.scss */
  #discount-coupon-form .field-wrapper,
  #discount-coupon-form #coupon_code {
    width: 100%;
  }
}
/* ============================================ *
 * Checkout - One Page
 * ============================================ */
/* line 34, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-index #checkout-review-table .bsa-addon-options ul {
  list-style-type: disc;
  margin-left: 20px;
  font-size: 14px;
}
/* line 43, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-index .page-title {
  display: none;
}
/* line 46, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-index .checkout-subhead {
  background: #fff;
  text-align: center;
}
/* line 49, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-index .checkout-subhead .checkount-subhead-title {
  font-size: 36px;
  padding-top: 40px;
  margin-bottom: 0;
  color: #373c3e;
}
/* line 54, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-index .checkout-subhead .checkount-subhead-title .icon-lock {
  font-size: 33px;
}
/* line 61, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-index .form-list .control label {
  background: transparent;
  padding-bottom: 0;
  padding-top: 0;
  padding-left: 20px;
}
/* line 69, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-index .form-list > li {
  margin-bottom: 0;
}
/* line 74, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-index .col-right .opc-block-progress .block-title {
  display: none;
}
/* line 77, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-index .col-right .opc-block-progress .block-content {
  border-bottom: 1px solid #d3d8d9;
  margin-top: 40px;
}
/* line 83, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-index #checkoutSteps {
  margin-top: 40px;
}
/* line 87, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-index #authnetcim_cc_type,
body.checkout-onepage-index #authnetcim_cc_number,
body.checkout-onepage-index #authnetcim_expiration {
  margin-bottom: 12px;
}

/* line 94, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .col-right,
.checkout-onepage-index .col-left {
  display: none;
}

/* line 99, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .col-main {
  width: auto;
  float: none;
}

@media only screen and (min-width: 980px) {
  /* line 106, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index .col-main {
    float: left;
    width: 68.75%;
    padding-right: 30px;
  }
  /* line 112, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index .col-right,
  .checkout-onepage-index .col-left {
    width: 31.25%;
    display: block;
  }
  /* line 118, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index .col-right {
    padding-left: 0;
  }
}
@media only screen and (max-width: 979px) {
  /* line 126, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index .col-main {
    padding: 0;
  }
}
/* line 133, ../scss/module/_checkout-onepage.scss */
.opc select {
  width: 365px;
}

/* line 141, ../scss/module/_checkout-onepage.scss */
#co-payment-form .authnetcim_new .input-box select {
  height: 40px;
}
/* line 144, ../scss/module/_checkout-onepage.scss */
#co-payment-form .authnetcim_new .input-box .authnetcim_cc_exp_year {
  margin-left: 6px;
}
/* line 150, ../scss/module/_checkout-onepage.scss */
#co-payment-form #authnetcim_cc_type_cvv_div .input-box {
  margin-left: 6px;
}
/* line 153, ../scss/module/_checkout-onepage.scss */
#co-payment-form #authnetcim_cc_type_cvv_div label {
  margin-left: 12px;
}
/* line 156, ../scss/module/_checkout-onepage.scss */
#co-payment-form #authnetcim_cc_type_cvv_div input {
  height: 40px;
  width: 80px !important;
}
/* line 162, ../scss/module/_checkout-onepage.scss */
#co-payment-form #authnetcim_cc_number_div .input-box {
  margin-left: 12px;
}
/* line 165, ../scss/module/_checkout-onepage.scss */
#co-payment-form #authnetcim_cc_number_div label {
  margin-left: 12px;
}
/* line 168, ../scss/module/_checkout-onepage.scss */
#co-payment-form #authnetcim_cc_number_div input {
  height: 40px;
}
/* line 172, ../scss/module/_checkout-onepage.scss */
#co-payment-form #authnetcim_cc_exp_year {
  margin-left: 6px;
}
/* line 175, ../scss/module/_checkout-onepage.scss */
#co-payment-form .authnetcim_new_cl {
  clear: left;
}
/* line 177, ../scss/module/_checkout-onepage.scss */
#co-payment-form .authnetcim_new_cl #different-card {
  margin-bottom: 30px;
}
@media only screen and (max-width: 480px) {
  /* line 185, ../scss/module/_checkout-onepage.scss */
  #co-payment-form #authnetcim_cc_number_div .input-box,
  #co-payment-form #authnetcim_cc_type_cvv_div .input-box {
    margin-left: 0;
  }
  /* line 188, ../scss/module/_checkout-onepage.scss */
  #co-payment-form #authnetcim_cc_number_div label,
  #co-payment-form #authnetcim_cc_type_cvv_div label {
    margin-left: 0;
  }
  /* line 192, ../scss/module/_checkout-onepage.scss */
  #co-payment-form .authnetcim_new > .authnetcim_new_cl {
    padding-top: 12px;
  }
  /* line 195, ../scss/module/_checkout-onepage.scss */
  #co-payment-form #authnetcim_cc_type_cvv_div {
    padding-top: 12px;
  }
  /* line 198, ../scss/module/_checkout-onepage.scss */
  #co-payment-form .sp-methods select.year {
    width: 97%;
  }
  /* line 202, ../scss/module/_checkout-onepage.scss */
  #co-payment-form #co-payment-form #authnetcim_cc_exp_year {
    margin-left: 13px;
  }
}

/* -------------------------------------------- *
 * Section Styling - Default
 */
/* line 213, ../scss/module/_checkout-onepage.scss */
#opc-review .step-title {
  border-bottom: 1px solid #d3d8d9;
}

/* line 217, ../scss/module/_checkout-onepage.scss */
.opc .section .step-title {
  width: 100%;
  border-top: 1px solid #d3d8d9;
  position: relative;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
/* line 223, ../scss/module/_checkout-onepage.scss */
.opc .section .step-title:after {
  content: '';
  display: table;
  clear: both;
}
/* line 227, ../scss/module/_checkout-onepage.scss */
.opc .section .step-title a {
  font-size: 16px;
}

/* line 232, ../scss/module/_checkout-onepage.scss */
.opc .section.allow:not(.active) .step-title {
  cursor: pointer;
}

/* line 236, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index {
  /*#dt_method_authnetcim {
    display: none;
  }*/
}
/* line 237, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index select {
  margin-top: 0;
  margin-bottom: 0;
}
/* line 242, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .fields.zip-country,
.checkout-onepage-index .fields.city-state,
.checkout-onepage-index .fields.company-phone,
.checkout-onepage-index .customer-name-middlename {
  width: 100%;
  clear: both;
  overflow: hidden;
}
/* line 249, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .fields.zip-country .field,
.checkout-onepage-index .fields.city-state .field,
.checkout-onepage-index .fields.company-phone .field,
.checkout-onepage-index .customer-name-middlename .field {
  width: 50%;
  float: left;
}
/* line 252, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .fields.zip-country .field label,
.checkout-onepage-index .fields.city-state .field label,
.checkout-onepage-index .fields.company-phone .field label,
.checkout-onepage-index .customer-name-middlename .field label {
  float: left;
  display: none;
  height: 0;
}
/* line 259, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .fields.zip-country .field.fax, .checkout-onepage-index .fields.zip-country .field.name-middlename,
.checkout-onepage-index .fields.city-state .field.fax,
.checkout-onepage-index .fields.city-state .field.name-middlename,
.checkout-onepage-index .fields.company-phone .field.fax,
.checkout-onepage-index .fields.company-phone .field.name-middlename,
.checkout-onepage-index .customer-name-middlename .field.fax,
.checkout-onepage-index .customer-name-middlename .field.name-middlename {
  display: none;
}
/* line 267, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .street-address label,
.checkout-onepage-index .street-address2 label {
  display: none;
}
/* line 271, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .wide.street-address,
.checkout-onepage-index .wide.street-address2 {
  width: 50%;
  float: left;
}
/* line 276, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #payment-buttons-container,
.checkout-onepage-index #shipping-buttons-container,
.checkout-onepage-index #co-shipping-method-form #shipping-method-buttons-container,
.checkout-onepage-index #billing-buttons-container {
  text-align: center;
  position: relative;
}
/* line 282, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #payment-buttons-container .back-link,
.checkout-onepage-index #shipping-buttons-container .back-link,
.checkout-onepage-index #co-shipping-method-form #shipping-method-buttons-container .back-link,
.checkout-onepage-index #billing-buttons-container .back-link {
  position: absolute;
  right: 0;
}
/* line 286, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #payment-buttons-container button,
.checkout-onepage-index #shipping-buttons-container button,
.checkout-onepage-index #co-shipping-method-form #shipping-method-buttons-container button,
.checkout-onepage-index #billing-buttons-container button {
  display: block;
  float: none;
  margin: 0 auto;
}
/* line 292, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #checkout-shipping-method-load,
.checkout-onepage-index .billing-address-select-wrap,
.checkout-onepage-index .shipping-address-select-wrap {
  width: 50%;
  padding-right: 7px;
}
/* line 298, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #billing-address-select,
.checkout-onepage-index #shipping-address-select {
  margin-bottom: 20px;
}
/* line 302, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .form-list .control input.radio #billing {
  margin-top: 20px;
}
/* line 306, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .form-list .control input.radio,
.checkout-onepage-index .form-list .control input.checkbox {
  margin-left: 0;
  margin-top: 2px;
}
/* line 312, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .form-list .control label {
  font-size: 16px;
}
/* line 317, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #billing-new-address-form,
.checkout-onepage-index #shipping-new-address-form {
  width: 100%;
  display: block;
}
/* line 322, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #billing-new-address-form input[type=text],
.checkout-onepage-index #billing-new-address-form input[type=tel],
.checkout-onepage-index #shipping-new-address-form input[type=text],
.checkout-onepage-index #shipping-new-address-form input[type=tel] {
  margin-bottom: 0;
}
/* line 326, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #billing-new-address-form .form-list select,
.checkout-onepage-index #shipping-new-address-form .form-list select {
  margin-bottom: 0;
}
/* line 330, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #billing-new-address-form .fieldset .name-firstname,
.checkout-onepage-index #billing-new-address-form .fieldset .street-address,
.checkout-onepage-index #billing-new-address-form .fieldset .city,
.checkout-onepage-index #billing-new-address-form .fieldset .zip,
.checkout-onepage-index #billing-new-address-form .fieldset .company,
.checkout-onepage-index #billing-new-address-form .fieldset .phone,
.checkout-onepage-index #shipping-new-address-form .fieldset .name-firstname,
.checkout-onepage-index #shipping-new-address-form .fieldset .street-address,
.checkout-onepage-index #shipping-new-address-form .fieldset .city,
.checkout-onepage-index #shipping-new-address-form .fieldset .zip,
.checkout-onepage-index #shipping-new-address-form .fieldset .company,
.checkout-onepage-index #shipping-new-address-form .fieldset .phone {
  padding-right: 6px;
  margin-bottom: 12px;
}
/* line 339, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #billing-new-address-form .fieldset .name-lastname,
.checkout-onepage-index #billing-new-address-form .fieldset .street-address2,
.checkout-onepage-index #billing-new-address-form .fieldset .state,
.checkout-onepage-index #billing-new-address-form .fieldset .country,
.checkout-onepage-index #shipping-new-address-form .fieldset .name-lastname,
.checkout-onepage-index #shipping-new-address-form .fieldset .street-address2,
.checkout-onepage-index #shipping-new-address-form .fieldset .state,
.checkout-onepage-index #shipping-new-address-form .fieldset .country {
  padding-left: 6px;
  margin-bottom: 12px;
}
/* line 348, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .save-in-address-book-control {
  margin-bottom: 0;
  margin-top: 0;
}
/* line 353, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #billing-buttons-container,
.checkout-onepage-index #shipping-buttons-container,
.checkout-onepage-index #shipping-method-buttons-container,
.checkout-onepage-index #payment-buttons-container {
  border-top: 0;
}
/* line 358, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #billing-buttons-container button,
.checkout-onepage-index #shipping-buttons-container button,
.checkout-onepage-index #shipping-method-buttons-container button,
.checkout-onepage-index #payment-buttons-container button {
  width: 260px;
}
/* line 370, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #shipping-buttons-container,
.checkout-onepage-index #billing-buttons-container,
.checkout-onepage-index #shipping-method-buttons-container,
.checkout-onepage-index #payment-buttons-container {
  height: 89px;
}
/* line 378, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #co-shipping-method-form .buttons-set {
  border-top: 0;
}
/* line 387, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #payment_form_authnetcim {
  /*label {
    display: none;
  }*/
}
/* line 392, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #payment_form_authnetcim #authnetcim_save {
  float: left;
}
/* line 395, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #payment_form_authnetcim #authnetcim_save_label {
  display: block;
  float: left;
  padding-left: 20px;
}
/* line 400, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #payment_form_authnetcim #authnetcim_exp_container {
  width: 48.5%;
}
/* line 403, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #payment_form_authnetcim #authnetcim_cc_type_exp_div {
  clear: left;
  position: relative;
  left: 0;
  top: 0;
}
/* line 408, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #payment_form_authnetcim #authnetcim_cc_type_exp_div .input-box {
  position: relative;
  left: 0;
  top: 0;
}
/* line 412, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #payment_form_authnetcim #authnetcim_cc_type_exp_div .input-box .v-fix {
  position: relative;
  left: 0;
  top: 0;
}
/* line 420, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #checkout-review-submit {
  background: #fff;
}
/* line 423, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index #checkout-review-submit.terms-open #review-buttons-container {
  display: none;
}
/* line 428, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .agreement-content-wrapper {
  background: #fff;
  clear: both;
}
/* line 431, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .agreement-content-wrapper .agreement-content-wrapper-inner {
  padding: 15px;
}
/* line 433, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .agreement-content-wrapper .agreement-content-wrapper-inner .agreement-content {
  max-height: 300px;
  text-align: center;
}
/* line 436, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .agreement-content-wrapper .agreement-content-wrapper-inner .agreement-content h1 {
  color: #373c3e;
  font-size: 28px;
  margin-bottom: 0;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}
/* line 442, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .agreement-content-wrapper .agreement-content-wrapper-inner .agreement-content p {
  color: #777e80;
  font-size: 14px;
  line-height: 150%;
}
/* line 446, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .agreement-content-wrapper .agreement-content-wrapper-inner .agreement-content p.terms-date {
  font-size: 16px;
}
/* line 450, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .agreement-content-wrapper .agreement-content-wrapper-inner .agreement-content h2 {
  font-size: 21px;
  text-transform: none;
}
/* line 454, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .agreement-content-wrapper .agreement-content-wrapper-inner .agreement-content hr {
  border-width: 0;
  height: 1px;
  background: #d3d8d9;
  margin: 15px auto;
}
/* line 462, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .agreement-content-wrapper .button-wrapper {
  width: 100%;
  text-align: right;
}
/* line 467, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .checkout-agreements {
  position: relative;
  border-top: 1px solid #e0e4e5;
}
/* line 470, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .checkout-agreements .agree {
  text-align: right;
  width: 100%;
  padding: 20px 20px 20px 0;
  background: #FFF;
  max-width: 462px;
  float: right;
}
/* line 477, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .checkout-agreements .agree label {
  position: relative;
  top: 2px;
  width: 100%;
}
@media only screen and (max-width: 480px) {
  /* line 484, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index .checkout-agreements .agree {
    white-space: nowrap;
    padding: 20px 10px;
  }
  /* line 487, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index .checkout-agreements .agree label {
    white-space: normal;
    padding-right: 10px;
    font-size: 14px;
  }
}
/* line 495, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .checkout-agreements .agreement-content {
  max-width: 100%;
  background: #edf2f3;
  border: 1px solid #d3d8d9;
}
/* line 499, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .checkout-agreements .agreement-content h1 {
  font-size: 18px;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 503, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .checkout-agreements .agreement-content p {
  font-size: 12px;
  line-height: 1.2;
  margin-bottom: 10px;
}
/* line 509, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .checkout-agreements button {
  width: 200px;
}
@media screen and (max-width: 510px) {
  /* line 513, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index .checkout-agreements button {
    width: 125px;
  }
}

/* Using .no-touch since touch devices emulate hover, thereby making steps look active that are not */
/* line 525, ../scss/module/_checkout-onepage.scss */
.opc .section.active .step-title {
  /*border-bottom: 1px solid $c-divider-border;*/
}

/* line 529, ../scss/module/_checkout-onepage.scss */
.opc .section .step-title a {
  display: none;
}

/* line 533, ../scss/module/_checkout-onepage.scss */
.opc .section.allow:not(.active) .step-title a {
  display: block;
  float: right;
  line-height: 50px;
  height: 50px;
  padding: 0px 10px;
}

/* line 541, ../scss/module/_checkout-onepage.scss */
.no-touch .opc .section .step-title a:hover {
  text-decoration: none;
}

/* line 545, ../scss/module/_checkout-onepage.scss */
.opc .section .step-title .number,
.opc .section.allow.active .step-title .number,
.no-touch .opc .section.allow:hover .step-title .number {
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 26px;
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -13px;
}

/* line 559, ../scss/module/_checkout-onepage.scss */
.opc .section.allow.active .step-title .number,
.no-touch .opc .section.allow:hover .step-title .number {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}

/* line 564, ../scss/module/_checkout-onepage.scss */
.opc .section.allow .step-title h2 {
  color: #373c3e;
}

/* line 568, ../scss/module/_checkout-onepage.scss */
.opc .section.allow .step-title:hover h2,
.opc .section.active .step-title h2 {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}

/* line 573, ../scss/module/_checkout-onepage.scss */
.opc .section .step-title h2 {
  font-size: 21px;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  line-height: 21px;
  float: left;
  margin: 15px 4px 12px 36px;
}

/* line 581, ../scss/module/_checkout-onepage.scss */
.opc .section .step {
  padding: 0 0 0 38px;
}
/* line 583, ../scss/module/_checkout-onepage.scss */
.opc .section .step:after {
  content: '';
  display: table;
  clear: both;
}
@media only screen and (max-width: 979px) {
  /* line 581, ../scss/module/_checkout-onepage.scss */
  .opc .section .step {
    padding: 10px;
  }
}

/* line 592, ../scss/module/_checkout-onepage.scss */
.opc select {
  width: 100%;
}

/* line 597, ../scss/module/_checkout-onepage.scss */
body.isFirefox .opc select {
  padding-top: 9.5px;
  padding-bottom: 9.5px;
}

/* line 604, ../scss/module/_checkout-onepage.scss */
body.isIE .opc select {
  padding-top: 6px;
  padding-bottom: 6px;
}

/* line 610, ../scss/module/_checkout-onepage.scss */
.opc h3 {
  font-weight: 500;
}

/* line 614, ../scss/module/_checkout-onepage.scss */
.opc .buttons-set {
  text-align: left;
}
/* line 617, ../scss/module/_checkout-onepage.scss */
.opc .buttons-set button.button {
  float: left;
  margin-left: 0;
  margin-right: 10px;
  margin-bottom: 0;
}
/* line 623, ../scss/module/_checkout-onepage.scss */
.opc .buttons-set p.required {
  float: right;
  margin-left: 5px;
  margin-bottom: 0;
}
/* line 628, ../scss/module/_checkout-onepage.scss */
.opc .buttons-set .back-link {
  float: right;
  margin: 0;
}
/* line 632, ../scss/module/_checkout-onepage.scss */
.opc .buttons-set a {
  line-height: 20px;
  display: inline-block;
  padding: 5px 5px 5px 0;
}

@media only screen and (max-width: 480px) {
  /* line 642, ../scss/module/_checkout-onepage.scss */
  .opc .buttons-set .button + .buttons-set .button,
  .paypal-express-review .buttons-set .button + .buttons-set .button {
    margin-left: 0;
  }

  /* line 646, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index #billing-new-address-form .fieldset .phone {
    padding-right: 0;
  }
}
/* line 652, ../scss/module/_checkout-onepage.scss */
.opc #opc-login .step {
  padding: 0px;
}
/* line 656, ../scss/module/_checkout-onepage.scss */
.opc #opc-login .buttons-set {
  border-top: 0;
  padding-top: 5px;
}

@media only screen and (max-width: 770px) {
  /* line 663, ../scss/module/_checkout-onepage.scss */
  .opc #opc-login .description,
  .opc #opc-login p.required {
    display: none;
  }
}
/* line 669, ../scss/module/_checkout-onepage.scss */
#opc-payment .note {
  padding: 10px;
}

/* line 675, ../scss/module/_checkout-onepage.scss */
#opc-payment #payment-tool-tip .btn-close {
  display: none;
}
/* line 678, ../scss/module/_checkout-onepage.scss */
#opc-payment #payment-tool-tip #payment-tool-tip-img {
  padding-top: 30px;
}

/* -------------------------------------------- *
 * 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.
 */
/* line 691, ../scss/module/_checkout-onepage.scss */
.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;
}

/* line 696, ../scss/module/_checkout-onepage.scss */
.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;
}

/* line 700, ../scss/module/_checkout-onepage.scss */
.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) */
/* line 707, ../scss/module/_checkout-onepage.scss */
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;
}

/* line 712, ../scss/module/_checkout-onepage.scss */
body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section#opc-login .step-title .number {
  width: 0px;
  overflow: hidden;
}

/* line 717, ../scss/module/_checkout-onepage.scss */
body:not(.opc-has-progressed-from-login) .opc.opc-firststep-login .section#opc-login .step-title h2 {
  margin-left: 0px;
}

/* -------------------------------------------- *
 * Shipping and Payment methods
 */
/* line 725, ../scss/module/_checkout-onepage.scss */
.sp-methods {
  margin: 0 0 8px;
}
/* line 728, ../scss/module/_checkout-onepage.scss */
.sp-methods dt {
  clear: both;
  margin: 13px 0 5px;
  font-weight: bold;
}
/* line 733, ../scss/module/_checkout-onepage.scss */
.sp-methods dt:first-child {
  margin: 0 0 5px;
}
/* line 737, ../scss/module/_checkout-onepage.scss */
.sp-methods dd li {
  margin: 5px 0;
}
/* line 740, ../scss/module/_checkout-onepage.scss */
.sp-methods label img {
  float: left;
}
/* line 743, ../scss/module/_checkout-onepage.scss */
.sp-methods label a {
  margin-top: 6px;
  float: right;
  margin-left: 10px;
}
/* line 748, ../scss/module/_checkout-onepage.scss */
.sp-methods .price {
  font-weight: bold;
}
/* line 753, ../scss/module/_checkout-onepage.scss */
.sp-methods .form-list li {
  margin: 0 0 8px;
  width: 50%;
  float: left;
}
/* line 758, ../scss/module/_checkout-onepage.scss */
.sp-methods .form-list li .input-box .v-fix {
  margin-right: 0;
  width: 50%;
}
/* line 762, ../scss/module/_checkout-onepage.scss */
.sp-methods .form-list li.full-width {
  width: 100%;
}
/* line 766, ../scss/module/_checkout-onepage.scss */
.sp-methods .form-list .pi-left {
  padding-right: 6px;
}
/* line 769, ../scss/module/_checkout-onepage.scss */
.sp-methods .form-list .pi-right {
  padding-left: 6px;
}
/* line 773, ../scss/module/_checkout-onepage.scss */
.sp-methods select.month {
  width: 100%;
}
/* line 776, ../scss/module/_checkout-onepage.scss */
.sp-methods select.year {
  width: 100%;
}
/* line 779, ../scss/module/_checkout-onepage.scss */
.sp-methods input.cvv {
  width: 4em !important;
  margin-left: 5px;
  float: left;
}
/* line 784, ../scss/module/_checkout-onepage.scss */
.sp-methods #advice-validate-cc-exp-ccsave_expiration {
  max-width: 130px;
}
/* line 789, ../scss/module/_checkout-onepage.scss */
.sp-methods .checkmo-list li {
  margin: 0 0 5px;
  content: '';
  display: table;
  clear: both;
}
/* line 793, ../scss/module/_checkout-onepage.scss */
.sp-methods .checkmo-list label {
  width: 165px;
  padding-right: 15px;
  text-align: right;
  float: left;
}
/* line 799, ../scss/module/_checkout-onepage.scss */
.sp-methods .checkmo-list address {
  float: left;
}
@media only screen and (max-width: 480px) {
  /* line 788, ../scss/module/_checkout-onepage.scss */
  .sp-methods .checkmo-list {
    padding-left: 0;
  }
  /* line 806, ../scss/module/_checkout-onepage.scss */
  .sp-methods .checkmo-list label {
    width: 135px;
  }
}
/* line 812, ../scss/module/_checkout-onepage.scss */
.sp-methods .release-amounts {
  margin: 0.5em 0;
}
/* line 815, ../scss/module/_checkout-onepage.scss */
.sp-methods .release-amounts button {
  float: left;
  margin: 5px 10px 0 0;
}

/* One Page Checkout */
/* line 822, ../scss/module/_checkout-onepage.scss */
.block-progress {
  border: 0;
  margin: 0;
  border-left: 1px solid #e1e1e0;
  padding-left: 30px;
}
/* line 828, ../scss/module/_checkout-onepage.scss */
.block-progress .block-content {
  font-size: 16px;
}
/* line 831, ../scss/module/_checkout-onepage.scss */
.block-progress dt {
  font-size: 21px;
  line-height: 50px;
  font-weight: normal;
  color: #605a54;
  border-top: 1px solid #d3d8d9;
}
/* line 839, ../scss/module/_checkout-onepage.scss */
.block-progress dt.complete {
  color: #373c3e;
}
/* line 841, ../scss/module/_checkout-onepage.scss */
.block-progress dt.complete .changelink {
  float: right;
}
/* line 843, ../scss/module/_checkout-onepage.scss */
.block-progress dt.complete .changelink a {
  font-size: 16px;
}
/* line 848, ../scss/module/_checkout-onepage.scss */
.block-progress dd {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  color: #777e80;
  font-size: 16px;
  padding-bottom: 15px;
}
/* line 853, ../scss/module/_checkout-onepage.scss */
.block-progress dd address {
  line-height: 1.2;
}
/* line 858, ../scss/module/_checkout-onepage.scss */
.block-progress #payment-progress-opcheckout .subtitle {
  display: none;
}
/* line 864, ../scss/module/_checkout-onepage.scss */
.block-progress .payment-info dt {
  padding: 0;
  margin: 0 0 3px 0;
  color: #373c3e;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  text-transform: none;
  font-style: italic;
  float: left;
  clear: both;
  font-size: 16px;
  display: none;
}
/* line 876, ../scss/module/_checkout-onepage.scss */
.block-progress .payment-info dt:after {
  content: ': ';
}
/* line 881, ../scss/module/_checkout-onepage.scss */
.block-progress .payment-info dd {
  float: left;
  clear: both;
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 16px;
}
/* line 890, ../scss/module/_checkout-onepage.scss */
.block-progress .payment-info:after {
  content: '';
  display: table;
  clear: both;
}

@media only screen and (max-width: 979px) {
  /* line 898, ../scss/module/_checkout-onepage.scss */
  .block-progress dt {
    border-top: 0;
  }
}
/* review step */
/* line 906, ../scss/module/_checkout-onepage.scss */
#checkout-review-table .btn-remove img {
  display: none;
}
/* line 911, ../scss/module/_checkout-onepage.scss */
#checkout-review-table.data-table thead,
#checkout-review-table.data-table tbody {
  width: 100%;
}
/* line 914, ../scss/module/_checkout-onepage.scss */
#checkout-review-table.data-table thead tr,
#checkout-review-table.data-table tbody tr {
  width: 100%;
  border-bottom: 1px solid #C0C0C0;
  display: table-row;
}
/* line 922, ../scss/module/_checkout-onepage.scss */
#checkout-review-table.data-table thead th {
  border: 0;
}
/* line 927, ../scss/module/_checkout-onepage.scss */
#checkout-review-table.data-table tbody h3.product-name {
  line-height: 16px;
  margin-bottom: 0;
}
/* line 932, ../scss/module/_checkout-onepage.scss */
#checkout-review-table.data-table tfoot {
  padding: 10px 0;
  background: #FFF;
}
/* line 935, ../scss/module/_checkout-onepage.scss */
#checkout-review-table.data-table tfoot tr.first td {
  padding-top: 10px;
}
/* line 938, ../scss/module/_checkout-onepage.scss */
#checkout-review-table.data-table tfoot tr.last td {
  padding-bottom: 6px;
}
/* line 941, ../scss/module/_checkout-onepage.scss */
#checkout-review-table.data-table tfoot td {
  padding: 0;
  font-size: 16px;
}
/* line 944, ../scss/module/_checkout-onepage.scss */
#checkout-review-table.data-table tfoot td strong {
  font-size: 21px;
}
/* line 948, ../scss/module/_checkout-onepage.scss */
#checkout-review-table.data-table tfoot .authorizenet {
  padding-bottom: 10px;
}
/* line 950, ../scss/module/_checkout-onepage.scss */
#checkout-review-table.data-table tfoot .authorizenet .AuthorizeNetSeal {
  margin-left: 20px;
}
/* line 953, ../scss/module/_checkout-onepage.scss */
#checkout-review-table.data-table tfoot .authorizenet img {
  float: left;
}
/* line 957, ../scss/module/_checkout-onepage.scss */
#checkout-review-table.data-table tfoot .authorizenet-holder {
  display: none !important;
}
/* line 960, ../scss/module/_checkout-onepage.scss */
#checkout-review-table.data-table tfoot .cart-price-right {
  padding-right: 10px;
}
/* line 963, ../scss/module/_checkout-onepage.scss */
#checkout-review-table.data-table tfoot strong span.price {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 967, ../scss/module/_checkout-onepage.scss */
#checkout-review-table.data-table tfoot tr.summary-total td {
  text-align: right;
}
@media only screen and (max-width: 480px) {
  /* line 975, ../scss/module/_checkout-onepage.scss */
  #checkout-review-table.data-table tfoot tr {
    clear: both;
  }
  /* line 979, ../scss/module/_checkout-onepage.scss */
  #checkout-review-table.data-table tfoot .authorizenet .cart-price-right,
  #checkout-review-table.data-table tfoot .authorizenet .cart-label-left {
    width: auto !important;
  }
  /* line 985, ../scss/module/_checkout-onepage.scss */
  #checkout-review-table.data-table .linearize-table tfoot td {
    float: none;
  }
}

/* line 993, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-index .data-table tfoot tr {
  background: #FFF;
}
/* line 1000, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-index .data-table th.order-review-th {
  background: transparent;
  text-transform: capitalize;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 16px;
  padding: 10px 0;
}
/* line 1008, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-index .data-table td.order-review-td {
  border: 0;
  font-size: 16px;
  line-height: 16px;
}
/* line 1013, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-index .data-table th.order-review-product-column {
  font-size: 16px;
  line-height: 16px;
}
/* line 1017, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-index .data-table td.order-review-td-product {
  border: 0;
  line-height: 16px;
  padding: 10px 0;
  white-space: nowrap;
}
/* line 1024, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-index .data-table td.orc-td,
body.checkout-onepage-index .data-table td.ors-td,
body.checkout-onepage-index .data-table td.orq-td {
  padding: 10px 0;
}
/* line 1030, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-index .data-table th.orc-th,
body.checkout-onepage-index .data-table td.orc-td {
  width: 12%;
}
/* line 1035, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-index .data-table th.ors-th,
body.checkout-onepage-index .data-table td.ors-td {
  width: 12%;
  padding-right: 10px;
}
/* line 1041, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-index .data-table th.orq-th,
body.checkout-onepage-index .data-table td.orq-td {
  width: 5%;
}
/* line 1046, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-index .data-table tbody td .item-options {
  font-size: 16px;
}
@media screen and (max-width: 680px) {
  /* line 1051, ../scss/module/_checkout-onepage.scss */
  body.checkout-onepage-index .data-table tbody td .item-options {
    margin-left: 0;
  }
  /* line 1055, ../scss/module/_checkout-onepage.scss */
  body.checkout-onepage-index .item-options {
    font-size: 16px;
  }
  /* line 1057, ../scss/module/_checkout-onepage.scss */
  body.checkout-onepage-index .item-options dd {
    padding-left: 0;
  }
}
@media screen and (max-width: 620px) {
  /* line 1065, ../scss/module/_checkout-onepage.scss */
  body.checkout-onepage-index .data-table tbody td .item-options {
    display: none;
  }
  /* line 1068, ../scss/module/_checkout-onepage.scss */
  body.checkout-onepage-index .data-table td.order-review-td-product {
    white-space: normal;
  }
}
@media only screen and (max-width: 480px) {
  /* line 1076, ../scss/module/_checkout-onepage.scss */
  body.checkout-onepage-index #checkout-review-table.data-table tfoot .authorizenet .AuthorizeNetSeal #AuthorizeNetText {
    display: none;
  }
  /* line 1081, ../scss/module/_checkout-onepage.scss */
  body.checkout-onepage-index .data-table tfoot tr.first {
    height: 32px;
  }
  /* line 1084, ../scss/module/_checkout-onepage.scss */
  body.checkout-onepage-index .data-table th.orc-th,
  body.checkout-onepage-index .data-table td.orc-td {
    min-width: 30px;
  }
  /* line 1088, ../scss/module/_checkout-onepage.scss */
  body.checkout-onepage-index .data-table th.orq-th,
  body.checkout-onepage-index .data-table td.orq-td {
    min-width: 30px;
  }
  /* line 1092, ../scss/module/_checkout-onepage.scss */
  body.checkout-onepage-index .data-table th.ors-th,
  body.checkout-onepage-index .data-table td.ors-td {
    min-width: 60px;
  }
  /* line 1097, ../scss/module/_checkout-onepage.scss */
  body.checkout-onepage-index .data-table td.order-review-td-product {
    width: 100%;
  }
}
@media only screen and (max-width: 320px) {
  /* line 1104, ../scss/module/_checkout-onepage.scss */
  body.checkout-onepage-index #checkout-review-table.data-table {
    max-width: 290px !important;
  }
  /* line 1106, ../scss/module/_checkout-onepage.scss */
  body.checkout-onepage-index #checkout-review-table.data-table thead,
  body.checkout-onepage-index #checkout-review-table.data-table tbody,
  body.checkout-onepage-index #checkout-review-table.data-table tfoot {
    max-width: 290px !important;
  }
}

/* line 1119, ../scss/module/_checkout-onepage.scss */
#checkout-review-table-wrapper.noCreditProds .order-review-credit-column {
  opacity: 0;
}

/* line 1124, ../scss/module/_checkout-onepage.scss */
#checkout-review-table-wrapper {
  clear: both;
}

/* line 1128, ../scss/module/_checkout-onepage.scss */
#review-buttons-container {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
  border-top: 0;
  padding-bottom: 20px;
}
/* line 1134, ../scss/module/_checkout-onepage.scss */
#review-buttons-container .btn-checkout {
  min-width: 220px;
  float: right;
}
/* line 1138, ../scss/module/_checkout-onepage.scss */
#review-buttons-container .please-wait {
  float: left;
  margin-right: 10px;
}
/* line 1142, ../scss/module/_checkout-onepage.scss */
#review-buttons-container .f-left {
  float: left;
}

@media only screen and (max-width: 600px) {
  /* line 1149, ../scss/module/_checkout-onepage.scss */
  .linearize-table-large.checkout-review-table thead tr:nth-child(1n+2) {
    display: none;
  }

  /* line 1152, ../scss/module/_checkout-onepage.scss */
  #review-buttons-container {
    margin: 0;
    padding: 20px;
  }
  /* line 1155, ../scss/module/_checkout-onepage.scss */
  #review-buttons-container .btn-checkout {
    float: none;
  }

  /* line 1161, ../scss/module/_checkout-onepage.scss */
  body.checkout-onepage-index .data-table th.order-review-th,
  body.checkout-onepage-index .data-table td.order-review-td,
  body.checkout-onepage-index .data-table th.order-review-product-column,
  body.checkout-onepage-index .data-table td.order-review-td-product {
    font-size: 14px;
    line-height: 14px;
  }
}
@media only screen and (max-width: 480px) {
  /* line 1175, ../scss/module/_checkout-onepage.scss */
  .linearize-table.checkout-review-table thead tr:nth-child(1n+2) {
    display: none;
  }

  /* line 1179, ../scss/module/_checkout-onepage.scss */
  body.checkout-onepage-index .data-table th.order-review-th {
    width: 12%;
  }
  /* line 1182, ../scss/module/_checkout-onepage.scss */
  body.checkout-onepage-index .data-table th.order-review-product-column {
    width: 64%;
  }
  /* line 1185, ../scss/module/_checkout-onepage.scss */
  body.checkout-onepage-index .data-table th.orq-th {
    width: 5%;
    text-align: right;
  }
}
/* show/hide "change" link for progress step depend on complete status
 * should be placed in .css file */
/* line 1195, ../scss/module/_checkout-onepage.scss */
.opc-block-progress dt.complete a,
.opc-block-progress dt.complete .separator {
  display: inline;
}

/* line 1200, ../scss/module/_checkout-onepage.scss */
.opc-block-progress dt.complete .separator {
  display: none;
}

/* line 1204, ../scss/module/_checkout-onepage.scss */
.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: */
/* line 1210, ../scss/module/_checkout-onepage.scss */
#checkout-step-review .opc-block-progress {
  border-left: none;
  padding-left: 0;
}
/* line 1214, ../scss/module/_checkout-onepage.scss */
#checkout-step-review .opc-block-progress .block-title {
  display: none;
}
/* line 1217, ../scss/module/_checkout-onepage.scss */
#checkout-step-review .opc-block-progress .block-content {
  display: block !important;
  padding: 0;
}
/* line 1222, ../scss/module/_checkout-onepage.scss */
#checkout-step-review .opc-block-progress .block-content > dl > div {
  float: left;
  width: 50%;
}
@media only screen and (max-width: 480px) {
  /* line 1228, ../scss/module/_checkout-onepage.scss */
  #checkout-step-review .opc-block-progress .block-content > dl > div {
    float: left;
    width: 50%;
  }
}
/* line 1234, ../scss/module/_checkout-onepage.scss */
#checkout-step-review .opc-block-progress .block-content .changelink {
  display: none;
}

@media only screen and (max-width: 480px) {
  /* line 1241, ../scss/module/_checkout-onepage.scss */
  #checkout-review-table thead > tr > th,
  #checkout-review-table tbody > tr > td {
    padding: 0;
    font-size: 14px;
    line-height: 14px;
    padding-top: 12px;
    padding-bottom: 8px;
  }

  /* line 1249, ../scss/module/_checkout-onepage.scss */
  #checkout-review-table.data-table tfoot td {
    font-size: 14px;
  }

  /* line 1252, ../scss/module/_checkout-onepage.scss */
  #checkout-review-table.data-table tbody h3.product-name {
    font-weight: normal;
    font-size: 14px;
  }

  /* line 1256, ../scss/module/_checkout-onepage.scss */
  #checkout-review-table.data-table tfoot td strong {
    font-size: 16px;
  }

  /* line 1259, ../scss/module/_checkout-onepage.scss */
  #checkout-review-table tbody > tr > td.ors-td {
    padding-right: 10px;
  }

  /* line 1262, ../scss/module/_checkout-onepage.scss */
  .linearize-table tbody td[data-rwd-label] {
    text-align: right;
  }

  /* line 1267, ../scss/module/_checkout-onepage.scss */
  .linearize-table tbody td {
    padding: 10px 0 4px 0;
    font-size: 14px;
  }

  /* line 1271, ../scss/module/_checkout-onepage.scss */
  .linearize-table th,
  .linearize-table td {
    display: table-cell;
  }

  /* line 1275, ../scss/module/_checkout-onepage.scss */
  .linearize-table thead th:nth-child(1n+2) {
    display: table-cell;
  }

  /* line 1278, ../scss/module/_checkout-onepage.scss */
  .linearize-table tbody td[data-rwd-label]:before {
    display: none;
  }

  /* line 1281, ../scss/module/_checkout-onepage.scss */
  .linearize-table tfoot td:nth-child(odd) {
    width: 70%;
    padding: 4px 0;
    font-size: 14px;
  }

  /* line 1286, ../scss/module/_checkout-onepage.scss */
  .linearize-table tfoot td:nth-child(even) {
    width: 30%;
    font-size: 14px;
    padding: 4px 2px 4px 0;
    text-align: right;
  }

  /* line 1292, ../scss/module/_checkout-onepage.scss */
  #review-buttons-container .btn-checkout {
    float: none;
  }

  /* line 1295, ../scss/module/_checkout-onepage.scss */
  .linearize-table tfoot tr {
    display: table-row !important;
    text-align: left;
  }

  /* line 1299, ../scss/module/_checkout-onepage.scss */
  .linearize-table tfoot td {
    display: table-cell;
    float: none;
  }
}
/* line 1306, ../scss/module/_checkout-onepage.scss */
#checkout-step-review .centinel > p {
  margin-bottom: 10px;
}
/* line 1310, ../scss/module/_checkout-onepage.scss */
#checkout-step-review .centinel iframe {
  width: 100%;
  min-height: 400px;
}

/* Gift options */
/* line 1318, ../scss/module/_checkout-onepage.scss */
.gift-messages-form .item {
  content: '';
  display: table;
  clear: both;
  margin-top: 25px;
}
/* line 1322, ../scss/module/_checkout-onepage.scss */
.gift-messages-form .item h5 {
  font-weight: bold;
}
/* line 1326, ../scss/module/_checkout-onepage.scss */
.gift-messages-form .item .product-img-box {
  width: auto;
  float: left;
  padding-right: 15px;
}
/* line 1332, ../scss/module/_checkout-onepage.scss */
.gift-messages-form .item .details {
  float: left;
}

/* line 1340, ../scss/module/_checkout-onepage.scss */
.gift-message-form .inner-box > div {
  content: '';
  display: table;
  clear: both;
  width: 100%;
  margin-top: 15px;
  display: block;
}
/* line 1347, ../scss/module/_checkout-onepage.scss */
.gift-message-form .inner-box > div.extra-options-container p {
  margin-bottom: 15px;
}
/* line 1355, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-wrapping-form label {
  margin-right: 10px;
}
/* line 1359, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-wrapping-form img {
  float: left;
}
/* line 1363, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-wrapping-form .gift-wrapping-design {
  height: 75px;
}
/* line 1366, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-wrapping-form .gift-wrapping-design:after {
  content: '';
  display: table;
  clear: both;
}
/* line 1370, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-wrapping-form .gift-wrapping-design .image-box {
  margin-right: 5px;
}
/* line 1376, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px #ECECEC;
}
/* line 1381, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-item:after {
  content: '';
  display: table;
  clear: both;
}
/* line 1385, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-item .product-img-box {
  width: 200px;
}
/* line 1388, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-item .product-img-box .product-image {
  width: 75px;
  margin-left: auto;
  margin-right: auto;
}
/* line 1394, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-item .product-img-box .product-name {
  display: block;
}
/* line 1399, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-item .fieldset {
  margin-left: 200px;
}

@media only screen and (max-width: 770px) {
  /* line 1408, ../scss/module/_checkout-onepage.scss */
  .gift-message-form .giftmessage-area {
    max-width: 100%;
  }
  /* line 1413, ../scss/module/_checkout-onepage.scss */
  .gift-message-form .gift-item .product-img-box {
    width: 100%;
    float: none;
  }
  /* line 1418, ../scss/module/_checkout-onepage.scss */
  .gift-message-form .gift-item .fieldset {
    margin-left: 0px;
  }
  /* line 1421, ../scss/module/_checkout-onepage.scss */
  .gift-message-form .gift-item .fieldset textarea {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  /* line 1432, ../scss/module/_checkout-onepage.scss */
  .opc .section .step-title h2 {
    margin: 15px 4px 15px 20px;
  }
  /* line 1436, ../scss/module/_checkout-onepage.scss */
  .opc .section .step {
    padding: 0 0 10px 0;
  }

  /* line 1440, ../scss/module/_checkout-onepage.scss */
  .opc .section .step-title .number,
  .opc .section.allow.active .step-title .number,
  .no-touch .opc .section.allow:hover .step-title .number {
    left: -6px;
  }

  /* line 1447, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index #checkout-shipping-method-load,
  .checkout-onepage-index .billing-address-select-wrap,
  .checkout-onepage-index .shipping-address-select-wrap {
    width: 100%;
    padding-right: 0;
    padding-top: 6px;
  }
  /* line 1454, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index #billing-address-select,
  .checkout-onepage-index #shipping-address-select {
    margin-bottom: 25px;
  }
  /* line 1458, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index .fields.zip-country .field,
  .checkout-onepage-index .fields.city-state .field,
  .checkout-onepage-index .fields.company-phone .field,
  .checkout-onepage-index .customer-name-middlename .field {
    width: 100%;
    float: none;
    clear: left;
  }
  /* line 1475, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index #billing-new-address-form .fieldset .street-address input,
  .checkout-onepage-index #billing-new-address-form .fieldset .street-address2 input,
  .checkout-onepage-index #billing-new-address-form .fieldset .city input,
  .checkout-onepage-index #billing-new-address-form .fieldset .zip input,
  .checkout-onepage-index #billing-new-address-form .fieldset .company input,
  .checkout-onepage-index #billing-new-address-form .fieldset .phone input,
  .checkout-onepage-index #shipping-new-address-form .fieldset .street-address input,
  .checkout-onepage-index #shipping-new-address-form .fieldset .street-address2 input,
  .checkout-onepage-index #shipping-new-address-form .fieldset .city input,
  .checkout-onepage-index #shipping-new-address-form .fieldset .zip input,
  .checkout-onepage-index #shipping-new-address-form .fieldset .company input,
  .checkout-onepage-index #shipping-new-address-form .fieldset .phone input {
    padding-left: 30px;
  }
  /* line 1480, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index #billing-new-address-form .fieldset .company input,
  .checkout-onepage-index #shipping-new-address-form .fieldset .company input {
    margin-bottom: 6px;
  }
  /* line 1485, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index #billing-new-address-form .fieldset .name-firstname,
  .checkout-onepage-index #billing-new-address-form .fieldset .street-address,
  .checkout-onepage-index #billing-new-address-form .fieldset .city,
  .checkout-onepage-index #billing-new-address-form .fieldset .zip,
  .checkout-onepage-index #billing-new-address-form .fieldset .company,
  .checkout-onepage-index #shipping-new-address-form .fieldset .name-firstname,
  .checkout-onepage-index #shipping-new-address-form .fieldset .street-address,
  .checkout-onepage-index #shipping-new-address-form .fieldset .city,
  .checkout-onepage-index #shipping-new-address-form .fieldset .zip,
  .checkout-onepage-index #shipping-new-address-form .fieldset .company {
    padding-right: 0;
  }
  /* line 1497, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index #billing-new-address-form .fieldset .name-lastname,
  .checkout-onepage-index #billing-new-address-form .fieldset .street-address2,
  .checkout-onepage-index #billing-new-address-form .fieldset .state,
  .checkout-onepage-index #billing-new-address-form .fieldset .country,
  .checkout-onepage-index #billing-new-address-form .fieldset .phone,
  .checkout-onepage-index #shipping-new-address-form .fieldset .name-lastname,
  .checkout-onepage-index #shipping-new-address-form .fieldset .street-address2,
  .checkout-onepage-index #shipping-new-address-form .fieldset .state,
  .checkout-onepage-index #shipping-new-address-form .fieldset .country,
  .checkout-onepage-index #shipping-new-address-form .fieldset .phone {
    padding-left: 0;
  }
  /* line 1509, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index .wide.street-address,
  .checkout-onepage-index .wide.street-address2 {
    width: 100%;
  }
  /* line 1513, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index .save-in-address-book-control {
    margin-top: 3px;
  }
  /* line 1516, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index .save-in-address-book-control2 {
    margin-top: 19px;
  }
  /* line 1519, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index #shipping-buttons-container,
  .checkout-onepage-index #billing-buttons-container,
  .checkout-onepage-index #shipping-method-buttons-container,
  .checkout-onepage-index #payment-buttons-container {
    height: 74px;
  }
  /* line 1525, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index #shipping-buttons-container {
    margin-top: 0;
    padding-top: 10px;
  }
  /* line 1529, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index #billing-buttons-container button,
  .checkout-onepage-index #shipping-buttons-container button,
  .checkout-onepage-index #shipping-method-buttons-container button,
  .checkout-onepage-index #payment-buttons-container button {
    width: 100%;
  }
  /* line 1536, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index #payment_form_authnetcim #authnetcim_exp_container {
    width: 50%;
  }

  /* line 1542, ../scss/module/_checkout-onepage.scss */
  .buttons-set {
    padding-top: 15px;
  }

  /* line 1547, ../scss/module/_checkout-onepage.scss */
  .sp-methods .form-list li {
    width: 100%;
  }
  /* line 1549, ../scss/module/_checkout-onepage.scss */
  .sp-methods .form-list li .input-box .pi-left {
    padding-right: 6px;
  }
  /* line 1552, ../scss/module/_checkout-onepage.scss */
  .sp-methods .form-list li .input-box .pi-right {
    padding-left: 6px;
  }
  /* line 1556, ../scss/module/_checkout-onepage.scss */
  .sp-methods .form-list .pi-left {
    padding-right: 0;
  }
  /* line 1559, ../scss/module/_checkout-onepage.scss */
  .sp-methods .form-list .pi-right {
    padding-left: 0;
  }
  /* line 1563, ../scss/module/_checkout-onepage.scss */
  .sp-methods input.cvv {
    margin-left: 0;
  }

  /* line 1567, ../scss/module/_checkout-onepage.scss */
  .block-progress dd {
    font-size: 14px;
    border-bottom: 0;
    line-height: 1.2;
    padding-bottom: 0;
  }

  /* line 1573, ../scss/module/_checkout-onepage.scss */
  .block-progress .payment-info dd {
    font-size: 14px;
    border-bottom: 0;
    line-height: 1.2;
  }

  /* line 1578, ../scss/module/_checkout-onepage.scss */
  .block-progress dt {
    font-size: 14px;
    font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    border-bottom: 0;
    border-top: 0;
  }

  /* line 1585, ../scss/module/_checkout-onepage.scss */
  #billing-progress-opcheckout,
  #shipping_method-progress-opcheckout {
    padding-right: 12px;
  }

  /* line 1589, ../scss/module/_checkout-onepage.scss */
  #billing-progress-opcheckout,
  #shipping-progress-opcheckout {
    height: 111px;
    margin-bottom: 25px;
  }

  /* line 1594, ../scss/module/_checkout-onepage.scss */
  #payment-progress-opcheckout,
  #shipping_method-progress-opcheckout {
    margin-bottom: 25px;
  }

  /* line 1598, ../scss/module/_checkout-onepage.scss */
  body.checkout-onepage-index #checkoutSteps {
    margin-bottom: 30px;
  }
}
/* ============================================ *
 * Checkout - Success
 * ============================================ */
/* line 31, ../scss/module/_checkout-success.scss */
.checkout-onepage-success .col-main {
  padding: 0;
  text-align: center;
}
/* line 36, ../scss/module/_checkout-success.scss */
.checkout-onepage-success .page-title {
  background: #fff;
  max-width: none;
}
/* line 40, ../scss/module/_checkout-success.scss */
.checkout-onepage-success .page-title h1 {
  font-size: 36px;
}
/* line 45, ../scss/module/_checkout-success.scss */
.checkout-onepage-success h2 {
  font-size: 28px;
  margin-bottom: 0;
  margin-top: 30px;
}
/* line 51, ../scss/module/_checkout-success.scss */
.checkout-onepage-success h3 {
  font-size: 21px;
  color: #777e80;
}
/* line 56, ../scss/module/_checkout-success.scss */
.checkout-onepage-success p {
  font-size: 16px;
}
/* line 60, ../scss/module/_checkout-success.scss */
.checkout-onepage-success .buttons-set {
  margin: 0;
  padding-bottom: 35px;
  text-align: center;
  border-top: 0;
}
/* line 66, ../scss/module/_checkout-success.scss */
.checkout-onepage-success .buttons-set button {
  float: none;
  width: 200px;
}
/* line 72, ../scss/module/_checkout-success.scss */
.checkout-onepage-success .listen-app-wrapper {
  display: none;
}
/* line 75, ../scss/module/_checkout-success.scss */
.checkout-onepage-success .listen-app-wrapper .app-links {
  padding-top: 20px;
}
/* line 78, ../scss/module/_checkout-success.scss */
.checkout-onepage-success .listen-app-wrapper .app-links .app-links-inner {
  margin: 0 auto;
  text-align: center;
}
/* line 82, ../scss/module/_checkout-success.scss */
.checkout-onepage-success .listen-app-wrapper .app-links .app-links-inner img {
  margin: 0 auto 80px auto;
}
@media screen and (max-width: 600px) {
  /* line 90, ../scss/module/_checkout-success.scss */
  .checkout-onepage-success .listen-app-wrapper {
    display: block;
  }
  /* line 93, ../scss/module/_checkout-success.scss */
  .checkout-onepage-success .buttons-set {
    border-bottom: 1px solid #d3d8d9;
  }
  /* line 97, ../scss/module/_checkout-success.scss */
  .checkout-onepage-success.mobile-isIphone .apple-app-container {
    display: block;
  }
  /* line 100, ../scss/module/_checkout-success.scss */
  .checkout-onepage-success.mobile-isIphone .android-app-container {
    display: none;
  }
  /* line 105, ../scss/module/_checkout-success.scss */
  .checkout-onepage-success.mobile-isAndroid .apple-app-container {
    display: none;
  }
  /* line 108, ../scss/module/_checkout-success.scss */
  .checkout-onepage-success.mobile-isAndroid .android-app-container {
    display: block;
  }
}

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

/* General Swatch Styling */
/* line 40, ../scss/module/_configurableswatches.scss */
.swatch-link,
.swatch-label {
  display: block;
  border-radius: 3px;
  font-size: 18px;
  text-align: center;
  color: #373c3e;
  text-decoration: none;
  box-sizing: content-box;
}

/* line 51, ../scss/module/_configurableswatches.scss */
.swatch-link {
  border: 1px solid #e1e1e0;
  margin: 0 0 3px;
}
/* line 55, ../scss/module/_configurableswatches.scss */
.swatch-link img {
  border-radius: 2px;
}
/* line 59, ../scss/module/_configurableswatches.scss */
.swatch-link:hover {
  cursor: pointer;
  text-decoration: none;
}
/* line 64, ../scss/module/_configurableswatches.scss */
.swatch-link .x {
  display: none;
  text-indent: -999em;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/bg_x.png) center no-repeat transparent;
  z-index: 10;
}
/* line 77, ../scss/module/_configurableswatches.scss */
.swatch-link.has-image .swatch-label {
  position: relative;
}
/* line 81, ../scss/module/_configurableswatches.scss */
.swatch-link.has-image img {
  position: absolute;
  top: 0;
  left: 0;
}

/* line 89, ../scss/module/_configurableswatches.scss */
.swatch-label {
  border: 1px solid #fff;
  margin: 0;
  white-space: nowrap;
  background: #F4F4F4;
}

/* line 96, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list {
  margin-left: -3px;
  zoom: 1;
  clear: both;
  -webkit-transform: translateZ(0px);
}
/* line 102, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list li {
  float: left;
  zoom: 1;
  margin: 0 0 0 3px;
}
/* line 108, ../scss/module/_configurableswatches.scss */
.products-grid .configurable-swatch-list li {
  display: inline-block;
  float: none;
  margin: 0;
  vertical-align: top;
}
/* line 116, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list .not-available .x {
  display: block;
}
/* line 120, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list .not-available .swatch-link {
  border-color: #EDEDED;
  position: relative;
}
/* line 124, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list .not-available .swatch-link.has-image img {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
/* line 130, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list .not-available .swatch-label {
  color: #aaa;
  background: #fff;
}
/* line 136, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list .wide-swatch .swatch-label {
  padding: 0 6px;
}
/* line 140, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list .not-available a:focus {
  outline: 0;
}

/* line 146, ../scss/module/_configurableswatches.scss */
#narrow-by-list dd .configurable-swatch-list li {
  margin: 0 0 0 3px;
  width: 47%;
}
/* line 151, ../scss/module/_configurableswatches.scss */
#narrow-by-list dd .swatch-link {
  border: none;
  line-height: 29px;
  margin-right: 2px;
  text-align: left;
}
/* line 157, ../scss/module/_configurableswatches.scss */
#narrow-by-list dd .swatch-link.has-image {
  line-height: inherit;
}
/* line 161, ../scss/module/_configurableswatches.scss */
#narrow-by-list dd .swatch-link:hover .swatch-label {
  border-color: #02b2e7;
}
/* line 166, ../scss/module/_configurableswatches.scss */
#narrow-by-list dd .swatch-label {
  background: #F4F4F4;
  border: 1px solid #e1e1e0;
  border-radius: 3px;
  display: block;
  float: left;
  line-height: 1.5em;
  margin: 0 5px 0 0;
  padding: 1px 5px;
  white-space: nowrap;
}
/* line 177, ../scss/module/_configurableswatches.scss */
#narrow-by-list dd .swatch-label img {
  border: 1px solid #fff;
  border-radius: 3px;
  box-sizing: content-box;
}
/* line 184, ../scss/module/_configurableswatches.scss */
#narrow-by-list dd .has-image .swatch-label {
  padding: 0;
}

@media only screen and (max-width: 770px) {
  /* line 191, ../scss/module/_configurableswatches.scss */
  #narrow-by-list dd .configurable-swatch-list li:nth-child(odd) {
    clear: left;
  }
}
/* line 197, ../scss/module/_configurableswatches.scss */
.currently .swatch-current {
  position: relative;
}
/* line 200, ../scss/module/_configurableswatches.scss */
.currently .swatch-current .btn-remove {
  margin-top: -10px;
  position: absolute;
  right: 0;
  top: 50%;
}
/* line 207, ../scss/module/_configurableswatches.scss */
.currently .swatch-current span {
  display: block;
  float: left;
}
/* line 213, ../scss/module/_configurableswatches.scss */
.currently .swatch-link {
  display: inline-block;
  margin: 0 0 0 3px;
}
/* line 217, ../scss/module/_configurableswatches.scss */
.currently .swatch-link:hover {
  border-color: #e1e1e0;
  cursor: default;
}

/* Other Swatch States */
/* line 225, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list .hover .swatch-link,
.configurable-swatch-list .selected .swatch-link,
.swatch-link:hover {
  border-color: #02b2e7;
}

/* line 231, ../scss/module/_configurableswatches.scss */
.configurable-swatch-box {
  background: none !important;
}
/* line 234, ../scss/module/_configurableswatches.scss */
.configurable-swatch-box select.swatch-select {
  display: none;
}
/* line 238, ../scss/module/_configurableswatches.scss */
.configurable-swatch-box .validation-advice {
  margin: 0 0 5px;
  background: #DF280A;
  padding: 2px 5px !important;
  font-weight: bold;
  color: #fff !important;
  float: left;
  display: block;
  border-radius: 3px;
}

/* CUSTOM */
/* line 251, ../scss/module/_configurableswatches.scss */
.availability.out-of-stock span {
  color: #605a54;
}

/* line 257, ../scss/module/_configurableswatches.scss */
.product-view .product-options .swatch-attr {
  float: none;
  display: block;
  clear: both;
  border: 0;
}
/* line 263, ../scss/module/_configurableswatches.scss */
.product-view .product-options .swatch-attr label,
.product-view .product-options .swatch-attr .select-label {
  font-size: 14px;
}
/* line 268, ../scss/module/_configurableswatches.scss */
.product-view .product-options .swatch-attr label {
  display: block;
  line-height: 1.3;
}
/* line 273, ../scss/module/_configurableswatches.scss */
.product-view .product-options .swatch-attr .select-label {
  display: inline;
  font-weight: normal;
  color: #02b2e7;
  padding-left: 5px;
}
/* line 281, ../scss/module/_configurableswatches.scss */
.product-view .product-options dd .input-box {
  width: auto;
  height: auto;
}
/* line 286, ../scss/module/_configurableswatches.scss */
.product-view .product-options .select-label {
  display: none;
}
/* line 291, ../scss/module/_configurableswatches.scss */
.product-view .add-to-cart button.out-of-stock {
  background-position: -80px -362px;
  cursor: default;
}

/* ============================================ *
 * Customer
 * ============================================ */
/* line 32, ../scss/module/_customer.scss */
.customer-account-login .scaffold-form label:first-child {
  width: 115px;
}
/* line 38, ../scss/module/_customer.scss */
.customer-account-login .col2-set .buttons-set {
  text-align: left;
  border-top: 0;
}
/* line 42, ../scss/module/_customer.scss */
.customer-account-login .col2-set .buttons-set button,
.customer-account-login .col2-set .buttons-set .button {
  float: none;
  min-width: 50%;
  margin: 0;
}
/* line 51, ../scss/module/_customer.scss */
.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) {
  /* line 61, ../scss/module/_customer.scss */
  .customer-account-login .col2-set .col-1,
  .customer-account-login .col2-set .col-2 {
    padding-top: 0;
    margin-top: 20px;
  }
  /* line 67, ../scss/module/_customer.scss */
  .customer-account-login .col2-set .col-1 {
    padding-right: 20px;
  }
  /* line 71, ../scss/module/_customer.scss */
  .customer-account-login .col2-set .col-2 {
    padding-left: 20px;
    border-left: 1px solid #EDEDED;
  }
}
@media only screen and (min-width: 770px) {
  /* line 80, ../scss/module/_customer.scss */
  .customer-account-login .col2-set .col-1 {
    padding-right: 0;
  }
  /* line 84, ../scss/module/_customer.scss */
  .customer-account-login .col2-set .col-2 {
    padding-left: 50px;
    border-left: 1px solid #EDEDED;
  }
}
@media only screen and (max-width: 479px) {
  /* line 93, ../scss/module/_customer.scss */
  .customer-account-login .col2-set .col-1 {
    padding-bottom: 25px;
  }
  /* line 97, ../scss/module/_customer.scss */
  .customer-account-login .col2-set .col-2 {
    padding-top: 25px;
    border-top: 1px solid #EDEDED;
  }
}
@media only screen and (max-width: 770px) {
  /* line 105, ../scss/module/_customer.scss */
  .customer-account-login .col2-set p.required {
    display: none;
  }
}

/* line 113, ../scss/module/_customer.scss */
.customer-account-create .scaffold-form label:first-child {
  width: 140px;
}

/* line 119, ../scss/module/_customer.scss */
.opc #opc-login p:not(.required) {
  font-style: italic;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: #605a54;
}

/* line 127, ../scss/module/_customer.scss */
.remember-me-box a.hide {
  display: none;
}
/* line 130, ../scss/module/_customer.scss */
.remember-me-box .link-tip {
  font-size: 16px;
  padding-left: 10px;
}

/* line 136, ../scss/module/_customer.scss */
.remember-me-popup {
  display: none;
  border: 1px solid #e1e1e0;
  padding: 10px;
  position: relative;
}
/* line 142, ../scss/module/_customer.scss */
.remember-me-popup.show {
  display: block;
}
/* line 146, ../scss/module/_customer.scss */
.remember-me-popup p {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}
/* line 150, ../scss/module/_customer.scss */
.remember-me-popup .remember-me-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  font-size: 14px;
}
/* line 158, ../scss/module/_customer.scss */
.remember-me-popup .remember-me-popup-close-button {
  display: none;
}

/* line 164, ../scss/module/_customer.scss */
.customer-account-create .buttons-set {
  max-width: 455px;
}
/* line 168, ../scss/module/_customer.scss */
.customer-account-create .fieldset,
.customer-account-create .buttons-set {
  margin-left: 25px;
}
@media only screen and (max-width: 479px) {
  /* line 168, ../scss/module/_customer.scss */
  .customer-account-create .fieldset,
  .customer-account-create .buttons-set {
    margin-left: 0;
  }
}
/* line 177, ../scss/module/_customer.scss */
.customer-account-create .fieldset .hidden {
  display: none;
}
/* line 181, ../scss/module/_customer.scss */
.customer-account-create #remember-me-popup {
  max-width: 455px;
}

/* line 187, ../scss/module/_customer.scss */
.customer-account-forgotpassword .fieldset,
.customer-account-forgotpassword .buttons-set {
  margin-left: 25px;
  max-width: 400px;
}
@media only screen and (max-width: 479px) {
  /* line 187, ../scss/module/_customer.scss */
  .customer-account-forgotpassword .fieldset,
  .customer-account-forgotpassword .buttons-set {
    margin-left: 0;
  }
}
/* line 197, ../scss/module/_customer.scss */
.customer-account-forgotpassword .fieldset .input-box input.input-text {
  width: 100%;
}

/* ============================================ *
 * My Account Global Styles
 * ============================================ */
/* line 207, ../scss/module/_customer.scss */
body.customer-account .my-account .info-box-display-3,
body.customer-account .my-account .info-box-display-5 {
  display: none;
}
/* line 213, ../scss/module/_customer.scss */
body.customer-account .my-account .page-title h1 {
  border: 0;
  text-align: left;
}
/* line 219, ../scss/module/_customer.scss */
body.customer-account .my-account .title-buttons {
  position: relative;
  text-align: right;
}
/* line 223, ../scss/module/_customer.scss */
body.customer-account .my-account .title-buttons h1 {
  text-align: left;
}
/* line 227, ../scss/module/_customer.scss */
body.customer-account .my-account .title-buttons .button {
  /*position: absolute;
  right: 0;
  top: 0;*/
}
/* line 233, ../scss/module/_customer.scss */
body.customer-account .my-account .title-buttons a,
body.customer-account .my-account .title-buttons span.separator {
  position: relative;
  top: -42px;
}
/* line 240, ../scss/module/_customer.scss */
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;
}
/* line 247, ../scss/module/_customer.scss */
body.customer-account .my-account .addresses-list h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
/* line 253, ../scss/module/_customer.scss */
body.customer-account .my-account .fieldset {
  margin-top: 25px;
  margin-bottom: 25px;
}
/* line 259, ../scss/module/_customer.scss */
body.customer-account .data-table {
  margin-top: 5px;
}
/* line 262, ../scss/module/_customer.scss */
body.customer-account .data-table .price-excl-tax {
  /*    float: right; */
}
/* line 266, ../scss/module/_customer.scss */
body.customer-account .data-table .grand_total .price {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 271, ../scss/module/_customer.scss */
body.customer-account .data-table thead th.total {
  width: 150px;
}
/* line 277, ../scss/module/_customer.scss */
body.customer-account .data-table td a {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-size: 16px;
}
/* line 284, ../scss/module/_customer.scss */
body.customer-account .data-table span.nobr {
  white-space: nowrap;
}
/* line 287, ../scss/module/_customer.scss */
body.customer-account .data-table span.nobr a {
  white-space: nowrap;
}
/* line 293, ../scss/module/_customer.scss */
body.customer-account .data-table td.view a {
  display: block;
}
/* line 298, ../scss/module/_customer.scss */
body.customer-account .data-table .separator {
  display: none;
}
/* line 306, ../scss/module/_customer.scss */
body.customer-account .sidebar .block ol#compare-items li {
  margin: 10px 0;
}
/* line 312, ../scss/module/_customer.scss */
body.customer-account .sidebar .block .block-content p.block-subtitle {
  margin-bottom: 15px;
}
/* line 316, ../scss/module/_customer.scss */
body.customer-account .sidebar .block .block-content .actions {
  margin-top: 25px;
}
/* line 323, ../scss/module/_customer.scss */
body.customer-account .sidebar ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
/* line 328, ../scss/module/_customer.scss */
body.customer-account .sidebar ol#cart-sidebar-reorder p.product-name {
  display: inline-block;
  margin-bottom: 0;
}
/* line 335, ../scss/module/_customer.scss */
body.customer-account .sidebar .block-cart .summary {
  margin-bottom: 15px;
}
/* line 342, ../scss/module/_customer.scss */
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
/* line 346, ../scss/module/_customer.scss */
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li input {
  margin-right: 10px;
}
/* line 351, ../scss/module/_customer.scss */
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder p.product-name {
  display: inline;
  margin-bottom: 0;
}

/* line 362, ../scss/module/_customer.scss */
.form-list .customer-dob .dob-month,
.form-list .customer-dob .dob-day {
  width: 40px;
  float: left;
  margin-right: 10px;
}
/* line 369, ../scss/module/_customer.scss */
.form-list .customer-dob .dob-year {
  width: 80px;
  float: left;
}
/* line 375, ../scss/module/_customer.scss */
.form-list .control input.checkbox {
  margin-left: 0;
  margin-top: 7px;
}
/* line 379, ../scss/module/_customer.scss */
.form-list .control label {
  background: transparent;
  padding-left: 20px;
  font-size: 16px;
}
/* line 383, ../scss/module/_customer.scss */
.form-list .control label:hover, .form-list .control label:active, .form-list .control label:focus {
  background: transparent;
}

/* ============================================ *
 * Dashboard
 * ============================================ */
/* line 396, ../scss/module/_customer.scss */
.dashboard .box-head {
  margin-top: 25px;
  border-bottom: 1px solid #e1e1e0;
  padding-bottom: 7px;
}
/* line 401, ../scss/module/_customer.scss */
.dashboard .box-head h2 {
  font-size: 19px;
  display: inline-block;
  margin-bottom: 0;
}
/* line 407, ../scss/module/_customer.scss */
.dashboard .box-head a {
  padding: 10px;
}
/* line 414, ../scss/module/_customer.scss */
.dashboard .box-title a,
.dashboard .box-head a {
  font-size: 14px;
}
/* line 419, ../scss/module/_customer.scss */
.dashboard .box-account {
  padding-bottom: 40px;
  margin-bottom: 45px;
}
/* line 423, ../scss/module/_customer.scss */
.dashboard .box-account p,
.dashboard .box-account address {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}
/* line 430, ../scss/module/_customer.scss */
.dashboard .col2-set .col-1,
.dashboard .col2-set .col-2 {
  padding-right: 12.09677%;
  padding-bottom: 0;
}
/* line 435, ../scss/module/_customer.scss */
.dashboard .col2-set .col-1 .box-title,
.dashboard .col2-set .col-2 .box-title {
  position: relative;
}
/* line 438, ../scss/module/_customer.scss */
.dashboard .col2-set .col-1 .box-title h2,
.dashboard .col2-set .col-1 .box-title h3,
.dashboard .col2-set .col-2 .box-title h2,
.dashboard .col2-set .col-2 .box-title h3 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
}
/* line 445, ../scss/module/_customer.scss */
.dashboard .col2-set .col-1 .box-title a,
.dashboard .col2-set .col-2 .box-title a {
  line-height: 25.2px;
}
/* line 453, ../scss/module/_customer.scss */
.dashboard .box-reviews.box-account {
  padding-bottom: 0;
}
/* line 457, ../scss/module/_customer.scss */
.dashboard .box-reviews li {
  padding: 10px 0;
  border-top: 1px solid #EDEDED;
}
/* line 461, ../scss/module/_customer.scss */
.dashboard .box-reviews li:first-child {
  border-top: 0;
}
/* line 465, ../scss/module/_customer.scss */
.dashboard .box-reviews li .number {
  margin-right: -20px;
  float: left;
  line-height: 1.4;
  font-size: 16px;
}
/* line 472, ../scss/module/_customer.scss */
.dashboard .box-reviews li .details {
  margin-left: 20px;
}
/* line 475, ../scss/module/_customer.scss */
.dashboard .box-reviews li .details .ratings {
  content: '';
  display: table;
  clear: both;
  margin-bottom: 0;
}
/* line 479, ../scss/module/_customer.scss */
.dashboard .box-reviews li .details .ratings strong {
  float: left;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  margin-right: 5px;
}
/* line 486, ../scss/module/_customer.scss */
.dashboard .box-reviews li .details .ratings .rating-box {
  float: left;
  margin: 3px 0 0 0;
}

/* ============================================ *
 * Address Book
 * ============================================ */
/* line 501, ../scss/module/_customer.scss */
.my-account .addresses-list {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
}
/* line 505, ../scss/module/_customer.scss */
.my-account .addresses-list .col-1,
.my-account .addresses-list .col-2 {
  padding-bottom: 0;
}
/* line 510, ../scss/module/_customer.scss */
.my-account .addresses-list .item {
  margin: 0 0 25px 0;
}
/* line 513, ../scss/module/_customer.scss */
.my-account .addresses-list .item p {
  margin-top: 10px;
}
@media only screen and (max-width: 770px) {
  /* line 519, ../scss/module/_customer.scss */
  .my-account .addresses-list .col-1,
  .my-account .addresses-list .col-2 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  /* line 525, ../scss/module/_customer.scss */
  .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) {
  /* line 534, ../scss/module/_customer.scss */
  .my-account .addresses-list .addresses-additional p a {
    white-space: nowrap;
  }
}

/* ============================================ *
 * Order View
 * ============================================ */
/* line 547, ../scss/module/_customer.scss */
.order-info {
  padding-bottom: 10px;
  border-bottom: 1px solid #EDEDED;
  width: 100%;
  margin-bottom: 25px;
}
/* line 553, ../scss/module/_customer.scss */
.order-info dt,
.order-info dd,
.order-info ul,
.order-info li {
  display: inline;
}
/* line 560, ../scss/module/_customer.scss */
.order-info dt {
  margin-right: 20px;
}
/* line 564, ../scss/module/_customer.scss */
.order-info li {
  margin: 0 0 0 20px;
}
/* line 567, ../scss/module/_customer.scss */
.order-info li.current {
  font-weight: 600;
}
/* line 571, ../scss/module/_customer.scss */
.order-info li:first-child {
  margin-left: 0;
}

/* line 577, ../scss/module/_customer.scss */
.order-date {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}

/* line 581, ../scss/module/_customer.scss */
.order-info-box {
  margin-bottom: 40px;
  margin-top: 20px;
  /*
  + .order-info-box {
      padding-bottom: 40px;
      border-bottom: 1px solid $c-module-border-light;
  }
  */
}
/* line 590, ../scss/module/_customer.scss */
.order-info-box .col-1 {
  padding-right: 0;
  width: 48%;
}
/* line 595, ../scss/module/_customer.scss */
.order-info-box .col-2 {
  width: 52%;
}
/* line 599, ../scss/module/_customer.scss */
.order-info-box .col-1,
.order-info-box .col-2 {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 606, ../scss/module/_customer.scss */
.order-info-box .box-title {
  width: 150px;
  padding-right: 10px;
}
/* line 610, ../scss/module/_customer.scss */
.order-info-box .box-title h2 {
  font-size: 16px;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  margin-bottom: 0;
}
/* line 616, ../scss/module/_customer.scss */
.order-info-box .box-title h2:after {
  content: ':';
}
/* line 622, ../scss/module/_customer.scss */
.order-info-box .box-content {
  float: left;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
}
/* line 627, ../scss/module/_customer.scss */
.order-info-box .box-content td,
.order-info-box .box-content th {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.3;
}
/* line 633, ../scss/module/_customer.scss */
.order-info-box .box-content th {
  padding-top: 10px;
}
/* line 637, ../scss/module/_customer.scss */
.order-info-box .box-content td {
  padding-left: 15px;
}
/* line 641, ../scss/module/_customer.scss */
.order-info-box .box-content strong {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-weight: normal;
}
/* line 646, ../scss/module/_customer.scss */
.order-info-box .box-content address {
  font-size: 16px;
}

/* line 653, ../scss/module/_customer.scss */
#my-orders-table .option-label {
  margin-left: 10px;
  font-weight: 600;
  font-style: italic;
}
/* line 659, ../scss/module/_customer.scss */
#my-orders-table .option-value {
  margin-left: 20px;
}
/* line 663, ../scss/module/_customer.scss */
#my-orders-table tr.bundle:not(:last-child) td {
  border-bottom: none;
  border-top: none;
}
/* line 667, ../scss/module/_customer.scss */
#my-orders-table th {
  background: transparent;
  text-transform: capitalize;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
}
/* line 673, ../scss/module/_customer.scss */
#my-orders-table th.status,
#my-orders-table th.date,
#my-orders-table th.total,
#my-orders-table td.date,
#my-orders-table td.total {
  text-align: center;
}
/* line 681, ../scss/module/_customer.scss */
#my-orders-table td.status {
  text-align: right;
}
/* line 683, ../scss/module/_customer.scss */
#my-orders-table td.status em {
  font-style: normal;
}
/* line 688, ../scss/module/_customer.scss */
#my-orders-table tfoot tr {
  background: transparent;
}

/* line 694, ../scss/module/_customer.scss */
ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
/* line 698, ../scss/module/_customer.scss */
ol#cart-sidebar-reorder li input {
  margin-right: 10px;
}
/* line 703, ../scss/module/_customer.scss */
ol#cart-sidebar-reorder p.product-name {
  display: inline;
}

@media only screen and (max-width: 599px) {
  /* line 710, ../scss/module/_customer.scss */
  #my-orders-table .option-label {
    margin-left: 20px;
  }
  /* line 714, ../scss/module/_customer.scss */
  #my-orders-table .option-value {
    margin-left: 35px;
  }
  /* line 719, ../scss/module/_customer.scss */
  #my-orders-table td[data-rwd-label=Qty] .nobr br {
    display: none;
  }
  /* line 723, ../scss/module/_customer.scss */
  #my-orders-table td[data-rwd-label=Qty] .nobr strong {
    margin-right: 10px;
  }
  /* line 728, ../scss/module/_customer.scss */
  #my-orders-table tr.bundle {
    border-color: #EDEDED;
  }
  /* line 733, ../scss/module/_customer.scss */
  #my-orders-table tr.bundle.child td[data-rwd-label] {
    padding-left: 60px;
  }
  /* line 739, ../scss/module/_customer.scss */
  #my-orders-table tbody:last-child tr:last-child td {
    padding-bottom: 10px;
    border-bottom: 0;
  }
  /* line 743, ../scss/module/_customer.scss */
  #my-orders-table tbody:last-child tr:last-child td:last-child {
    padding-bottom: 15px;
  }
  /* line 749, ../scss/module/_customer.scss */
  #my-orders-table tfoot tr.shipping {
    margin-top: 0;
  }
}
/* line 755, ../scss/module/_customer.scss */
.order-additional {
  margin: 40px 0;
}

/* line 760, ../scss/module/_customer.scss */
.order-gift-message dd {
  margin-top: 10px;
}

@media only screen and (max-width: 1199px) {
  /* line 768, ../scss/module/_customer.scss */
  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    padding-right: 25px;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 979px) {
  /* line 786, ../scss/module/_customer.scss */
  body.customer-account .my-account .title-buttons {
    text-align: left;
  }
  /* line 789, ../scss/module/_customer.scss */
  body.customer-account .my-account .title-buttons span.separator,
  body.customer-account .my-account .title-buttons a {
    top: -12px;
  }
}
@media screen and (max-width: 920px) {
  /* line 800, ../scss/module/_customer.scss */
  #my-orders-table th,
  #my-orders-table td {
    padding: 10px 5px;
  }

  /* line 809, ../scss/module/_customer.scss */
  body.customer-account .data-table.orders th.ship,
  body.customer-account .data-table.orders td.ship,
  body.customer-account .data-table.orders td.status {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  /* line 825, ../scss/module/_customer.scss */
  .order-info-box .box-content {
    clear: left;
  }

  /* line 831, ../scss/module/_customer.scss */
  .addresses-list .item {
    /*   float: left; */
    width: 100%;
    padding-right: 25px;
  }

  /* line 839, ../scss/module/_customer.scss */
  .order-info dt {
    display: none;
  }

  /* line 845, ../scss/module/_customer.scss */
  .dashboard .page-title {
    margin-top: 20px;
  }
  /* line 848, ../scss/module/_customer.scss */
  .dashboard .page-title h1 {
    margin-top: 0;
  }
  /* line 853, ../scss/module/_customer.scss */
  .dashboard .welcome-msg {
    font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  }
  /* line 856, ../scss/module/_customer.scss */
  .dashboard .welcome-msg .hello {
    font-style: italic;
  }
  /* line 861, ../scss/module/_customer.scss */
  .dashboard .box-account {
    padding-bottom: 15px;
    margin-bottom: 25px;
  }
  /* line 867, ../scss/module/_customer.scss */
  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    width: 48%;
    padding-right: 0;
    padding-left: 0;
  }
  /* line 874, ../scss/module/_customer.scss */
  .dashboard .col2-set .col-1 {
    float: left;
    margin-right: 4%;
  }
  /* line 879, ../scss/module/_customer.scss */
  .dashboard .col2-set .col-2 {
    float: right;
  }
}
@media only screen and (max-width: 600px) {
  /* line 892, ../scss/module/_customer.scss */
  body.customer-account .my-account .form-list .control {
    padding-left: 0;
  }
  /* line 898, ../scss/module/_customer.scss */
  body.customer-account .my-account .page-title h1 {
    text-align: center;
  }
  /* line 903, ../scss/module/_customer.scss */
  body.customer-account .my-account .title-buttons {
    text-align: center;
  }
  /* line 906, ../scss/module/_customer.scss */
  body.customer-account .my-account .title-buttons .button {
    width: 100%;
    position: static;
    margin-bottom: 15px;
  }
  /* line 911, ../scss/module/_customer.scss */
  body.customer-account .my-account .title-buttons .button + .button {
    margin-left: 0px;
  }
  /* line 918, ../scss/module/_customer.scss */
  body.customer-account .my-account .fieldset h2 {
    margin-bottom: 15px;
  }
  /* line 923, ../scss/module/_customer.scss */
  body.customer-account .my-account .order-details h2 {
    margin-bottom: 15px;
  }
  /* line 927, ../scss/module/_customer.scss */
  body.customer-account .my-account .buttons-set {
    border-top: 0;
  }
  /* line 932, ../scss/module/_customer.scss */
  body.customer-account .my-account .addresses-list .item {
    margin-bottom: 15px;
    padding-right: 0;
    float: none;
    width: auto;
  }
  /* line 939, ../scss/module/_customer.scss */
  body.customer-account .my-account .addresses-list h2 {
    margin-bottom: 15px;
  }

  /* line 946, ../scss/module/_customer.scss */
  .order-info {
    margin-top: 15px;
  }

  /* line 952, ../scss/module/_customer.scss */
  .data-table.orders .link-reorder,
  .data-table.orders .date {
    display: none;
  }
  /* line 956, ../scss/module/_customer.scss */
  .data-table.orders th.status,
  .data-table.orders td.view {
    text-align: right;
  }

  /* line 966, ../scss/module/_customer.scss */
  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    width: 100%;
    margin-top: 15px;
  }

  /* line 974, ../scss/module/_customer.scss */
  .order-info-box {
    margin: 0;
  }
  /* line 977, ../scss/module/_customer.scss */
  .order-info-box .col-1,
  .order-info-box .col-2 {
    width: 100%;
    border-bottom: 1px solid #EDEDED;
    padding: 15px 0;
  }
  /* line 984, ../scss/module/_customer.scss */
  .order-info-box + .order-info-box {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 25px;
  }

  /* line 992, ../scss/module/_customer.scss */
  #my-reviews-table .nobr {
    white-space: normal;
  }
}
/* ============================================ *
 * Newsletter Subscriptions
 * ============================================ */
/* line 1002, ../scss/module/_customer.scss */
body.newsletter-manage-index .my-account {
  /*
  .form-list {
      border-top: 1px solid $c-mid-gray-background;
      border-bottom: 1px solid $c-mid-gray-background;
      padding-top: $gap;
      padding-bottom: $gap;
  }
  */
}
/* line 1003, ../scss/module/_customer.scss */
body.newsletter-manage-index .my-account .fieldset {
  margin-bottom: 20px;
}
/* line 1007, ../scss/module/_customer.scss */
body.newsletter-manage-index .my-account .fieldset h2 {
  display: none;
}

/* ============================================ *
 * Contacts
 * ============================================ */
/* line 31, ../scss/module/_contacts.scss */
.contacts-index-index .buttons-set {
  margin-left: 25px;
  max-width: 435px;
}
/* line 35, ../scss/module/_contacts.scss */
.contacts-index-index .buttons-set p.required {
  float: left;
}
@media only screen and (max-width: 599px) {
  /* line 31, ../scss/module/_contacts.scss */
  .contacts-index-index .buttons-set {
    max-width: 330px;
    margin-left: 0;
  }
  /* line 43, ../scss/module/_contacts.scss */
  .contacts-index-index .buttons-set button {
    float: left;
    margin-left: 0px;
  }
  /* line 48, ../scss/module/_contacts.scss */
  .contacts-index-index .buttons-set p.required {
    float: right;
  }
}

/* ============================================ *
 * PayPal
 * ============================================ */
@media only screen and (max-width: 870px) and (min-width: 771px) {
  /* line 34, ../scss/module/_paypal.scss */
  .paypal-review-order .col2-set .col-1,
  .paypal-review-order .col2-set .col-2 {
    padding: 0px;
  }
}

/* line 42, ../scss/module/_paypal.scss */
.paypal-review-order .info-set {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #EDEDED;
}
/* line 48, ../scss/module/_paypal.scss */
.paypal-review-order .buttons-set {
  margin-top: 0px;
  padding-top: 0px;
  border: 0;
}
/* line 53, ../scss/module/_paypal.scss */
.paypal-review-order .buttons-set button {
  margin-bottom: 10px;
}
@media only screen and (max-width: 770px) {
  /* line 59, ../scss/module/_paypal.scss */
  .paypal-review-order .col-1 {
    padding-bottom: 0;
  }
  /* line 63, ../scss/module/_paypal.scss */
  .paypal-review-order .field.inactive {
    display: none;
  }
}

/* line 70, ../scss/module/_paypal.scss */
.top-container .bml-ad {
  margin-top: 7px;
  margin-bottom: 7px;
  text-align: center;
}
/* line 75, ../scss/module/_paypal.scss */
.top-container .bml-ad span {
  display: inline-block;
}
/* line 78, ../scss/module/_paypal.scss */
.top-container .bml-ad span a {
  display: block;
}

/* line 84, ../scss/module/_paypal.scss */
.bml-ad {
  display: none;
  text-align: center;
  margin-bottom: 5px;
}
/* line 89, ../scss/module/_paypal.scss */
.bml-ad span {
  display: block;
  line-height: 0;
}
/* line 93, ../scss/module/_paypal.scss */
.bml-ad a {
  display: inline-block;
  max-width: 100%;
}
/* line 97, ../scss/module/_paypal.scss */
.bml-ad a:hover {
  opacity: 0.7;
}
/* line 100, ../scss/module/_paypal.scss */
.bml-ad img {
  height: auto !important;
  max-width: 100%;
}

/* line 107, ../scss/module/_paypal.scss */
.cart-totals-wrapper .bml-ad.large img {
  display: block;
  margin: 0;
}

@media only screen and (max-width: 770px) {
  /* line 113, ../scss/module/_paypal.scss */
  .bml-ad.small {
    display: block;
  }
}
@media only screen and (min-width: 771px) {
  /* line 119, ../scss/module/_paypal.scss */
  .bml-ad.large {
    display: block;
  }
}
/* line 124, ../scss/module/_paypal.scss */
div.paypal-logo {
  text-align: center;
  margin: 15px 0;
  max-width: 100%;
}
/* line 129, ../scss/module/_paypal.scss */
div.paypal-logo span {
  display: block;
  width: 100%;
}
/* line 133, ../scss/module/_paypal.scss */
div.paypal-logo span a {
  display: inline-block;
  max-width: 100%;
}
/* line 137, ../scss/module/_paypal.scss */
div.paypal-logo span a img {
  max-width: 100%;
}
/* line 143, ../scss/module/_paypal.scss */
div.paypal-logo span > img {
  display: none;
}

/* line 149, ../scss/module/_paypal.scss */
.checkout-types div.paypal-logo {
  text-align: right;
}

/* line 154, ../scss/module/_paypal.scss */
.bml-checkout-type {
  list-style-type: none;
}

/* line 159, ../scss/module/_paypal.scss */
.sidebar .paypal-logo {
  text-align: center;
  line-height: 0;
}
/* line 163, ../scss/module/_paypal.scss */
.sidebar .paypal-logo > a {
  display: inline-block;
  max-width: 100%;
}
/* line 167, ../scss/module/_paypal.scss */
.sidebar .paypal-logo > a:hover {
  opacity: 0.8;
}
/* line 170, ../scss/module/_paypal.scss */
.sidebar .paypal-logo > a img {
  display: block;
}
/* line 174, ../scss/module/_paypal.scss */
.sidebar .paypal-logo .label {
  margin-top: 4px;
}
/* line 176, ../scss/module/_paypal.scss */
.sidebar .paypal-logo .label a {
  font-size: 14px;
  line-height: 1.5;
}

/* ============================================ *
 * Review - Customer
 * ============================================ */
/* line 30, ../scss/module/_review.scss */
#customer-reviews {
  width: auto;
  float: none;
}
/* line 34, ../scss/module/_review.scss */
#customer-reviews .no-rating {
  display: none;
}
/* line 38, ../scss/module/_review.scss */
#customer-reviews .review-heading {
  border-top: 1px solid #e1e1e0;
  border-bottom: 1px solid #e1e1e0;
  padding: 10px 0 5px;
}
/* line 43, ../scss/module/_review.scss */
#customer-reviews .review-heading:after {
  content: '';
  display: table;
  clear: both;
}
/* line 47, ../scss/module/_review.scss */
#customer-reviews .review-heading h2 {
  float: left;
  display: block;
}
/* line 52, ../scss/module/_review.scss */
#customer-reviews .review-heading .pager {
  clear: none;
  float: right;
  width: auto;
}
/* line 58, ../scss/module/_review.scss */
#customer-reviews .review-heading .pager .count-container .limiter {
  margin-bottom: 0;
}
/* line 61, ../scss/module/_review.scss */
#customer-reviews .review-heading .pager .count-container .limiter label {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
}
/* line 69, ../scss/module/_review.scss */
#customer-reviews .review-heading .pager .amount {
  display: none;
}
/* line 75, ../scss/module/_review.scss */
#customer-reviews h2 {
  color: #02b2e7;
  font-size: 14px;
  text-transform: uppercase;
}
/* line 80, ../scss/module/_review.scss */
#customer-reviews h2 span {
  color: #373c3e;
}
/* line 85, ../scss/module/_review.scss */
#customer-reviews h3 {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
}
/* line 91, ../scss/module/_review.scss */
#customer-reviews h3 span {
  color: #02b2e7;
}
/* line 96, ../scss/module/_review.scss */
#customer-reviews .fieldset {
  padding-top: 25px;
  width: 470px;
}
/* line 100, ../scss/module/_review.scss */
#customer-reviews .fieldset h4 {
  border-bottom: 1px solid #e1e1e0;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  padding-bottom: 5px;
  text-transform: uppercase;
}
/* line 108, ../scss/module/_review.scss */
#customer-reviews .fieldset h4 em {
  display: none;
}
/* line 113, ../scss/module/_review.scss */
#customer-reviews .fieldset .form-list {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  margin: 10px 0;
  text-transform: uppercase;
  width: 470px;
}
/* line 128, ../scss/module/_review.scss */
#customer-reviews .fieldset .form-list .inline-label:after {
  content: '';
  display: table;
  clear: both;
}
/* line 133, ../scss/module/_review.scss */
#customer-reviews .fieldset .form-list label {
  font-size: 14px;
  font-weight: normal;
}
/* line 138, ../scss/module/_review.scss */
#customer-reviews .fieldset .form-list textarea {
  border: 1px solid #e1e1e0;
  border-radius: 0;
  min-width: 100%;
  -webkit-appearance: none;
}
/* line 145, ../scss/module/_review.scss */
#customer-reviews .fieldset .form-list input {
  border: 1px solid #e1e1e0;
  border-radius: 0;
}
/* line 149, ../scss/module/_review.scss */
#customer-reviews .fieldset .form-list input[type="text"] {
  width: 100%;
}
/* line 156, ../scss/module/_review.scss */
#customer-reviews .buttons-set {
  border: none;
  margin: 0;
  width: 470px;
}
/* line 162, ../scss/module/_review.scss */
#customer-reviews dl {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  margin-bottom: 10px;
}
/* line 168, ../scss/module/_review.scss */
#customer-reviews dl dt {
  margin: 10px 0;
  text-transform: uppercase;
}
/* line 173, ../scss/module/_review.scss */
#customer-reviews dl dd {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  margin: 10px 0;
}
/* line 178, ../scss/module/_review.scss */
#customer-reviews dl dd .ratings-table {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  width: 100%;
}
/* line 183, ../scss/module/_review.scss */
#customer-reviews dl dd .ratings-table tr {
  margin-right: 15px;
}
/* line 187, ../scss/module/_review.scss */
#customer-reviews dl dd .ratings-table .review-label {
  width: 300px;
  max-width: 70%;
}
/* line 193, ../scss/module/_review.scss */
#customer-reviews dl dd table {
  margin: 15px 0;
}
/* line 197, ../scss/module/_review.scss */
#customer-reviews dl dd .review-meta {
  color: #02b2e7;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase;
}

/* line 208, ../scss/module/_review.scss */
.review-summary-table {
  border-bottom: 1px solid #e1e1e0;
  margin: 0 0 10px;
}
/* line 212, ../scss/module/_review.scss */
.review-summary-table thead {
  background: transparent;
}
/* line 215, ../scss/module/_review.scss */
.review-summary-table thead th {
  background: transparent;
  border: none;
  padding: 15px 7px 10px 8px;
}
/* line 223, ../scss/module/_review.scss */
.review-summary-table tbody th {
  background: #FFFFFF;
  font-size: 14px;
}
/* line 227, ../scss/module/_review.scss */
.review-summary-table tbody td {
  border: none;
  text-align: center;
  padding: 0;
}
/* line 232, ../scss/module/_review.scss */
.review-summary-table tbody td label {
  width: 100%;
  display: block;
  padding: 11px 0;
}
/* line 241, ../scss/module/_review.scss */
.review-summary-table .rating-box .rating-number {
  display: none;
}
/* line 244, ../scss/module/_review.scss */
.review-summary-table .rating-box .rating-number:after {
  content: "";
  display: inline-block;
  background-position: 0px -599px;
  width: 13px;
  height: 18px;
  margin-left: 5px;
  position: relative;
  top: 2px;
}

@media screen and (max-width: 600px) {
  /* line 262, ../scss/module/_review.scss */
  .review-summary-table thead th {
    padding-left: 0;
    padding-right: 0;
  }
  /* line 268, ../scss/module/_review.scss */
  .review-summary-table tbody th {
    padding-left: 0;
    padding-right: 0;
  }
  /* line 273, ../scss/module/_review.scss */
  .review-summary-table .rating-box {
    margin: 0;
    width: auto;
    height: auto;
    background-image: none;
  }
  /* line 278, ../scss/module/_review.scss */
  .review-summary-table .rating-box .rating-number {
    display: block;
    text-indent: 0;
    text-align: center;
  }
  /* line 283, ../scss/module/_review.scss */
  .review-summary-table .rating-box .rating {
    display: none;
    text-indent: 0;
  }
}
/* ============================================ *
 * Ratings - Global
 * ============================================ */
/* line 295, ../scss/module/_review.scss */
.ratings-table {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}
/* line 300, ../scss/module/_review.scss */
.ratings-table th {
  padding-right: 10px;
}
/* line 304, ../scss/module/_review.scss */
.ratings-table .rating-box {
  background-position: 0 -615px;
  background-repeat: repeat-x;
  height: 13px;
  overflow: hidden;
  text-indent: -9999px;
  width: 65px;
}
/* line 313, ../scss/module/_review.scss */
.ratings-table .rating-box .rating {
  background-position: 0 -600px;
  background-repeat: repeat-x;
  float: left;
  height: 13px;
  text-indent: -9999px;
}

@media only screen and (max-width: 770px) {
  /* line 330, ../scss/module/_review.scss */
  body.review-product-list .product-view .product-shop .price-info {
    padding-left: 0;
  }
  /* line 334, ../scss/module/_review.scss */
  body.review-product-list .product-view .product-shop .extra-info {
    padding: 0;
    min-width: 84%;
  }
  /* line 338, ../scss/module/_review.scss */
  body.review-product-list .product-view .product-shop .extra-info .ratings-table {
    margin: 10px 0;
    width: 100%;
  }
  /* line 342, ../scss/module/_review.scss */
  body.review-product-list .product-view .product-shop .extra-info .ratings-table tr {
    margin-right: 15px;
  }
}
@media only screen and (max-width: 535px) {
  /* line 358, ../scss/module/_review.scss */
  body.review-product-list .product-view .product-shop .extra-info {
    min-width: 0;
  }
  /* line 362, ../scss/module/_review.scss */
  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) {
  /* line 377, ../scss/module/_review.scss */
  #customer-reviews .fieldset {
    width: 100%;
  }
  /* line 380, ../scss/module/_review.scss */
  #customer-reviews .fieldset .form-list {
    width: 100%;
  }
  /* line 384, ../scss/module/_review.scss */
  #customer-reviews .fieldset .form-list .inline-label label,
  #customer-reviews .fieldset .form-list .inline-label .input-box {
    float: none;
  }
  /* line 392, ../scss/module/_review.scss */
  #customer-reviews .buttons-set {
    width: 100%;
  }
  /* line 399, ../scss/module/_review.scss */
  #customer-reviews .review-summary-table thead th {
    padding-left: 0px;
    padding-right: 0px;
  }
  /* line 406, ../scss/module/_review.scss */
  #customer-reviews .review-summary-table tbody th {
    padding-left: 0px;
    padding-right: 0px;
  }
  /* line 411, ../scss/module/_review.scss */
  #customer-reviews .review-summary-table tbody td {
    width: 20%;
    padding: 0px;
  }
  /* line 417, ../scss/module/_review.scss */
  #customer-reviews .review-summary-table .rating-box {
    text-indent: 0px;
    text-align: center;
    background: none;
    height: 25.2px;
    width: 100%;
  }
  /* line 424, ../scss/module/_review.scss */
  #customer-reviews .review-summary-table .rating-box .rating {
    display: none;
  }
  /* line 427, ../scss/module/_review.scss */
  #customer-reviews .review-summary-table .rating-box .rating-number {
    display: inline-block;
  }
}
@media only screen and (max-width: 450px) {
  /* line 439, ../scss/module/_review.scss */
  #customer-reviews dl dd .ratings-table tr {
    float: none;
  }
}
/* ============================================ *
 * Review View Page
 * ============================================ */
/* line 450, ../scss/module/_review.scss */
.review-product-view .product-review .product-details h2 {
  border-bottom: none;
}
/* line 455, ../scss/module/_review.scss */
.review-product-view .product-review .product-img-box {
  width: auto;
  max-width: 50%;
}
/* line 459, ../scss/module/_review.scss */
.review-product-view .product-review .product-img-box > a {
  width: 100%;
}
/* line 463, ../scss/module/_review.scss */
.review-product-view .product-review .product-img-box .product-image {
  width: 100%;
}

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

/* line 66, ../scss/module/_slideshow.scss */
.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;
}
/* line 76, ../scss/module/_slideshow.scss */
.slideshow-pager span {
  font-family: arial;
  width: 44px;
  height: 44px;
  display: inline-block;
  color: #DDDDDD;
  cursor: pointer;
}
/* line 85, ../scss/module/_slideshow.scss */
.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;
}
/* line 99, ../scss/module/_slideshow.scss */
.slideshow-pager span:hover:before {
  background-color: #2bccfb;
}
/* line 103, ../scss/module/_slideshow.scss */
.slideshow-pager span.cycle-pager-active:before {
  background-color: #029ecc;
}
/* line 108, ../scss/module/_slideshow.scss */
.slideshow-pager > * {
  cursor: pointer;
}

/* line 113, ../scss/module/_slideshow.scss */
.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;
}
/* line 125, ../scss/module/_slideshow.scss */
.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;
}
/* line 137, ../scss/module/_slideshow.scss */
.slideshow-prev:hover,
.slideshow-next:hover {
  opacity: 1;
}
/* line 141, ../scss/module/_slideshow.scss */
.slideshow-prev.disabled,
.slideshow-next.disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
  cursor: default;
}

/* line 147, ../scss/module/_slideshow.scss */
.slideshow-prev {
  left: 8px;
}
/* line 150, ../scss/module/_slideshow.scss */
.slideshow-prev:before {
  border-width: 15px 15px 15px 0;
  border-color: transparent #FFFFFF transparent transparent;
  top: 50%;
  left: 10px;
}
/* line 157, ../scss/module/_slideshow.scss */
.slideshow-prev:hover:before {
  border-color: transparent #2bccfb transparent transparent;
}

/* line 162, ../scss/module/_slideshow.scss */
.slideshow-next {
  right: 8px;
}
/* line 165, ../scss/module/_slideshow.scss */
.slideshow-next:before {
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #FFFFFF;
  top: 50%;
  right: 10px;
}
/* line 172, ../scss/module/_slideshow.scss */
.slideshow-next:hover:before {
  border-color: transparent transparent transparent #2bccfb;
}

/* line 177, ../scss/module/_slideshow.scss */
.cycle-caption {
  position: absolute;
  color: white;
  bottom: 15px;
  right: 15px;
  z-index: 110;
}

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

/* ============================================ *
 * Wishlist
 * ============================================ */
/* line 31, ../scss/module/_wishlist.scss */
#wishlist-table th {
  text-align: center;
}
/* line 35, ../scss/module/_wishlist.scss */
#wishlist-table.clean-table {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  width: 100%;
}
/* line 41, ../scss/module/_wishlist.scss */
#wishlist-table.clean-table th {
  border-bottom: 1px solid #C0C0C0;
}
/* line 45, ../scss/module/_wishlist.scss */
#wishlist-table.clean-table td {
  padding: 15px;
  vertical-align: top;
}
/* line 50, ../scss/module/_wishlist.scss */
#wishlist-table.clean-table thead th {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}
/* line 57, ../scss/module/_wishlist.scss */
#wishlist-table .product-name {
  font-size: 16px;
  line-height: 16px;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 0;
  text-transform: none;
}
/* line 64, ../scss/module/_wishlist.scss */
#wishlist-table .product-name a {
  color: #373c3e;
}
/* line 69, ../scss/module/_wishlist.scss */
#wishlist-table .product-type {
  color: #777e80;
  padding-top: 15px;
  text-transform: none;
  display: block;
}
/* line 76, ../scss/module/_wishlist.scss */
#wishlist-table .wishlist-sku {
  display: none;
  font-size: 12px;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  margin: 5px 0;
}
/* line 83, ../scss/module/_wishlist.scss */
#wishlist-table textarea {
  display: none;
  border: 1px solid #abb2b3;
  width: 100%;
  height: 45px;
  font-size: 12px;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}
/* line 91, ../scss/module/_wishlist.scss */
#wishlist-table textarea::-webkit-input-placeholder {
  text-transform: uppercase;
}
/* line 94, ../scss/module/_wishlist.scss */
#wishlist-table textarea:-moz-placeholder {
  text-transform: uppercase;
}
/* line 97, ../scss/module/_wishlist.scss */
#wishlist-table textarea::-moz-placeholder {
  text-transform: uppercase;
}
/* line 100, ../scss/module/_wishlist.scss */
#wishlist-table textarea:-ms-input-placeholder {
  text-transform: uppercase;
}
/* line 104, ../scss/module/_wishlist.scss */
#wishlist-table textarea:focus {
  border: 1px solid #029ecc;
}
/* line 109, ../scss/module/_wishlist.scss */
#wishlist-table .item-manage {
  text-align: right;
  max-width: 450px;
  padding-top: 5px;
}
/* line 114, ../scss/module/_wishlist.scss */
#wishlist-table .item-manage .button {
  font-size: 12px;
  padding: 3px 5px;
  display: none;
}
/* line 121, ../scss/module/_wishlist.scss */
#wishlist-table .cart-cell {
  text-align: center;
}
/* line 125, ../scss/module/_wishlist.scss */
#wishlist-table .customer-wishlist-item-quantity,
#wishlist-table .customer-wishlist-item-price {
  display: none;
}
/* line 131, ../scss/module/_wishlist.scss */
#wishlist-table td .product-image,
#wishlist-table td .product-image:hover {
  border: 0;
}
/* line 135, ../scss/module/_wishlist.scss */
#wishlist-table td .icon-remove {
  color: #373c3e;
  font-size: 18px;
}
/* line 139, ../scss/module/_wishlist.scss */
#wishlist-table td.wishlist-cell0 {
  padding-left: 0;
  padding-right: 0;
}
/* line 146, ../scss/module/_wishlist.scss */
#wishlist-table td.wishlist-cell2 {
  display: none;
}
/* line 149, ../scss/module/_wishlist.scss */
#wishlist-table td.wishlist-cell5 {
  padding-top: 27px;
}
/* line 152, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-image {
  width: 113px;
}
/* line 156, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-quantity {
  width: 3em;
}
/* line 160, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-price {
  width: 120px;
  text-align: center;
}
/* line 165, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-cart {
  width: 150px;
}
/* line 168, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-cart .button {
  white-space: nowrap;
}
/* line 172, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-cart .truncated {
  margin-bottom: 10px;
}
/* line 176, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-cart > p {
  margin-bottom: 0;
}
/* line 180, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-cart .remove-whishlist-item {
  text-align: center;
}
/* line 184, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-cart .btn-remove {
  vertical-align: top;
}
/* line 189, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-remove {
  width: 20px;
}
/* line 193, ../scss/module/_wishlist.scss */
#wishlist-table td .button,
#wishlist-table td button {
  white-space: normal;
}
/* line 200, ../scss/module/_wishlist.scss */
#wishlist-table .price-box {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
}
/* line 204, ../scss/module/_wishlist.scss */
#wishlist-table .price-box .price {
  color: #373c3e;
  font-size: 16px;
}
/* line 210, ../scss/module/_wishlist.scss */
#wishlist-table .giftregisty-add {
  margin-top: 5px;
}
/* line 213, ../scss/module/_wishlist.scss */
#wishlist-table .giftregisty-add .change {
  display: none;
}
/* line 217, ../scss/module/_wishlist.scss */
#wishlist-table .giftregisty-add li {
  cursor: pointer;
  color: #02b2e7;
  margin-bottom: 3px;
}
/* line 225, ../scss/module/_wishlist.scss */
#wishlist-table .truncated .details {
  background: none;
  color: #02b2e7;
}
/* line 231, ../scss/module/_wishlist.scss */
#wishlist-table td[data-rwd-label]:before {
  font-weight: 600;
}

/* line 236, ../scss/module/_wishlist.scss */
#wishlist-view-form .buttons-set {
  display: none;
}

/* line 240, ../scss/module/_wishlist.scss */
body.customer-account .my-account .my-wishlist .page-title h1 {
  margin-bottom: 16px;
}

@media only screen and (max-width: 1199px) {
  /* line 249, ../scss/module/_wishlist.scss */
  #wishlist-table.clean-table td {
    padding-left: 10px;
    padding-right: 10px;
  }
  /* line 254, ../scss/module/_wishlist.scss */
  #wishlist-table td.wishlist-cell0 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 979px) {
  /* line 267, ../scss/module/_wishlist.scss */
  #wishlist-table.clean-table td textarea {
    height: 100px;
  }
  /* line 271, ../scss/module/_wishlist.scss */
  #wishlist-table.clean-table td.customer-wishlist-item-cart {
    width: 110px;
  }
  /* line 276, ../scss/module/_wishlist.scss */
  #wishlist-table .product-name {
    font-size: 16px;
  }
}
@media only screen and (max-width: 770px) {
  /* line 286, ../scss/module/_wishlist.scss */
  #wishlist-table:after {
    content: '';
    display: table;
    clear: both;
  }
  /* line 290, ../scss/module/_wishlist.scss */
  #wishlist-table .product-name {
    font-size: 16px;
    padding-left: 10px;
  }
  /* line 295, ../scss/module/_wishlist.scss */
  #wishlist-table textarea {
    height: 68px;
    max-width: 100%;
  }
  /* line 300, ../scss/module/_wishlist.scss */
  #wishlist-table .item-manage {
    max-width: 100%;
  }
  /* line 304, ../scss/module/_wishlist.scss */
  #wishlist-table tr {
    position: relative;
  }
  /* line 307, ../scss/module/_wishlist.scss */
  #wishlist-table tr:after {
    content: '';
    display: table;
    clear: both;
  }
  /* line 313, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-cart p {
    margin-bottom: 0;
  }
  /* line 317, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-cart .remove-whishlist-item {
    margin-right: 0;
    padding-top: 4px;
  }
  /* line 323, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-cart {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 599px) {
  /* line 333, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-quantity {
    padding-left: 0;
  }
}
@media only screen and (max-width: 479px) {
  /* line 343, ../scss/module/_wishlist.scss */
  #wishlist-table tr {
    position: relative;
  }
  /* line 347, ../scss/module/_wishlist.scss */
  #wishlist-table th.customer-wishlist-item-image {
    display: block;
  }
  /* line 352, ../scss/module/_wishlist.scss */
  #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;
  }
  /* line 363, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-image {
    display: block;
    /* overflow: hidden; */
    width: 130px;
  }
  /* line 368, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-image a {
    float: left;
  }
  /* line 371, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-image a img {
    width: 113px;
    height: 113px;
  }
  /* line 378, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-quantity, #wishlist-table td.customer-wishlist-item-price {
    text-align: left;
  }
  /* line 382, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-quantity:before, #wishlist-table td.customer-wishlist-item-price:before {
    float: left;
    margin-right: 15px;
  }
  /* line 387, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-quantity .cart-cell, #wishlist-table td.customer-wishlist-item-price .cart-cell {
    text-align: left;
  }
  /* line 391, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-quantity .price-box, #wishlist-table td.customer-wishlist-item-price .price-box {
    margin-top: 0;
  }
  /* line 397, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-cart .cart-cell {
    float: left;
    width: 48%;
  }
  /* line 402, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-cart > p {
    float: right;
    width: 48%;
  }
  /* line 408, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-remove {
    position: absolute;
    top: 15px;
    right: 0px;
    display: block;
    padding: 0px;
    height: 20px;
  }
  /* line 419, ../scss/module/_wishlist.scss */
  #wishlist-table.clean-table td.customer-wishlist-item-cart {
    width: 100%;
  }
}
@media screen and (max-width: 400px) {
  /* line 428, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-cart {
    display: block;
  }
  /* line 430, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-cart .cart-cell {
    float: none;
    width: 100%;
    text-align: right;
  }
}
/* ============================================ *
 * Wishlist Sidebar
 * ============================================ */
/* line 445, ../scss/module/_wishlist.scss */
.block-wishlist .mini-products-list > li:not(:last-child) {
  padding-bottom: 5px;
}
/* line 449, ../scss/module/_wishlist.scss */
.block-wishlist .product-details .product-name {
  padding-top: 0;
  margin-bottom: 5px;
}
/* line 454, ../scss/module/_wishlist.scss */
.block-wishlist .price-box {
  float: left;
  margin: 0;
}
/* line 459, ../scss/module/_wishlist.scss */
.block-wishlist .price-box,
.block-wishlist .price-box .price,
.block-wishlist .link-cart {
  font-size: 14px;
}
/* line 465, ../scss/module/_wishlist.scss */
.block-wishlist .link-cart {
  float: left;
  text-transform: uppercase;
  margin-right: 7px;
  padding-right: 7px;
  border-right: 1px solid #EDEDED;
}

/* ============================================ *
 * Checkout - Mini cart
 * ============================================ */
/* line 30, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart {
  display: inline-block;
}
@media only screen and (max-width: 770px) {
  /* line 30, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart {
    display: block;
  }
}
/* line 37, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .minicart-message {
  display: block;
  padding: 10px;
}
/* line 42, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .empty {
  padding: 10px;
  text-align: center;
}
/* line 47, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .minicart-wrapper {
  clear: both;
  position: relative;
}
/* line 27, ../scss/mixin/_loading-overlay.scss */
.header-minicart .minicart-wrapper:before, .header-minicart .minicart-wrapper:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
/* line 38, ../scss/mixin/_loading-overlay.scss */
.header-minicart .minicart-wrapper:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
/* line 44, ../scss/mixin/_loading-overlay.scss */
.header-minicart .minicart-wrapper:after {
  background-image: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
/* line 51, ../scss/mixin/_loading-overlay.scss */
.header-minicart .minicart-wrapper.loading {
  position: relative;
}
/* line 54, ../scss/mixin/_loading-overlay.scss */
.header-minicart .minicart-wrapper.loading:before, .header-minicart .minicart-wrapper.loading:after {
  display: block;
}
/* line 53, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .block-cart {
  display: none;
}
/* line 56, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .block-subtitle {
  color: #50A4CF;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.4;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0px;
}
/* line 67, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .block-subtitle .close {
  width: 40px;
  float: right;
  display: block;
  color: #373c3e;
  text-decoration: none;
  font-weight: normal;
  font-size: 30px;
  position: absolute;
  top: -8px;
  right: -3px;
}
/* line 80, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .mini-products-list {
  padding: 10px;
  padding-top: 0px;
}
/* line 84, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .mini-products-list li {
  padding: 8px 5px 8px 11px;
  border-bottom: 1px solid #DDDDDD;
  position: relative;
}
/* line 89, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .mini-products-list li.last {
  border: none;
}
/* line 93, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .mini-products-list li .product-details {
  position: relative;
}
/* line 100, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .product-details .product-name {
  padding-top: 0px;
  font-weight: bold;
}
/* line 104, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .product-details .product-name a {
  color: #02b2e7;
}
/* line 110, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .info-wrapper {
  margin-bottom: 0.5em;
}
/* line 113, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .info-wrapper th {
  text-transform: uppercase;
  padding-right: 10px;
}
/* line 117, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .info-wrapper td {
  color: #02b2e7;
  clear: right;
}
/* line 123, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .info-wrapper .qty-wrapper td {
  height: 33px;
  line-height: 33px;
}
/* line 129, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .info-wrapper .qty {
  padding-left: 4px;
  padding-right: 4px;
  margin-right: 2px;
  width: 3.2em;
  text-align: center;
  height: 30px;
}
/* line 138, ../scss/module/_checkout-cart-minicart.scss */
.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;
}
/* line 144, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .info-wrapper .quantity-button[disabled] {
  cursor: default;
}
/* line 148, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .info-wrapper .quantity-button.visible {
  opacity: 1;
}
/* line 154, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .subtotal {
  background-color: #DDDDDD;
  text-align: center;
  line-height: 2em;
}
/* line 159, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .subtotal .label {
  color: white;
  text-transform: uppercase;
}
/* line 163, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .subtotal .price {
  color: #02b2e7;
}
/* line 168, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .minicart-actions {
  padding: 10px;
  margin-top: 0px;
  overflow: hidden;
  position: relative;
  text-align: center;
}
/* line 175, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .minicart-actions .checkout-button {
  min-width: 145px;
}
/* line 179, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .minicart-actions .cart-link {
  height: 33px;
  line-height: 39px;
  text-transform: uppercase;
  font-size: 16px;
}
/* line 187, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .minicart-actions .paypal-logo .paypal-or {
  line-height: 1.6;
}
/* line 193, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart #minicart-error-message {
  text-align: center;
  color: red;
  display: none;
}
/* line 199, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart #minicart-success-message {
  text-align: center;
  color: green;
  display: none;
}
/* line 206, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart .jcarousel-control-prev,
.header-minicart .jcarousel-control-next {
  display: none;
}

/* line 212, ../scss/module/_checkout-cart-minicart.scss */
.header-minicart.skip-active .block-cart,
.block-cart.skip-active {
  display: block;
}

@media only screen and (min-width: 771px) {
  /* line 218, ../scss/module/_checkout-cart-minicart.scss */
  .checkout-types.minicart {
    float: none;
    text-align: center;
  }
}
@media only screen and (max-width: 479px) {
  /* line 225, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart a.skip-cart {
    z-index: 1;
  }
}
@media only screen and (max-width: 770px) {
  /* line 233, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .subtotal .label {
    color: #373c3e;
  }
  /* line 238, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .minicart-wrapper:before {
    background-color: #EDEDED;
  }
  /* line 243, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .quantity-button {
    float: none;
  }
  /* line 247, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .header-minicart .block-cart {
    padding: 15px;
  }
  /* line 251, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .header-minicart .block-subtitle {
    padding-top: 59px;
  }
  /* line 255, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .minicart-actions {
    padding-bottom: 33px;
  }
  /* line 258, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .minicart-actions .cart-link {
    bottom: 0;
    right: 10px;
    position: absolute;
  }
  /* line 265, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .minicart-actions .checkout-types.minicart li {
    display: inline-block;
  }
  /* line 269, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo > a {
    display: inline;
  }
  /* line 273, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .bml_button {
    display: inline-block;
    vertical-align: top;
  }
  /* line 278, ../scss/module/_checkout-cart-minicart.scss */
  .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) {
  /* line 295, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .minicart-actions .cart-link {
    right: auto;
    left: 0;
    text-align: center;
    width: 100%;
  }
  /* line 305, ../scss/module/_checkout-cart-minicart.scss */
  .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;
  }
  /* line 312, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .minicart-actions .checkout-types.minicart li .paypal-logo .paypal-or {
    line-height: 1.6;
  }
}
@media only screen and (max-width: 599px) {
  /* line 325, ../scss/module/_checkout-cart-minicart.scss */
  .header-minicart .minicart-actions .checkout-button {
    width: 100%;
  }
}
/* ============================================ *
 * Search - Auto Suggest
 * ============================================ */
/* line 30, ../scss/module/_search.scss */
.search-autocomplete {
  left: 0 !important;
  overflow: visible !important;
  position: relative !important;
  top: 15px !important;
  width: 100% !important;
  z-index: 200;
}
/* line 38, ../scss/module/_search.scss */
.search-autocomplete ul {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: #FFFFFF;
  border: 1px solid #02b2e7;
  left: 0;
  padding-left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
/* line 48, ../scss/module/_search.scss */
.search-autocomplete ul li {
  border-bottom: 1px solid #F4F4F4;
  color: #02b2e7;
  cursor: pointer;
  font-size: 14px;
  padding: 4px 6px;
  text-align: left;
}
/* line 56, ../scss/module/_search.scss */
.search-autocomplete ul li:hover {
  color: #2bccfb;
}
/* line 60, ../scss/module/_search.scss */
.search-autocomplete ul li.selected {
  background-color: #02b2e7;
  color: white;
}
/* line 65, ../scss/module/_search.scss */
.search-autocomplete ul li .amount {
  float: right;
  font-weight: bold;
}
/* line 70, ../scss/module/_search.scss */
.search-autocomplete ul li:last-child {
  border-bottom: none;
}
/* line 76, ../scss/module/_search.scss */
.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 #02b2e7;
  border-top: none;
  left: 50%;
  top: -7px;
}

/* ============================================ *
 * Search - Advanced
 * ============================================ */
/* line 87, ../scss/module/_search.scss */
.advanced-search {
  background: #F4F4F4;
  border: 1px solid #EDEDED;
  padding: 25px;
}
/* line 93, ../scss/module/_search.scss */
.advanced-search select.multiselect option {
  border-bottom: 1px solid #EDEDED;
  padding: 2px 5px;
}

@media only screen and (max-width: 479px) {
  /* line 101, ../scss/module/_search.scss */
  .advanced-search {
    padding: 15px;
  }
}
/* ============================================ *
 * Account - Reviews
 * ============================================ */
/* line 32, ../scss/module/_account-reviews.scss */
.product-review .product-img-box p.label {
  border-bottom: 1px solid #e1e1e0;
  font-size: 20px;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  margin-top: 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
}
/* line 41, ../scss/module/_account-reviews.scss */
.product-review .product-img-box .rating-box {
  margin: 15px 0;
}
/* line 47, ../scss/module/_account-reviews.scss */
.product-review .product-details h2 {
  border-bottom: 1px solid #e1e1e0;
  color: #3399CC;
  font-size: 20px;
  font-weight: 600;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  padding-bottom: 10px;
}
/* line 57, ../scss/module/_account-reviews.scss */
.product-review .ratings-table {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}
/* line 60, ../scss/module/_account-reviews.scss */
.product-review .ratings-table th {
  padding-right: 10px;
}
/* line 64, ../scss/module/_account-reviews.scss */
.product-review .ratings-table tr {
  float: left;
  font-size: 14px;
  margin-right: 10px;
  text-transform: uppercase;
}
/* line 73, ../scss/module/_account-reviews.scss */
.product-review .ratings-description dt {
  border-bottom: 1px solid #e1e1e0;
  font-size: 20px;
  font-weight: 400;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  margin-top: 20px;
  padding: 10px 0;
  text-transform: uppercase;
}
/* line 83, ../scss/module/_account-reviews.scss */
.product-review .ratings-description dd {
  color: #737373;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
}

@media only screen and (min-width: 771px) {
  /* line 96, ../scss/module/_account-reviews.scss */
  .product-review .ratings-table tr {
    float: none;
  }
}
@media only screen and (min-width: 1126px) {
  /* line 108, ../scss/module/_account-reviews.scss */
  .product-review .ratings-table tr {
    float: left;
    margin-right: 15px;
  }
}
@media only screen and (max-width: 320px) {
  /* line 121, ../scss/module/_account-reviews.scss */
  .product-review .ratings-table tr {
    float: none;
  }
}
/* ============================================ *
 * CMS Pages
 * ============================================ */
/* line 37, ../scss/module/_cms.scss */
.cms-page-view .page-title h1,
.cms-page-view .page-title h3,
.cms-page-view .page-head h1,
.cms-page-view .page-head h3,
.cms-no-route .page-title h1,
.cms-no-route .page-title h3,
.cms-no-route .page-head h1,
.cms-no-route .page-head h3 {
  border: none;
}
/* line 45, ../scss/module/_cms.scss */
.cms-page-view .std img,
.cms-no-route .std img {
  max-width: 100%;
}
/* line 49, ../scss/module/_cms.scss */
.cms-page-view .std p,
.cms-no-route .std p {
  color: #373c3e;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 150%;
  text-align: justify;
}
/* line 57, ../scss/module/_cms.scss */
.cms-page-view .std h1,
.cms-no-route .std h1 {
  color: #373c3e;
}
/* line 61, ../scss/module/_cms.scss */
.cms-page-view .std h2,
.cms-no-route .std h2 {
  color: #373c3e;
}
/* line 65, ../scss/module/_cms.scss */
.cms-page-view .std li,
.cms-no-route .std li {
  color: #373c3e;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 150%;
  text-align: left;
}
/* line 73, ../scss/module/_cms.scss */
.cms-page-view .std .page-subtitle,
.cms-no-route .std .page-subtitle {
  margin: 28px auto;
}
/* line 79, ../scss/module/_cms.scss */
.cms-page-view .col-left:after,
.cms-no-route .col-left:after {
  content: '';
  display: table;
  clear: both;
}

/* line 88, ../scss/module/_cms.scss */
.cms-no-route .std img {
  width: 100%;
}

/* line 97, ../scss/module/_cms.scss */
.cms-page-view .std .messages,
.cms-home .std .messages,
.cms-no-route .std .messages {
  margin-bottom: 0;
}
/* line 100, ../scss/module/_cms.scss */
.cms-page-view .std .messages ul,
.cms-home .std .messages ul,
.cms-no-route .std .messages ul {
  margin-bottom: 0;
}
/* line 104, ../scss/module/_cms.scss */
.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: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}

/* line 123, ../scss/mixin/_toggle-content.scss */
#accordion .toggle-tabs {
  display: none;
}
/* line 128, ../scss/mixin/_toggle-content.scss */
#accordion > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #373c3e;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 21px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0px;
  padding: 7px 10px 7px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #e1e1e0;
  position: relative;
  background-color: #F4F4F4;
  display: block;
}
/* line 110, ../scss/mixin/_toggle-content.scss */
#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 #02b2e7;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px;
}
/* line 117, ../scss/mixin/_toggle-content.scss */
#accordion > dl > dt:hover {
  background-color: #ededed;
}
/* line 133, ../scss/mixin/_toggle-content.scss */
#accordion > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #e1e1e0;
}
/* line 140, ../scss/mixin/_toggle-content.scss */
#accordion > dl > dd:last-child {
  border-width: 0 1px 1px 1px;
}
/* line 119, ../scss/module/_cms.scss */
#accordion li {
  position: relative;
  overflow: hidden;
}
/* line 123, ../scss/module/_cms.scss */
#accordion li .plusimage h2 {
  margin-right: 10px;
}

/* line 133, ../scss/module/_cms.scss */
.page-sitemap .links {
  display: block;
  text-align: right;
  margin: 0 20px 0 0;
}
/* line 138, ../scss/module/_cms.scss */
.page-sitemap .links a {
  position: relative;
}
/* line 143, ../scss/module/_cms.scss */
.page-sitemap .sitemap {
  padding: 0 20px;
  margin: 15px 0;
  font-size: 14px;
}
/* line 148, ../scss/module/_cms.scss */
.page-sitemap .sitemap li {
  margin: 3px 0;
}

/* line 158, ../scss/module/_cms.scss */
.contacts-index-index h1 {
  border: none;
}

/* line 164, ../scss/module/_cms.scss */
#contactForm h2 {
  display: none;
}
/* line 168, ../scss/module/_cms.scss */
#contactForm:after {
  content: '';
  display: table;
  clear: both;
}
/* line 172, ../scss/module/_cms.scss */
#contactForm .fieldset .legend + .required {
  margin: 0;
  font-size: 16px;
}
/* line 177, ../scss/module/_cms.scss */
#contactForm li {
  margin: 0 auto;
}

@media only screen and (max-width: 770px) {
  /* line 184, ../scss/module/_cms.scss */
  #contactForm {
    padding-left: 0;
  }
}
/* ============================================ *
 * Pricing Conditions
 * ============================================ */
/* line 32, ../scss/module/_pricing_conditions.scss */
.price-box .minimal-price-link .label {
  color: #d21d05;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

/* line 41, ../scss/module/_pricing_conditions.scss */
.map-info {
  white-space: nowrap;
}

/* line 46, ../scss/module/_pricing_conditions.scss */
.catalog-product-view .map-info {
  white-space: normal;
}
/* line 48, ../scss/module/_pricing_conditions.scss */
.catalog-product-view .map-info > span {
  float: right;
  margin-bottom: 5px;
}
/* line 52, ../scss/module/_pricing_conditions.scss */
.catalog-product-view .map-info .price-box.map-info > a {
  float: right;
  width: 100%;
}

/* ============================================ *
 * Cookies
 * ============================================ */
/* line 31, ../scss/module/_cookies.scss */
.notice-cookie .notice-inner {
  padding-bottom: 0;
}
/* line 34, ../scss/module/_cookies.scss */
.notice-cookie .notice-inner:after {
  content: '';
  display: table;
  clear: both;
}
/* line 39, ../scss/module/_cookies.scss */
.notice-cookie .notice-text {
  float: left;
  max-width: 90%;
  padding-top: 4px;
  text-align: left;
}
/* line 45, ../scss/module/_cookies.scss */
.notice-cookie .notice-text p {
  padding-bottom: 14px;
  line-height: 1.3;
}
/* line 51, ../scss/module/_cookies.scss */
.notice-cookie .actions {
  float: left;
  text-align: right;
  padding-bottom: 14px;
}

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

/* line 34, ../scss/module/_tags.scss */
#addTagForm .form-add {
  margin-top: 10px;
}

/* line 37, ../scss/module/_tags.scss */
.product-tags {
  background-color: #F4F4F4;
  border: 1px solid #e1e1e0;
  float: left;
  margin-bottom: 10px;
  padding: 5px 1% 10px;
  width: 98%;
}

/* line 45, ../scss/module/_tags.scss */
.product-tags li {
  float: left;
  margin-right: 15px;
}

/* line 49, ../scss/module/_tags.scss */
.product-tags li.last {
  margin-right: 0px;
}

/* line 52, ../scss/module/_tags.scss */
.tags-list {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}

/* line 57, ../scss/module/_tags.scss */
.tags-list > li {
  float: left;
  margin-right: 10px;
}

/* line 61, ../scss/module/_tags.scss */
.block-tags .actions > a {
  font-size: 12px;
}

/* line 65, ../scss/module/_tags.scss */
.my-tag-edit .button.btn-remove {
  padding: 0;
}
/* line 68, ../scss/module/_tags.scss */
.my-tag-edit .button.btn-remove:after {
  color: white;
}

@media only screen and (max-width: 770px) {
  /* line 74, ../scss/module/_tags.scss */
  .tags-list > li,
  .tags-list {
    float: none;
  }
}
/* ============================================ *
 * Captcha
 * ============================================ */
/* line 29, ../scss/module/_captcha.scss */
.captcha-note {
  clear: left;
  padding-top: 5px;
}

/* line 33, ../scss/module/_captcha.scss */
.captcha-image {
  float: left;
  display: inline;
  max-width: 100%;
  position: relative;
  width: 258px;
  margin-bottom: 10px;
}

/* line 41, ../scss/module/_captcha.scss */
.captcha-image .captcha-img {
  border: 1px solid #b6b6b6;
  vertical-align: bottom;
  width: 100%;
}

/* line 46, ../scss/module/_captcha.scss */
.registered-users .captcha-image {
  margin: 0;
}

/* line 47, ../scss/module/_captcha.scss */
.captcha-reload {
  cursor: pointer;
  position: absolute;
  top: 2px;
  right: 2px;
}

/* line 53, ../scss/module/_captcha.scss */
.captcha-reload.refreshing {
  animation: rotate 1.5s infinite linear;
  -webkit-animation: rotate 1.5s infinite linear;
  -moz-animation: rotate 1.5s infinite linear;
}

/* line 58, ../scss/module/_captcha.scss */
.customer-account-create .scaffold-form .captcha-input-container label:first-child {
  width: 100%;
}

/* line 59, ../scss/module/_captcha.scss */
.captcha-reload {
  position: absolute;
  right: 4px;
  top: 4px;
}

/* line 64, ../scss/module/_captcha.scss */
.captcha-img {
  border: 20px solid #bbb;
}

/* line 65, ../scss/module/_captcha.scss */
.captcha-input-container {
  margin-bottom: 10px;
}

/* line 66, ../scss/module/_captcha.scss */
.control.newsletter-box, .captcha-input-container, .captcha-img-container {
  float: none;
  clear: both;
}
/* line 70, ../scss/module/_captcha.scss */
.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
 * ============================================ */
/* line 78, ../scss/module/_captcha.scss */
#co-billing-form ul.form-list > .control {
  clear: left;
  float: left;
  margin: 0;
  width: 100%;
}

/* ============================================ *
 * Account - Orders, Invoices, Credit Memos.
 * ============================================ */
/* line 32, ../scss/module/_account-orders.scss */
.sales-order-print .original-price.crossed-out,
.sales-order-view .original-price.crossed-out {
  color: #919799;
  text-decoration: line-through;
}

@media only screen and (max-width: 479px) {
  /* line 43, ../scss/module/_account-orders.scss */
  .sales-order-invoice .sub-title,
  .sales-order-creditmemo .sub-title,
  .sales-order-shipment .sub-title {
    float: left;
    font-size: 19px;
    text-align: center;
    width: 100%;
  }
  /* line 49, ../scss/module/_account-orders.scss */
  .sales-order-invoice .order-links,
  .sales-order-creditmemo .order-links,
  .sales-order-shipment .order-links {
    text-align: center;
    width: 100%;
  }
}
/* ============================================ *
 * Recurring Profiles
 * ============================================ */
/* line 32, ../scss/module/_recurring-profiles.scss */
#recurring_profile_list_view th {
  white-space: normal;
}
/* line 35, ../scss/module/_recurring-profiles.scss */
#recurring_profile_list_view th span {
  white-space: inherit;
}
@media only screen and (max-width: 479px) {
  /* line 30, ../scss/module/_recurring-profiles.scss */
  #recurring_profile_list_view {
    font-size: 14px;
  }
  /* line 43, ../scss/module/_recurring-profiles.scss */
  #recurring_profile_list_view a {
    font-size: inherit;
  }
  /* line 47, ../scss/module/_recurring-profiles.scss */
  #recurring_profile_list_view th,
  #recurring_profile_list_view td {
    padding: 2px;
  }
}

/* line 55, ../scss/module/_recurring-profiles.scss */
.recurring-profiles-title {
  float: left;
}
/* line 58, ../scss/module/_recurring-profiles.scss */
.recurring-profiles-title h1 {
  margin-bottom: 7px;
}

/* line 63, ../scss/module/_recurring-profiles.scss */
body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons {
  float: right;
  text-align: right;
  margin-top: 25px;
}
@media only screen and (max-width: 479px) {
  /* line 63, ../scss/module/_recurring-profiles.scss */
  body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons {
    text-align: center;
    float: none;
  }
}
/* line 73, ../scss/module/_recurring-profiles.scss */
body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons .button {
  position: static;
}

/* line 79, ../scss/module/_recurring-profiles.scss */
.recurring-profiles-messages:after {
  content: '';
  display: table;
  clear: both;
}

/* line 84, ../scss/module/_recurring-profiles.scss */
#recurring_start_date_trig {
  display: inline;
}

/* line 88, ../scss/module/_recurring-profiles.scss */
#orders-based-profile {
  width: 100%;
}

/* ============================================ *
 * Billing Agreements
 * ============================================ */
/* line 31, ../scss/module/_billing-agreements.scss */
.billing-agreements .info-box {
  margin-bottom: 25px;
}
/* line 34, ../scss/module/_billing-agreements.scss */
.billing-agreements .info-box:after {
  content: '';
  display: table;
  clear: both;
}
/* line 38, ../scss/module/_billing-agreements.scss */
.billing-agreements .info-box .form-list {
  max-width: 400px;
  width: 100%;
}
/* line 43, ../scss/module/_billing-agreements.scss */
.billing-agreements .info-box .box-title {
  margin-top: 20px;
  margin-bottom: 7px;
}
/* line 48, ../scss/module/_billing-agreements.scss */
.billing-agreements .info-box .button {
  float: right;
  margin-top: 7px;
}
@media only screen and (max-width: 479px) {
  /* line 48, ../scss/module/_billing-agreements.scss */
  .billing-agreements .info-box .button {
    width: 100%;
    float: none;
  }
}
/* line 59, ../scss/module/_billing-agreements.scss */
.billing-agreements #payment_method {
  width: 100%;
  margin-top: 7px;
  margin-bottom: 7px;
}

/* line 67, ../scss/module/_billing-agreements.scss */
.billing-agreement-view-header-wrapper .heading {
  max-width: 80%;
}
@media only screen and (max-width: 479px) {
  /* line 67, ../scss/module/_billing-agreements.scss */
  .billing-agreement-view-header-wrapper .heading {
    max-width: 100%;
  }
}

/* line 77, ../scss/module/_billing-agreements.scss */
.billing-agreement-details td, .billing-agreement-details th {
  padding: 3.5px;
}

@media only screen and (max-width: 979px) {
  /* line 85, ../scss/module/_billing-agreements.scss */
  .billing-agreements .data-table .created-at,
  .billing-agreements .data-table .updated-at {
    display: none;
  }
}
/* ============================================ *
 * Popular Search Terms Cloud
 * ============================================ */
/* line 30, ../scss/module/_popular-terms.scss */
.catalogsearch-term-popular .tags-list {
  float: left;
  width: 100%;
}

/* line 34, ../scss/module/_popular-terms.scss */
.catalogsearch-term-popular .tags-list > li {
  float: left;
  height: 40px;
  margin-right: 25px;
}

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

/* line 49, ../scss/module/_widget.scss */
.widget {
  clear: both;
}

/* line 53, ../scss/module/_widget.scss */
.widget .pager {
  float: none;
  width: 100%;
}

@media only screen and (min-width: 1199px) {
  /* line 64, ../scss/module/_widget.scss */
  .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 */
  }
  /* line 404, ../scss/module/_product-list.scss */
  .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;
  }
  /* line 407, ../scss/module/_product-list.scss */
  .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;
  }
  /* line 410, ../scss/module/_product-list.scss */
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n) {
    margin-right: 2.1978%;
  }
  /* line 416, ../scss/module/_product-list.scss */
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li {
    margin-right: 2.1978%;
  }
  /* line 419, ../scss/module/_product-list.scss */
  .col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-4-col-widget > li {
    width: 23.35165%;
    margin-right: 2.1978%;
  }
  /* line 423, ../scss/module/_product-list.scss */
  .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;
  }
  /* line 426, ../scss/module/_product-list.scss */
  .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;
  }
  /* line 404, ../scss/module/_product-list.scss */
  .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;
  }
  /* line 407, ../scss/module/_product-list.scss */
  .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;
  }
  /* line 410, ../scss/module/_product-list.scss */
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n) {
    margin-right: 2.1978%;
  }
  /* line 416, ../scss/module/_product-list.scss */
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li {
    margin-right: 2.1978%;
  }
  /* line 419, ../scss/module/_product-list.scss */
  .col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li,
  .col3-layout .col-main .widget .products-grid--max-5-col-widget > li {
    width: 18.24176%;
    margin-right: 2.1978%;
  }
  /* line 423, ../scss/module/_product-list.scss */
  .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;
  }
  /* line 426, ../scss/module/_product-list.scss */
  .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) {
  /* line 73, ../scss/module/_widget.scss */
  .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 */
  }
  /* line 404, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd) {
    clear: none;
  }
  /* line 407, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  /* line 410, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n) {
    margin-right: 2.1978%;
  }
  /* line 416, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
    margin-right: 2.1978%;
  }
  /* line 419, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
    width: 23.35165%;
    margin-right: 2.1978%;
  }
  /* line 423, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1) {
    clear: left;
  }
  /* line 426, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n) {
    margin-right: 0;
  }
  /* line 404, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd) {
    clear: none;
  }
  /* line 407, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1) {
    clear: none;
  }
  /* line 410, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n) {
    margin-right: 2.1978%;
  }
  /* line 416, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
    margin-right: 2.1978%;
  }
  /* line 419, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
    width: 18.24176%;
    margin-right: 2.1978%;
  }
  /* line 423, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1) {
    clear: left;
  }
  /* line 426, ../scss/module/_product-list.scss */
  .col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n) {
    margin-right: 0;
  }
}
/* ============================================ *
 * Checkout - Multiple Addresses
 * ============================================ */
/* line 31, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .checkout-progress {
  width: 100%;
  float: left;
  margin-bottom: 25px;
}
/* line 35, ../scss/module/_checkout-multi-address.scss */
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 #e1e1e0;
  border-right: 1px solid #e1e1e0;
  margin-bottom: 10px;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}
/* line 46, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .checkout-progress > li.active {
  background-color: #efecec;
}
/* line 49, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .checkout-progress > li.last {
  border-right: 0px;
}
/* line 54, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .page-title {
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
/* line 58, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .page-title h1 {
  border: 0 none;
  float: left;
  margin-top: 2px;
  margin-right: 2%;
}
/* line 64, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .page-title .button {
  float: right;
}
/* line 68, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .multiple-checkout > h2 {
  text-transform: none;
  font-size: 17px;
  margin-bottom: 15px;
}
/* line 73, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .messages {
  float: left;
  width: 100%;
}
/* line 77, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .col-2.col-wide {
  width: 66%;
}
/* line 80, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .col-1.col-narrow {
  width: 30%;
}
/* line 83, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .actions {
  margin-bottom: 10px;
}
/* line 87, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .grand-total {
  text-align: right;
  font-size: 20px;
  font-weight: bold;
}
/* line 93, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] #checkout-review-submit {
  float: right;
}
/* line 97, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] #review-buttons-container {
  float: right;
  text-align: right;
}

/* line 104, ../scss/module/_checkout-multi-address.scss */
.checkout-multishipping-addresses .btn-remove2 {
  text-indent: -5555px;
  display: block;
  width: 22px;
  height: 22px;
}

/* line 113, ../scss/module/_checkout-multi-address.scss */
.checkout-multishipping-shipping .gift-messages {
  margin-top: 20px;
}
/* line 116, ../scss/module/_checkout-multi-address.scss */
.checkout-multishipping-shipping .gift-messages-form {
  margin-top: 15px;
}
/* line 118, ../scss/module/_checkout-multi-address.scss */
.checkout-multishipping-shipping .gift-messages-form h4 {
  margin-top: 15px;
  margin-bottom: 5px;
}
/* line 122, ../scss/module/_checkout-multi-address.scss */
.checkout-multishipping-shipping .gift-messages-form .form-list {
  margin-top: 10px;
  margin-bottom: 25px;
}
/* line 126, ../scss/module/_checkout-multi-address.scss */
.checkout-multishipping-shipping .gift-messages-form .item {
  margin-top: 15px;
}

/* line 137, ../scss/module/_checkout-multi-address.scss */
.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 #e1e1e0;
  padding: 10px;
  font-size: 14px;
}
/* line 146, ../scss/module/_checkout-multi-address.scss */
.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 #e1e1e0;
  padding: 10px;
  font-size: 14px;
}
/* line 154, ../scss/module/_checkout-multi-address.scss */
.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;
}

/* line 163, ../scss/module/_checkout-multi-address.scss */
.checkout-multishipping-billing .sp-methods dt {
  float: left;
  width: 100%;
}

/* line 169, ../scss/module/_checkout-multi-address.scss */
#multiship-addresses-table > tbody > tr > td.a-center.last > a {
  background-image: none;
}

/* line 173, ../scss/module/_checkout-multi-address.scss */
#review-order-form > div:nth-child(3) > div.divider {
  width: 100%;
  clear: both;
}

@media only screen and (max-width: 979px) {
  /* line 180, ../scss/module/_checkout-multi-address.scss */
  body[class*="checkout-multishipping-"] .checkout-progress span {
    word-spacing: 300px;
  }

  /* line 185, ../scss/module/_checkout-multi-address.scss */
  #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) {
  /* line 198, ../scss/module/_checkout-multi-address.scss */
  body[class*="checkout-multishipping-"] .checkout-progress span {
    width: 12px;
  }
  /* line 202, ../scss/module/_checkout-multi-address.scss */
  body[class*="checkout-multishipping-"] .checkout-progress li {
    width: 100%;
    margin: 0;
    text-align: left;
    padding-left: 3%;
    border-right: 0px;
  }
  /* line 209, ../scss/module/_checkout-multi-address.scss */
  body[class*="checkout-multishipping-"] .checkout-progress span {
    word-spacing: 1px;
    width: 12px;
  }
  /* line 214, ../scss/module/_checkout-multi-address.scss */
  body[class*="checkout-multishipping-"] .box-title {
    float: left;
    width: 100%;
  }
  /* line 218, ../scss/module/_checkout-multi-address.scss */
  body[class*="checkout-multishipping-"] .page-title .button {
    float: left;
    margin-bottom: 10px;
  }
  /* line 223, ../scss/module/_checkout-multi-address.scss */
  body[class*="checkout-multishipping-"] .linearize-table tfoot td {
    text-align: right;
  }
  /* line 226, ../scss/module/_checkout-multi-address.scss */
  body[class*="checkout-multishipping-"] .linearize-table select {
    width: 100%;
    min-width: 200px;
  }
  /* line 231, ../scss/module/_checkout-multi-address.scss */
  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) {
  /* line 239, ../scss/module/_checkout-multi-address.scss */
  .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) {
  /* line 248, ../scss/module/_checkout-multi-address.scss */
  body[class*="checkout-multishipping-"] .buttons-set .back-link {
    display: block;
  }
}
/* ============================================ *
 * Base Algolia Search from algoliasearh/algoliasearch.css (which has been unset)
 * ============================================ */
/* SEARCH BOX */
/* line 31, ../scss/module/_algoliaenhanced.scss */
.ais-search-box--powered-by {
  font-size: .8em;
  text-align: right;
  margin-top: 2px;
}

/* line 37, ../scss/module/_algoliaenhanced.scss */
input::-ms-clear {
  display: none;
}

/* PAGINATION */
/* line 42, ../scss/module/_algoliaenhanced.scss */
#instant-search-pagination-container {
  width: 100%;
  text-align: center;
}

/* line 46, ../scss/module/_algoliaenhanced.scss */
.ais-pagination {
  background-color: transparent;
  border: none;
  box-shadow: none;
  margin: 20px auto;
}

/* line 52, ../scss/module/_algoliaenhanced.scss */
.ais-pagination li {
  display: inline-block;
}

/* line 55, ../scss/module/_algoliaenhanced.scss */
.ais-pagination--item a {
  padding: 5px 10px;
  margin: 0 5px;
  line-height: 25px;
  background-color: white;
  color: #727272;
}

/* line 63, ../scss/module/_algoliaenhanced.scss */
.ais-pagination li.ais-pagination--item__disabled {
  display: none;
}

/* line 67, ../scss/module/_algoliaenhanced.scss */
.ais-pagination--item__active a {
  font-weight: bolder;
  color: #606060;
  text-decoration: underline;
}

/* line 73, ../scss/module/_algoliaenhanced.scss */
.ais-pagination--item.ais-pagination--item__next a,
.ais-pagination--item.ais-pagination--item__previous a {
  font-weight: bold;
  color: #606060;
}

/* REFINEMENT LIST */
/* line 81, ../scss/module/_algoliaenhanced.scss */
.ais-menu--link,
.ais-hierarchical-menu--link,
.ais-price-ranges--link,
.ais-refinement-list--label {
  padding: 4px 10px;
  cursor: pointer;
  color: #636363;
  text-decoration: none;
  display: block;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
}

/* line 95, ../scss/module/_algoliaenhanced.scss */
.ais-hierarchical-menu--item__active > div > .ais-hierearchical-link-wrapper > .ais-hierarchical-menu--link,
.ais-refinement-list--item__active > div > .ais-hierarchical-list--link,
.ais-refinement-list--item__active > div > .ais-refinement-list--label,
.ais-price-ranges--item__active > .ais-price-ranges--link {
  font-weight: bold;
  box-shadow: inset 3px 0 0 #3399cc;
}

/* line 103, ../scss/module/_algoliaenhanced.scss */
.ais-hierearchical-link-wrapper, .ais-refinement-list--item {
  padding: 7px 0px;
}

/* line 107, ../scss/module/_algoliaenhanced.scss */
.ais-refinement-list--label, .ais-hierarchical-menu--link {
  line-height: 1.0em;
  padding: 0px 10px;
}

/* line 112, ../scss/module/_algoliaenhanced.scss */
.ais-refinement-list--label img {
  display: inline;
}

/* line 116, ../scss/module/_algoliaenhanced.scss */
.ais-hierarchical-menu--item__active .ais-hierearchical-link-wrapper .cross-circle,
.ais-refinement-list--item__active .cross-circle {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/css/data:image/svg+xml;utf8,<sv")width='34' height='34' viewBox='0 0 34 34' xmlns='http://www.w3.org/2000/svg'><title>testvg</title><g fill='%23000' fill-rule='evenodd'><path d='M17.163 0C7.95 0 .41 7.578.353 16.893c-.03 4.542 1.693 8.82 4.847 12.053 3.156 3.23 7.367 5.026 11.857 5.054h.11c9.21 0 16.75-7.578 16.81-16.893C34.035 7.735 26.54.06 17.163 0zm.015 30.842v1.08l-.09-1.08c-3.656-.023-7.085-1.485-9.654-4.115-2.57-2.63-3.97-6.116-3.948-9.814C3.533 9.33 9.673 3.158 17.262 3.158c7.548.048 13.65 6.297 13.605 13.93-.05 7.585-6.19 13.754-13.69 13.754z'/><path d='M22.362 10.23l-5.186 5.245-5.186-5.244c-.417-.42-1.092-.42-1.51 0-.416.422-.416 1.105 0 1.526L15.668 17l-5.186 5.244c-.416.42-.416 1.104 0 1.525.21.21.483.316.755.316.273 0 .546-.106.755-.317l5.186-5.245 5.186 5.244c.208.21.482.316.754.316.273 0 .546-.106.755-.317.417-.422.417-1.105 0-1.526L18.685 17l5.187-5.244c.417-.42.417-1.104 0-1.525-.416-.42-1.09-.42-1.508 0z'/></g></svg>") no-repeat center center/contain;
  opacity: 0;
}

/* line 125, ../scss/module/_algoliaenhanced.scss */
.ais-hierarchical-menu--item__active .ais-hierearchical-link-wrapper:hover .cross-circle,
.ais-refinement-list--item__active:hover .cross-circle {
  text-decoration: underline;
  vertical-align: bottom;
  margin-left: 6px;
  opacity: 1;
}

/* line 133, ../scss/module/_algoliaenhanced.scss */
.ais-refinement-list--item:hover {
  text-decoration: underline;
}

/* line 137, ../scss/module/_algoliaenhanced.scss */
.ais-price-ranges--input {
  width: 70px !important;
}

/* line 142, ../scss/module/_algoliaenhanced.scss */
.ais-price-ranges--label {
  margin: 5px;
}

/* line 147, ../scss/module/_algoliaenhanced.scss */
.ais-refinement-list--checkbox {
  margin-right: 10px;
}

/* line 152, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .current-refinements {
  position: relative;
}

/* line 157, ../scss/module/_algoliaenhanced.scss */
.ais-current-refined-values--link {
  cursor: pointer;
  color: #636363;
  border-radius: 2px;
  border: solid 1px #DDDDDD;
  background-color: #f4f4f4;
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  padding: 0 8px 0 0;
  height: 28px;
  overflow: hidden;
}

/* line 172, ../scss/module/_algoliaenhanced.scss */
.ais-current-refined-values--clear-all {
  position: absolute;
  right: 6px;
  top: 3px;
  color: #666666;
  font-weight: 500;
}

/* line 181, ../scss/module/_algoliaenhanced.scss */
a.ais-current-refined-values--link:hover {
  text-decoration: none;
}

/* line 186, ../scss/module/_algoliaenhanced.scss */
.ais-current-refined-values--item {
  margin-top: 8px;
}

/* line 190, ../scss/module/_algoliaenhanced.scss */
.ais-current-refined-values--item:after {
  clear: both;
  content: "";
  display: block;
}

/* line 196, ../scss/module/_algoliaenhanced.scss */
.ais-current-refined-values--item .current-refinement-label {
  font-weight: bold;
}

/* line 200, ../scss/module/_algoliaenhanced.scss */
.ais-current-refined-values--item .cross-wrapper {
  font-weight: bold;
  background-color: #DDDDDD;
  border-radius: 1px 0 0 1px;
  float: left;
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 26px;
}

/* line 211, ../scss/module/_algoliaenhanced.scss */
.ais-current-refined-values--link:hover .cross-wrapper {
  text-decoration: none;
}

/* line 215, ../scss/module/_algoliaenhanced.scss */
.ais-current-refined-values--link .cross-wrapper img {
  display: inline;
  margin-top: 6px;
}

/* line 221, ../scss/module/_algoliaenhanced.scss */
.ais-current-refined-values--item .current-refinement-wrapper {
  float: left;
  width: calc(100% - 26px);
  height: 26px;
  padding-left: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 26px;
}

/* line 231, ../scss/module/_algoliaenhanced.scss */
.ais-current-refined-values--link:hover .current-refinement-wrapper {
  text-decoration: line-through;
}

/* line 235, ../scss/module/_algoliaenhanced.scss */
.ais-menu--link:hover,
.ais-price-ranges--link:hover,
.ais-hierarchical-menu--link:hover {
  color: #636363;
}

/* line 240, ../scss/module/_algoliaenhanced.scss */
.ais-menu--count, .ais-hierarchical-menu--count, .ais-refinement-list--count {
  float: right;
  color: #666;
}

/* RANGE SLIDER */
/* line 247, ../scss/module/_algoliaenhanced.scss */
.ais-range-slider--target {
  position: relative;
  direction: ltr;
  background: #F3F4F7;
  height: 6px;
  margin-top: 2em;
  margin-bottom: 4em;
  width: 88%;
  margin-left: 6%;
}

/* line 258, ../scss/module/_algoliaenhanced.scss */
.ais-range-slider--base {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  border-top: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
  border-left: 2px solid #DDD;
  border-right: 2px solid #DDD;
}

/* line 269, ../scss/module/_algoliaenhanced.scss */
.ais-range-slider--origin {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
}

/* line 277, ../scss/module/_algoliaenhanced.scss */
.ais-range-slider--connect {
  background: #b5b6b9;
}

/* line 281, ../scss/module/_algoliaenhanced.scss */
.ais-range-slider--background {
  background: #F3F4F7;
}

/* line 285, ../scss/module/_algoliaenhanced.scss */
.ais-range-slider--handle {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border: 1px solid #c8c8c8;
  border-radius: 50%;
  cursor: pointer;
}

/* line 296, ../scss/module/_algoliaenhanced.scss */
.ais-range-slider--handle-lower {
  left: -10px;
  bottom: 7px;
}

/* line 301, ../scss/module/_algoliaenhanced.scss */
.ais-range-slider--handle-upper {
  right: 10px;
  bottom: 7px;
}

/* line 306, ../scss/module/_algoliaenhanced.scss */
.ais-range-slider--tooltip {
  position: absolute;
  background: #FFFFFF;
  top: -2em;
  min-width: 20px;
  text-align: center;
  font-size: .8em;
}

/* line 315, ../scss/module/_algoliaenhanced.scss */
.ais-range-slider--pips {
  box-sizing: border-box;
  position: absolute;
  height: 3em;
  top: 100%;
  left: 0;
  width: 100%;
}

/* line 324, ../scss/module/_algoliaenhanced.scss */
.ais-range-slider--value {
  width: 40px;
  position: absolute;
  text-align: center;
  margin-left: -20px;
  padding-top: 15px;
  font-size: .8em;
}

/* line 333, ../scss/module/_algoliaenhanced.scss */
.ais-range-slider--value-sub {
  font-size: .8em;
  padding-top: 15px;
}

/* line 338, ../scss/module/_algoliaenhanced.scss */
.ais-range-slider--marker {
  position: absolute;
  margin-left: -1px;
  width: 1px;
  height: 5px;
}

/* line 345, ../scss/module/_algoliaenhanced.scss */
.ais-range-slider--marker-large {
  background: #DDD;
  width: 2px;
  margin-left: -2px;
  height: 12px;
}

/* line 352, ../scss/module/_algoliaenhanced.scss */
.ais-range-slider--marker-large:first-child {
  margin-left: 0;
}

/******************
**
** Auto-completion menu
**
******************/
/* line 361, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .before_special {
  color: #aaaaaa;
  text-decoration: line-through;
  font-size: 12px;
}

/* line 367, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .info-without-thumb .category-tag {
  color: #3284b6;
}

/* line 371, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .info-without-thumb .details {
  font-size: 10px;
  color: #666;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* line 379, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .info-without-thumb .details em {
  color: #222222;
}

/* line 383, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-tt.algolia-autocomplete {
  width: 100%;
  display: inline-block !important;
}

/* line 388, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu {
  position: absolute;
  margin-top: -1px;
  right: 0px;
  width: 100%;
  z-index: 1000 !important;
  border: 1px solid #BBB;
  border-top: 3px solid #8EB4D0;
  border-radius: 1px;
  background: white;
}

@media (min-width: 600px) {
  /* line 401, ../scss/module/_algoliaenhanced.scss */
  #algolia-autocomplete-container .aa-dropdown-menu {
    width: 71.1%;
    min-width: 800px;
  }
}
/* line 407, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .col-2 {
  position: relative;
}

/* line 411, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .col-2 .col-left {
  width: 67%;
}

/* line 415, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .col-2 .col-right {
  width: 33%;
}

/* line 419, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .aa-no-results-products {
  padding: 40px 40px;
  min-height: 250px;
}

/* line 424, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .aa-no-results-products .title {
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 16px;
}

/* line 430, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .aa-no-results-products .suggestions {
  margin-bottom: 30px;
}

/* line 434, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .aa-no-results-products .see-all a {
  color: #636363;
  font-weight: bold;
}

/* line 439, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .aa-no-results {
  padding: 10px;
  font-style: italic;
}

/* line 444, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .category {
  padding: 4px;
  color: #a6a6a6;
  text-align: left;
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: bold;
}

/* line 453, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .category-suggestions {
  padding: 4px;
  color: #54A5CD;
  text-align: left;
  font-size: 0.7em;
  text-transform: uppercase;
}

/* line 461, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .algoliasearch-autocomplete-hit {
  display: block;
  position: relative;
  padding: 5px 10px;
  color: #000;
  text-align: left;
  text-decoration: none;
}

/* line 470, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .other-sections .aa-dataset-suggestions .algoliasearch-autocomplete-hit {
  padding-left: 30px;
}

/* line 474, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu.aa-without-products .col9 {
  background-color: #F9F9F9;
}

/* line 478, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu.aa-without-products #autocomplete-products-footer {
  display: none;
}

/* line 482, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .aa-dataset-products .aa-suggestion {
  display: inline-block;
  width: 100%;
}

@media (min-width: 768px) {
  /* line 488, ../scss/module/_algoliaenhanced.scss */
  #algolia-autocomplete-container .aa-dropdown-menu .aa-dataset-products .aa-suggestion {
    display: inline-block;
    width: 50%;
  }
}
/* line 495, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .aa-dataset-products .algoliasearch-autocomplete-hit {
  padding: 15px 10px;
}

/* line 499, ../scss/module/_algoliaenhanced.scss */
.autocomplete-wrapper {
  width: 100%;
}

/* line 503, ../scss/module/_algoliaenhanced.scss */
.autocomplete-wrapper:after {
  clear: both;
  content: '';
}

/* line 508, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .col9 {
  float: right;
  width: 100%;
}

/* line 513, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .col3 {
  float: right;
  width: 100%;
}

/* line 518, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container.reverse .col3 {
  float: left;
  width: 100%;
}

/* line 523, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container.reverse .col9 {
  float: left;
  width: 100%;
}

@media (min-width: 768px) {
  /* line 529, ../scss/module/_algoliaenhanced.scss */
  #algolia-autocomplete-container .col9 {
    border-left: solid 1px #eeeeee;
    float: right;
    width: 70%;
  }

  /* line 535, ../scss/module/_algoliaenhanced.scss */
  #algolia-autocomplete-container .col3 {
    float: right;
    width: 30%;
  }

  /* line 540, ../scss/module/_algoliaenhanced.scss */
  #algolia-autocomplete-container.reverse .col3 {
    float: left;
    width: 30%;
  }

  /* line 545, ../scss/module/_algoliaenhanced.scss */
  #algolia-autocomplete-container.reverse .col9 {
    border-right: solid 1px #eeeeee;
    float: left;
    width: 70%;
  }
}
/* line 552, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .other-sections {
  margin: 20px 10px;
  margin-bottom: 70px;
}

/* line 558, ../scss/module/_algoliaenhanced.scss */
.aa-dataset-products .aa-suggestions {
  margin: 10px auto 10px auto;
}

/* line 562, ../scss/module/_algoliaenhanced.scss */
.aa-dataset-suggestions {
  display: none;
}

@media (min-width: 768px) {
  /* line 567, ../scss/module/_algoliaenhanced.scss */
  .aa-dataset-suggestions {
    display: block;
  }
}
@media (min-width: 768px) {
  /* line 574, ../scss/module/_algoliaenhanced.scss */
  .aa-dataset-products .aa-suggestions {
    margin: 10px auto 50px auto;
  }
}
/* line 580, ../scss/module/_algoliaenhanced.scss */
.aa-dataset-products .aa-suggestions:after {
  content: '';
  display: block;
  clear: both;
}

/* line 586, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .other-sections .algoliasearch-autocomplete-hit {
  padding-left: 10px;
}

/* line 590, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .other-sections .aa-suggestions {
  margin-bottom: 20px;
}

/* line 594, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .aa-cursor .algoliasearch-autocomplete-hit {
  background-color: #f2f2f2;
}

/* line 598, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .algoliasearch-autocomplete-hit em {
  font-weight: bold;
  font-style: normal;
}

/* line 603, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .algoliasearch-autocomplete-price {
  font-size: 1.1em;
  color: #54A5CD;
  height: 22px;
}

/* line 609, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .algoliasearch-autocomplete-hit .thumb {
  float: left;
}

/* line 613, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .algoliasearch-autocomplete-hit .thumb img {
  width: 50px;
}

/* line 617, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .algoliasearch-autocomplete-hit .info {
  margin-left: 60px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* line 624, ../scss/module/_algoliaenhanced.scss */
#autocomplete-products-footer {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  background-color: #F9F9F9;
  padding: 15px;
  text-align: center;
  display: none;
}

/* line 635, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container.reverse #autocomplete-products-footer {
  right: auto;
  left: 0;
}

@media (min-width: 768px) {
  /* line 641, ../scss/module/_algoliaenhanced.scss */
  #autocomplete-products-footer {
    display: block;
  }
}
/* line 646, ../scss/module/_algoliaenhanced.scss */
#autocomplete-products-footer span {
  color: #15769c;
  font-weight: 600;
}

/* line 651, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .algoliasearch-autocomplete-hit .info .algoliasearch-autocomplete-author {
  font-size: 0.8em;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}

/* line 660, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .algoliasearch-autocomplete-hit .info .algoliasearch-autocomplete-category {
  font-size: 0.8em;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}

/* line 669, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .algoliasearch-autocomplete-hit .info .algoliasearch-autocomplete-category em {
  color: #222;
}

/* line 673, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .footer_algolia {
  position: absolute;
  width: 100%;
  padding: 10px;
  text-align: center;
  bottom: 7px;
  left: 4px;
  font-size: 13px;
}

/* line 683, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container.reverse .aa-dropdown-menu .footer_algolia {
  left: auto;
  right: 4px;
}

@media (min-width: 768px) {
  /* line 689, ../scss/module/_algoliaenhanced.scss */
  #algolia-autocomplete-container .aa-dropdown-menu .footer_algolia {
    width: 30%;
  }
}
/* line 694, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .footer_algolia span {
  color: #B8B8B8;
  font-size: 10px;
}

/* line 699, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .footer_algolia img {
  display: inline;
  height: 1.5em;
  vertical-align: bottom;
  max-width: 130px;
}

@media (max-width: 800px) {
  /* line 711, ../scss/module/_algoliaenhanced.scss */
  body.search-starts-open.search-hide-close #header #header-search {
    margin-right: 0;
  }
  /* line 713, ../scss/module/_algoliaenhanced.scss */
  body.search-starts-open.search-hide-close #header #header-search #algolia-autocomplete-container {
    margin: 0 25px;
  }
  /* line 716, ../scss/module/_algoliaenhanced.scss */
  body.search-starts-open.search-hide-close #header #header-search #search_mini_form {
    position: relative;
    right: 0 !important;
    width: 100% !important;
  }
  /* line 721, ../scss/module/_algoliaenhanced.scss */
  body.search-starts-open.search-hide-close #header #header-search .algolia-search-resize-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 480px) {
  /* line 729, ../scss/module/_algoliaenhanced.scss */
  body.search-starts-open.search-hide-close #algolia-autocomplete-container {
    margin: 0;
  }
}

/**
 * Search Box
*/
/* line 740, ../scss/module/_algoliaenhanced.scss */
#algolia-searchbox {
  margin: 20px 0;
  position: relative;
}

/* line 745, ../scss/module/_algoliaenhanced.scss */
.clear-cross {
  position: absolute;
  display: none;
  background: url("/skin/frontend/blackstone/default/images/algolia-searchx-trans.png") no-repeat center center/contain;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

/* line 754, ../scss/module/_algoliaenhanced.scss */
#algolia-searchbox .clear-query-autocomplete {
  top: 13px;
  right: 12px;
}

/* line 759, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-box .instant-search-bar-wrapper .clear-query-instant {
  right: 12px;
  top: 21px;
}

/* line 764, ../scss/module/_algoliaenhanced.scss */
.cross-wrapper .clear-refinement {
  display: block;
  position: relative;
  top: 5px;
  left: 5px;
}

/* line 771, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-suggestions svg.algolia-glass-suggestion.magnifying-glass {
  position: absolute;
  right: auto;
  left: 5px;
  top: 7px;
  fill: #A6A6A6;
  stroke: #A6A6A6;
}

/* line 780, ../scss/module/_algoliaenhanced.scss */
#algolia-searchbox .magnifying-glass {
  position: absolute;
  right: 2px;
  width: 78px;
  height: 20px;
  display: block;
  top: 10px;
  background: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/css/data:image/svg+xml;utf8,<sv")width='40' height='40' viewBox='0 0 40 40'  fill='%23A6A6A6' xmlns='http://www.w3.org/2000/svg'><path d='M15.553 31.107c8.59 0 15.554-6.964 15.554-15.554S24.143 0 15.553 0 0 6.964 0 15.553c0 8.59 6.964 15.554 15.553 15.554zm0-3.888c6.443 0 11.666-5.225 11.666-11.668 0-6.442-5.225-11.665-11.668-11.665-6.442 0-11.665 5.223-11.665 11.665 0 6.443 5.223 11.666 11.665 11.666zm12.21 3.84a2.005 2.005 0 0 1 .002-2.833l.463-.463a2.008 2.008 0 0 1 2.833-.003l8.17 8.168c.78.78.78 2.05-.004 2.833l-.462.463a2.008 2.008 0 0 1-2.834.004l-8.168-8.17z' fill-rule='evenodd'/></svg>") no-repeat center right/20px;
}

@media (max-width: 599px) {
  /* line 791, ../scss/module/_algoliaenhanced.scss */
  #algolia-searchbox .magnifying-glass {
    width: 20px;
    right: 10px;
  }
  /* line 794, ../scss/module/_algoliaenhanced.scss */
  #algolia-searchbox .magnifying-glass .search-text {
    display: none;
  }
}
/* line 800, ../scss/module/_algoliaenhanced.scss */
#algolia-searchbox .algolia-search-input {
  width: 300px;
  float: right;
}

/* line 805, ../scss/module/_algoliaenhanced.scss */
#algolia-searchbox .algolia-search-input:focus:not([value=""]) {
  background: transparent;
}

/* line 810, ../scss/module/_algoliaenhanced.scss */
#algolia-searchbox .algolia-search-input:focus {
  outline: 0;
  box-shadow: none;
  border: solid 1px #54A5CD;
}

/**
 * Instant Search
 */
/* line 820, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector {
  margin: 10px;
}

/* line 824, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector a,
#algolia_instant_selector a:hover,
#algolia_instant_selector a:focus {
  outline: 0;
}

/* line 830, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector:after {
  content: "";
  clear: both;
  display: block;
}

/* line 842, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .title img {
  width: 200px;
}

/* line 846, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .text-ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* line 853, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-bar {
  float: left;
  width: calc(100% - 40px);
  height: 40px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  border: solid 2px #54A5CD;
  border-left: none;
  padding-left: 6px;
  padding-top: 5px;
}

/* line 867, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector.with-facets #algolia-left-container {
  min-height: 1px;
}

/* line 871, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .hits .infos {
  margin: 0 15px;
  padding: 6px 10px;
  color: #aaa;
  text-align: center;
  background: #F4F4F4;
  font-size: 12px;
  clear: both;
}

/* line 880, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .hits .infos strong {
  color: #555;
}

/* line 884, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .hits .sort-by-label {
  margin-right: 8px;
}

/* line 888, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .hits .no-results {
  margin: 40px 25px;
  color: #636363;
  font-size: 16px;
}

/* line 894, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector a,
#algolia_instant_selector a:hover {
  color: #666666;
}

/* line 899, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .hits .no-results strong {
  color: #555;
}

/* line 903, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .hits .no-results .clear-button {
  cursor: pointer;
}

/* line 907, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .hits .no-results .popular-searches {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 30px;
}

/**
 * Facets
 */
/* line 917, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .infos .algolia-logo {
  font-size: 10px;
}

/* line 921, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .facets {
  padding-top: 50px;
}

@media (max-width: 600px) {
  /* line 926, ../scss/module/_algoliaenhanced.scss */
  #algolia_instant_selector .facets {
    padding-top: 10px;
  }
}
/* line 931, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .ais-current-refined-values.facet .ais-current-refined-values--body {
  padding-left: 8px;
}

/* line 935, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .facet {
  margin-bottom: 15px;
  padding-bottom: 6px;
  background-color: white;
  border: solid 1px #efefef;
}

/* line 942, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .facet:not(:first-child) {
  margin-top: 10px;
}

/* line 946, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .ais-header {
  margin-bottom: 7px;
}

/* line 950, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .ais-header.ais-current-refined-values--header {
  margin-bottom: 13px;
}

/* line 954, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .facet .name {
  padding: 4px 8px;
  font-weight: 500;
  background-color: #f4f4f4;
  color: #757575;
  text-align: left;
  text-transform: uppercase;
}

/* line 963, ../scss/module/_algoliaenhanced.scss */
.ais-current-refined-values.facet {
  position: relative;
}

/* line 967, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .as-range-slider--base {
  margin-top: 45px;
}

/* line 972, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .hierarchical .ais-hierarchical-menu--list {
  padding-left: 10px;
}

/* line 977, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .hierarchical .ais-hierarchical-menu--list.ais-hierarchical-menu--list__lvl0 {
  padding-left: 0px;
}

/* line 982, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .facet .sub_facet:not(:last-child) {
  border-bottom: 1px dotted #e0e0e0;
}

/* line 986, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .text-center {
  text-align: center;
}

/* line 990, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector em {
  background-color: #CFEAFA;
  font-style: normal;
}

/* line 995, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector h1 {
  margin: 0;
}

/* line 999, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .result {
  display: block;
  margin: 15px 0;
  padding: 16px 24px;
  background-color: white;
}

/* line 1006, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .price-wrapper {
  height: 25px;
}

/* line 1010, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .result:hover {
  border-color: #b9b9b9;
  text-decoration: none;
}

/* line 1015, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .result .result-thumbnail {
  text-align: center;
}

/* line 1019, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .result .result-thumbnail img {
  display: block;
  height: 148px;
  width: auto;
}

/* line 1025, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .result .result-thumbnail .no-image {
  display: block;
  height: 148px;
  background: #FAFAFA;
}

/* line 1031, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .result .ratings .rating-box {
  margin: 0 auto 10px;
  float: inherit;
}

/* line 1036, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector h3 {
  margin-bottom: 0;
}

/* line 1041, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .result .price {
  text-align: center;
  font-size: 1.2em;
  color: #54A5CD;
}

/* line 1047, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .result .result-title {
  font-size: 14px;
  text-align: center;
  color: #636363;
}

/* line 1053, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .ui-widget-header {
  background-color: #bcbcbc;
}

/* line 1057, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .result-thumbnail img {
  width: 100%;
}

/** INSTANT SEARCH BAR **/
/* line 1064, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-bar-container {
  padding-top: 0px;
  margin-bottom: 15px;
  width: 100%;
  position: relative;
}

/* line 1071, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-bar-container:after {
  clear: both;
  content: "";
  display: block;
}

/* line 1077, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .as-search-box--input {
  width: 100%;
  height: 40px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 1083, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-bar:focus {
  outline: 0;
  box-shadow: none;
}

/* line 1088, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-box label {
  display: none;
}

/* line 1092, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .instant-search-bar-label {
  background-color: #54A5CD;
  height: 40px;
  line-height: 24px;
  padding: 8px 12px;
  color: white;
  float: left;
  /*width: 140px;*/
  width: 40px;
  text-align: right;
  position: relative;
}
/* line 1103, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .instant-search-bar-label .icon-font {
  position: relative;
  top: 3px;
}

/* line 1109, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-box .icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 8px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/css/data:image/svg+xml;utf8,<sv")width='40' height='40' viewBox='0 0 40 40'  xmlns='http://www.w3.org/2000/svg'><path d='M15.553 31.107c8.59 0 15.554-6.964 15.554-15.554S24.143 0 15.553 0 0 6.964 0 15.553c0 8.59 6.964 15.554 15.553 15.554zm0-3.888c6.443 0 11.666-5.225 11.666-11.668 0-6.442-5.225-11.665-11.668-11.665-6.442 0-11.665 5.223-11.665 11.665 0 6.443 5.223 11.666 11.665 11.666zm12.21 3.84a2.005 2.005 0 0 1 .002-2.833l.463-.463a2.008 2.008 0 0 1 2.833-.003l8.17 8.168c.78.78.78 2.05-.004 2.833l-.462.463a2.008 2.008 0 0 1-2.834.004l-8.168-8.17z' fill='#fff' fill-rule='evenodd'/></svg>") no-repeat center center/contain;
}

/* line 1119, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-box .clear-query-instant {
  top: 50%;
  transform: translateY(-50%);
}

/* line 1124, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .before_special {
  color: #aaaaaa;
  text-decoration: line-through;
  font-size: 12px;
}

/* line 1130, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector button:hover {
  background: #2E8AB8 none repeat scroll 0% 0%;
  cursor: pointer;
}

/* line 1135, ../scss/module/_algoliaenhanced.scss */
.ais-price-ranges--button {
  background: #39C none repeat scroll 0% 0%;
  padding: 5px 15px;
  margin-left: 10px;
  border: 0px none;
  color: #FFF;
  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;
}

/* line 1150, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector button:not(.ais-price-ranges--button) {
  background: #f4f4f4 none repeat scroll 0% 0%;
  display: block;
  margin: auto;
  margin-top: 0px;
  padding: 7px 15px;
  border: 0px none;
  color: #666666;
  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;
}

/* line 1168, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector button:not(.ais-price-ranges--button):hover {
  background: #3599cc none repeat scroll 0% 0%;
  color: white;
}

/* line 1173, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .pull-left {
  float: left;
}

/* line 1177, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .pull-right {
  float: right;
}

/* line 1181, ../scss/module/_algoliaenhanced.scss */
#algolia-static-content {
  margin-bottom: 20px;
}

/**
** GRID
*/
/* line 1190, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector, #algolia_instant_selector *,
#search_mini_form, #search_mini_form * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 1196, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector:before, #algolia_instant_selector:after,
#algolia_instant_selector *:before, #algolia_instant_selector *:after,
#search_mini_form:before, #search_mini_form:after,
#search_mini_form *:before, #search_mini_form *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  /* line 1206, ../scss/module/_algoliaenhanced.scss */
  #algolia_instant_selector .col-sm-6 {
    width: 50%;
    float: left;
  }
}
/* line 1212, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .col-md-3, #algolia_instant_selector .col-md-4, #algolia_instant_selector .col-md-9, #algolia_instant_selector .col-md-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 600px) {
  /* line 1220, ../scss/module/_algoliaenhanced.scss */
  #algolia_instant_selector .col-md-3, #algolia_instant_selector .col-md-4, #algolia_instant_selector .col-md-9, #algolia_instant_selector .col-md-12 {
    float: left;
  }

  /* line 1223, ../scss/module/_algoliaenhanced.scss */
  #algolia_instant_selector .col-md-12 {
    width: 100%;
  }

  /* line 1226, ../scss/module/_algoliaenhanced.scss */
  #algolia_instant_selector .col-md-9 {
    width: 75%;
  }

  /* line 1229, ../scss/module/_algoliaenhanced.scss */
  #algolia_instant_selector .col-md-4 {
    width: 33.33333333%;
  }

  /* line 1232, ../scss/module/_algoliaenhanced.scss */
  #algolia_instant_selector .col-md-3 {
    width: 25%;
  }
}
/* line 1237, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .row {
  margin-left: -15px;
  margin-right: -15px;
}

/* line 1242, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .row:before, #algolia_instant_selector .row:after {
  content: " ";
  display: table;
}

/* line 1247, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .row:after {
  clear: both;
}

/* line 1251, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .visible-xs, #algolia_instant_selector .visible-sm {
  display: none !important;
}

/* line 1255, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .hidden-xs, #algolia_instant_selector .hidden-sm {
  display: block !important;
}

@media (max-width: 600px) {
  /* line 1260, ../scss/module/_algoliaenhanced.scss */
  #algolia_instant_selector .visible-xs {
    display: block !important;
  }

  /* line 1264, ../scss/module/_algoliaenhanced.scss */
  #algolia_instant_selector .hidden-xs {
    display: none !important;
  }
}
@media (max-width: 600px) {
  /* line 1271, ../scss/module/_algoliaenhanced.scss */
  #algolia_instant_selector .visible-sm {
    display: block !important;
  }
  /* line 1275, ../scss/module/_algoliaenhanced.scss */
  #algolia_instant_selector.with-facets #algolia-right-container {
    width: 100% !important;
  }
  /* line 1279, ../scss/module/_algoliaenhanced.scss */
  #algolia_instant_selector #instant-search-bar-container {
    margin-top: 20px;
  }

  /* line 1284, ../scss/module/_algoliaenhanced.scss */
  #algolia_instant_selector .hidden-sm {
    display: none !important;
  }
}
/* line 1289, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container:after, .autocomplete-wrapper:after {
  clear: both;
  content: '';
}

/* line 1294, ../scss/module/_algoliaenhanced.scss */
#algolia-right-container .infos.hidden {
  display: none;
}

/* ============================================ *
 * End Base Algolia Search from algoliasearh/algoliasearch.css (which has been unset)
 * ============================================ */
/* ============================================ *
 * Algolia instantsearch category page
 * ============================================ */
/* line 1307, ../scss/module/_algoliaenhanced.scss */
.instant-search .catImageBanner img {
  margin: 0 auto;
}
/* line 1311, ../scss/module/_algoliaenhanced.scss */
.instant-search .catTitleHidden {
  text-indent: -9999px;
  height: 1px;
}
/* line 1315, ../scss/module/_algoliaenhanced.scss */
.instant-search .algolia-instant-search-top-inner {
  position: relative;
}
/* line 1317, ../scss/module/_algoliaenhanced.scss */
.instant-search .algolia-instant-search-top-inner .page-title.category-title {
  padding-top: 15px;
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  text-align: center;
  border-bottom-width: 0;
}
/* line 1325, ../scss/module/_algoliaenhanced.scss */
.instant-search .algolia-instant-search-top-inner .page-title.category-title h1 {
  margin: 0;
  padding: 0;
}

/* ============================================ *
 * End Algolia instantsearch category page
 * ============================================ */
/* ============================================ *
 * Algolia Enhanced - top search
 * ============================================ */
/* line 1343, ../scss/module/_algoliaenhanced.scss */
body #algolia-searchbox .magnifying-glass {
  display: inline !important;
}
/* line 1346, ../scss/module/_algoliaenhanced.scss */
body #algolia-searchbox .clear-query-autocomplete {
  display: none !important;
}

/* line 1351, ../scss/module/_algoliaenhanced.scss */
#algolia-searchbox {
  margin: 0;
  .algolia-search-input: focus;
}
/* line 1353, ../scss/module/_algoliaenhanced.scss */
#algolia-searchbox .magnifying-glass {
  cursor: pointer;
  top: 0;
  height: 78px;
}
/* line 1357, ../scss/module/_algoliaenhanced.scss */
#algolia-searchbox .magnifying-glass .search-text {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  position: relative;
  bottom: 7px;
}
/* line 1364, ../scss/module/_algoliaenhanced.scss */
#algolia-searchbox .algolia-autocomplete {
  height: 92px;
  background: #2c3033;
}
/* line 1368, ../scss/module/_algoliaenhanced.scss */
#algolia-searchbox .algolia-search-input {
  top: 22px;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -o-border-radius: 4px;
}
/* line 1374, ../scss/module/_algoliaenhanced.scss */
#algolia-searchbox .algolia-search-input:focus {
  border-width: 0;
}
/* line 1376, ../scss/module/_algoliaenhanced.scss */
#algolia-searchbox .algolia-search-input:focus:not([value=""]) {
  background: #fff;
}

/* line 1385, ../scss/module/_algoliaenhanced.scss */
#search_mini_form #search {
  display: none;
}
/* line 1388, ../scss/module/_algoliaenhanced.scss */
#search_mini_form .algolia-autocomplete {
  position: absolute !important;
  z-index: 160;
  right: 0;
}
/* line 1392, ../scss/module/_algoliaenhanced.scss */
#search_mini_form .algolia-autocomplete #search {
  display: block;
  color: #919799;
}
/* line 1396, ../scss/module/_algoliaenhanced.scss */
#search_mini_form .algolia-autocomplete #search:focus {
  color: #373c3e;
}

@media (max-width: 600px) {
  /* line 1404, ../scss/module/_algoliaenhanced.scss */
  #search_mini_form #algolia-searchbox {
    margin-top: 0;
  }
  /* line 1406, ../scss/module/_algoliaenhanced.scss */
  #search_mini_form #algolia-searchbox .algolia-autocomplete {
    width: 0;
    position: relative !important;
  }
}
/* ============================================ *
 * Algolia Autocomplete - SAYT Area
 * ============================================ */
/* line 1417, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu {
  min-width: 0;
}
/* line 1419, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .col3 {
  display: none;
}
/* line 1422, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .col9 {
  width: 100%;
}
/* line 1425, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .col9 .aa-dataset-products .aa-suggestion {
  width: 100%;
}
/* line 1427, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .col9 .aa-dataset-products .aa-suggestion .thumb {
  position: relative;
}
/* line 1429, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .col9 .aa-dataset-products .aa-suggestion .thumb .overlay-holder {
  top: 0;
  bottom: auto;
}
/* line 1434, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .col9 .aa-dataset-products .aa-suggestion .algoliasearch-autocomplete-price {
  display: inline-block;
}
/* line 1439, ../scss/module/_algoliaenhanced.scss */
#algolia-autocomplete-container .aa-dropdown-menu .col9 #autocomplete-products-footer {
  display: none;
}

@media only screen and (max-width: 768px) {
  /* line 1448, ../scss/module/_algoliaenhanced.scss */
  #algolia-autocomplete-container .aa-dropdown-menu {
    min-width: 0;
    width: 100% !important;
    left: 0 !important;
  }
}
/* ============================================ *
 * Algolia Enhanced - instant search
 * ============================================ */
/* line 1461, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .filter-icon {
  position: relative;
  top: 2px;
  margin-right: 10px;
}
/* line 1465, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .filter-icon .st0 {
  fill: #fff;
}
/* line 1469, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper #algolia-stats-footer,
.algolia-instant-results-wrapper #algolia-stats {
  padding-top: 20px;
  font-size: 24px;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  color: #373c3e;
}
/* line 1475, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper #algolia-stats-footer small,
.algolia-instant-results-wrapper #algolia-stats small {
  font-size: 16px;
  color: #777e80;
}
/* line 1481, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper.catalog-category-view #algolia-stats {
  margin-top: -28px;
}
/* line 1485, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper #algolia-stats {
  padding-top: 0;
  padding-bottom: 6px;
}
/* line 1489, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .algolia-instant-search-top-wrapper {
  background: #fff;
  width: 100%;
}
/* line 1493, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper #instantsearch-filter-toggle {
  float: left;
  cursor: pointer;
  display: inline-block;
  margin-top: 4px;
  margin-bottom: 14px;
}
/* line 1499, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper #instantsearch-filter-toggle .toggle-open,
.algolia-instant-results-wrapper #instantsearch-filter-toggle .toggle-close {
  margin-right: 5px;
}
/* line 1503, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper #instantsearch-filter-toggle .toggle-open {
  display: inline-block;
}
/* line 1506, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper #instantsearch-filter-toggle .toggle-close {
  display: none;
}
/* line 1509, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper #instantsearch-filter-toggle .icon-font {
  position: relative;
  top: 1px;
}
/* line 1513, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper #instantsearch-filter-toggle.active {
  background: #02b2e7;
  border-color: #02b2e7;
}
/* line 1514, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper #instantsearch-filter-toggle.active .toggle-open {
  display: none;
}
/* line 1517, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper #instantsearch-filter-toggle.active .toggle-close {
  display: inline-block;
}
/* line 1522, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper #instantsearch-filter-toggle.active span {
  color: #fff;
}
/* line 1527, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .search-footer-stats-and-pagination {
  margin-top: 29px;
  display: inline-block;
  width: 100%;
  border-top: 1px solid #d3d8d9;
  border-bottom: 1px solid #d3d8d9;
  text-align: center;
}
/* line 1535, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .instant-search-prev {
  position: relative;
  top: 4px;
  width: 36px;
  display: inline-block;
  margin-right: 26px;
}
/* line 1537, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .instant-search-prev .instant-search-prev-icon {
  border-radius: 50%;
  border: 1px solid #abb2b3;
  font-size: 18px;
  padding: 10px 10px 10px 11px;
}
/* line 1542, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .instant-search-prev .instant-search-prev-icon:before {
  position: relative;
  left: 1px;
}
/* line 1546, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .instant-search-prev .instant-search-prev-icon:hover {
  background-color: #fff;
}
/* line 1549, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .instant-search-prev .instant-search-prev-icon:active {
  background-color: #d3d8d9;
}
/* line 1552, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .instant-search-prev .instant-search-prev-icon.inactive {
  color: #919799;
  border: 1px solid #abb2b3;
  background-color: transparent;
  outline: none;
}
/* line 1561, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .instant-search-next {
  position: relative;
  top: 4px;
  width: 36px;
  display: inline-block;
  margin-left: 22px;
}
/* line 1563, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .instant-search-next .instant-search-next-icon {
  border-radius: 50%;
  border: 1px solid #abb2b3;
  font-size: 18px;
  padding: 10px;
}
/* line 1568, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .instant-search-next .instant-search-next-icon:before {
  position: relative;
  right: 2px;
}
/* line 1572, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .instant-search-next .instant-search-next-icon:hover {
  background-color: #fff;
}
/* line 1575, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .instant-search-next .instant-search-next-icon:active {
  background-color: #d3d8d9;
}
/* line 1578, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .instant-search-next .instant-search-next-icon.inactive {
  color: #919799;
  border: 1px solid #abb2b3;
  background-color: transparent;
  outline: none;
}
/* line 1587, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .pull-left,
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .pull-right,
.algolia-instant-results-wrapper .search-footer-stats-and-pagination #instant-search-pagination-container {
  display: inline-block;
  width: auto;
}
/* line 1592, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .pull-left select,
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .pull-right select,
.algolia-instant-results-wrapper .search-footer-stats-and-pagination #instant-search-pagination-container select {
  margin: 12px 0;
  padding-left: 12px;
}
/* line 1597, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .pull-left .ais-pagination--item a,
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .pull-right .ais-pagination--item a,
.algolia-instant-results-wrapper .search-footer-stats-and-pagination #instant-search-pagination-container .ais-pagination--item a {
  border: 1px solid #abb2b3;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -o-border-radius: 4px;
  background: transparent;
  font-size: 16px;
}
/* line 1605, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .pull-left .ais-pagination--item a:hover,
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .pull-right .ais-pagination--item a:hover,
.algolia-instant-results-wrapper .search-footer-stats-and-pagination #instant-search-pagination-container .ais-pagination--item a:hover {
  text-decoration: none;
  background: #fff;
}
/* line 1611, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .pull-left .ais-pagination--item.ais-pagination--item__active a,
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .pull-right .ais-pagination--item.ais-pagination--item__active a,
.algolia-instant-results-wrapper .search-footer-stats-and-pagination #instant-search-pagination-container .ais-pagination--item.ais-pagination--item__active a {
  border: 1px solid #777e80;
  text-decoration: none;
  color: #fff;
  background: #777e80;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}
/* line 1617, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .pull-left .ais-pagination--item.ais-pagination--item__active a:hover,
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .pull-right .ais-pagination--item.ais-pagination--item__active a:hover,
.algolia-instant-results-wrapper .search-footer-stats-and-pagination #instant-search-pagination-container .ais-pagination--item.ais-pagination--item__active a:hover {
  background: #777e80;
}
/* line 1624, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .pull-left .ais-pagination--item.ais-pagination--item__previous a, .algolia-instant-results-wrapper .search-footer-stats-and-pagination .pull-left .ais-pagination--item.ais-pagination--item__next a,
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .pull-right .ais-pagination--item.ais-pagination--item__previous a,
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .pull-right .ais-pagination--item.ais-pagination--item__next a,
.algolia-instant-results-wrapper .search-footer-stats-and-pagination #instant-search-pagination-container .ais-pagination--item.ais-pagination--item__previous a,
.algolia-instant-results-wrapper .search-footer-stats-and-pagination #instant-search-pagination-container .ais-pagination--item.ais-pagination--item__next a {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
  font-size: 24px;
  position: relative;
  top: 6px;
}
/* line 1633, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .pull-left .ais-pagination--item.ais-pagination--item__previous a:hover, .algolia-instant-results-wrapper .search-footer-stats-and-pagination .pull-left .ais-pagination--item.ais-pagination--item__next a:hover,
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .pull-right .ais-pagination--item.ais-pagination--item__previous a:hover,
.algolia-instant-results-wrapper .search-footer-stats-and-pagination .pull-right .ais-pagination--item.ais-pagination--item__next a:hover,
.algolia-instant-results-wrapper .search-footer-stats-and-pagination #instant-search-pagination-container .ais-pagination--item.ais-pagination--item__previous a:hover,
.algolia-instant-results-wrapper .search-footer-stats-and-pagination #instant-search-pagination-container .ais-pagination--item.ais-pagination--item__next a:hover {
  background: transparent;
}

/* line 1647, ../scss/module/_algoliaenhanced.scss */
.hasTouch .algolia-instant-results-wrapper .search-footer-stats-and-pagination .instant-search-prev .instant-search-prev-icon:hover {
  background-color: transparent;
}
/* line 1654, ../scss/module/_algoliaenhanced.scss */
.hasTouch .algolia-instant-results-wrapper .search-footer-stats-and-pagination .instant-search-next .instant-search-next-icon:hover {
  background-color: transparent;
}

/* line 1662, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector {
  margin: 40px auto 10px;
}
/* line 1664, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector em {
  background-color: transparent;
}
/* line 1667, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .facet {
  color: #919799;
  margin-bottom: -1px;
  padding: 18px 0;
  /* skin up hierarchal category facet widget */
}
/* line 1671, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .facet .ais-header {
  margin-bottom: 0;
}
/* line 1673, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .facet .ais-header .name {
  border-bottom-width: 0;
}
/* line 1677, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .facet .ais-menu--link,
#algolia_instant_selector .facet .ais-hierarchical-menu--link,
#algolia_instant_selector .facet .ais-price-ranges--link,
#algolia_instant_selector .facet .ais-refinement-list--label,
#algolia_instant_selector .facet a,
#algolia_instant_selector .facet input {
  font-size: 16px;
  color: #919799;
  padding: 0 14px;
}
/* line 1687, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .facet .ais-current-refined-values--link {
  font-size: 14px;
}
/* line 1690, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .facet .cross-circle {
  display: none;
}
/* line 1693, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .facet .name {
  color: #373c3e;
  text-transform: none;
  font-size: 21px;
  text-align: center;
  background-color: transparent;
  border-bottom: 1px solid #e0e4e5;
}
/* line 1702, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .facet .ais-refinement-list--item:hover {
  text-decoration: none;
}
/* line 1707, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .facet .ais-refinement-list--item__active .ais-menu--link,
#algolia_instant_selector .facet .ais-refinement-list--item__active .ais-hierarchical-menu--link,
#algolia_instant_selector .facet .ais-refinement-list--item__active .ais-price-ranges--link,
#algolia_instant_selector .facet .ais-refinement-list--item__active .ais-refinement-list--label,
#algolia_instant_selector .facet .ais-refinement-list--item__active a,
#algolia_instant_selector .facet .ais-refinement-list--item__active input {
  font-weight: normal;
  color: #373c3e;
}
/* line 1717, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .facet .ais-range-slider--target {
  margin-bottom: 2em;
}
/* line 1723, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .facet .ais-hierarchical-menu--list__lvl0 .ais-hierearchical-link-wrapper {
  /*display:none;*/
}
/* line 1728, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .facet .ais-hierarchical-menu--list__lvl0 .ais-hierarchical-menu--list__lvl1 .ais-hierearchical-link-wrapper {
  display: block;
}
/* line 1735, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #current-refinements .ais-current-refined-values--body {
  padding-right: 8px;
  padding-bottom: 20px;
}
/* line 1738, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #current-refinements .ais-current-refined-values--body .ais-current-refined-values--item {
  margin-top: 0;
}
/* line 1741, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #current-refinements .ais-current-refined-values--body .ais-current-refined-values--clear-all {
  top: auto;
  bottom: 14px;
  margin-bottom: 4px;
  width: 100%;
  text-align: center;
  color: #02b2e7;
}
/* line 1749, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #current-refinements .ais-current-refined-values--body .ais-current-refined-values--link {
  width: 100%;
  padding-right: 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -o-border-radius: 50px;
  color: #373c3e;
}
/* line 1757, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #current-refinements .ais-current-refined-values--body .ais-current-refined-values--link .cross-wrapper {
  float: right;
  background-color: transparent;
}
/* line 1760, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #current-refinements .ais-current-refined-values--body .ais-current-refined-values--link .cross-wrapper .clear-refinement {
  left: 0;
}
/* line 1765, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #current-refinements .ais-current-refined-values--body .ais-current-refined-values--link:hover .current-refinement-wrapper {
  text-decoration: none;
}
/* line 1770, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #current-refinements .ais-current-refined-values--body .ais-current-refined-values--link .cross-wrapper .clear-cross {
  height: 10px;
  width: 10px;
  margin-top: 3px;
}
/* line 1777, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #current-refinements .ais-current-refined-values--body .current-refinement-label {
  display: none;
}
/* line 1783, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .ais-hits > div {
  float: left;
}
/* line 1787, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .row {
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
/* line 1792, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #algolia-right-container {
  padding: 0;
}
/* line 1795, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #algolia-left-container {
  padding: 0;
}
/* line 1797, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #algolia-left-container #refine-toggle {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  line-height: 19px;
  border-color: #abb2b3;
  margin: 0;
  height: auto;
  font-weight: normal;
}
/* line 1806, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #algolia-left-container #refine-toggle .toggle-close .icon-font,
#algolia_instant_selector #algolia-left-container #refine-toggle .toggle-open .icon-font {
  font-size: 12px;
  margin-right: 5px;
}
/* line 1811, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #algolia-left-container #refine-toggle .toggle-close {
  display: none;
}
/* line 1815, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #algolia-left-container #refine-toggle.open .toggle-open {
  display: none;
}
/* line 1818, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #algolia-left-container #refine-toggle.open .toggle-close {
  display: inline-block;
}
/* line 1822, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #algolia-left-container #refine-toggle.open {
  background: #02b2e7;
  border-color: #02b2e7;
}
/* line 1825, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #algolia-left-container #refine-toggle.open span {
  color: #fff;
}
/* line 1830, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #algolia-left-container #instant-search-facets-container {
  padding-right: 10px;
}
/* line 1836, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result-content {
  position: relative;
}
/* line 1838, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result-content .result-thumbnail {
  position: relative;
}
/* line 1840, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result-content .result-thumbnail .overlay-holder {
  height: auto;
}
/* line 1842, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result-content .result-thumbnail .overlay-holder .overlay-inner {
  width: 100%;
}
/* line 1844, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result-content .result-thumbnail .overlay-holder .overlay-inner .icon-font {
  font-size: 45px;
  bottom: 6%;
  right: 6%;
}
/* line 1849, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result-content .result-thumbnail .overlay-holder .overlay-inner #quick-view-icon {
  margin-left: 8px;
  max-width: 40px;
}
/* line 1853, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result-content .result-thumbnail .overlay-holder .overlay-inner img {
  margin-right: 8px;
  height: 40px;
  width: 40px;
}
/* line 1858, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result-content .result-thumbnail .overlay-holder .overlay-inner .add-to-modal-button {
  font-size: 5px;
  float: left;
}
/* line 1861, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result-content .result-thumbnail .overlay-holder .overlay-inner .add-to-modal-button .icon-font {
  right: auto;
  left: 10%;
}
/* line 1870, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result {
  padding: 0;
  margin: 0 0 20px 0;
  overflow: hidden;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
}
/* line 1882, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result:hover {
  border-color: #EDEDED;
}
/* line 1886, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result .result-thumbnail img {
  max-width: 100%;
  height: auto;
}
/* line 1891, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result .result-sub-content {
  padding: 19px 0 11px 0;
}
/* line 1893, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result .result-sub-content .result-author-string {
  margin-top: -2px;
}
/* line 1896, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result .result-sub-content .result-text-lines-wrap {
  padding: 0 10px;
  min-height: 52px;
  overflow: hidden;
}
/* line 1901, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result .result-sub-content .grouped-prod-sub-selector {
  display: none;
}
/* line 1904, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result .result-sub-content .instantsearch-bottom-line,
#algolia_instant_selector #instant-search-results-container .result-wrapper .result .result-sub-content .add-to-cart-wrapper {
  border-top: 1px solid #e0e4e5;
}
/* line 1908, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result .result-sub-content .add-to-cart-wrapper {
  display: none;
}
/* line 1911, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result .result-sub-content .instantsearch-bottom-line {
  text-align: center;
  max-height: 37px;
  overflow: hidden;
  color: #373c3e;
  font-size: 16px;
}
/* line 1917, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result .result-sub-content .instantsearch-bottom-line .format-line {
  padding: 6px 0;
}
/* line 1919, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result .result-sub-content .instantsearch-bottom-line .format-line .format-price {
  padding-left: 4px;
}
/* line 1924, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result .result-sub-content .add-to-cart-button {
  width: 100%;
  padding: 9px 0;
  float: right;
  color: #373c3e;
  background: transparent;
  text-transform: none;
}
/* line 1931, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result .result-sub-content .add-to-cart-button span {
  color: #373c3e;
  font-size: 16px;
}
/* line 1935, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result .result-sub-content .add-to-cart-button:hover {
  color: #2bccfb;
}
/* line 1937, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result .result-sub-content .add-to-cart-button:hover span {
  color: #2bccfb;
}
/* line 1943, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result .result-sub-content .type_id-grouped .grouped-prod-sub-selector {
  width: 73%;
  display: inline-block;
  border-width: 0;
  font-size: 16px;
  color: #373c3e;
}
/* line 1950, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result .result-sub-content .type_id-grouped form {
  display: inline-block;
  vertical-align: bottom;
  float: right;
  width: 27%;
}
/* line 1955, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result .result-sub-content .type_id-grouped form .add-to-cart-button {
  float: right;
  border-left: 1px solid #e0e4e5;
  text-transform: none;
}
/* line 1963, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result h3,
#algolia_instant_selector #instant-search-results-container .result-wrapper .result h4 {
  font-size: 16px;
  text-align: center;
}
/* line 1968, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result h3 {
  color: #373c3e;
}
/* line 1971, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result h4 {
  color: #777e80;
}
/* line 1976, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector #instant-search-results-container .col-md-4 {
  width: 25%;
  padding: 0 10px;
}
/* line 1983, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector.facets-open #instant-search-results-container .col-md-4 {
  width: 33%;
}
/* line 1988, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector button:not(.ais-price-ranges--button) {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}

@media screen and (max-width: 800px) {
  /* line 1995, ../scss/module/_algoliaenhanced.scss */
  .overlay-holder .overlay-inner .add-to-modal-button {
    display: none;
  }
}
/* line 2006, ../scss/module/_algoliaenhanced.scss */
body.instant-search.noTouch #instant-search-results-container .search-hit .result-wrapper .result-content {
  position: relative;
}
/* line 2010, ../scss/module/_algoliaenhanced.scss */
body.instant-search.noTouch #instant-search-results-container .search-hit .result-wrapper .result-content .result-thumbnail .overlay-holder .overlay-inner {
  opacity: 0;
  transition: opacity 1s;
  -moz-transition: opacity 1s;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
}
/* line 2023, ../scss/module/_algoliaenhanced.scss */
body.instant-search.noTouch #instant-search-results-container .search-hit:hover .result-wrapper .result-content {
  position: relative;
}
/* line 2027, ../scss/module/_algoliaenhanced.scss */
body.instant-search.noTouch #instant-search-results-container .search-hit:hover .result-wrapper .result-content .result-thumbnail .overlay-holder .overlay-inner {
  opacity: 1;
  transition: opacity 1s;
  -moz-transition: opacity 1s;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
}
/* line 2041, ../scss/module/_algoliaenhanced.scss */
body.instant-search.noTouch #instant-search-results-container .search-hit.playing .result-wrapper .result-content {
  position: relative;
}
/* line 2045, ../scss/module/_algoliaenhanced.scss */
body.instant-search.noTouch #instant-search-results-container .search-hit.playing .result-wrapper .result-content .result-thumbnail .overlay-holder .overlay-inner {
  opacity: 1;
  transition: opacity 1s;
  -moz-transition: opacity 1s;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
}

/* line 2062, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper #algolia-left-container {
  width: 0;
  height: 0;
}
/* line 2066, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper #algolia_instant_selector.with-facets {
  overflow: hidden;
  position: relative;
}
/* line 2069, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper #algolia_instant_selector.with-facets #algolia-left-container,
.algolia-instant-results-wrapper #algolia_instant_selector.with-facets #algolia-right-container {
  transition: width .25s ease-out, left .25s ease-out;
}
/* line 2073, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper #algolia_instant_selector.with-facets #algolia-left-container {
  /*position: absolute;*/
  left: -25%;
  padding-left: 0;
}
/* line 2078, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper #algolia_instant_selector.with-facets #algolia-right-container {
  width: 100%;
  float: right;
}
/* line 2084, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper #algolia_instant_selector.with-facets.facets-open #algolia-left-container {
  left: 0;
  width: 25%;
  height: auto;
}
/* line 2089, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper #algolia_instant_selector.with-facets.facets-open #algolia-right-container {
  width: 75%;
}
/* line 2093, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-results-wrapper #algolia_instant_selector.with-facets.facets-open #instant-search-results-container .col-md-4 {
  /*width:33.33%;*/
}

/* ============================================ *
 * Algolia Enhanced - Info Dropdown
 * ============================================ */
/* line 2103, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown {
  padding: 0 10px 20px;
  font-size: 16px;
}
/* line 2106, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge {
  position: relative;
  background: #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
}
/* line 2117, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .close-button {
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 10px;
  font-size: 21px;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  color: #373c3e;
}
/* line 2126, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .pad {
  padding: 18px 5% 12px 5%;
}
/* line 2129, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .right-col {
  margin-top: 25px;
  margin-bottom: 25px;
}
/* line 2132, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .right-col .pad {
  padding-top: 0;
  padding-bottom: 0;
}
/* line 2137, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .top {
  text-align: center;
  border-bottom: 1px solid #d3d8d9;
}
/* line 2141, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .left-col,
#algolia_instant_selector .search-info-dropdown .outer-edge .right-col {
  width: 50%;
  float: left;
}
/* line 2146, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .right-col {
  float: right;
  border-left: 1px solid #d3d8d9;
}
/* line 2151, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .left-col .pad {
  padding-top: 25px;
  padding-bottom: 15px;
}
/* line 2156, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .product-link {
  text-align: center;
  margin-top: 20px;
}
/* line 2159, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .product-link a {
  color: #02b2e7;
}
/* line 2164, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .product-group-wrapper .product-group-label {
  display: inline-block;
}
/* line 2168, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .price-wrapper {
  height: auto;
  margin-bottom: -12px;
}
/* line 2172, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .price-wrapper .price-box .price {
  font-size: 28px;
}
/* line 2177, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .product-group-switcher-wrapper {
  margin-bottom: -5px;
}
/* line 2179, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .product-group-switcher-wrapper .product-group-switcher-icon {
  display: inline-block;
  line-height: 100%;
  margin-left: -2px;
  font-size: 41px;
  color: #919799;
}
/* line 2185, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .product-group-switcher-wrapper .product-group-switcher-icon.active {
  color: #02b2e7;
}
/* line 2190, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .additional-info {
  height: 10px;
}
/* line 2192, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .additional-info.showCmsBlock {
  height: auto;
}
/* line 2195, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .additional-info .shipping-notice,
#algolia_instant_selector .search-info-dropdown .outer-edge .additional-info .shipping-notice-discount {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 120%;
}
/* line 2202, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .additional-info .shipping-notice-discount {
  color: #2e9202;
}
/* line 2206, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .cta-buttons-wrapper {
  position: relative;
  margin-top: 29px;
}
/* line 2209, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .cta-buttons-wrapper .cta-button-wrap {
  display: block;
  float: left;
  margin-right: 10px;
}
/* line 2214, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .cta-buttons-wrapper .added-success {
  position: absolute;
  width: 100%;
  top: 12px;
  left: 0;
  font-size: 18px;
  text-align: center;
}
/* line 2221, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .cta-buttons-wrapper .added-success .text {
  position: relative;
  bottom: 6px;
  margin-left: 5px;
  font-size: 16px;
}
/* line 2227, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .cta-buttons-wrapper .added-success .icon-font {
  font-size: 28px;
  color: #6fc315;
}
/* line 2231, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector .search-info-dropdown .outer-edge .cta-buttons-wrapper .added-success.hidden {
  opacity: 0;
}
@media screen and (max-width: 1044px) {
  /* line 2238, ../scss/module/_algoliaenhanced.scss */
  #algolia_instant_selector .search-info-dropdown .outer-edge .cta-buttons-wrapper .cta-button-wrap {
    width: 100%;
    margin-right: 0;
    padding: 0;
  }
  /* line 2242, ../scss/module/_algoliaenhanced.scss */
  #algolia_instant_selector .search-info-dropdown .outer-edge .cta-buttons-wrapper .cta-button-wrap .button {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  /* line 2248, ../scss/module/_algoliaenhanced.scss */
  #algolia_instant_selector .search-info-dropdown .outer-edge .cta-buttons-wrapper.double {
    margin-left: -5px;
    margin-right: -5px;
  }
  /* line 2251, ../scss/module/_algoliaenhanced.scss */
  #algolia_instant_selector .search-info-dropdown .outer-edge .cta-buttons-wrapper.double .cta-button-wrap {
    width: 50%;
    float: left;
    padding: 0 5px;
  }
}
@media screen and (max-width: 768px) {
  /* line 2262, ../scss/module/_algoliaenhanced.scss */
  #algolia_instant_selector .search-info-dropdown .lower .right-col,
  #algolia_instant_selector .search-info-dropdown .lower .left-col {
    width: 100%;
  }
  /* line 2266, ../scss/module/_algoliaenhanced.scss */
  #algolia_instant_selector .search-info-dropdown .lower .right-col {
    border-left-width: 0;
    text-align: center;
    padding-bottom: 35px;
    border-bottom: 1px solid #d3d8d9;
  }
}
/* line 2279, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector.facets-open .search-info-dropdown .outer-edge .cta-buttons-wrapper .cta-button-wrap {
  width: 100%;
  margin-right: 0;
  padding: 0;
}
/* line 2283, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector.facets-open .search-info-dropdown .outer-edge .cta-buttons-wrapper .cta-button-wrap .button {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
/* line 2289, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector.facets-open .search-info-dropdown .outer-edge .cta-buttons-wrapper.double {
  margin-left: -5px;
  margin-right: -5px;
}
/* line 2292, ../scss/module/_algoliaenhanced.scss */
#algolia_instant_selector.facets-open .search-info-dropdown .outer-edge .cta-buttons-wrapper.double .cta-button-wrap {
  width: 50%;
  float: left;
  padding: 0 5px;
}

/* ============================================ *
 * Algolia Enhanced - instant search header bar
 * ============================================ */
/* line 2307, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-search-lower-wrapper {
  background: #edf2f3;
  border-bottom: 1px solid #d3d8d9;
}
/* line 2310, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-search-lower-wrapper .infos {
  text-align: center;
  padding-top: 10px;
}
/* line 2313, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-search-lower-wrapper .infos select {
  /*border-color:$seperator-grayline-on-graybg;
  border-width:0;
  background:$c-background;
  color:$c-heading-black;
  font-size:$f-size-xs;*/
  margin-top: 4px;
}
/* line 2321, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-search-lower-wrapper .infos #product-group-top-wrapper {
  display: inline-block;
  text-align: center;
  margin-bottom: -9px;
}
/* line 2325, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-search-lower-wrapper .infos #product-group-top-wrapper a {
  padding-bottom: 10px;
  border-bottom: 1px solid #edf2f3;
  color: #919799;
}
/* line 2329, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-search-lower-wrapper .infos #product-group-top-wrapper a.active {
  border-bottom-color: #02b2e7;
  color: #373c3e;
}
/* line 2333, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-search-lower-wrapper .infos #product-group-top-wrapper a:hover {
  text-decoration: none;
  color: #373c3e;
  border-bottom-color: #02b2e7;
}
/* line 2339, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-search-lower-wrapper .infos #product-group-top-wrapper #clear-product-group-wrapper {
  float: left;
}
/* line 2342, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-search-lower-wrapper .infos #product-group-top-wrapper #product-group-dropdown-wrapper-inner {
  float: left;
  width: 100%;
  display: none;
}
/* line 2346, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-search-lower-wrapper .infos #product-group-top-wrapper #product-group-dropdown-wrapper-inner select {
  width: 100%;
  border-width: 1px;
}
/* line 2351, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-search-lower-wrapper .infos #product-group-top-wrapper #product-group-wrapper-inner {
  float: right;
}
/* line 2354, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-search-lower-wrapper .infos #product-group-top-wrapper #product-group-wrapper-inner > div .ais-root {
  display: inline-block;
  background: transparent;
  border: none;
}
/* line 2358, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-search-lower-wrapper .infos #product-group-top-wrapper #product-group-wrapper-inner > div .ais-root .ais-header {
  display: none;
}
/* line 2361, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-search-lower-wrapper .infos #product-group-top-wrapper #product-group-wrapper-inner > div .ais-root .ais-body {
  display: inline-block;
}
/* line 2364, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-search-lower-wrapper .infos #product-group-top-wrapper #product-group-wrapper-inner > div .ais-root .ais-body .ais-menu--list .ais-menu--item {
  display: inline-block;
}
/* line 2366, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-search-lower-wrapper .infos #product-group-top-wrapper #product-group-wrapper-inner > div .ais-root .ais-body .ais-menu--list .ais-menu--item a {
  color: #919799;
}
/* line 2369, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-search-lower-wrapper .infos #product-group-top-wrapper #product-group-wrapper-inner > div .ais-root .ais-body .ais-menu--list .ais-menu--item .ais-menu--count {
  display: none;
}
/* line 2374, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-search-lower-wrapper .infos #product-group-top-wrapper #product-group-wrapper-inner > div .ais-root .ais-body .ais-menu--list .ais-menu--item a:hover {
  text-decoration: none;
  color: #373c3e;
}
/* line 2380, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-search-lower-wrapper .infos #product-group-top-wrapper #product-group-wrapper-inner > div .ais-root .ais-body .ais-menu--list .ais-menu--item__active a {
  border-bottom-color: #02b2e7;
  color: #373c3e;
}
/* line 2391, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-search-lower-wrapper .infos .pull-right {
  float: right;
}
/* line 2393, ../scss/module/_algoliaenhanced.scss */
.algolia-instant-search-lower-wrapper .infos .pull-right .sort-by-label {
  display: none;
}

@media screen and (max-width: 600px) {
  /* line 2402, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper .algolia-instant-search-lower-wrapper {
    border-width: 0;
  }
  /* line 2406, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper .algolia-instant-search-lower-wrapper .bswrap .infos #instantsearch-filter-toggle {
    display: none;
  }
  /* line 2409, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper .algolia-instant-search-lower-wrapper .bswrap .infos #product-group-top-wrapper {
    width: 50%;
    float: left;
  }
  /* line 2412, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper .algolia-instant-search-lower-wrapper .bswrap .infos #product-group-top-wrapper #product-group-dropdown-wrapper-inner {
    /*display: inline-block;*/
  }
  /* line 2414, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper .algolia-instant-search-lower-wrapper .bswrap .infos #product-group-top-wrapper #product-group-dropdown-wrapper-inner select {
    border-right-width: 0;
  }
  /* line 2418, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper .algolia-instant-search-lower-wrapper .bswrap .infos #product-group-top-wrapper #clear-product-group-wrapper,
  .algolia-instant-results-wrapper .algolia-instant-search-lower-wrapper .bswrap .infos #product-group-top-wrapper #product-group-wrapper-inner {
    display: none;
  }
  /* line 2423, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper .algolia-instant-search-lower-wrapper .bswrap .infos .pull-right {
    width: 100%;
    float: right;
  }
  /* line 2426, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper .algolia-instant-search-lower-wrapper .bswrap .infos .pull-right select {
    width: 100%;
    border-width: 1px;
  }

  /* line 2437, ../scss/module/_algoliaenhanced.scss */
  #algolia_instant_selector #instant-search-results-container .col-md-4 {
    /*width:33.3%;*/
    /*padding:10px;
    .result {
      margin:0;
    }*/
  }
}
@media screen and (max-width: 979px) {
  /* line 2452, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper #algolia_instant_selector #instant-search-results-container .col-md-4 {
    width: 33.3%;
  }
  /* line 2457, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper #algolia_instant_selector.with-facets #algolia-left-container {
    left: -33.33%;
  }
  /* line 2461, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper #algolia_instant_selector.with-facets.facets-open #algolia-left-container {
    width: 33.33%;
  }
  /* line 2464, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper #algolia_instant_selector.with-facets.facets-open #algolia-right-container {
    width: 66.66%;
  }
  /* line 2468, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper #algolia_instant_selector.with-facets.facets-open #instant-search-results-container .col-md-4 {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  /* line 2482, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper #algolia_instant_selector #instant-search-results-container .col-md-4 {
    /*width: 50%;*/
  }
  /* line 2488, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper #algolia_instant_selector #instant-search-results-container .col-md-4 .result-wrapper .result .result-sub-content .type_id-grouped .grouped-prod-sub-selector {
    width: 78%;
  }
  /* line 2491, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper #algolia_instant_selector #instant-search-results-container .col-md-4 .result-wrapper .result .result-sub-content .type_id-grouped form {
    width: 22%;
  }
  /* line 2493, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper #algolia_instant_selector #instant-search-results-container .col-md-4 .result-wrapper .result .result-sub-content .type_id-grouped form .add-to-cart-label {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  /* line 2509, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper #algolia_instant_selector {
    margin-top: 5px;
  }
  /* line 2512, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper #algolia_instant_selector.with-facets #algolia-left-container {
    position: static;
    left: 0;
    width: 100% !important;
    height: auto !important;
    transition: width 0s;
    margin-bottom: 22px;
  }
  /* line 2519, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper #algolia_instant_selector.with-facets #algolia-left-container #instant-search-facets-container {
    padding-right: 0px;
    margin-top: 13px;
  }
  /* line 2526, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper #algolia_instant_selector #instant-search-results-container .col-md-4 {
    width: 50%;
  }
  /* line 2534, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper .algolia-instant-search-lower-wrapper .pull-right #algolia-sorts {
    margin-top: 6px;
  }
}
@media screen and (max-width: 480px) {
  /* line 2546, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper #algolia_instant_selector #instant-search-results-container .col-md-4 {
    padding: 0 5px;
  }
  /* line 2548, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper #algolia_instant_selector #instant-search-results-container .col-md-4 .result {
    margin-bottom: 10px;
  }
  /* line 2550, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper #algolia_instant_selector #instant-search-results-container .col-md-4 .result .result-text-lines-wrap {
    min-height: 47px;
  }
  /* line 2552, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper #algolia_instant_selector #instant-search-results-container .col-md-4 .result .result-text-lines-wrap .result-sub-content {
    padding-top: 2px;
  }
  /* line 2555, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper #algolia_instant_selector #instant-search-results-container .col-md-4 .result .result-text-lines-wrap .result-author-string {
    margin-bottom: 11px;
  }
  /* line 2560, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper #algolia_instant_selector #instant-search-results-container .col-md-4 .result .result-sub-content .instantsearch-bottom-line {
    max-height: 33px;
  }
  /* line 2564, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper #algolia_instant_selector #instant-search-results-container .col-md-4 .result .result-title,
  .algolia-instant-results-wrapper #algolia_instant_selector #instant-search-results-container .col-md-4 .result .result-author-string,
  .algolia-instant-results-wrapper #algolia_instant_selector #instant-search-results-container .col-md-4 .result .instantsearch-bottom-line {
    font-size: 14px;
  }
  /* line 2573, ../scss/module/_algoliaenhanced.scss */
  .algolia-instant-results-wrapper .search-footer-stats-and-pagination {
    margin-bottom: 50px;
  }
}
/* line 1, ../scss/module/_recaptcha-enhanced.scss */
.grecaptcha-badge {
  z-index: 10;
  display: none;
}

/* ============================================ *
 * Multi-line Elipsis with Cross-Browser Fallback - Pure CSS
 * Created by Bret Miller 5/4/2018
 * ============================================ */
/* Start with fallback for browsers that don't support -webkit-line-clamp */
/* line 7, ../scss/module/_clampme.scss */
.clampMe {
  position: relative;
  overflow: hidden;
}

/* line 12, ../scss/module/_clampme.scss */
.clampMe:after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff 80%);
}

/* Now add in code for the browsers that support -webkit-line-clamp and overwrite the non-supportive stuff */
@supports (-webkit-line-clamp: 1) {
  /* line 24, ../scss/module/_clampme.scss */
  .showcase-title.clampMe {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }

  /* line 32, ../scss/module/_clampme.scss */
  .clampMe:after {
    display: none;
  }
}
@supports (-webkit-line-clamp: 5) {
  /* line 39, ../scss/module/_clampme.scss */
  .showcase-description.clampMe {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }

  /* line 47, ../scss/module/_clampme.scss */
  .clampMe:after {
    display: none;
  }
}
/* showcase.phtml - begin - _category-landing-pages.scss */
/* line 54, ../scss/module/_clampme.scss */
.showcase-title.clampMe {
  height: 33px;
}

/* line 58, ../scss/module/_clampme.scss */
.showcase-title.clampMe:after {
  /*  height: 33px; */
}

/* line 62, ../scss/module/_clampme.scss */
.showcase-description.clampMe {
  height: 136px;
}

/* line 66, ../scss/module/_clampme.scss */
.showcase-description.clampMe:after {
  height: 27px;
}

/* showcase.phtml - end - _category-landing-pages.scss */
/* ============================================ *
 * Content
 * ============================================ */
/* line 4, ../scss/content/_content.scss */
.page-title,
.page-subtitle {
  max-width: 600px;
  margin: 0 auto 30px auto;
  padding: 35px 0 0 0;
  line-height: 71px;
}
/* line 10, ../scss/content/_content.scss */
.page-title img,
.page-subtitle img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-top: -12px;
}
/* line 16, ../scss/content/_content.scss */
.page-title h2,
.page-title h3,
.page-title h4,
.page-subtitle h2,
.page-subtitle h3,
.page-subtitle h4 {
  text-align: center;
  color: #373c3e;
}

/* ============================================ *
 * CMS Content
 * ============================================ */
/* ============================================ *
 * Standard Buttons
 * ============================================ */
/* line 31, ../scss/content/_buttons.scss */
body #algolia_instant_selector button,
body button,
body .button {
  /* default button is medium button from style guide */
  background: #02b2e7;
  border: 1px solid #02b2e7;
  padding: 10px 15px 7px 15px;
  font-size: 16px;
  color: #fff;
}
/* line 41, ../scss/content/_buttons.scss */
body #algolia_instant_selector button .price-box .price,
body #algolia_instant_selector button .price,
body #algolia_instant_selector button .old-price,
body #algolia_instant_selector button .price-box,
body #algolia_instant_selector button .price-label,
body #algolia_instant_selector button span,
body #algolia_instant_selector button p,
body #algolia_instant_selector button a,
body button .price-box .price,
body button .price,
body button .old-price,
body button .price-box,
body button .price-label,
body button span,
body button p,
body button a,
body .button .price-box .price,
body .button .price,
body .button .old-price,
body .button .price-box,
body .button .price-label,
body .button span,
body .button p,
body .button a {
  font-size: 16px;
}
/* line 52, ../scss/content/_buttons.scss */
body #algolia_instant_selector button:hover,
body button:hover,
body .button:hover {
  background: #2bccfb;
}
/* line 56, ../scss/content/_buttons.scss */
body #algolia_instant_selector button:active, body #algolia_instant_selector button:focus,
body button:active,
body button:focus,
body .button:active,
body .button:focus {
  background: #029ecc;
  outline: none;
}
/* line 62, ../scss/content/_buttons.scss */
body #algolia_instant_selector button .price,
body #algolia_instant_selector button .old-price,
body #algolia_instant_selector button .price-box,
body #algolia_instant_selector button .price-label,
body #algolia_instant_selector button span,
body #algolia_instant_selector button p,
body #algolia_instant_selector button a,
body button .price,
body button .old-price,
body button .price-box,
body button .price-label,
body button span,
body button p,
body button a,
body .button .price,
body .button .old-price,
body .button .price-box,
body .button .price-label,
body .button span,
body .button p,
body .button a {
  font-size: 16px;
  color: #fff;
}
/* line 73, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.orange,
body button.orange,
body .button.orange {
  background: #ff6000;
  border-color: #ff6000;
}
/* line 77, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.orange:hover,
body button.orange:hover,
body .button.orange:hover {
  background: #fe721d;
}
/* line 80, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.orange:active,
body button.orange:active,
body .button.orange:active {
  background: #ea5a03;
}
/* line 83, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.orange:focus,
body button.orange:focus,
body .button.orange:focus {
  background: #ea5a03;
  outline: none;
}
/* line 89, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.green,
body button.green,
body .button.green {
  background: #6fc315;
  border-color: #6fc315;
}
/* line 92, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.green:hover,
body button.green:hover,
body .button.green:hover {
  background: #78d614;
}
/* line 95, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.green:active,
body button.green:active,
body .button.green:active {
  background: #60ad0e;
}
/* line 98, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.green:focus,
body button.green:focus,
body .button.green:focus {
  background: #60ad0e;
  outline: none;
}
/* line 103, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.green .price-box .price,
body #algolia_instant_selector button.green .price,
body #algolia_instant_selector button.green .old-price,
body #algolia_instant_selector button.green .price-box,
body #algolia_instant_selector button.green .price-label,
body #algolia_instant_selector button.green span,
body #algolia_instant_selector button.green p,
body #algolia_instant_selector button.green a,
body button.green .price-box .price,
body button.green .price,
body button.green .old-price,
body button.green .price-box,
body button.green .price-label,
body button.green span,
body button.green p,
body button.green a,
body .button.green .price-box .price,
body .button.green .price,
body .button.green .old-price,
body .button.green .price-box,
body .button.green .price-label,
body .button.green span,
body .button.green p,
body .button.green a {
  color: #fff;
}
/* line 115, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.red,
body button.red,
body .button.red {
  background: #DF280A;
  border-color: #DF280A;
}
/* line 118, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.red:hover,
body button.red:hover,
body .button.red:hover {
  background: #DF280A;
}
/* line 121, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.red:active,
body button.red:active,
body .button.red:active {
  background: #DF280A;
}
/* line 124, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.red:focus,
body button.red:focus,
body .button.red:focus {
  background: #DF280A;
  outline: none;
}
/* line 129, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.red .price-box .price,
body #algolia_instant_selector button.red .price,
body #algolia_instant_selector button.red .old-price,
body #algolia_instant_selector button.red .price-box,
body #algolia_instant_selector button.red .price-label,
body #algolia_instant_selector button.red span,
body #algolia_instant_selector button.red p,
body #algolia_instant_selector button.red a,
body button.red .price-box .price,
body button.red .price,
body button.red .old-price,
body button.red .price-box,
body button.red .price-label,
body button.red span,
body button.red p,
body button.red a,
body .button.red .price-box .price,
body .button.red .price,
body .button.red .old-price,
body .button.red .price-box,
body .button.red .price-label,
body .button.red span,
body .button.red p,
body .button.red a {
  color: #fff;
}
/* line 141, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.gray, body #algolia_instant_selector button.fc-gray,
body button.gray,
body button.fc-gray,
body .button.gray,
body .button.fc-gray {
  background: #edf2f3;
  border: 1px solid #abb2b3;
  color: #373c3e;
}
/* line 147, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.gray:hover, body #algolia_instant_selector button.fc-gray:hover,
body button.gray:hover,
body button.fc-gray:hover,
body .button.gray:hover,
body .button.fc-gray:hover {
  background: #ffffff;
}
/* line 151, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.gray:active, body #algolia_instant_selector button.fc-gray:active,
body button.gray:active,
body button.fc-gray:active,
body .button.gray:active,
body .button.fc-gray:active {
  background: #d3d8d9;
}
/* line 155, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.gray:focus, body #algolia_instant_selector button.fc-gray:focus,
body button.gray:focus,
body button.fc-gray:focus,
body .button.gray:focus,
body .button.fc-gray:focus {
  background: #d3d8d9;
  color: #373c3e;
  outline: none;
}
/* line 161, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.gray .price-box .price,
body #algolia_instant_selector button.gray .price,
body #algolia_instant_selector button.gray .old-price,
body #algolia_instant_selector button.gray .price-box,
body #algolia_instant_selector button.gray .price-label,
body #algolia_instant_selector button.gray span,
body #algolia_instant_selector button.gray p,
body #algolia_instant_selector button.gray a, body #algolia_instant_selector button.fc-gray .price-box .price,
body #algolia_instant_selector button.fc-gray .price,
body #algolia_instant_selector button.fc-gray .old-price,
body #algolia_instant_selector button.fc-gray .price-box,
body #algolia_instant_selector button.fc-gray .price-label,
body #algolia_instant_selector button.fc-gray span,
body #algolia_instant_selector button.fc-gray p,
body #algolia_instant_selector button.fc-gray a,
body button.gray .price-box .price,
body button.gray .price,
body button.gray .old-price,
body button.gray .price-box,
body button.gray .price-label,
body button.gray span,
body button.gray p,
body button.gray a,
body button.fc-gray .price-box .price,
body button.fc-gray .price,
body button.fc-gray .old-price,
body button.fc-gray .price-box,
body button.fc-gray .price-label,
body button.fc-gray span,
body button.fc-gray p,
body button.fc-gray a,
body .button.gray .price-box .price,
body .button.gray .price,
body .button.gray .old-price,
body .button.gray .price-box,
body .button.gray .price-label,
body .button.gray span,
body .button.gray p,
body .button.gray a,
body .button.fc-gray .price-box .price,
body .button.fc-gray .price,
body .button.fc-gray .old-price,
body .button.fc-gray .price-box,
body .button.fc-gray .price-label,
body .button.fc-gray span,
body .button.fc-gray p,
body .button.fc-gray a {
  color: #373c3e;
}
/* line 173, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.clear-white,
body button.clear-white,
body .button.clear-white {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
/* line 177, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.clear-white:hover,
body button.clear-white:hover,
body .button.clear-white:hover {
  background: #fff;
  color: #373c3e;
}
/* line 183, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.state-transition,
body button.state-transition,
body .button.state-transition {
  transition: background 500ms linear, border-color 500ms linear;
  -webkit-transition: background 250ms linear, border-color 250ms linear;
}
/* line 188, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.rounded,
body button.rounded,
body .button.rounded {
  border-radius: 25px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  -o-border-radius: 25px;
}
/* line 195, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.large,
body button.large,
body .button.large {
  padding: 16px 60px 13px 60px;
  font-size: 18px;
}
/* line 199, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.large .price,
body #algolia_instant_selector button.large .old-price,
body #algolia_instant_selector button.large .price-box,
body #algolia_instant_selector button.large .price-label,
body #algolia_instant_selector button.large span,
body #algolia_instant_selector button.large p,
body #algolia_instant_selector button.large a,
body button.large .price,
body button.large .old-price,
body button.large .price-box,
body button.large .price-label,
body button.large span,
body button.large p,
body button.large a,
body .button.large .price,
body .button.large .old-price,
body .button.large .price-box,
body .button.large .price-label,
body .button.large span,
body .button.large p,
body .button.large a {
  font-size: 18px;
}
/* line 210, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.medium-width,
body button.medium-width,
body .button.medium-width {
  padding: 10px 30px 7px;
}
/* line 214, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.medium-x2-width,
body button.medium-x2-width,
body .button.medium-x2-width {
  padding: 10px 60px 7px;
}
/* line 219, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.large.tight,
body button.large.tight,
body .button.large.tight {
  padding: 16px 40px 13px 40px;
  font-size: 18px;
}
/* line 223, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.large.tight .price,
body #algolia_instant_selector button.large.tight .old-price,
body #algolia_instant_selector button.large.tight .price-box,
body #algolia_instant_selector button.large.tight .price-label,
body #algolia_instant_selector button.large.tight span,
body #algolia_instant_selector button.large.tight p,
body #algolia_instant_selector button.large.tight a,
body button.large.tight .price,
body button.large.tight .old-price,
body button.large.tight .price-box,
body button.large.tight .price-label,
body button.large.tight span,
body button.large.tight p,
body button.large.tight a,
body .button.large.tight .price,
body .button.large.tight .old-price,
body .button.large.tight .price-box,
body .button.large.tight .price-label,
body .button.large.tight span,
body .button.large.tight p,
body .button.large.tight a {
  font-size: 18px;
}
/* line 234, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.full-width,
body button.full-width,
body .button.full-width {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* line 240, ../scss/content/_buttons.scss */
body #algolia_instant_selector button.is-disabled,
body button.is-disabled,
body .button.is-disabled {
  opacity: .3;
  cursor: default;
}
/* line 246, ../scss/content/_buttons.scss */
body .pager_icon {
  width: 50px;
  height: 50px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: -25px;
  z-index: 900;
  padding: 0;
  outline: none;
  background: #edf2f3;
  border: 1px solid #abb2b3;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
/* line 264, ../scss/content/_buttons.scss */
body .pager_icon:hover {
  text-decoration: none;
  background-color: #ffffff;
}
/* line 268, ../scss/content/_buttons.scss */
body .pager_icon:active {
  background: #d3d8d9;
}
/* line 271, ../scss/content/_buttons.scss */
body .pager_icon:focus {
  background: #d3d8d9;
  color: #373c3e;
}
/* line 276, ../scss/content/_buttons.scss */
body .pager_icon img {
  width: 30px;
  margin: 13px 0 0 9px;
}
@media screen and (max-width: 800px) {
  /* line 285, ../scss/content/_buttons.scss */
  body button.medium-x2-width,
  body .button.medium-x2-width {
    padding: 10px 40px 7px;
  }
}

/* ============================================ *
 * Widget Titles Grid
 * ============================================ */
/* line 4, ../scss/widget/_title-grid.scss */
.titles-widget-grid-wrapper {
  text-align: center;
}
/* line 6, ../scss/widget/_title-grid.scss */
.titles-widget-grid-wrapper .title-widget-grid {
  display: inline-block;
  margin: 30px 5px 0 5px;
}

/* ============================================ *
 * Widget Titles Grid Large
 * ============================================ */
/* line 5, ../scss/widget/_title-gridlarge.scss */
.titles-widget-grid-wrapper-four-across,
.titles-widget-gridlarge-wrapper-three-across,
.titles-widget-gridlarge-wrapper {
  overflow: hidden;
}
/* line 9, ../scss/widget/_title-gridlarge.scss */
.titles-widget-grid-wrapper-four-across .title-widget-grid,
.titles-widget-gridlarge-wrapper-three-across .title-widget-grid,
.titles-widget-gridlarge-wrapper .title-widget-grid {
  display: table;
  float: left;
}
/* line 12, ../scss/widget/_title-gridlarge.scss */
.titles-widget-grid-wrapper-four-across .title-widget-grid .pad,
.titles-widget-gridlarge-wrapper-three-across .title-widget-grid .pad,
.titles-widget-gridlarge-wrapper .title-widget-grid .pad {
  padding: 5px 4%;
}
/* line 14, ../scss/widget/_title-gridlarge.scss */
.titles-widget-grid-wrapper-four-across .title-widget-grid .pad img,
.titles-widget-gridlarge-wrapper-three-across .title-widget-grid .pad img,
.titles-widget-gridlarge-wrapper .title-widget-grid .pad img {
  max-width: 100%;
}
/* line 21, ../scss/widget/_title-gridlarge.scss */
.titles-widget-grid-wrapper-four-across .title-widget-grid.left .pad,
.titles-widget-gridlarge-wrapper-three-across .title-widget-grid.left .pad,
.titles-widget-gridlarge-wrapper .title-widget-grid.left .pad {
  padding-left: 0;
}
/* line 27, ../scss/widget/_title-gridlarge.scss */
.titles-widget-grid-wrapper-four-across .title-widget-grid.right .pad,
.titles-widget-gridlarge-wrapper-three-across .title-widget-grid.right .pad,
.titles-widget-gridlarge-wrapper .title-widget-grid.right .pad {
  padding-right: 0;
}
/* line 33, ../scss/widget/_title-gridlarge.scss */
.titles-widget-grid-wrapper-four-across .title-widget-grid.middle .pad,
.titles-widget-gridlarge-wrapper-three-across .title-widget-grid.middle .pad,
.titles-widget-gridlarge-wrapper .title-widget-grid.middle .pad {
  padding-right: 2%;
  padding-left: 2%;
}

/* line 42, ../scss/widget/_title-gridlarge.scss */
.titles-widget-gridlarge-wrapper-three-across .title-widget-grid {
  width: 33.3%;
}

/* line 48, ../scss/widget/_title-gridlarge.scss */
.titles-widget-grid-wrapper-four-across .title-widget-grid {
  width: 25%;
}

/* ============================================ *
 * Widget People authorgrid
 * ============================================ */
/* line 4, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper {
  text-align: center;
}
/* line 6, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .people-widget-authorgrid {
  display: inline-block;
  margin: 0 3px 30px 3px;
  width: 235px;
}
/* line 10, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .people-widget-authorgrid img {
  height: 235px;
  width: 235px;
  border: 2px solid #fff;
  margin-bottom: 8px;
}
/* line 16, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .people-widget-authorgrid a:hover {
  text-decoration: none;
}
/* line 18, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .people-widget-authorgrid a:hover img {
  opacity: 0.8;
}
/* line 22, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .people-widget-authorgrid h5 {
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
/* line 30, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .people-widget-authorgrid.highlight img {
  border-color: #fe721d;
}
/* line 34, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .author-slide-contents {
  position: relative;
  margin-bottom: 30px;
  margin-top: -13px;
}
/* line 38, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .author-slide-contents .author-slide-contents-background {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  /*-webkit-filter: blur(40px);
  -moz-filter: blur(40px);
  -o-filter: blur(40px);
  -ms-filter: blur(40px);
  filter: blur(40px);*/
  overflow: hidden;
}
/* line 56, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .author-slide-contents .author-slide-contents-inner-wrap.free-floating-full-width .author-slide-contents-inner {
  padding: 35px 35px;
  padding-top: 55px;
}
/* line 62, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .author-slide-contents .author-slide-contents-inner-wrap .author-slide-contents-inner {
  padding: 35px;
  padding-top: 55px;
  background: rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
}
/* line 68, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .author-slide-contents .author-slide-contents-inner-wrap .author-slide-contents-inner p,
.people-widget-authorgrid-wrapper .author-slide-contents .author-slide-contents-inner-wrap .author-slide-contents-inner h2,
.people-widget-authorgrid-wrapper .author-slide-contents .author-slide-contents-inner-wrap .author-slide-contents-inner h3,
.people-widget-authorgrid-wrapper .author-slide-contents .author-slide-contents-inner-wrap .author-slide-contents-inner h4 {
  color: #fff;
}
/* line 74, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .author-slide-contents .author-slide-contents-inner-wrap .author-slide-contents-inner .carrot-wrap {
  position: absolute;
  width: 100%;
  height: 13px;
  overflow: hidden;
  top: 0;
  left: 0;
}
/* line 81, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .author-slide-contents .author-slide-contents-inner-wrap .author-slide-contents-inner .carrot-wrap .carrot-left,
.people-widget-authorgrid-wrapper .author-slide-contents .author-slide-contents-inner-wrap .author-slide-contents-inner .carrot-wrap .carrot-right {
  width: 50%;
  float: left;
  background: #fff;
  height: 13px;
}
/* line 88, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .author-slide-contents .author-slide-contents-inner-wrap .author-slide-contents-inner .carrot-wrap .carrot-left {
  left: 0;
}
/* line 91, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .author-slide-contents .author-slide-contents-inner-wrap .author-slide-contents-inner .carrot-wrap .carrot-right {
  right: 0;
}
/* line 94, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .author-slide-contents .author-slide-contents-inner-wrap .author-slide-contents-inner .carrot-wrap .carrot-center {
  float: left;
  width: 26px;
  height: 13px;
  background: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/carrot-middle.png") center center no-repeat;
}
/* line 101, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .author-slide-contents .author-slide-contents-inner-wrap .author-slide-contents-inner .author-slide-contents-inner-constraint {
  max-width: 555px;
  margin: 0 auto;
}
/* line 105, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .author-slide-contents .author-slide-contents-inner-wrap .author-slide-contents-inner .people-widget-authorgrid-titles-wrap {
  border-top: 1px solid #ECECEC;
  text-align: center;
  padding-top: 30px;
}
/* line 109, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .author-slide-contents .author-slide-contents-inner-wrap .author-slide-contents-inner .people-widget-authorgrid-titles-wrap .people-widget-authorgrid-title {
  display: inline-block;
  padding: 0 5px 5px 5px;
}
/* line 115, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .author-slide-contents .author-slide-contents-inner-wrap .author-slide-contents-inner-close {
  position: absolute;
  top: 18px;
  right: 10px;
  color: #fff;
}
/* line 122, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .author-slide-contents .placeholder-inline-prop-open {
  opacity: 0;
}
/* line 125, ../scss/widget/_people-authorgrid.scss */
.people-widget-authorgrid-wrapper .author-slide-contents .free-floating-full-width {
  position: absolute;
  top: 0;
}

@media only screen and (min-width: 480px) {
  /* line 136, ../scss/widget/_people-authorgrid.scss */
  .people-widget-authorgrid-wrapper .author-slide-contents.author-slide-drawer .author-slide-contents-inner-wrap.free-floating-full-width .author-slide-contents-inner {
    padding: 35px 45px;
    padding-top: 55px;
  }
}
/* ============================================ *
 * LBD Alternate 2Column V1
 * ============================================ */
/* line 30, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .main-container {
  background-color: #f8f8f8;
  padding-bottom: 0;
}
/* line 34, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .quotes-wrapper {
  background: #fff;
  text-align: center;
}
/* line 38, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-top-banner {
  background-color: #fff;
  height: 231px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
/* line 46, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-top-banner img {
  display: none;
}
/* line 50, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .bsp-book-content-container {
  width: 100%;
  max-width: 1060px;
  text-align: center;
  background-color: #f8f8f8;
  overflow: hidden;
  margin: 0 auto;
}
/* line 59, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .bsp-book-content {
  margin: 0 auto;
  width: 100%;
  max-width: 1060px;
  padding: 0 30px;
}
/* line 66, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-book-content-left {
  float: left;
  max-width: 600px;
  width: 100%;
  padding: 45px 0 30px 0;
  background-color: #f8f8f8;
  height: auto;
}
/* line 75, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-book-content-right {
  clear: left;
  float: right;
  width: 400px;
  padding: 45px 0 75px 45px;
  background-color: #f8f8f8;
  overflow: hidden;
}
/* line 84, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-available-now {
  color: #777e80;
  font-size: 24px;
  text-transform: none;
}
/* line 90, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-book-copy {
  text-align: justify;
  font-size: 18px;
  color: #373c3e;
  line-height: 140%;
}
/* line 97, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-book-copy p.bsp-copy-large {
  font-size: 24px;
  line-height: 140%;
  font-style: normal;
}
/* line 103, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-book-copy p {
  font-size: 18px;
  line-height: 140%;
  font-style: normal;
}
/* line 109, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-book-cover-image {
  padding: 15px 0 0 25px;
}
/* line 113, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-reseller-text {
  font-size: 24px;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  color: #b01610;
  padding-top: 20px;
  padding-bottom: 10px;
  height: 59px;
}
/* line 122, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-reseller-text-02 {
  text-align: center;
  font-size: 18px;
  color: #777e80;
  margin-bottom: 20px;
  height: 58px;
  line-height: 20px;
}
/* line 131, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .bsp-page-button-holder button .itunes-icon img {
  position: relative;
  bottom: 2px;
}
/* line 136, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .bsp-page-button-holder button img {
  vertical-align: middle;
  margin-right: 8px;
}
/* line 141, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .bsp-page-button-holder {
  margin: 5px 0;
  float: left;
  padding: 5px 0;
}
/* line 147, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .standard-button.tall {
  width: 173px;
  font-size: 12px;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  height: 41px;
}
/* line 154, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .fr {
  float: right;
}
/* line 158, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .cb {
  clear: both;
}
/* line 162, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .standard-button.tall img {
  display: inline;
}
/* line 166, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .standard-button.wide {
  width: 207px;
  height: 38px;
  margin-left: 8px;
  line-height: 37px;
  font-size: 12px;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  height: 41px;
}
/* line 176, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .standard-button.wide img {
  display: inline;
}
/* line 180, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .bsp-wide-button-shift {
  margin-left: 67px;
}
/* line 184, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .bsp-format-type-button {
  float: left;
  font-size: 18px;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  border: 1px solid #c6cbcc;
  width: 105px;
  height: 60px;
  margin-bottom: 25px;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  line-height: 20px;
  border: 1px solid #c6cbcc;
}
/* line 199, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .bsp-format-type-price {
  font-size: 14px;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 10px;
  text-align: center;
}
/* line 206, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .bsp-format-type-button-mr {
  margin-right: 19px;
}
/* line 210, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-format-buttons {
  margin-bottom: 15px;
}
/* line 214, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .bsp-book-srp {
  font-size: 14px;
}
/* line 218, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-format-buttons hr {
  height: 1px;
  display: block;
  border: 0;
  border-top: 1px solid #d3d8d9;
  margin: 0 0 1em 0;
  padding: 0;
}
/* line 227, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .bsp-book-cta-on {
  border: 2px solid #02b2e7;
  width: 107px;
  height: 60px;
  padding-top: 9px;
  padding-bottom: 9px;
}
/* line 235, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 button.orange {
  margin-left: 8px;
  width: 341px;
}
/* line 240, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 button.standard-button {
  padding: 5px 13px;
}
/* line 244, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 button.standard-button .price,
.cms-lbd-alternate-2column-v1 button.standard-button .old-price,
.cms-lbd-alternate-2column-v1 button.standard-button .price-box,
.cms-lbd-alternate-2column-v1 button.standard-button .price-label,
.cms-lbd-alternate-2column-v1 button.standard-button p {
  font-size: 18px;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 253, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .price-box .special-price {
  padding-left: 10px;
}
/* line 257, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .bsp-future-release {
  clear: left;
  color: #fc780c;
  text-align: center;
}
/* line 263, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-author-container {
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
  padding: 30px;
}
/* line 271, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-author-banner-inner {
  max-width: 935px;
  width: 100%;
  margin: 0 auto;
  background-color: white;
  height: auto;
  text-align: center;
}
/* line 280, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-author-image-holder {
  display: inline-block;
  width: 260px;
}
/* line 285, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-author-image-holder img {
  padding: 30px 24px;
  width: 258px;
  height: 270px;
}
/* line 291, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-book-copy-holder {
  display: inline-block;
  padding: 0 30px 0 0;
  max-width: 635px;
  width: 100%;
  vertical-align: top;
}
/* line 299, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-book-copy-holder p {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  color: #373c3e;
  line-height: 140%;
  padding-top: 14px;
}
/* line 307, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-book-copy-holder h2 {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-size: 28px;
  color: #373c3e;
  padding-top: 26px;
  text-align: left;
}
/* line 315, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 div.clear {
  height: 0;
}
/* line 319, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-video-header {
  text-align: center;
  font-size: 24px;
  color: #777e80;
  padding-bottom: 46px;
  padding-top: 5px;
}
/* line 327, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 #bsp-video iframe {
  width: 100%;
  height: 267px;
}
/* line 331, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .bsp-iframe-wrapper {
  width: 100%;
  max-width: 490px;
  height: 100%;
  max-height: 267px;
  margin: 0 auto;
  background: #f8f8f8;
}
/* line 340, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .bsp-h-iframe {
  position: relative;
}
/* line 344, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .featherlight .featherlight-content {
  height: 95%;
  width: 90%;
}
/* line 349, ../scss/cms/_lbd-alternate-2column-v1.scss */
.cms-lbd-alternate-2column-v1 .featherlight .featherlight-inner {
  margin-left: 2%;
  margin-right: 2%;
  margin-top: 20px;
}
@media screen and (max-width: 1059px) {
  /* line 356, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-book-content-left {
    width: 50%;
  }
}
@media screen and (max-width: 960px) {
  /* line 362, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-book-copy-holder h2 {
    text-align: center;
  }
}
@media screen and (max-width: 899px) {
  /* line 368, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-book-copy-holder {
    padding-right: 0;
  }
}
@media screen and (max-width: 860px) {
  /* line 374, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-book-content-left {
    width: 45%;
  }
}
@media screen and (max-width: 800px) {
  /* line 380, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-book-content-left {
    width: 43%;
  }
}
@media screen and (min-width: 770px) {
  /* line 386, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 .standard-button.wide {
    padding-top: 2px;
  }
}
@media screen and (max-width: 770px) {
  /* line 393, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 .col1-layout .col-main,
  .cms-lbd-alternate-2column-v1 .col-main {
    margin-bottom: 0;
  }
  /* line 398, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 .bsp-book-content {
    padding: 0;
  }
  /* line 401, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-book-content-left,
  .cms-lbd-alternate-2column-v1 #bsp-book-content-right {
    padding: 0 30px;
  }
  /* line 407, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-top-banner {
    height: 155px;
  }
  /* line 411, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-book-content-left {
    float: none;
    text-align: center;
    width: 100%;
    margin: 0 0 auto;
    padding-right: 0;
    padding-left: 0;
    clear: both;
    max-width: none;
  }
  /* line 422, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-book-content-right {
    width: 100%;
    text-align: center;
    padding: 45px 0;
    margin: 0 auto;
    float: none;
  }
  /* line 430, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-book-content-right h2 {
    margin: 0 auto;
  }
  /* line 434, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-book-cover-image {
    padding-left: 0;
    margin: 0 auto;
    max-width: 345px;
  }
  /* line 440, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-reseller-text {
    font-size: 36px;
    height: auto;
  }
  /* line 445, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-reseller-text-02 {
    font-size: 24px;
    line-height: 120%;
    height: auto;
  }
  /* line 451, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 .bsp-format-type-price {
    font-size: 36px;
    margin-top: 20px;
    font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  }
  /* line 457, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 .bsp-format-type-button {
    font-size: 24px;
    border: 2px solid #c6cbcc;
    width: 169px;
    height: 98px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  /* line 466, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 .bsp-format-type-button-mr {
    margin-right: 25px;
  }
  /* line 470, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 .bsp-wide-button-shift {
    margin-left: 0;
  }
  /* line 474, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 .bsp-page-button-holder {
    clear: left;
    padding: 5px 0px;
    text-align: center;
    width: 100%;
  }
  /* line 481, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 .standard-button.tall,
  .cms-lbd-alternate-2column-v1 .standard-button.wide {
    max-width: 560px;
    width: 100%;
    margin-left: 0px;
    height: auto;
    font-size: 24px;
    margin-bottom: 10px;
  }
  /* line 491, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 button.orange {
    max-width: 560px;
    width: 100%;
    height: auto;
    margin-left: 0;
  }
  /* line 498, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 button.standard-button .price,
  .cms-lbd-alternate-2column-v1 button.standard-button .old-price,
  .cms-lbd-alternate-2column-v1 button.standard-button .price-box,
  .cms-lbd-alternate-2column-v1 button.standard-button .price-label,
  .cms-lbd-alternate-2column-v1 button.standard-button span,
  .cms-lbd-alternate-2column-v1 button.standard-button p {
    font-size: 28px;
  }
  /* line 507, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-format-buttons {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  /* line 513, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-format-buttons hr {
    height: 2px;
    display: block;
    border: 0;
    border-top: 2px solid #d3d8d9;
    padding: 0;
    margin-right: 2px;
  }
  /* line 522, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-format-buttons-inner {
    max-width: 557px;
    width: 100%;
    margin: 0 auto;
  }
  /* line 528, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 .bsp-book-srp {
    font-size: 16px;
  }
  /* line 532, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 .bsp-book-cta-on {
    border: 4px solid #02b2e7;
    width: 169px;
    height: 98px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  /* line 540, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-author-container {
    width: 100%;
    padding: 30px;
  }
  /* line 545, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-author-banner-inner {
    width: 100%;
  }
  /* line 549, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-author-image-holder {
    text-align: center;
    max-width: 635px;
    width: 100%;
  }
  /* line 555, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-author-image-holder img {
    margin: 0 auto;
  }
  /* line 559, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-book-copy-holder {
    padding: 0px;
    clear: left;
    width: 90%;
    margin: 0 5% auto;
  }
  /* line 566, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-book-copy-holder h2 {
    margin: 0 auto;
    text-align: center;
    padding-bottom: 11px;
    padding-top: 0;
  }
  /* line 573, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-book-copy-holder p {
    padding-top: 0;
    padding-bottom: 40px;
    text-align: justify;
    clear: left;
    max-width: 609px;
    font-size: 18px;
    margin-bottom: 0;
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 616px) {
  /* line 587, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 .bsp-format-type-button {
    float: none;
    display: inline-block;
  }
}
@media screen and (max-width: 511px) {
  /* line 594, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 button.standard-button span.credits-wrap.credits {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  /* line 600, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 .main-container.full-width {
    padding: 0;
  }
  /* line 603, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-top-banner {
    background-image: none;
    height: auto;
  }
  /* line 608, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-top-banner img {
    display: block;
    width: 100%;
  }
  /* line 613, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-book-content-left {
    max-width: 420px;
  }
  /* line 617, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-format-buttons-inner {
    width: 169px;
  }
  /* line 621, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-format-buttons-inner hr {
    display: none;
  }
  /* line 625, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 .bsp-format-type-button {
    clear: left;
  }
  /* line 629, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 .bsp-format-type-button-mr {
    margin-right: 0;
  }
  /* line 633, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-book-copy p.bsp-copy-large {
    font-size: 18px;
  }
  /* line 637, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 body.cms-lbd-alternate-2column-v1 #bsp-book-copy p,
  .cms-lbd-alternate-2column-v1 body.cms-lbd-alternate-2column-v1 #bsp-book-copy p.bsp-copy-large,
  .cms-lbd-alternate-2column-v1 body.cms-lbd-alternate-2column-v1 #bsp-book-copy-holder p {
    font-size: 18px;
    line-height: 170%;
    text-align: left;
  }
  /* line 645, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 .standard-button.tall,
  .cms-lbd-alternate-2column-v1 .standard-button.wide {
    font-size: 20px;
  }
}
@media screen and (max-width: 320px) {
  /* line 653, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-book-content-left {
    width: 260px;
  }
  /* line 656, ../scss/cms/_lbd-alternate-2column-v1.scss */
  .cms-lbd-alternate-2column-v1 #bsp-book-copy-holder h2 {
    font-size: 24px;
  }
}

/* line 1, ../scss/cms/_deals-pages.scss */
.deal-page {
  /* deprecated */
  /* deprecated - end */
  /* deprecated  - end */
  /* deprecated - end */
}
/* line 3, ../scss/cms/_deals-pages.scss */
.deal-page .std h2 {
  margin-bottom: 8px;
  color: #373c3e;
  line-height: 1;
}
/* line 9, ../scss/cms/_deals-pages.scss */
.deal-page .main-container .bswrap {
  padding-top: 40px;
}
/* line 13, ../scss/cms/_deals-pages.scss */
.deal-page #deals-banner {
  background-image: url(//d2q0f503qhbqv9.cloudfront.net/site_assets/Downpour_Deals_Banner.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-color: #f06524;
  background-size: cover;
  height: 250px;
}
/* line 21, ../scss/cms/_deals-pages.scss */
.deal-page #deals-banner #deals-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 617px;
  padding-top: 58.5px;
}
/* line 27, ../scss/cms/_deals-pages.scss */
.deal-page #deals-banner #deals-banner-inner h1 {
  margin: 0 auto;
  font-size: 63px;
  line-height: 63px;
  background-color: #fff;
  padding: 35px;
  border-radius: 4px;
  -o-border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  box-shadow: 1px 1.732px 4px 0px rgba(40, 40, 40, 0.41);
  -o-box-shadow: 1px 1.732px 4px 0px rgba(40, 40, 40, 0.41);
  -moz-box-shadow: 1px 1.732px 4px 0px rgba(40, 40, 40, 0.41);
  -webkit-box-shadow: 1px 1.732px 4px 0px rgba(40, 40, 40, 0.41);
}
/* line 43, ../scss/cms/_deals-pages.scss */
.deal-page #deals-banner #deals-banner-inner img {
  max-width: none;
  float: left;
  margin-right: 10px;
  margin-top: -15px;
}
/* line 53, ../scss/cms/_deals-pages.scss */
.deal-page #deals-intro-container {
  width: 100%;
  background: #ffffff;
}
/* line 57, ../scss/cms/_deals-pages.scss */
.deal-page #deals-intro-container #deals-intro {
  font-size: 18px;
  color: #373c3e;
  margin: 0 auto;
  text-align: center;
  line-height: 150%;
  max-width: 810px;
  padding: 25px 25px;
}
/* line 69, ../scss/cms/_deals-pages.scss */
.deal-page #deals-content {
  padding: 40px 0 50px 0;
  background: #edf2f3;
  /* deprecated */
  /* deprecated - end */
}
/* line 73, ../scss/cms/_deals-pages.scss */
.deal-page #deals-content #deals-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}
/* line 80, ../scss/cms/_deals-pages.scss */
.deal-page #deals-content #deals-image {
  float: right;
  max-width: 350px;
}
/* line 84, ../scss/cms/_deals-pages.scss */
.deal-page #deals-content #deals-image img {
  border: 1px solid #000000;
}
/* line 88, ../scss/cms/_deals-pages.scss */
.deal-page #deals-content #deals-image h3 {
  margin: 0 auto;
  line-height: 135%;
  font-size: 24px;
  color: #ff0000;
}
/* line 95, ../scss/cms/_deals-pages.scss */
.deal-page #deals-content #deals-image p {
  margin: 0 auto;
  line-height: 150%;
  font-size: 14px;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 103, ../scss/cms/_deals-pages.scss */
.deal-page #deals-content #deals-copy {
  margin: 0 auto;
  padding-right: 60px;
  overflow: hidden;
}
/* line 108, ../scss/cms/_deals-pages.scss */
.deal-page #deals-content #deals-copy h2 {
  color: #029ece;
  font-size: 40px;
  line-height: 120%;
  text-transform: none;
}
/* line 115, ../scss/cms/_deals-pages.scss */
.deal-page #deals-content #deals-copy h3 {
  font-size: 18px;
  line-height: 120%;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  text-transform: none;
}
/* line 127, ../scss/cms/_deals-pages.scss */
.deal-page #deals-cta,
.deal-page #deals2-cta {
  border-top: 1px #e0e0e0 solid;
  border-bottom: 1px #e0e0e0 solid;
  padding: 12px 0;
  margin: 80px 0 10px 0;
  height: 75px;
}
/* line 135, ../scss/cms/_deals-pages.scss */
.deal-page #deals-cta button,
.deal-page #deals2-cta button {
  float: left;
}
/* line 138, ../scss/cms/_deals-pages.scss */
.deal-page #deals-cta button span,
.deal-page #deals2-cta button span {
  padding-left: 20px;
}
/* line 142, ../scss/cms/_deals-pages.scss */
.deal-page #deals-cta button .strikethrough_price,
.deal-page #deals2-cta button .strikethrough_price {
  text-decoration: line-through;
  padding-left: 0;
}
/* line 148, ../scss/cms/_deals-pages.scss */
.deal-page #deals-cta #download-only,
.deal-page #deals-cta #download-only2,
.deal-page #deals2-cta #download-only,
.deal-page #deals2-cta #download-only2 {
  color: #000000;
  font-size: 14px;
  float: left;
  display: block;
  margin-left: 20px;
  padding-top: 14px;
}
/* line 161, ../scss/cms/_deals-pages.scss */
.deal-page #deals-cta button span {
  padding-left: 0;
}
/* line 167, ../scss/cms/_deals-pages.scss */
.deal-page #deals-scroller {
  width: 100%;
  background: #ffffff;
  text-align: center;
}
/* line 172, ../scss/cms/_deals-pages.scss */
.deal-page #deals-scroller #deals-scroller-inner {
  max-width: 1250px;
  padding: 50px 25px 25px 25px;
  margin: 0 auto;
  text-align: left;
}
/* line 178, ../scss/cms/_deals-pages.scss */
.deal-page #deals-scroller #deals-scroller-inner h2 {
  line-height: 28px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1025px) {
  /* line 188, ../scss/cms/_deals-pages.scss */
  .deal-page #deals-cta,
  .deal-page #deals2-cta {
    margin: 0 auto;
    text-align: center;
    height: 106px;
  }
  /* line 194, ../scss/cms/_deals-pages.scss */
  .deal-page #deals-cta button,
  .deal-page #deals2-cta button {
    margin: 0 auto;
    float: none;
  }
  /* line 199, ../scss/cms/_deals-pages.scss */
  .deal-page #deals-cta #download-only,
  .deal-page #deals-cta #download-only2,
  .deal-page #deals2-cta #download-only,
  .deal-page #deals2-cta #download-only2 {
    font-size: 14px;
    clear: left;
    float: none;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  /* line 217, ../scss/cms/_deals-pages.scss */
  .deal-page .col1-layout .col-main {
    margin-bottom: 0;
  }
  /* line 221, ../scss/cms/_deals-pages.scss */
  .deal-page #deals-intro {
    line-height: 150%;
    font-size: 18px;
  }
  /* line 226, ../scss/cms/_deals-pages.scss */
  .deal-page #deals-content {
    padding: 50px 0;
  }
  /* line 229, ../scss/cms/_deals-pages.scss */
  .deal-page #deals-content #deals-image {
    float: none;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 40px;
  }
  /* line 235, ../scss/cms/_deals-pages.scss */
  .deal-page #deals-content #deals-image p {
    text-align: center;
  }
  /* line 240, ../scss/cms/_deals-pages.scss */
  .deal-page #deals-content #deals-copy {
    float: none;
    max-width: 710px;
    padding: 0;
  }
  /* line 245, ../scss/cms/_deals-pages.scss */
  .deal-page #deals-content #deals-copy p {
    margin-bottom: 20px;
  }
  /* line 249, ../scss/cms/_deals-pages.scss */
  .deal-page #deals-content #deals-copy h2 {
    text-align: center;
    margin-bottom: 10px;
  }
  /* line 254, ../scss/cms/_deals-pages.scss */
  .deal-page #deals-content #deals-copy h3 {
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 675px) {
  /* line 264, ../scss/cms/_deals-pages.scss */
  .deal-page #deals-banner #deals-banner-inner {
    width: 445px;
    padding-top: 68px;
  }
  /* line 268, ../scss/cms/_deals-pages.scss */
  .deal-page #deals-banner #deals-banner-inner h1 {
    font-size: 44px;
    line-height: 44px;
  }
  /* line 273, ../scss/cms/_deals-pages.scss */
  .deal-page #deals-banner #deals-banner-inner img {
    width: 62px;
    margin-top: -10px;
  }
}
@media only screen and (max-width: 480px) {
  /* line 283, ../scss/cms/_deals-pages.scss */
  .deal-page .main-container {
    padding: 0;
  }
  /* line 287, ../scss/cms/_deals-pages.scss */
  .deal-page .col1-layout .col-main {
    padding: 0;
  }
  /* line 293, ../scss/cms/_deals-pages.scss */
  .deal-page #deals-banner #deals-banner-inner {
    width: auto;
    padding-top: 68px;
    margin: 0 50px;
  }
  /* line 298, ../scss/cms/_deals-pages.scss */
  .deal-page #deals-banner #deals-banner-inner h1 {
    font-size: 28px;
    line-height: 28px;
    text-align: center;
    padding: 20px 35px;
  }
  /* line 305, ../scss/cms/_deals-pages.scss */
  .deal-page #deals-banner #deals-banner-inner img {
    float: none;
    width: 40px;
    margin: 0 auto;
  }
  /* line 314, ../scss/cms/_deals-pages.scss */
  .deal-page #deals-content #deals-content-inner {
    padding: 0 15px;
  }
  /* line 320, ../scss/cms/_deals-pages.scss */
  .deal-page #deals-scroller-inner {
    max-width: 1250px;
    padding: 50px 15px 25px 15px;
  }
}
@media screen and (max-width: 350px) {
  /* line 329, ../scss/cms/_deals-pages.scss */
  .deal-page #deals-banner #deals-banner-inner {
    margin: 0 35px;
  }
}
@media screen and (max-width: 336px) {
  /* line 338, ../scss/cms/_deals-pages.scss */
  .deal-page #deals2-cta button {
    padding: 16px 30px 13px 30px;
  }
  /* line 341, ../scss/cms/_deals-pages.scss */
  .deal-page #deals2-cta button span {
    font-size: 16px;
  }
  /* line 345, ../scss/cms/_deals-pages.scss */
  .deal-page #deals2-cta button span.strikethrough_price {
    font-size: 16px;
  }
}

/* ============================================ *
 * Category Landing Pages
 * Created by Bret Miller 11/16/2016
 * ============================================ */
/* line 8, ../scss/cms/_category-landing-pages.scss */
.genre-landing-page .std h2 {
  margin-bottom: 8px;
  color: #373c3e;
  line-height: 1;
}
/* line 14, ../scss/cms/_category-landing-pages.scss */
.genre-landing-page #cat-banner {
  background-color: #2c3033;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  height: 250px;
  margin-bottom: 40px;
}
/* line 22, ../scss/cms/_category-landing-pages.scss */
.genre-landing-page #cat-banner #cat-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 617px;
  padding-top: 58.5px;
}
/* line 28, ../scss/cms/_category-landing-pages.scss */
.genre-landing-page #cat-banner #cat-banner-inner h1 {
  margin: 0 auto;
  text-align: center;
  font-size: 63px;
  line-height: 47px;
  background-color: #fff;
  padding: 20px 35px;
  border-radius: 4px;
  -o-border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  box-shadow: 1px 1.732px 4px 0px rgba(40, 40, 40, 0.41);
  -o-box-shadow: 1px 1.732px 4px 0px rgba(40, 40, 40, 0.41);
  -moz-box-shadow: 1px 1.732px 4px 0px rgba(40, 40, 40, 0.41);
  -webkit-box-shadow: 1px 1.732px 4px 0px rgba(40, 40, 40, 0.41);
}
/* line 44, ../scss/cms/_category-landing-pages.scss */
.genre-landing-page #cat-banner #cat-banner-inner h1 #ico-my-header {
  font-size: 92px;
  padding-right: 14px;
}
/* line 48, ../scss/cms/_category-landing-pages.scss */
.genre-landing-page #cat-banner #cat-banner-inner h1 .title-adjust {
  position: relative;
  top: -15px;
}
/* line 56, ../scss/cms/_category-landing-pages.scss */
.genre-landing-page .see-all-b-container {
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 675px) {
  /* line 63, ../scss/cms/_category-landing-pages.scss */
  .genre-landing-page #cat-banner #cat-banner-inner {
    width: 445px;
    padding-top: 68px;
  }
  /* line 67, ../scss/cms/_category-landing-pages.scss */
  .genre-landing-page #cat-banner #cat-banner-inner h1 {
    font-size: 44px;
    line-height: 31px;
    padding: 20px 35px 20px 35px;
  }
  /* line 72, ../scss/cms/_category-landing-pages.scss */
  .genre-landing-page #cat-banner #cat-banner-inner h1 #ico-my-header {
    font-size: 63px;
  }
}
@media screen and (max-width: 480px) {
  /* line 81, ../scss/cms/_category-landing-pages.scss */
  .genre-landing-page .main-container {
    padding: 0;
  }
  /* line 84, ../scss/cms/_category-landing-pages.scss */
  .genre-landing-page .col1-layout .col-main {
    padding: 0;
  }
  /* line 87, ../scss/cms/_category-landing-pages.scss */
  .genre-landing-page .std h2 {
    font-size: 21px;
  }
  /* line 91, ../scss/cms/_category-landing-pages.scss */
  .genre-landing-page .see-all-b-container {
    padding-bottom: 30px;
    padding-top: 10px;
  }
  /* line 96, ../scss/cms/_category-landing-pages.scss */
  .genre-landing-page #cat-banner {
    height: 175px;
  }
  /* line 99, ../scss/cms/_category-landing-pages.scss */
  .genre-landing-page #cat-banner #cat-banner-inner {
    padding-top: 22.5px;
  }
  /* line 102, ../scss/cms/_category-landing-pages.scss */
  .genre-landing-page #cat-banner #cat-banner-inner h1 {
    font-size: 36px;
    line-height: 36px;
    text-align: center;
    padding: 20px 35px;
  }
  /* line 108, ../scss/cms/_category-landing-pages.scss */
  .genre-landing-page #cat-banner #cat-banner-inner h1 #ico-my-header {
    font-size: 48px;
    padding-right: 0;
  }
  /* line 112, ../scss/cms/_category-landing-pages.scss */
  .genre-landing-page #cat-banner #cat-banner-inner h1 .title-adjust {
    display: block;
    top: 0;
  }
}

/* ============================================ *
 * showcase
 * Created by Bret Miller 6/27/2018
 * ============================================ */
/* line 6, ../scss/cms/_showcase.scss */
.showcase-wrapper {
  position: relative;
  z-index: 10;
  max-height: 395px;
  margin-bottom: 40px;
}
/* line 12, ../scss/cms/_showcase.scss */
.showcase-wrapper .showcase-img-container {
  max-height: 395px;
  min-height: 395px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
/* line 20, ../scss/cms/_showcase.scss */
.showcase-wrapper .showcase-img {
  width: 200%;
  height: 200%;
  top: -50%;
  Left: -50%;
  -webkit-filter: blur(14px);
  filter: blur(14px);
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* line 33, ../scss/cms/_showcase.scss */
.showcase-wrapper .showcase-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  z-index: 15;
  width: 200%;
  height: 200%;
  top: 0;
  Left: -50%;
  max-height: 395px;
  min-height: 395px;
}
/* line 45, ../scss/cms/_showcase.scss */
.showcase-wrapper .showcase-outer {
  position: absolute;
  z-index: 50;
  top: 47px;
  width: 100%;
}
/* line 52, ../scss/cms/_showcase.scss */
.showcase-wrapper .showcase-inner {
  max-width: 996px;
  padding: 0 25px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
/* line 60, ../scss/cms/_showcase.scss */
.showcase-wrapper .showcase-inner2 {
  margin: 0 auto;
  background: #fff;
  height: 300px;
}
/* line 66, ../scss/cms/_showcase.scss */
.showcase-wrapper .showcase-left {
  float: left;
  max-width: 360px;
  box-sizing: border-box;
}
/* line 71, ../scss/cms/_showcase.scss */
.showcase-wrapper .showcase-left .tds-overlay {
  position: absolute;
  top: 25px;
  left: 50px;
  width: 250px;
  height: 33.3%;
  overflow: hidden;
}
/* line 79, ../scss/cms/_showcase.scss */
.showcase-wrapper .showcase-left .tds-overlay img {
  margin-top: 12px;
  margin-left: 12px;
  max-width: 65px;
}
/* line 87, ../scss/cms/_showcase.scss */
.showcase-wrapper .showcase-left-img {
  max-height: 300px;
  max-width: 300px;
  padding: 25px;
}
/* line 93, ../scss/cms/_showcase.scss */
.showcase-wrapper .showcase-right {
  overflow: hidden;
  padding: 25px 25px 25px 0;
}
/* line 97, ../scss/cms/_showcase.scss */
.showcase-wrapper .showcase-right .tds-title-price {
  float: left;
  padding-left: 15px;
}
/* line 102, ../scss/cms/_showcase.scss */
.showcase-wrapper .showcase-right .special-price .price {
  color: #d21d05;
}
/* line 106, ../scss/cms/_showcase.scss */
.showcase-wrapper .showcase-right .price {
  font-size: 28px;
}
/* line 110, ../scss/cms/_showcase.scss */
.showcase-wrapper .showcase-right p,
.showcase-wrapper .showcase-right .price-box {
  clear: left;
}
/* line 115, ../scss/cms/_showcase.scss */
.showcase-wrapper .showcase-right p {
  margin-bottom: 20px;
  text-align: left;
}
/* line 120, ../scss/cms/_showcase.scss */
.showcase-wrapper .showcase-right .showcase-title {
  /*  white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */
}
/* line 126, ../scss/cms/_showcase.scss */
.showcase-wrapper .showcase-right .showcase-description {
  clear: left;
}
/* line 131, ../scss/cms/_showcase.scss */
.showcase-wrapper .showcase-right a:hover {
  text-decoration: none;
}
@media screen and (max-width: 750px) {
  /* line 6, ../scss/cms/_showcase.scss */
  .showcase-wrapper {
    max-height: none;
  }
  /* line 138, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-img-container,
  .showcase-wrapper .showcase-overlay {
    max-height: none;
  }
}
@media screen and (max-width: 660px) {
  /* line 146, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-left {
    float: none;
    max-width: none;
  }
  /* line 150, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-left .tds-overlay {
    margin: auto;
    left: 0;
    right: 0;
  }
  /* line 155, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-left .tds-overlay img {
    margin-top: 24px;
    margin-left: 24px;
    width: 57px;
  }
  /* line 163, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-left-img {
    margin: 0 auto;
    padding: 40px;
  }
  /* line 168, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-right {
    float: left;
    padding: 0 40px 30px 40px;
    background: #fff;
  }
  /* line 174, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-right h3 {
    text-align: center;
    margin-bottom: 0;
  }
  /* line 179, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-right .tds-title-price {
    float: none;
    padding-left: 0;
    clear: left;
  }
  /* line 185, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-right .tds {
    float: none;
    margin-bottom: 20px;
    padding-right: 0;
    border-right: 0;
  }
  /* line 191, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-right .tds img {
    margin: 0 auto;
  }
  /* line 196, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-right .price-box {
    text-align: center;
  }
  /* line 200, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-right .price {
    font-size: 21px;
  }
  /* line 204, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-right p {
    margin-bottom: 0;
  }
  /* line 210, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-img-container,
  .showcase-wrapper .showcase-overlay {
    min-height: 670px;
  }
}
@media screen and (max-width: 380px) {
  /* line 219, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-left .tds-overlay {
    width: 180px;
  }
  /* line 221, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-left .tds-overlay img {
    margin-left: 10px;
    width: 47px;
  }
  /* line 228, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-left-img {
    max-height: 260px;
    max-width: 260px;
  }
  /* line 232, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-img-container,
  .showcase-wrapper .showcase-overlay {
    min-height: 630px;
  }
}
@media screen and (max-width: 340px) {
  /* line 241, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-left .tds-overlay {
    width: 160px;
  }
  /* line 244, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-left .tds-overlay img {
    margin-left: 7px;
    width: 42px;
  }
  /* line 250, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-left-img {
    max-height: 240px;
    max-width: 240px;
  }
  /* line 254, ../scss/cms/_showcase.scss */
  .showcase-wrapper .showcase-img-container,
  .showcase-wrapper .showcase-overlay {
    min-height: 610px;
  }
}

/* ============================================ *
 * Membership Page
 * Created by Bret Miller 3/7/2017
 * ============================================ */
/* line 6, ../scss/cms/_membership.scss */
.no-membership #header .nav-wrap ul.menu-type-horizontal li.credits-link,
.no-membership #header .mobile-menu #mobile-header-nav ul li.credits-link,
.no-membership #header #account-nav ul.menu-type-horizontal li.level0 ul li.credits-link {
  display: none;
}

/* line 13, ../scss/cms/_membership.scss */
body.has-membership #header .nav-wrap ul.menu-type-horizontal li.membership-link,
body.has-membership #header .mobile-menu #mobile-header-nav ul li.membership-link {
  display: none;
}

/* line 21, ../scss/cms/_membership.scss */
.cms-membership #membership-top {
  background: #fff;
  height: 488px;
}
/* line 26, ../scss/cms/_membership.scss */
.cms-membership #membership-left-side {
  float: left;
  width: 50%;
}
/* line 30, ../scss/cms/_membership.scss */
.cms-membership #membership-left-side h2 {
  font-size: 28px;
  padding: 40px 0 14px 0;
  text-align: center;
  margin-bottom: 0;
}
/* line 37, ../scss/cms/_membership.scss */
.cms-membership #membership-left-side #membership-video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}
/* line 43, ../scss/cms/_membership.scss */
.cms-membership #membership-left-side #membership-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 53, ../scss/cms/_membership.scss */
.cms-membership #membership-right-side {
  float: left;
  width: 50%;
  text-align: center;
}
/* line 58, ../scss/cms/_membership.scss */
.cms-membership #membership-right-side #membership-right-side-inner {
  margin-left: 30px;
}
/* line 62, ../scss/cms/_membership.scss */
.cms-membership #membership-right-side button,
.cms-membership #membership-right-side #start-my-trial {
  margin: 40px 0;
}
/* line 67, ../scss/cms/_membership.scss */
.cms-membership #membership-right-side p {
  text-align: center;
  font-size: 14px;
  color: #777e80;
  margin-bottom: 0;
}
/* line 74, ../scss/cms/_membership.scss */
.cms-membership #membership-right-side h1 {
  font-size: 63px;
  line-height: 63px;
  margin-top: 83px;
  margin-bottom: 0;
}
/* line 81, ../scss/cms/_membership.scss */
.cms-membership #membership-right-side h3 {
  font-size: 18px;
  color: #373c3e;
  line-height: 1;
  padding: 12px 0;
  border-top: 1px solid #e0e4e5;
  border-bottom: 1px solid #e0e4e5;
  margin: 0 60px;
}
/* line 91, ../scss/cms/_membership.scss */
.cms-membership #membership-right-side h4 {
  font-size: 21px;
  color: #777e80;
  text-align: center;
  margin: 0 auto 20px auto;
  width: 300px;
}
/* line 101, ../scss/cms/_membership.scss */
.cms-membership #membership-bottom {
  background-color: #06b0e4;
  background-image: url("//d2q0f503qhbqv9.cloudfront.net/site_assets/membership-background.png");
  background-position: center center;
  background-repeat: no-repeat;
  height: 554px;
}
/* line 108, ../scss/cms/_membership.scss */
.cms-membership #membership-bottom #membership-bottom-inner {
  max-width: 760px;
  margin-left: 40px;
  text-align: center;
}
/* line 114, ../scss/cms/_membership.scss */
.cms-membership #membership-bottom h2 {
  color: #fff;
  font-size: 48px;
  line-height: 48px;
  padding-top: 94px;
  margin-bottom: 40px;
}
/* line 122, ../scss/cms/_membership.scss */
.cms-membership #membership-bottom .membership-step {
  width: 25%;
  float: left;
}
/* line 127, ../scss/cms/_membership.scss */
.cms-membership #membership-bottom img {
  margin: 0 auto;
  padding-bottom: 20px;
}
/* line 132, ../scss/cms/_membership.scss */
.cms-membership #membership-bottom .memp1 {
  font-size: 18px;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  margin-bottom: 0;
  text-align: center;
  line-height: 1.2;
}
/* line 141, ../scss/cms/_membership.scss */
.cms-membership #membership-bottom .memp2 {
  font-size: 18px;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 50px;
}
/* line 150, ../scss/cms/_membership.scss */
.cms-membership #membership-bottom #start-my-trial2-container {
  margin: 0 auto;
}
/* line 154, ../scss/cms/_membership.scss */
.cms-membership #membership-bottom #start-my-trial2 {
  border-color: #fff;
}
/* line 159, ../scss/cms/_membership.scss */
.cms-membership #membership-disclaimer {
  clear: left;
  padding-top: 27px;
}
/* line 163, ../scss/cms/_membership.scss */
.cms-membership #membership-disclaimer p {
  text-align: center;
  font-size: 14px;
  color: #777e80;
}
@media screen and (max-width: 1062px) {
  /* line 171, ../scss/cms/_membership.scss */
  .cms-membership #membership-right-side h3 {
    margin: 0;
  }
}
@media screen and (max-width: 978px) {
  /* line 177, ../scss/cms/_membership.scss */
  .cms-membership #membership-right-side h1 {
    font-size: 52px;
  }
}
@media screen and (max-width: 807px) {
  /* line 183, ../scss/cms/_membership.scss */
  .cms-membership #membership-right-side h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 800px) {
  /* line 189, ../scss/cms/_membership.scss */
  .cms-membership #membership-top {
    height: auto;
  }
  /* line 192, ../scss/cms/_membership.scss */
  .cms-membership #membership-left-side,
  .cms-membership #membership-right-side {
    float: none;
    width: 100%;
  }
  /* line 198, ../scss/cms/_membership.scss */
  .cms-membership #membership-right-side #membership-right-side-inner {
    margin-left: 0;
  }
  /* line 202, ../scss/cms/_membership.scss */
  .cms-membership #membership-video img {
    margin: 0 auto;
  }
  /* line 206, ../scss/cms/_membership.scss */
  .cms-membership #membership-right-side h1 {
    font-size: 63px;
  }
  /* line 209, ../scss/cms/_membership.scss */
  .cms-membership #membership-left-side h3 {
    font-size: 28px;
  }
  /* line 213, ../scss/cms/_membership.scss */
  .cms-membership #membership-right-side h4 {
    font-size: 21px;
  }
  /* line 217, ../scss/cms/_membership.scss */
  .cms-membership #membership-right-side p {
    padding-bottom: 20px;
  }
  /* line 221, ../scss/cms/_membership.scss */
  .cms-membership #membership-bottom #membership-bottom-inner {
    max-width: 100%;
    margin-left: 0;
  }
  /* line 226, ../scss/cms/_membership.scss */
  .cms-membership #membership-bottom {
    background-image: none;
  }
}
@media screen and (max-width: 600px) {
  /* line 236, ../scss/cms/_membership.scss */
  .cms-membership #membership-bottom {
    height: auto;
  }
  /* line 239, ../scss/cms/_membership.scss */
  .cms-membership #membership-bottom .membership-step {
    width: 50%;
    padding: 0 5px;
  }
  /* line 244, ../scss/cms/_membership.scss */
  .cms-membership #start-my-trial2-container {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  /* line 251, ../scss/cms/_membership.scss */
  .cms-membership #membership-right-side h1 {
    font-size: 52px;
  }
  /* line 254, ../scss/cms/_membership.scss */
  .cms-membership #membership-right-side h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 410px) {
  /* line 260, ../scss/cms/_membership.scss */
  .cms-membership #membership-bottom .memp1,
  .cms-membership #membership-bottom .memp2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 370px) {
  /* line 267, ../scss/cms/_membership.scss */
  .cms-membership #membership-bottom .memp1,
  .cms-membership #membership-bottom .memp2 {
    font-size: 14px;
  }
}
@media screen and (max-width: 360px) {
  /* line 274, ../scss/cms/_membership.scss */
  .cms-membership #membership-right-side h3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 330px) {
  /* line 280, ../scss/cms/_membership.scss */
  .cms-membership #membership-bottom .memp3 {
    margin-bottom: 33.2px;
  }
  /* line 283, ../scss/cms/_membership.scss */
  .cms-membership #membership-right-side h4 {
    width: 290px;
    font-size: 19px;
  }
}

/* ============================================ *
 * Membership Page
 * Created by Bret Miller 3/8/2017
 * ============================================ */
/* line 8, ../scss/cms/_credits.scss */
.cms-credits #credits-left-side {
  width: 50%;
  background-color: #06b0e4;
  float: left;
  text-align: center;
  padding: 75px 25px;
  min-height: 456px;
}
/* line 16, ../scss/cms/_credits.scss */
.cms-credits #credits-left-side #credits-left-side-inner {
  max-width: 600px;
  float: right;
  width: 100%;
}
/* line 21, ../scss/cms/_credits.scss */
.cms-credits #credits-left-side #credits-left-side-inner h2 {
  font-weight: normal;
  font-size: 36px;
  color: #fff;
  line-height: 1.2;
}
/* line 28, ../scss/cms/_credits.scss */
.cms-credits #credits-left-side #credits-left-side-inner h3 {
  font-weight: normal;
  font-size: 28px;
  color: #fff;
  line-height: 1.2;
}
/* line 35, ../scss/cms/_credits.scss */
.cms-credits #credits-left-side #credits-left-side-inner p {
  margin-bottom: 0;
}
/* line 38, ../scss/cms/_credits.scss */
.cms-credits #credits-left-side #credits-left-side-inner p img {
  margin: 0 auto;
  text-align: center;
}
/* line 46, ../scss/cms/_credits.scss */
.cms-credits #credits-right-side {
  width: 50%;
  background-color: #fff;
  float: left;
  text-align: center;
  padding: 75px 0 20px 0;
  min-height: 456px;
}
/* line 54, ../scss/cms/_credits.scss */
.cms-credits #credits-right-side #credits-right-side-inner {
  max-width: 600px;
}
/* line 57, ../scss/cms/_credits.scss */
.cms-credits #credits-right-side #credits-right-side-inner #credits-right-side-inner2 {
  max-width: 515px;
  margin: 0 auto;
}
/* line 61, ../scss/cms/_credits.scss */
.cms-credits #credits-right-side #credits-right-side-inner #credits-right-side-inner2 h1 {
  font-size: 63px;
  color: #373c3e;
  line-height: 1;
  margin-bottom: 0;
}
/* line 68, ../scss/cms/_credits.scss */
.cms-credits #credits-right-side #credits-right-side-inner #credits-right-side-inner2 h2 {
  font-size: 21px;
  color: #777e80;
  line-height: 1.2;
  margin: 0 20px 16px 20px;
}
/* line 75, ../scss/cms/_credits.scss */
.cms-credits #credits-right-side #credits-right-side-inner #credits-right-side-inner2 h3 {
  font-size: 18px;
  line-height: 18px;
  color: #373c3e;
  padding: 12px 0;
  border-top: 1px solid #e0e4e5;
  border-bottom: 1px solid #e0e4e5;
  margin: 0 60px;
}
/* line 85, ../scss/cms/_credits.scss */
.cms-credits #credits-right-side #credits-right-side-inner #credits-right-side-inner2 form {
  margin: 18px auto 39px auto;
}
/* line 89, ../scss/cms/_credits.scss */
.cms-credits #credits-right-side #credits-right-side-inner #credits-right-side-inner2 select {
  max-width: 210px;
  margin-bottom: 18px;
}
/* line 94, ../scss/cms/_credits.scss */
.cms-credits #credits-right-side #credits-right-side-inner #credits-right-side-inner2 p {
  text-align: center;
  font-size: 14px;
  color: #777e80;
  margin-bottom: 0;
}
/* line 105, ../scss/cms/_credits.scss */
.cms-credits #credits-disclaimer {
  clear: left;
  padding-top: 27px;
}
/* line 109, ../scss/cms/_credits.scss */
.cms-credits #credits-disclaimer p {
  text-align: center;
  font-size: 14px;
  color: #777e80;
}
@media screen and (max-width: 1018px) {
  /* line 117, ../scss/cms/_credits.scss */
  .cms-credits #credits-right-side {
    padding: 75px 45px 20px 45px;
  }
  /* line 122, ../scss/cms/_credits.scss */
  .cms-credits #credits-right-side #credits-right-side-inner #credits-right-side-inner2 h2 {
    margin: 0 0 16px 0;
  }
  /* line 125, ../scss/cms/_credits.scss */
  .cms-credits #credits-right-side #credits-right-side-inner #credits-right-side-inner2 h3 {
    margin: 0;
  }
}
@media screen and (max-width: 858px) {
  /* line 134, ../scss/cms/_credits.scss */
  .cms-credits #credits-left-side h2 {
    font-size: 34px;
  }
  /* line 138, ../scss/cms/_credits.scss */
  .cms-credits #credits-left-side h3 {
    font-size: 26px;
  }
  /* line 142, ../scss/cms/_credits.scss */
  .cms-credits #credits-right-side {
    padding: 75px 25px 20px 25px;
  }
}
@media screen and (max-width: 800px) {
  /* line 148, ../scss/cms/_credits.scss */
  .cms-credits #credits-left-side {
    float: none;
    width: 100%;
  }
  /* line 153, ../scss/cms/_credits.scss */
  .cms-credits #credits-left-side-inner {
    max-width: 100%;
    float: none;
  }
  /* line 158, ../scss/cms/_credits.scss */
  .cms-credits #credits-right-side-inner {
    max-width: 100%;
  }
  /* line 162, ../scss/cms/_credits.scss */
  .cms-credits #credits-left-side h2 {
    font-size: 36px;
  }
  /* line 166, ../scss/cms/_credits.scss */
  .cms-credits #credits-left-side h3 {
    font-size: 28px;
  }
  /* line 170, ../scss/cms/_credits.scss */
  .cms-credits #credits-right-side {
    padding: 75px 45px 20px 45px;
    float: none;
    width: 100%;
  }
  /* line 176, ../scss/cms/_credits.scss */
  .cms-credits #credits-left-side #credits-left-side-inner {
    max-width: none;
    float: none;
  }
  /* line 181, ../scss/cms/_credits.scss */
  .cms-credits #credits-right-side #credits-right-side-inner {
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  /* line 197, ../scss/cms/_credits.scss */
  .cms-credits #credits-left-side {
    padding: 75px 15px;
  }
  /* line 201, ../scss/cms/_credits.scss */
  .cms-credits #credits-right-side {
    padding: 75px 15px 20px 15px;
  }
}

/* ============================================ *
 * No Route 404 Page
 * Created by Bret Miller 11/22/2016
 * ============================================ */
/* line 8, ../scss/cms/_no-route-404.scss */
.cms-no-route .main-container {
  background-color: #fff;
}
/* line 12, ../scss/cms/_no-route-404.scss */
.cms-no-route #container-404 {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1200px;
  clear: both;
}
/* line 19, ../scss/cms/_no-route-404.scss */
.cms-no-route #container-404-left {
  clear: both;
  margin-top: 40px;
  margin-left: 72px;
  max-width: 435px;
  float: left;
}
/* line 27, ../scss/cms/_no-route-404.scss */
.cms-no-route #container-404-right {
  margin: 40px;
  max-width: 420px;
  float: left;
}
/* line 33, ../scss/cms/_no-route-404.scss */
.cms-no-route h1 {
  font-size: 270px;
  margin: 0px;
  line-height: 240px;
}
/* line 39, ../scss/cms/_no-route-404.scss */
.cms-no-route h2 {
  font-size: 55px;
  margin: 0 0 50px 0;
  line-height: 55px;
}
/* line 45, ../scss/cms/_no-route-404.scss */
.cms-no-route p {
  font-size: 28px;
  line-height: 1.15;
}
@media screen and (max-width: 1066px) {
  /* line 51, ../scss/cms/_no-route-404.scss */
  .cms-no-route #container-404-left {
    float: none;
    margin: 0 auto;
    padding: 40px 0;
  }
  /* line 57, ../scss/cms/_no-route-404.scss */
  .cms-no-route #container-404-right {
    float: none;
    margin: 0 auto 40px auto;
  }
  /* line 62, ../scss/cms/_no-route-404.scss */
  .cms-no-route h1 {
    text-align: center;
  }
  /* line 66, ../scss/cms/_no-route-404.scss */
  .cms-no-route h2 {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  /* line 73, ../scss/cms/_no-route-404.scss */
  .cms-no-route .main-container {
    margin-top: 105px;
  }
}
@media screen and (max-width: 480px) {
  /* line 81, ../scss/cms/_no-route-404.scss */
  .cms-no-route h1 {
    text-align: center;
    font-size: 55px;
    line-height: 55px;
  }
  /* line 87, ../scss/cms/_no-route-404.scss */
  .cms-no-route h2 {
    font-size: 35px;
    line-height: 35px;
  }
}

/* ============================================ *
 * Rentals Page
 * Created by Bret Miller 11/21/2016
 * ============================================ */
/* line 8, ../scss/cms/_rentals.scss */
.cms-rentals #rental_banner_wrapper {
  width: 100%;
  min-height: 521px;
  background-color: #0b204b;
  background-image: url("//d2q0f503qhbqv9.cloudfront.net/site_assets/RentalTopLanding.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  overflow: hidden;
}
/* line 17, ../scss/cms/_rentals.scss */
.cms-rentals #rental_banner_wrapper #rental_banner_wrapper_inner {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 30px;
}
/* line 22, ../scss/cms/_rentals.scss */
.cms-rentals #rental_banner_wrapper #rental_banner_wrapper_inner .text {
  text-align: left;
  max-width: 544px;
  margin-right: 40px;
  float: right;
}
/* line 28, ../scss/cms/_rentals.scss */
.cms-rentals #rental_banner_wrapper #rental_banner_wrapper_inner .text .blue-triangle {
  float: left;
  margin-right: 10px;
  padding-top: 3px;
  width: 34px;
}
/* line 35, ../scss/cms/_rentals.scss */
.cms-rentals #rental_banner_wrapper #rental_banner_wrapper_inner .text .audiobook-rentals {
  float: left;
  max-width: 500px;
}
/* line 39, ../scss/cms/_rentals.scss */
.cms-rentals #rental_banner_wrapper #rental_banner_wrapper_inner .text .audiobook-rentals h1 {
  font-size: 52px;
  line-height: 50px;
  margin-bottom: 10px;
  color: #fff;
  text-transform: none;
}
/* line 47, ../scss/cms/_rentals.scss */
.cms-rentals #rental_banner_wrapper #rental_banner_wrapper_inner .text .audiobook-rentals h3 {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 30px;
  color: #fff;
  text-transform: none;
  max-width: 450px;
}
/* line 56, ../scss/cms/_rentals.scss */
.cms-rentals #rental_banner_wrapper #rental_banner_wrapper_inner .text .audiobook-rentals p {
  list-style: none;
  font-size: 22px;
  padding-left: 0px;
  line-height: 120%;
  margin-left: 0;
  margin-bottom: 10px;
  color: #fff;
}
/* line 65, ../scss/cms/_rentals.scss */
.cms-rentals #rental_banner_wrapper #rental_banner_wrapper_inner .text .audiobook-rentals p img {
  margin-right: 8px;
  padding-top: 2px;
  width: 17px;
  display: inline;
}
/* line 74, ../scss/cms/_rentals.scss */
.cms-rentals #rental_banner_wrapper #rental_banner_wrapper_inner .text .audiobook-rentals #rental-buttons-lmss {
  margin-top: 41px;
}
/* line 77, ../scss/cms/_rentals.scss */
.cms-rentals #rental_banner_wrapper #rental_banner_wrapper_inner .text .audiobook-rentals #rental-buttons-lmss #video-lightbox-trigger {
  margin-right: 20px;
}
/* line 81, ../scss/cms/_rentals.scss */
.cms-rentals #rental_banner_wrapper #rental_banner_wrapper_inner .text .audiobook-rentals #rental-buttons-lmss .icon-play {
  font-size: 21px;
  vertical-align: middle;
  margin-right: 7px;
  position: relative;
  bottom: 2px;
}
@media screen and (max-width: 1025px) {
  /* line 8, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_banner_wrapper {
    background-image: none;
  }
  /* line 99, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_banner_wrapper #rental_banner_wrapper_inner .text {
    margin: 0 auto 0 auto;
    text-align: center;
    float: none;
  }
  /* line 104, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_banner_wrapper #rental_banner_wrapper_inner .text .blue-triangle {
    display: none;
  }
  /* line 108, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_banner_wrapper #rental_banner_wrapper_inner .text .audiobook-rentals {
    float: none;
    max-width: 544px;
  }
  /* line 112, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_banner_wrapper #rental_banner_wrapper_inner .text .audiobook-rentals h1 {
    font-size: 60px;
    margin-bottom: 15px;
  }
  /* line 117, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_banner_wrapper #rental_banner_wrapper_inner .text .audiobook-rentals h3 {
    font-size: 30px;
    line-height: 120%;
    max-width: 544px;
  }
  /* line 123, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_banner_wrapper #rental_banner_wrapper_inner .text .audiobook-rentals p {
    text-align: left;
    font-size: 21px;
    margin-left: 62px;
  }
}
@media screen and (max-width: 550px) {
  /* line 8, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_banner_wrapper {
    height: auto;
  }
  /* line 136, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_banner_wrapper #rental-list {
    margin: 0 auto;
    text-align: center;
  }
  /* line 141, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_banner_wrapper .text p {
    text-align: left;
    margin-left: 0;
  }
  /* line 149, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_banner_wrapper #rental_banner_wrapper_inner .text .audiobook-rentals p {
    margin-left: 32px;
  }
}
@media screen and (max-width: 531px) {
  /* line 162, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_banner_wrapper #rental_banner_wrapper_inner .text .audiobook-rentals #rental-buttons-lmss button {
    margin: 20px;
  }
}
@media screen and (max-width: 511px) {
  /* line 172, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_banner_wrapper .button.blue {
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  /* line 178, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_banner_wrapper #rental_banner_wrapper_inner {
    padding: 0 15px;
  }
}
@media screen and (max-width: 451px) {
  /* line 187, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_banner_wrapper #rental_banner_wrapper_inner .text .audiobook-rentals p {
    margin-left: 15px;
  }
}
/* line 199, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper p {
  font-size: 21px;
  color: #777e80;
}
/* line 204, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .outer {
  position: relative;
  overflow: visible;
}
/* line 208, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .outer .gray {
  background-color: #edf2f3;
}
/* line 212, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .outer .inner {
  max-width: 1038px;
  margin: 0 auto;
  padding: 80px 30px;
}
/* line 217, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .outer .inner p {
  font-size: 16px;
  color: #666;
  line-height: 24px;
}
/* line 223, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .outer .inner h2 {
  font-size: 40px;
  color: #16191a;
  text-transform: none;
}
/* line 233, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_one {
  border-bottom: 1px solid #d3d8d9;
  background-color: #fff;
}
/* line 237, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_one .section_header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
/* line 242, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_one .section_header p {
  font-size: 21px;
  color: #777e80;
  text-align: center;
}
/* line 250, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_one .step {
  float: left;
  margin: 20px 0 40px 0;
  width: 33.3%;
  text-align: center;
}
/* line 256, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_one .step span {
  margin-top: 40px;
}
/* line 259, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_one .step img {
  margin: 0 auto 20px auto;
}
/* line 262, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_one .step p {
  font-size: 18px;
  color: #777e80;
  text-align: center;
}
/* line 267, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_one .step h3.step_title {
  font-size: 16px;
  text-align: center;
  color: #16191a;
}
/* line 274, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_one .col1-3 .pad {
  margin-right: 26px;
}
/* line 278, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_one .col2-3 .pad {
  margin-left: 13px;
  margin-right: 13px;
}
/* line 283, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_one .col3-3 .pad {
  margin-left: 26px;
}
/* line 287, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_one .button_container {
  margin: 0 auto;
  width: 320px;
}
/* line 291, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_one .button_container a {
  display: block;
  float: left;
}
/* line 296, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_one .button_container .button_two {
  margin-left: 30px;
  display: inline-block;
}
/* line 305, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_two .inner {
  padding-bottom: 0;
  margin-bottom: 60px;
}
/* line 309, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_two .inner .section_header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}
/* line 314, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_two .inner .section_header p {
  line-height: 24px;
  font-size: 21px;
  text-align: center;
  color: #777e80;
}
/* line 323, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_two .inner .image {
  margin-top: 60px;
}
/* line 326, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_two .inner .image img {
  margin: 0 auto;
  display: block;
}
/* line 333, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_two .inner_boat {
  margin-bottom: -1px;
}
/* line 336, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_two .inner_boat .lg img {
  display: block;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 78px;
}
/* line 345, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_two .inner_boat .sm img {
  bottom: 82px;
}
/* line 350, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_two .inner_sea {
  background: #03b4e8;
  height: 90px;
}
/* line 357, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_three {
  border-bottom: 1px solid #d3d8d9;
}
/* line 360, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_three .inner .section_header {
  text-align: center;
  max-width: 610px;
  margin: 0 auto 60px auto;
}
/* line 365, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_three .inner .section_header p {
  font-size: 21px;
  color: #777e80;
  text-align: center;
}
/* line 372, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_three .inner .faq {
  max-width: 800px;
  margin: 0 auto;
}
/* line 377, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_three .inner .faq .faq_col .faq_section {
  max-width: 350px;
  margin-bottom: 30px;
}
/* line 381, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_three .inner .faq .faq_col .faq_section p.q {
  margin-bottom: 10px;
  font-size: 21px;
  color: #16191a;
}
/* line 387, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_three .inner .faq .faq_col .faq_section p.a {
  font-size: 16px;
  color: #373c3e;
}
/* line 395, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_three .inner .faq .faq_col {
  float: left;
}
/* line 399, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_three .inner .faq .faq_col1 {
  padding-right: 50px;
}
/* line 403, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_three .inner .faq .faq_col2 {
  padding-left: 50px;
}
/* line 408, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_three .inner .faq.more {
  display: none;
}
/* line 412, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_three .inner .faq_button {
  margin-top: 50px;
}
/* line 415, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_three .inner .faq_button button {
  margin: 0 auto;
  display: block;
  color: #000000;
  text-align: center;
  line-height: 19px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  outline: none;
}
/* line 426, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_three .inner .faq_button button img {
  margin-right: 5px;
  display: inline;
  top: 2px;
  position: relative;
  display: inline;
}
/* line 439, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_four .inner {
  padding: 80px 0 90px 0;
  max-width: 1200px;
}
/* line 443, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_four .inner .section_header {
  text-align: center;
  max-width: 610px;
  margin: 0 auto 60px auto;
  background-color: #edf2f3;
  padding: 0 30px;
}
/* line 450, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_four .inner .section_header h2 {
  font-size: 40px;
  color: #16191a;
}
/* line 455, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_four .inner .section_header p {
  font-size: 21px;
  color: #777e80;
  text-align: center;
}
/* line 462, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_four .inner .featured-slider-title {
  font-size: 28px;
  line-height: 28px;
  margin-bottom: 8px;
}
/* line 468, ../scss/cms/_rentals.scss */
.cms-rentals #rental_content_wrapper .section_four .inner .button_header {
  text-align: center;
}
@media screen and (max-width: 1025px) {
  /* line 476, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_content_wrapper .outer .inner {
    width: 100%;
    padding: 80px 30px;
  }
  /* line 481, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_content_wrapper .section_one .section_header p {
    font-size: 30px;
    line-height: 120%;
  }
}
@media screen and (max-width: 859px) {
  /* line 491, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_content_wrapper .section_three .inner .faq .faq_col1 {
    padding-right: 0;
    float: left;
    margin-right: 20px;
  }
  /* line 496, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_content_wrapper .section_three .inner .faq .faq_col2 {
    padding-left: 0;
    float: right;
    margin-left: 20px;
  }
}
@media screen and (max-width: 800px) {
  /* line 511, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_content_wrapper .section_three .inner .faq .faq_col .faq_section {
    max-width: 100%;
  }
  /* line 516, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_content_wrapper .section_three .inner .faq .faq_col1 {
    margin-right: 0;
    float: none;
  }
  /* line 521, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_content_wrapper .section_three .inner .faq .faq_col2 {
    margin-left: 0;
    float: none;
  }
}
@media screen and (max-width: 768px) {
  /* line 532, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_content_wrapper .section_header h2 {
    font-size: 60px;
    margin-bottom: 0px;
  }
  /* line 537, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_content_wrapper .section_header p {
    font-size: 24px;
    line-height: 120%;
  }
  /* line 544, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_content_wrapper .section_two .inner_boat.lg img {
    left: -420px;
  }
  /* line 549, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_content_wrapper .section_three .section_header {
    max-width: 555px;
    margin: 0 48px 60px 32px;
  }
  /* line 554, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_content_wrapper .section_three .faq {
    width: 100%;
  }
  /* line 557, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_content_wrapper .section_three .faq .faq_col1 {
    margin-right: 0;
  }
  /* line 561, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_content_wrapper .section_three .faq .faq_section {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  /* line 572, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_content_wrapper .section_one .button_container {
    padding-bottom: 30px;
  }
  /* line 576, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_content_wrapper .section_three .inner .faq_button {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 480px) {
  /* line 582, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_content_wrapper .outer .inner {
    padding: 40px 15px;
  }
  /* line 588, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_content_wrapper .section_four .inner .section_header {
    padding: 0 15px;
  }
}
@media screen and (max-width: 370px) {
  /* line 596, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_content_wrapper .section_one .button_container .button_two {
    float: right;
    margin-left: 0;
  }
}
@media screen and (max-width: 350px) {
  /* line 604, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_content_wrapper .section_one .button_container {
    width: 290px;
  }
  /* line 607, ../scss/cms/_rentals.scss */
  .cms-rentals #rental_content_wrapper .section_one .button_container img {
    width: 137px;
  }
}
@media screen and (max-width: 768px) {
  /* line 617, ../scss/cms/_rentals.scss */
  .cms-rentals .cms-rentals .col1-layout .col-main {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  /* line 623, ../scss/cms/_rentals.scss */
  .cms-rentals .cms-page-view .main-container {
    padding: 0;
  }
  /* line 627, ../scss/cms/_rentals.scss */
  .cms-rentals .col1-layout .col-main {
    padding: 0;
  }
}

/* ============================================ *
 * Audiobook Pages
 * Created by Bret Miller 11/28/2016
 * ============================================ */
/* line 8, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .main-container {
  padding-bottom: 0;
}
/* line 12, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_banner_wrapper {
  width: 100%;
  height: 440px;
  background-color: #02b1e6;
}
/* line 17, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_banner_wrapper .text {
  margin: 48px auto 0 auto;
  padding-right: 60px;
  max-width: 650px;
  color: #777e80;
  font-size: 21px;
  text-align: center;
  float: right;
}
/* line 26, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_banner_wrapper .text h1 {
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 10px;
  color: #16191a;
  text-align: center;
}
/* line 34, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_banner_wrapper .text h4 {
  font-size: 21px;
  color: #777e80;
  line-height: 1.35;
}
/* line 41, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_banner_wrapper .overlay {
  max-width: 1260px;
  padding: 0 25px;
  margin: 0 auto;
}
/* line 46, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_banner_wrapper .overlay .text2 {
  float: right;
  width: 620px;
  color: #777e80;
  font-size: 21px;
  text-align: center;
  margin: 80px 60px 0 0;
}
/* line 54, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_banner_wrapper .overlay .text2 h1 {
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 10px;
  color: #16191a;
  text-align: center;
}
/* line 62, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_banner_wrapper .overlay .text2 h4 {
  font-size: 21px;
  color: #777e80;
  line-height: 1.35;
}
/* line 70, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_banner_wrapper #format_banner_wrapper_inner {
  max-width: 1200px;
  margin: 0 auto;
}
/* line 74, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_banner_wrapper #format_banner_wrapper_inner #format_banner_left {
  max-width: 514px;
  float: left;
  margin-left: -30px;
  display: table;
  position: relative;
  height: 440px;
}
/* line 81, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_banner_wrapper #format_banner_wrapper_inner #format_banner_left #format_banner_left_inner {
  display: table-cell;
  vertical-align: middle;
}
/* line 87, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_banner_wrapper #format_banner_wrapper_inner #format_banner_right {
  float: right;
  padding-right: 60px;
  max-width: 686px;
  display: table;
  position: relative;
  height: 440px;
}
/* line 95, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_banner_wrapper #format_banner_wrapper_inner #format_banner_right #format_banner_right_inner {
  display: table-cell;
  vertical-align: middle;
}
/* line 99, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_banner_wrapper #format_banner_wrapper_inner #format_banner_right #format_banner_right_inner h1 {
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
}
/* line 107, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_banner_wrapper #format_banner_wrapper_inner #format_banner_right #format_banner_right_inner h4 {
  font-size: 21px;
  color: #fff;
  text-align: center;
}
/* line 118, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .outer {
  position: relative;
  overflow: visible;
  background-color: #fff;
  padding: 0 25px;
}
/* line 124, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .outer .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0 0 0;
  overflow: hidden;
}
/* line 133, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_one {
  border-bottom: 1px solid #d3d8d9;
}
/* line 136, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_one .inner-right {
  float: right;
  width: 339px;
  position: relative;
  margin-right: 30px;
}
/* line 144, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_one .inner-right .inner-right-inner img {
  width: 100%;
}
/* line 150, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_one .inner-left {
  overflow: hidden;
  text-align: center;
  margin: 36px 0 0 0;
  max-width: 650px;
  width: 100%;
  float: left;
}
/* line 158, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_one .inner-left #rentals-learn-more-button {
  position: relative;
  Z-index: 10;
}
/* line 163, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_one .inner-left h2 {
  text-align: center;
  margin: 0 auto;
  font-size: 40px;
  color: #16191a;
  line-height: 1.40;
}
/* line 171, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_one .inner-left p.mem {
  margin-bottom: 38px;
  text-align: center;
}
/* line 176, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_one .inner-left p.format_fine_print {
  margin: 35px auto 10px auto;
  font-size: 16px;
  clear: both;
  color: #777e80;
  line-height: 1.5;
  text-align: center;
}
/* line 187, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_two {
  border-bottom: 1px solid #d3d8d9;
  background-color: #edf2f3;
}
/* line 191, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_two .inner {
  padding-bottom: 0px;
}
/* line 194, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_two .inner h2 {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-size: 40px;
  color: #16191a;
  line-height: 1.40;
}
/* line 203, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_two .inner p {
  font-size: 21px;
  color: #777e80;
  max-width: 750px;
  text-align: center;
  margin: 0 auto;
}
/* line 211, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_two .inner .image {
  margin: 60px auto;
}
/* line 214, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_two .inner .image img {
  margin: 0 auto;
  display: block;
}
/* line 220, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_two .inner ul {
  text-align: center;
}
/* line 223, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_two .inner ul li {
  display: inline-block;
  margin: 0 18px;
}
/* line 229, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_two .inner .icon-font {
  font-size: 19px;
  vertical-align: middle;
  margin-right: 7px;
  position: relative;
  bottom: 2px;
}
/* line 239, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_three {
  border-bottom: 1px solid #d3d8d9;
}
/* line 243, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_three .inner .section_header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 100px auto;
}
/* line 248, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_three .inner .section_header h2 {
  font-size: 40px;
  color: #16191a;
  line-height: 1.40;
}
/* line 254, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_three .inner .section_header p {
  font-size: 21px;
  color: #777e80;
  text-align: center;
}
/* line 261, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_three .inner .col3_grid {
  width: 33.3%;
  float: left;
  text-align: center;
  margin-top: -80px;
}
/* line 267, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_three .inner .col3_grid img {
  max-width: 100%;
}
/* line 271, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_three .inner .col3_grid ul {
  text-align: center;
  margin-top: 50px;
  list-style: none;
}
/* line 276, ../scss/cms/_audiobook-formats.scss */
.audiobook-page .format_content_wrapper .section_three .inner .col3_grid ul li {
  margin-top: 20px;
  margin-left: 0;
  text-align: center;
}
@media screen and (max-width: 1170px) {
  /* line 290, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper #format_banner_wrapper_inner #format_banner_left {
    width: 40%;
  }
  /* line 294, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper #format_banner_wrapper_inner #format_banner_right {
    width: 60%;
  }
}
@media screen and (max-width: 1078px) {
  /* line 304, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .section_one .inner-left {
    max-width: 54%;
  }
}
@media screen and (max-width: 1014px) {
  /* line 314, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper #format_banner_wrapper_inner #format_banner_left {
    width: 35%;
  }
  /* line 318, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper #format_banner_wrapper_inner #format_banner_right {
    width: 65%;
  }
}
@media screen and (max-width: 1000px) {
  /* line 328, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .overlay .text2 {
    text-align: center;
    float: none;
    margin-left: 284px;
    padding-top: 80px;
    margin-right: 0;
    max-width: 620px;
    width: auto;
    margin-top: 0;
  }
}
@media screen and (max-width: 920px) {
  /* line 344, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .text {
    padding-right: 30px;
  }
}
@media screen and (max-width: 890px) {
  /* line 352, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .text {
    max-width: 570px;
  }
}
@media screen and (max-width: 862px) {
  /* line 361, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .section_one .inner-right {
    margin-right: 0;
  }
}
@media screen and (max-width: 800px) {
  /* line 369, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper {
    height: auto;
  }
  /* line 372, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .banner_image_shift {
    background-image: url(//d2q0f503qhbqv9.cloudfront.net/site_assets/Audiobook_Savings_Mobile_Background.jpg);
  }
  /* line 376, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .text {
    max-width: 100%;
    margin: 48px auto 0 auto;
    padding: 0 60px;
  }
  /* line 383, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper #format_banner_wrapper_inner #format_banner_left {
    max-width: 100%;
    width: 100%;
    text-align: center;
    margin-left: 0;
    padding: 0 25px;
    height: auto;
    margin-bottom: 20px;
  }
  /* line 392, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper #format_banner_wrapper_inner #format_banner_left #format_banner_left_inner {
    display: block;
    vertical-align: unset;
  }
  /* line 396, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper #format_banner_wrapper_inner #format_banner_left #format_banner_left_inner img {
    margin: 0 auto;
  }
  /* line 402, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper #format_banner_wrapper_inner #format_banner_right {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 80px;
    padding: 0 25px;
  }
  /* line 409, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper #format_banner_wrapper_inner #format_banner_right #format_banner_left_inner {
    display: block;
    vertical-align: unset;
  }
  /* line 420, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .section_one .inner-right {
    float: none;
    margin: 0 auto;
  }
  /* line 423, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .section_one .inner-right .inner-right-inner {
    position: relative;
  }
  /* line 428, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .section_one .inner-left {
    margin: 36px auto 0 auto;
    max-width: 100%;
  }
}
@media screen and (max-width: 790px) {
  /* line 437, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .section_one h2 {
    font-size: 37px;
  }
}
@media screen and (max-width: 768px) {
  /* line 444, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .col1-layout .col-main {
    margin-bottom: 0;
  }
  /* line 448, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .text {
    padding: 0 30px;
  }
  /* line 452, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .section_one .inner-left,
  .audiobook-page .section_one .inner-right {
    width: 50%;
  }
  /* line 459, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .overlay .text2 {
    margin-left: 182px;
    padding-top: 60px;
  }
}
@media screen and (max-width: 700px) {
  /* line 471, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .overlay .text2 {
    margin-left: 135px;
  }
}
@media screen and (max-width: 677px) {
  /* line 480, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .section_three .inner .section_header {
    margin-bottom: 60px;
  }
  /* line 484, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .section_three .inner img {
    display: none;
  }
  /* line 488, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .section_three .inner .col3_grid {
    width: 100%;
    float: none;
    text-align: center;
    margin: 20px auto 20px auto;
  }
  /* line 494, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .section_three .inner .col3_grid ul li {
    width: 42%;
    text-align: center;
    display: inline-block;
    margin: 0 18px;
  }
  /* line 502, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .section_three .section_header {
    margin: 0 auto 0 auto;
  }
}
@media screen and (max-width: 635px) {
  /* line 509, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .text h4 {
    padding: 10px 58px;
  }
  /* line 513, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page #format_banner_right {
    width: 100%;
  }
  /* line 517, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page #format_banner_right h4 {
    padding: 0;
    margin: 0 auto;
  }
  /* line 522, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page #format_banner_left {
    display: none;
  }
  /* line 526, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .section_one .inner .inner-right {
    float: none;
    max-width: 290px;
    text-align: center;
    margin: 0 auto;
  }
  /* line 533, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .section_one .inner .inner-left {
    width: 100%;
    margin-top: 0;
  }
  /* line 538, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .section_one p.mem {
    text-align: justify;
  }
  /* line 542, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .section_two .inner .image img {
    max-width: 100%;
  }
  /* line 546, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .section_two .inner p {
    text-align: justify;
  }
  /* line 550, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .section_two .inner ul li {
    margin-bottom: 20px;
  }
  /* line 554, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .section_three .inner .section_header {
    width: 100%;
  }
  /* line 558, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .section_three .inner .section_header p {
    margin: 0 auto;
    text-align: justify;
  }
  /* line 563, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .section_three {
    border-bottom: 0;
  }
  /* line 567, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .section_three .inner .blue {
    padding: 10px 30px;
  }
}
@media screen and (max-width: 600px) {
  /* line 574, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .text {
    margin-top: 65px;
  }
  /* line 578, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .text h1 {
    font-size: 30px;
    line-height: 36px;
    padding: 0px 64px;
  }
  /* line 584, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .overlay .text2 {
    margin-left: 0;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 558px) {
  /* line 592, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .text h4 {
    padding: 10px 40px;
  }
  /* line 595, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .text h4 {
    padding: 10px 10px;
  }
}
@media screen and (max-width: 553px) {
  /* line 603, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .section_three .inner .col3_grid ul li {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 510px) {
  /* line 612, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .text h1 {
    padding: 0 30px;
  }
}
@media screen and (max-width: 480px) {
  /* line 618, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .main-container {
    padding: 0;
    margin-bottom: 0;
  }
  /* line 623, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .col1-layout .col-main {
    padding: 0;
  }
  /* line 627, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper #format_banner_wrapper_inner #format_banner_right {
    padding: 0 15px;
  }
  /* line 631, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .overlay {
    padding: 0 15px;
  }
  /* line 635, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .text {
    padding: 0 15px;
  }
  /* line 638, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .text h4 {
    padding: 10px 33px;
    font-size: 18px;
  }
  /* line 643, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .outer {
    padding: 0 15px;
  }
  /* line 647, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_content_wrapper .outer .inner {
    padding: 30px 0 0 0;
  }
}
@media screen and (max-width: 447px) {
  /* line 654, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .text h1 {
    padding: 0;
  }
  /* line 657, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .text h4 {
    padding: 10px 0;
  }
}
@media screen and (max-width: 351px) {
  /* line 663, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .text {
    margin-top: 20px;
  }
  /* line 666, ../scss/cms/_audiobook-formats.scss */
  .audiobook-page .format_banner_wrapper .text h4 {
    padding: 20px 0;
  }
}

/* line 2, ../scss/cms/_column_promo.scss */
body ul.column_promo {
  margin: 0 auto;
  padding: 24px 0 46px 0;
}
/* line 5, ../scss/cms/_column_promo.scss */
body ul.column_promo li {
  margin: 0;
  padding: 0;
  display: inline-block;
}
/* line 9, ../scss/cms/_column_promo.scss */
body ul.column_promo li .pad {
  padding: 0;
  text-align: center;
}
/* line 12, ../scss/cms/_column_promo.scss */
body ul.column_promo li .pad .section-title {
  font-size: 28px;
}
/* line 16, ../scss/cms/_column_promo.scss */
body ul.column_promo li .pad .column_promo_inner .column_promo_top {
  height: 108px;
  overflow: hidden;
}
/* line 19, ../scss/cms/_column_promo.scss */
body ul.column_promo li .pad .column_promo_inner .column_promo_top .background-accent-layer {
  height: 400px;
  position: relative;
  top: -200px;
  background-position: center center;
  -webkit-filter: blur(25px);
  -moz-filter: blur(25px);
  -o-filter: blur(25px);
  -ms-filter: blur(25px);
  filter: blur(25px);
}
/* line 30, ../scss/cms/_column_promo.scss */
body ul.column_promo li .pad .column_promo_inner .column_promo_top .background-accent-blur {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
}
/* line 36, ../scss/cms/_column_promo.scss */
body ul.column_promo li .pad .column_promo_inner .column_promo_bottom {
  background: #fff;
  color: #373c3e;
  padding-bottom: 30px;
  box-shadow: 0 2px 3px 0px #d3d8d9;
  -moz-box-shadow: 0 2px 3px 0px #d3d8d9;
  -webkit-box-shadow: 0 2px 3px 0px #d3d8d9;
  -o-box-shadow: 0 2px 3px 0px #d3d8d9;
}
/* line 44, ../scss/cms/_column_promo.scss */
body ul.column_promo li .pad .column_promo_inner .column_promo_bottom img {
  max-height: 150px;
  margin: -85px auto 0;
  max-width: 100%;
  position: relative;
}
/* line 50, ../scss/cms/_column_promo.scss */
body ul.column_promo li .pad .column_promo_inner .column_promo_bottom p {
  margin: 0;
}
/* line 53, ../scss/cms/_column_promo.scss */
body ul.column_promo li .pad .column_promo_inner .column_promo_bottom .title {
  font-size: 18px;
  padding-top: 18px;
}
/* line 57, ../scss/cms/_column_promo.scss */
body ul.column_promo li .pad .column_promo_inner .column_promo_bottom .subtitle {
  font-size: 20px;
  line-height: 17px;
}
/* line 61, ../scss/cms/_column_promo.scss */
body ul.column_promo li .pad .column_promo_inner .column_promo_bottom .old-price {
  text-decoration: line-through;
  color: #605a54;
  margin-right: 5px;
}
/* line 69, ../scss/cms/_column_promo.scss */
body ul.column_promo li .pad .column_promo_inner .column_promo_bottom .full-card-cta,
body ul.column_promo li .pad .column_promo_inner .column_promo_bottom .section-title {
  display: none;
}
/* line 75, ../scss/cms/_column_promo.scss */
body ul.column_promo li .pad a:hover {
  text-decoration: none;
}
/* line 82, ../scss/cms/_column_promo.scss */
body .three_column_promo li {
  width: 33%;
}
/* line 86, ../scss/cms/_column_promo.scss */
body .three_column_promo li.col_1 .pad {
  padding-right: 16px;
}
/* line 91, ../scss/cms/_column_promo.scss */
body .three_column_promo li.col_2 .pad {
  padding: 0 8px;
}
/* line 96, ../scss/cms/_column_promo.scss */
body .three_column_promo li.col_3 .pad {
  padding-left: 16px;
}
/* line 102, ../scss/cms/_column_promo.scss */
body .four_column_promo li {
  width: 25%;
}
/* line 106, ../scss/cms/_column_promo.scss */
body .four_column_promo li.col_1 .pad {
  padding-right: 16px;
}
/* line 111, ../scss/cms/_column_promo.scss */
body .four_column_promo li.col_2 .pad {
  padding: 0 8px;
}
/* line 116, ../scss/cms/_column_promo.scss */
body .four_column_promo li.col_3 .pad {
  padding: 0 8px;
}
/* line 121, ../scss/cms/_column_promo.scss */
body .four_column_promo li.col_4 .pad {
  padding-left: 16px;
}

@media screen and (max-width: 870px) {
  /* line 130, ../scss/cms/_column_promo.scss */
  body ul.column_promo.three_column_promo li {
    width: 100%;
  }
  /* line 132, ../scss/cms/_column_promo.scss */
  body ul.column_promo.three_column_promo li .pad {
    padding: 0;
    background: #fff;
    box-shadow: 0 2px 3px 0px #d3d8d9;
    -moz-box-shadow: 0 2px 3px 0px #d3d8d9;
    -webkit-box-shadow: 0 2px 3px 0px #d3d8d9;
    -o-box-shadow: 0 2px 3px 0px #d3d8d9;
    overflow: hidden;
    margin: 10px auto;
  }
  /* line 141, ../scss/cms/_column_promo.scss */
  body ul.column_promo.three_column_promo li .pad .column_promo_top {
    height: 257px;
    float: left;
    width: 50%;
  }
  /* line 145, ../scss/cms/_column_promo.scss */
  body ul.column_promo.three_column_promo li .pad .column_promo_top .background-accent-layer {
    -webkit-filter: none;
    -moz-filter: none;
    -o-filter: none;
    -ms-filter: none;
    filter: none;
    top: 0;
    height: 257px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
  }
  /* line 157, ../scss/cms/_column_promo.scss */
  body ul.column_promo.three_column_promo li .pad .column_promo_top .background-accent-blur {
    display: none;
  }
  /* line 161, ../scss/cms/_column_promo.scss */
  body ul.column_promo.three_column_promo li .pad .section-title {
    display: none;
  }
  /* line 164, ../scss/cms/_column_promo.scss */
  body ul.column_promo.three_column_promo li .pad .column_promo_bottom {
    width: 50%;
    float: right;
    height: 257px;
    box-shadow: none;
    background: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    -o-box-shadow: none;
  }
  /* line 173, ../scss/cms/_column_promo.scss */
  body ul.column_promo.three_column_promo li .pad .column_promo_bottom img {
    display: none;
  }
  /* line 176, ../scss/cms/_column_promo.scss */
  body ul.column_promo.three_column_promo li .pad .column_promo_bottom .section-title {
    display: block;
    width: 90%;
    margin: 0 auto 25px auto;
    padding: 12px 0 5px 0;
    border-bottom: 1px solid #e0e4e5;
  }
  /* line 183, ../scss/cms/_column_promo.scss */
  body ul.column_promo.three_column_promo li .pad .column_promo_bottom .full-card-cta {
    display: inline-block;
    margin-top: 24px;
    border: 1px solid #e0e4e5;
    padding: 6px 35px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
  }
}
@media screen and (max-width: 497px) {
  /* line 201, ../scss/cms/_column_promo.scss */
  body ul.column_promo li .pad .section-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  /* line 207, ../scss/cms/_column_promo.scss */
  body ul.column_promo.three_column_promo li .pad {
    margin: 0 auto 10px auto;
  }
}
@media screen and (max-width: 437px) {
  /* line 213, ../scss/cms/_column_promo.scss */
  body ul.column_promo li .pad .section-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 365px) {
  /* line 219, ../scss/cms/_column_promo.scss */
  body ul.column_promo.three_column_promo li .pad .column_promo_bottom .full-card-cta {
    padding: 6px 25px;
  }
}
@media screen and (max-width: 345px) {
  /* line 225, ../scss/cms/_column_promo.scss */
  body ul.column_promo li .pad .section-title {
    font-size: 22px;
  }
}
/* ============================================ *
 * Rentals Page
 * Created by Bret Miller 12/09/2016
 * ============================================ */
/* line 9, ../scss/cms/_purchase-terms.scss */
.cms-cookie-policy .agreement-content-wrapper,
.cms-purchase-terms .agreement-content-wrapper {
  display: block !important;
}
/* line 11, ../scss/cms/_purchase-terms.scss */
.cms-cookie-policy .agreement-content-wrapper .agreement-content,
.cms-purchase-terms .agreement-content-wrapper .agreement-content {
  display: block !important;
  max-width: none;
  max-height: none;
}
/* line 15, ../scss/cms/_purchase-terms.scss */
.cms-cookie-policy .agreement-content-wrapper .agreement-content p:first-of-type,
.cms-cookie-policy .agreement-content-wrapper .agreement-content h1,
.cms-cookie-policy .agreement-content-wrapper .agreement-content hr,
.cms-purchase-terms .agreement-content-wrapper .agreement-content p:first-of-type,
.cms-purchase-terms .agreement-content-wrapper .agreement-content h1,
.cms-purchase-terms .agreement-content-wrapper .agreement-content hr {
  display: none;
}
/* line 20, ../scss/cms/_purchase-terms.scss */
.cms-cookie-policy .agreement-content-wrapper .agreement-content h2,
.cms-purchase-terms .agreement-content-wrapper .agreement-content h2 {
  text-align: center;
}
/* line 24, ../scss/cms/_purchase-terms.scss */
.cms-cookie-policy .agreement-content-wrapper .button-wrapper,
.cms-purchase-terms .agreement-content-wrapper .button-wrapper {
  display: none;
}
/* line 28, ../scss/cms/_purchase-terms.scss */
.cms-cookie-policy .main-container,
.cms-purchase-terms .main-container {
  padding-top: 40px;
  padding-bottom: 100px;
}
/* line 33, ../scss/cms/_purchase-terms.scss */
.cms-cookie-policy .std ol li,
.cms-purchase-terms .std ol li {
  margin-left: 0;
}
/* line 37, ../scss/cms/_purchase-terms.scss */
.cms-cookie-policy .agreement-content,
.cms-purchase-terms .agreement-content {
  display: none;
}
/* line 41, ../scss/cms/_purchase-terms.scss */
.cms-cookie-policy .agree,
.cms-purchase-terms .agree {
  display: none;
}
/* line 45, ../scss/cms/_purchase-terms.scss */
.cms-cookie-policy .checkout-agreements,
.cms-purchase-terms .checkout-agreements {
  list-style-type: none;
}
/* line 49, ../scss/cms/_purchase-terms.scss */
.cms-cookie-policy .checkout-agreements li h1,
.cms-purchase-terms .checkout-agreements li h1 {
  text-decoration: underline;
  font-size: 16px;
  text-align: center;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 56, ../scss/cms/_purchase-terms.scss */
.cms-cookie-policy .checkout-agreements li p,
.cms-purchase-terms .checkout-agreements li p {
  text-align: center;
  line-height: 1.5;
  font-size: 13px;
}
/* line 62, ../scss/cms/_purchase-terms.scss */
.cms-cookie-policy .checkout-agreements li .terms-date,
.cms-purchase-terms .checkout-agreements li .terms-date {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 66, ../scss/cms/_purchase-terms.scss */
.cms-cookie-policy .checkout-agreements li .sectionheader,
.cms-purchase-terms .checkout-agreements li .sectionheader {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  text-decoration: underline;
}
/* line 71, ../scss/cms/_purchase-terms.scss */
.cms-cookie-policy .checkout-agreements li .terms-upper,
.cms-purchase-terms .checkout-agreements li .terms-upper {
  text-transform: uppercase;
}
@media only screen and (max-width: 600px) {
  /* line 79, ../scss/cms/_purchase-terms.scss */
  .cms-cookie-policy .main-container,
  .cms-purchase-terms .main-container {
    margin-top: 105px;
  }
}

/* ============================================ *
 * Rentals Page
 * Created by Bret Miller 12/09/2016
 * ============================================ */
/* line 8, ../scss/cms/_terms-use.scss */
.legal-disclaimer .main-container {
  padding-top: 40px;
  padding-bottom: 100px;
}
/* line 14, ../scss/cms/_terms-use.scss */
.legal-disclaimer .std h1 {
  text-decoration: underline;
  font-size: 16px;
  text-align: center;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 21, ../scss/cms/_terms-use.scss */
.legal-disclaimer .std p {
  line-height: 1.5;
  font-size: 13px;
}
/* line 26, ../scss/cms/_terms-use.scss */
.legal-disclaimer .std .terms-date {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  text-align: center;
}
/* line 31, ../scss/cms/_terms-use.scss */
.legal-disclaimer .std .sectionheader {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  text-align: center;
}
/* line 36, ../scss/cms/_terms-use.scss */
.legal-disclaimer .std .terms-upper {
  text-transform: uppercase;
}
@media only screen and (max-width: 600px) {
  /* line 43, ../scss/cms/_terms-use.scss */
  .legal-disclaimer .main-container {
    margin-top: 105px;
  }
}

/* ============================================ *
 * Customer Account Page
 * Created by Bret Miller 12/22/2016
 * ============================================ */
/* line 7, ../scss/cms/_customer-account.scss */
body.sales-order-history .pages,
body.sales-order-history .pager {
  overflow: visible;
}

/* line 14, ../scss/cms/_customer-account.scss */
body.customer-account-logoutsuccess p {
  text-align: center;
}

/* line 21, ../scss/cms/_customer-account.scss */
body.isFirefox .my-account select {
  padding-top: 9.5px;
  padding-bottom: 9.5px;
}
/* line 27, ../scss/cms/_customer-account.scss */
body.isFirefox .manage-payment-method select {
  padding-top: 9.5px;
  padding-bottom: 9.5px;
}

/* line 34, ../scss/cms/_customer-account.scss */
body.customer-account {
  /* payment info */
}
/* line 36, ../scss/cms/_customer-account.scss */
body.customer-account .col-left {
  width: 290px;
}
/* line 40, ../scss/cms/_customer-account.scss */
body.customer-account .col-main {
  float: none;
  width: auto;
  margin-left: 290px;
  padding-left: 40px;
}
/* line 47, ../scss/cms/_customer-account.scss */
body.customer-account .customer-account-subhead {
  background: #fff;
}
/* line 50, ../scss/cms/_customer-account.scss */
body.customer-account .customer-account-subhead .customer-account-subhead-title {
  font-size: 36px;
  padding-top: 40px;
  margin-bottom: 0;
  color: #373c3e;
}
/* line 57, ../scss/cms/_customer-account.scss */
body.customer-account .customer-account-subhead .customer-account-subhead-subtitle {
  color: #777e80;
  font-size: 21px;
  padding-bottom: 40px;
}
/* line 64, ../scss/cms/_customer-account.scss */
body.customer-account .col-left-first {
  padding-right: 0;
  margin-bottom: 0;
}
/* line 68, ../scss/cms/_customer-account.scss */
body.customer-account .col-left-first .block-account {
  background-color: #edf2f3;
  padding-bottom: 20px;
  padding-top: 33px;
}
/* line 73, ../scss/cms/_customer-account.scss */
body.customer-account .col-left-first .block-account .block-content {
  margin-top: 0;
  background-color: #fff;
  border: 1px solid #777e80;
}
/* line 78, ../scss/cms/_customer-account.scss */
body.customer-account .col-left-first .block-account .block-content ul {
  padding: 20px 0;
}
/* line 81, ../scss/cms/_customer-account.scss */
body.customer-account .col-left-first .block-account .block-content ul li {
  margin: 0 20px;
}
/* line 84, ../scss/cms/_customer-account.scss */
body.customer-account .col-left-first .block-account .block-content ul li a {
  outline: none;
  text-transform: capitalize;
}
/* line 96, ../scss/cms/_customer-account.scss */
body.customer-account .dashboard .box-account {
  padding-bottom: 0;
  margin-bottom: 10px;
}
/* line 99, ../scss/cms/_customer-account.scss */
body.customer-account .dashboard .box-account .col2-set {
  display: inline-block;
}
/* line 102, ../scss/cms/_customer-account.scss */
body.customer-account .dashboard .box-account a {
  font-size: 16px;
}
/* line 107, ../scss/cms/_customer-account.scss */
body.customer-account .dashboard .box-account .box-content address,
body.customer-account .dashboard .box-account .box-content p {
  font-size: 16px;
}
/* line 113, ../scss/cms/_customer-account.scss */
body.customer-account .dashboard .box-head {
  border-bottom: 1px solid #777e80;
}
/* line 115, ../scss/cms/_customer-account.scss */
body.customer-account .dashboard .box-head h2 {
  font-size: 21px;
  line-height: 21px;
}
/* line 121, ../scss/cms/_customer-account.scss */
body.customer-account .dashboard .col2-set .col-1 .box-title h3,
body.customer-account .dashboard .col2-set .col-2 .box-title h3 {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: #373c3e;
  margin-top: 20px;
}
/* line 131, ../scss/cms/_customer-account.scss */
body.customer-account .my-account {
  margin-bottom: 60px;
  overflow: hidden;
}
/* line 136, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .pager .limiter {
  height: auto;
}
/* line 138, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .pager .limiter select {
  width: 55px;
  padding: 0 0 0 5px;
}
/* line 146, ../scss/cms/_customer-account.scss */
body.customer-account .my-account #my-orders-table th.order-product,
body.customer-account .my-account #my-orders-table td.order-product {
  width: 61%;
}
/* line 150, ../scss/cms/_customer-account.scss */
body.customer-account .my-account #my-orders-table th.order-quantity,
body.customer-account .my-account #my-orders-table td.order-quantity {
  width: 15%;
}
/* line 154, ../scss/cms/_customer-account.scss */
body.customer-account .my-account #my-orders-table th.order-price,
body.customer-account .my-account #my-orders-table td.order-price {
  width: 12%;
}
/* line 158, ../scss/cms/_customer-account.scss */
body.customer-account .my-account #my-orders-table th.order-subtotal,
body.customer-account .my-account #my-orders-table td.order-subtotal {
  width: 12%;
  padding-right: 0;
}
/* line 165, ../scss/cms/_customer-account.scss */
body.customer-account .my-account #my-orders-table tfoot tr td.last {
  padding-right: 0;
}
/* line 174, ../scss/cms/_customer-account.scss */
body.customer-account .my-account #my-orders-table .product-name,
body.customer-account .my-account #my-tickets-table .product-name {
  margin-bottom: 0;
  line-height: 120%;
}
/* line 178, ../scss/cms/_customer-account.scss */
body.customer-account .my-account #my-orders-table .price,
body.customer-account .my-account #my-tickets-table .price {
  font-size: 16px;
  line-height: 120%;
}
/* line 182, ../scss/cms/_customer-account.scss */
body.customer-account .my-account #my-orders-table td,
body.customer-account .my-account #my-tickets-table td {
  font-size: 16px;
  line-height: 120%;
}
/* line 186, ../scss/cms/_customer-account.scss */
body.customer-account .my-account #my-orders-table th,
body.customer-account .my-account #my-tickets-table th {
  padding-top: 0;
  text-transform: none;
  font-family: Kievit-Bold;
  font-size: 16px;
  padding-bottom: 5px;
}
/* line 193, ../scss/cms/_customer-account.scss */
body.customer-account .my-account #my-orders-table th.status,
body.customer-account .my-account #my-orders-table th.date,
body.customer-account .my-account #my-orders-table td.date,
body.customer-account .my-account #my-orders-table th.agent,
body.customer-account .my-account #my-orders-table td.agent,
body.customer-account .my-account #my-tickets-table th.status,
body.customer-account .my-account #my-tickets-table th.date,
body.customer-account .my-account #my-tickets-table td.date,
body.customer-account .my-account #my-tickets-table th.agent,
body.customer-account .my-account #my-tickets-table td.agent {
  text-align: center;
}
/* line 200, ../scss/cms/_customer-account.scss */
body.customer-account .my-account #my-orders-table td:first-child,
body.customer-account .my-account #my-orders-table th:first-child,
body.customer-account .my-account #my-tickets-table td:first-child,
body.customer-account .my-account #my-tickets-table th:first-child {
  padding-left: 0;
}
/* line 204, ../scss/cms/_customer-account.scss */
body.customer-account .my-account #my-orders-table .totals-tfoot-spacer,
body.customer-account .my-account #my-tickets-table .totals-tfoot-spacer {
  height: 10px;
  line-height: 10px;
  font-size: 10px;
  padding: 0;
}
/* line 210, ../scss/cms/_customer-account.scss */
body.customer-account .my-account #my-orders-table .item-options,
body.customer-account .my-account #my-tickets-table .item-options {
  margin-top: 0;
  margin-left: 0;
}
/* line 213, ../scss/cms/_customer-account.scss */
body.customer-account .my-account #my-orders-table .item-options dt,
body.customer-account .my-account #my-tickets-table .item-options dt {
  font-size: 16px;
  font-weight: normal;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
}
/* line 219, ../scss/cms/_customer-account.scss */
body.customer-account .my-account #my-orders-table .item-options dd,
body.customer-account .my-account #my-tickets-table .item-options dd {
  margin: 0;
  padding-left: 0;
}
/* line 227, ../scss/cms/_customer-account.scss */
body.customer-account .my-account #my-orders-table tfoot tr.subtotal td,
body.customer-account .my-account #my-tickets-table tfoot tr.subtotal td {
  padding-top: 15px;
}
/* line 231, ../scss/cms/_customer-account.scss */
body.customer-account .my-account #my-orders-table tfoot tr td,
body.customer-account .my-account #my-tickets-table tfoot tr td {
  padding: 2px;
}
/* line 240, ../scss/cms/_customer-account.scss */
body.customer-account .my-account #my-tickets-table .subject {
  max-width: 440px;
  width: 100%;
}
/* line 246, ../scss/cms/_customer-account.scss */
body.customer-account .my-account span.separator {
  color: #919799;
}
/* line 250, ../scss/cms/_customer-account.scss */
body.customer-account .my-account span.separator-spacer {
  padding-right: 16px;
}
/* line 254, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .order-info-box {
  margin-bottom: 40px;
  margin-top: 36px;
}
/* line 259, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .col2-set .col-1,
body.customer-account .my-account .col2-set .col-2 {
  padding-top: 0;
}
/* line 265, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .addresses-primary button {
  width: 260px;
}
/* line 271, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .box-recent .data-table th {
  text-transform: capitalize;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  color: #373c3e;
  padding: 5px 20px 5px 0;
}
/* line 278, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .box-recent .data-table tbody td {
  padding: 10px 20px 10px 0;
  font-size: 16px;
}
/* line 284, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .page-title {
  margin: 0;
  border-bottom: 0;
}
/* line 287, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .page-title h1 {
  font-size: 28px;
  line-height: 1.5;
  color: #373c3e;
  padding-bottom: 0;
  margin-bottom: 36px;
}
/* line 295, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .page-title .view-my-order {
  margin-bottom: 6px;
}
/* line 300, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .fieldset {
  margin-top: 0;
  margin-bottom: 0;
}
/* line 304, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .fieldset h2 {
  width: auto;
  font-size: 21px;
  width: 100%;
}
/* line 310, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .fieldset span.required {
  float: none;
  display: inline-block;
  padding-left: 14px;
  margin-left: -4px;
  color: #DF280A;
  font-size: 14px;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 319, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .fieldset span.required:after {
  display: none;
}
/* line 323, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .fieldset #button-legend-spacer {
  margin-top: 20px;
  margin-bottom: 5px;
}
/* line 329, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .buttons-set,
body.customer-account .my-account input[type=email],
body.customer-account .my-account input[type=search],
body.customer-account .my-account input[type=number],
body.customer-account .my-account input[type=password],
body.customer-account .my-account input[type=tel],
body.customer-account .my-account input[type=text] {
  width: 100%;
  max-width: 400px;
}
/* line 340, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .form-list select {
  width: 100%;
  max-width: 400px;
}
/* line 345, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .form-list .control {
  margin-bottom: 0;
}
/* line 349, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .back-link {
  display: none;
}
/* line 353, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .buttons-set {
  margin-bottom: 40px;
}
/* line 356, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .buttons-set button.button {
  float: none;
  margin-left: 0px;
  width: 100%;
  max-width: 400px;
}
/* line 364, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .order-details h2 {
  display: none;
}
/* line 370, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .freshdesk-ticket .page-title,
body.customer-account .my-account .fd-tickets-list .page-title {
  max-width: 100%;
}
/* line 372, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .freshdesk-ticket .page-title h1,
body.customer-account .my-account .fd-tickets-list .page-title h1 {
  float: left;
}
/* line 375, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .freshdesk-ticket .page-title .actions,
body.customer-account .my-account .fd-tickets-list .page-title .actions {
  float: right;
  line-height: normal;
}
/* line 380, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .freshdesk-ticket .ticket-info,
body.customer-account .my-account .fd-tickets-list .ticket-info {
  clear: left;
}
/* line 383, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .freshdesk-ticket button.button,
body.customer-account .my-account .fd-tickets-list button.button {
  margin-left: 0;
}
/* line 386, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .freshdesk-ticket #fresh-no-tickets,
body.customer-account .my-account .fd-tickets-list #fresh-no-tickets {
  clear: both;
}
/* line 391, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .freshdesk-ticket-create button.button {
  float: right;
}
/* line 396, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .box-fd-recent-tickets .box-head {
  border-bottom: 1px solid #777e80;
}
/* line 399, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .box-fd-recent-tickets .box-head .actions .separator {
  color: #373c3e;
  font-size: 16px;
}
/* line 404, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .box-fd-recent-tickets .box-head .separator {
  color: #373c3e;
  font-size: 16px;
}
/* line 408, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .box-fd-recent-tickets .box-head h2 {
  float: left;
  background-repeat: no-repeat;
  font-size: 21px;
  line-height: 21px;
  background-image: none;
}
/* line 415, ../scss/cms/_customer-account.scss */
body.customer-account .my-account .box-fd-recent-tickets .box-head a {
  font-size: 16px;
  line-height: 16px;
}
/* line 423, ../scss/cms/_customer-account.scss */
body.customer-account .my-account #my-tickets-table th {
  background-color: transparent;
}
/* line 431, ../scss/cms/_customer-account.scss */
body.customer-account .page-title {
  margin: 0;
  border-bottom: 0;
}
/* line 435, ../scss/cms/_customer-account.scss */
body.customer-account .page-title h1 {
  font-size: 28px;
  line-height: 28px;
  color: #373c3e;
  padding-bottom: 0;
  margin-bottom: 36px;
  text-align: left;
}
/* line 445, ../scss/cms/_customer-account.scss */
body.customer-account .manage-payment-method {
  padding-top: 30px;
}
/* line 449, ../scss/cms/_customer-account.scss */
body.customer-account .manage-payment-method #billing-new-address-form .input-box {
  margin-bottom: 16px;
}
/* line 453, ../scss/cms/_customer-account.scss */
body.customer-account .manage-payment-method .col2-set .col-1,
body.customer-account .manage-payment-method .col2-set .col-2 {
  padding-top: 0;
}
/* line 458, ../scss/cms/_customer-account.scss */
body.customer-account .manage-payment-method .col2-set .col-1 h3,
body.customer-account .manage-payment-method .col2-set .col-2 h3 {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: #373c3e;
  margin-bottom: 0;
}
/* line 466, ../scss/cms/_customer-account.scss */
body.customer-account .manage-payment-method .info-box {
  border: 0;
  padding: 0;
  margin: 0 0 40px;
  font-size: 16px;
  display: block;
}
/* line 474, ../scss/cms/_customer-account.scss */
body.customer-account .manage-payment-method .buttons-set {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}
/* line 479, ../scss/cms/_customer-account.scss */
body.customer-account .manage-payment-method .buttons-set form {
  float: left;
}
/* line 482, ../scss/cms/_customer-account.scss */
body.customer-account .manage-payment-method .buttons-set form .button2 {
  padding: 0;
}
/* line 485, ../scss/cms/_customer-account.scss */
body.customer-account .manage-payment-method .buttons-set form .button2 span {
  text-transform: capitalize;
  text-decoration: none;
}
/* line 494, ../scss/cms/_customer-account.scss */
body.customer-account .manage-payment-method .input-box select {
  margin-top: 0;
  margin-bottom: 8px;
}
/* line 498, ../scss/cms/_customer-account.scss */
body.customer-account .manage-payment-method .input-box.has-icon {
  position: relative;
}
/* line 500, ../scss/cms/_customer-account.scss */
body.customer-account .manage-payment-method .input-box.has-icon input {
  padding-left: 32px;
}
/* line 503, ../scss/cms/_customer-account.scss */
body.customer-account .manage-payment-method .input-box.has-icon .icon-font {
  position: absolute;
  left: 8px;
  top: 9px;
}
/* line 513, ../scss/cms/_customer-account.scss */
body.customer-account .featherlight-content {
  text-align: center;
  margin: 0 auto;
  width: 375px;
  padding: 30px;
  border-bottom: 0;
}
/* line 520, ../scss/cms/_customer-account.scss */
body.customer-account .featherlight-content p {
  font-size: 18px;
  color: #777e80;
  margin-bottom: 10px;
  line-height: 1.2;
}
/* line 527, ../scss/cms/_customer-account.scss */
body.customer-account .featherlight-content .icon-checkmark {
  color: #6fc315;
  font-size: 50px;
}
/* line 532, ../scss/cms/_customer-account.scss */
body.customer-account .featherlight-content button {
  margin: 30px auto 0 auto;
  padding: 10px 100px 7px;
}
@media screen and (max-width: 920px) {
  /* line 540, ../scss/cms/_customer-account.scss */
  body.customer-account #my-tickets-table td, body.customer-account #my-tickets-table th {
    width: 25%;
  }
  /* line 550, ../scss/cms/_customer-account.scss */
  body.customer-account #my-tickets-table .subject {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  /* line 557, ../scss/cms/_customer-account.scss */
  body.customer-account .col-main {
    padding-left: 0;
    margin-left: 0;
  }
  /* line 561, ../scss/cms/_customer-account.scss */
  body.customer-account .col-left {
    width: 100%;
  }
  /* line 565, ../scss/cms/_customer-account.scss */
  body.customer-account .manage-payment-method .col2-set .col-1,
  body.customer-account .manage-payment-method .col2-set .col-2 {
    padding-top: 0;
  }
  /* line 574, ../scss/cms/_customer-account.scss */
  body.customer-account .manage-payment-method .buttons-set form .button2 {
    padding: 0;
    width: auto;
  }
}
@media screen and (max-width: 600px) {
  /* line 586, ../scss/cms/_customer-account.scss */
  body.customer-account #my-tickets-table .agent {
    display: none;
  }
  /* line 593, ../scss/cms/_customer-account.scss */
  body.customer-account .my-account #my-tickets-table td, body.customer-account .my-account #my-tickets-table th,
  body.customer-account .my-account #my-orders-table td,
  body.customer-account .my-account #my-orders-table th {
    width: 33%;
  }
  /* line 596, ../scss/cms/_customer-account.scss */
  body.customer-account .my-account #my-tickets-table th.status,
  body.customer-account .my-account #my-tickets-table td.status,
  body.customer-account .my-account #my-orders-table th.status,
  body.customer-account .my-account #my-orders-table td.status {
    text-align: right;
  }
  /* line 601, ../scss/cms/_customer-account.scss */
  body.customer-account .my-account .linearize-table-large tbody td.order-quantity {
    text-align: center;
  }
  /* line 604, ../scss/cms/_customer-account.scss */
  body.customer-account .my-account .linearize-table-large tbody td.order-price {
    text-align: left;
  }
  /* line 607, ../scss/cms/_customer-account.scss */
  body.customer-account .my-account .linearize-table-large tbody td.order-subtotal {
    text-align: right;
  }
  /* line 612, ../scss/cms/_customer-account.scss */
  body.customer-account .my-account #my-orders-table thead th {
    display: table-cell;
  }
  /* line 617, ../scss/cms/_customer-account.scss */
  body.customer-account .my-account #my-orders-table tbody td {
    display: table-cell;
  }
  /* line 623, ../scss/cms/_customer-account.scss */
  body.customer-account .my-account #my-orders-table tfoot tr td {
    width: 80%;
  }
  /* line 626, ../scss/cms/_customer-account.scss */
  body.customer-account .my-account #my-orders-table tfoot tr td.last {
    width: 20%;
    text-align: right;
  }
  /* line 633, ../scss/cms/_customer-account.scss */
  body.customer-account .my-account #my-orders-table th.order-product,
  body.customer-account .my-account #my-orders-table td.order-product {
    width: 66%;
    text-align: left;
  }
  /* line 638, ../scss/cms/_customer-account.scss */
  body.customer-account .my-account #my-orders-table th.order-quantity,
  body.customer-account .my-account #my-orders-table td.order-quantity {
    width: 40px !important;
  }
  /* line 642, ../scss/cms/_customer-account.scss */
  body.customer-account .my-account #my-orders-table th.order-price,
  body.customer-account .my-account #my-orders-table td.order-price {
    width: 70px !important;
  }
  /* line 646, ../scss/cms/_customer-account.scss */
  body.customer-account .my-account #my-orders-table th.order-subtotal,
  body.customer-account .my-account #my-orders-table td.order-subtotal {
    width: 77px !important;
  }
  /* line 652, ../scss/cms/_customer-account.scss */
  body.customer-account .my-account .linearize-table-large tbody td[data-rwd-label]:before {
    display: none;
  }
}
@media screen and (max-width: 410px) {
  /* line 664, ../scss/cms/_customer-account.scss */
  body.customer-account .my-account #my-orders-table tfoot tr td {
    width: 73%;
  }
  /* line 667, ../scss/cms/_customer-account.scss */
  body.customer-account .my-account #my-orders-table tfoot tr td.last {
    width: 27%;
  }
}
@media screen and (max-width: 480px) {
  /* line 677, ../scss/cms/_customer-account.scss */
  body.customer-account .main-container.full-width {
    padding: 0;
  }
  /* line 682, ../scss/cms/_customer-account.scss */
  body.customer-account .my-account #my-orders-table td.order-product {
    width: 66%;
    text-align: left;
  }
}

/* line 693, ../scss/cms/_customer-account.scss */
body.sales-order-view .box-payment .subtitle {
  display: none;
}

/* line 701, ../scss/cms/_customer-account.scss */
body.isIE .my-account select {
  padding-top: 6px;
  padding-bottom: 6px;
}
/* line 707, ../scss/cms/_customer-account.scss */
body.isIE .manage-payment-method select {
  padding-top: 6px;
  padding-bottom: 6px;
}

/* ============================================ *
 * Affiliates Page
 * Created by Bret Miller 1/4/2017
 * ============================================ */
/* line 8, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper-outer-white {
  width: 100%;
  background: #fff;
}
/* line 13, ../scss/cms/_affiliates.scss */
.cms-affiliates .cms-page-view .main-info p {
  font-size: 18px;
}
/* line 17, ../scss/cms/_affiliates.scss */
.cms-affiliates .cms-page-view .std h2 {
  color: #029fcf;
}
/* line 21, ../scss/cms/_affiliates.scss */
.cms-affiliates .gray {
  background-color: #edf2f3;
}
/* line 25, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 25px;
}
/* line 30, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .main-info {
  padding-top: 70px;
}
/* line 33, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .main-info div.image {
  float: right;
  max-width: 424px;
  max-height: 483px;
  padding-right: 40px;
}
/* line 40, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .main-info .affiliate-program {
  padding-left: 40px;
}
/* line 43, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .main-info .affiliate-program h4 {
  text-transform: uppercase;
  color: #999;
  font-size: 14px;
  margin-bottom: 25px;
}
/* line 50, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .main-info .affiliate-program h2 {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 50px;
  color: #029fcf;
}
/* line 57, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .main-info .affiliate-program p.notice {
  max-width: 420px;
  font-weight: normal;
  line-height: 130%;
}
/* line 63, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .main-info .affiliate-program h3 {
  margin-top: 50px;
  margin-bottom: 22px;
  font-size: 30px;
  color: #029fcf;
}
/* line 70, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .main-info .affiliate-program ul {
  max-width: 460px;
  list-style: none;
}
/* line 74, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .main-info .affiliate-program ul li {
  margin-bottom: 20px;
  background: url(http://d2jxgilrm2knjf.cloudfront.net/skin/frontend/default/blackstoneaudio/images/icon_checkmark-large.png) no-repeat 0 3px;
  padding-left: 33px;
}
/* line 81, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .main-info .affiliate-program a {
  margin-left: 64px;
  font-size: 18px;
  margin-bottom: 70px;
}
/* line 90, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .how-it-works {
  margin-bottom: 50px;
}
/* line 93, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .how-it-works h2 {
  font-size: 40px;
  color: #029fcf;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
/* line 101, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .how-it-works ol {
  max-width: 978px;
  height: 249px;
  /* background-image:url('//d2q0f503qhbqv9.cloudfront.net/general_assets/HowItWorks.png'); */
  background-repeat: no-repeat;
  background-position: 0 0;
  list-style: none;
  margin: 0 auto;
}
/* line 110, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .how-it-works ol li:first-child {
  margin-left: 0;
}
/* line 115, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .how-it-works #one-two-three li {
  float: left;
  margin-left: 0;
  padding: 66px 52px 0 22px;
  line-height: 1.4;
  font-size: 20px;
  color: #fff;
  position: relative;
}
/* line 124, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .how-it-works #one-two-three li div {
  position: absolute;
  left: 0;
  top: 0;
}
/* line 130, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .how-it-works #one-two-three li .hoitwo {
  padding: 68px 0 0 23px;
  max-width: 260px;
}
/* line 135, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .how-it-works #one-two-three li img {
  width: 100%;
}
/* line 140, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .how-it-works #hoitwo-01 {
  width: 326px;
  height: 249px;
}
/* line 145, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .how-it-works #hoitwo-02 {
  width: 327px;
  height: 249px;
}
/* line 150, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .how-it-works #hoitwo-03 {
  width: 325px;
  height: 249px;
}
/* line 155, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .how-it-works #join-aff-pro {
  margin: 0 auto 0 auto;
  font-size: 18px;
  line-height: 120%;
  max-width: 900px;
  text-align: left;
}
/* line 164, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .about {
  padding-left: 40px;
}
/* line 167, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .about h3 {
  font-size: 30px;
  color: #029fcf;
  margin-top: 50px;
  margin-bottom: 25px;
  float: left;
}
/* line 175, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .about div.image {
  width: 301px;
  height: 213px;
  float: right;
  margin-right: 40px;
  margin-top: 70px;
}
/* line 183, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .about #join-aff-pro-02 {
  font-size: 18px;
  line-height: 120%;
  max-width: 550px;
  float: left;
  clear: left;
  text-align: left;
  margin-bottom: 50px;
}
/* line 194, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .ready {
  margin-bottom: 50px;
}
/* line 197, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .ready div.image {
  width: 286px;
  height: 79px;
  float: left;
  margin: 70px auto 0 auto;
}
/* line 204, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .ready h3 {
  font-size: 30px;
  color: #029fcf;
  margin-top: 50px;
  margin-bottom: 25px;
  float: right;
  max-width: 730px;
  padding-right: 40px;
  padding-left: 40px;
  width: 100%;
}
/* line 216, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .ready #join-aff-pro-03 {
  font-size: 18px;
  line-height: 120%;
  max-width: 730px;
  padding-right: 40px;
  padding-left: 40px;
  float: right;
  text-align: left;
  margin-bottom: 0;
  width: 100%;
}
/* line 229, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .apply-now {
  width: 100%;
  margin: 50px auto;
  padding-top: 50px;
  text-align: center;
}
/* line 236, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .disclaimer-1 {
  border-top: 1px #373c3e solid;
  padding-top: 30px;
  margin-bottom: 30px;
}
/* line 241, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .disclaimer-1 p {
  font-size: 14px;
}
/* line 246, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .questions {
  margin: 0 auto;
  max-width: 505px;
  padding: 0 0 20px 0;
}
/* line 251, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .questions .image {
  width: 62px;
  height: 61px;
  float: left;
}
/* line 257, ../scss/cms/_affiliates.scss */
.cms-affiliates .section-wrapper .questions p {
  font-size: 20px;
  float: left;
  margin-top: 24px;
  margin-left: 5px;
}
@media screen and (max-width: 1075px) {
  /* line 273, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .ready h3 {
    padding-right: 0;
    max-width: 600px;
  }
  /* line 278, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .ready #join-aff-pro-03 {
    padding-right: 0;
    max-width: 600px;
  }
}
@media screen and (max-width: 1037px) {
  /* line 289, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .how-it-works ol {
    height: 498px;
    max-width: 653px;
  }
  /* line 294, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .how-it-works #hoitwo-03 {
    left: 162.5px;
  }
}
@media screen and (max-width: 991px) {
  /* line 304, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .main-info div.image {
    padding-right: 0;
  }
  /* line 309, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .about {
    padding-left: 0;
  }
  /* line 312, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .about div.image {
    margin: 70px auto 0 auto;
  }
}
@media screen and (max-width: 945px) {
  /* line 322, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .main-info .affiliate-program {
    padding-left: 0;
    padding-right: 40px;
  }
  /* line 330, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .ready div.image {
    float: none;
    text-align: center;
  }
  /* line 335, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .ready h3 {
    max-width: none;
    padding-left: 0;
    float: none;
    text-align: center;
  }
  /* line 342, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .ready #join-aff-pro-03 {
    max-width: none;
    padding-left: 0;
    float: none;
    text-align: center;
  }
  /* line 350, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .disclaimer-1 p {
    text-align: center;
  }
}
@media screen and (max-width: 910px) {
  /* line 358, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .about {
    padding-bottom: 50px;
  }
  /* line 361, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .about div.image {
    float: none;
    text-align: center;
    margin-top: 0;
    padding-top: 50px;
    height: 263px;
  }
  /* line 369, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .about h3 {
    float: none;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 25px;
    padding-top: 50px;
  }
  /* line 377, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .about #join-aff-pro-02 {
    float: none;
    text-align: center;
    margin: 0 auto;
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  /* line 394, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .main-info div.image {
    float: none;
    margin: 0 auto;
    text-align: center;
  }
  /* line 399, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .main-info .affiliate-program {
    float: none;
    margin: 0 auto;
    text-align: center;
    padding-right: 0;
  }
  /* line 404, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .main-info .affiliate-program p.notice {
    max-width: none;
    margin: 0 auto;
    text-align: center;
  }
  /* line 409, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .main-info .affiliate-program ul {
    max-width: none;
  }
  /* line 412, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .main-info .affiliate-program button {
    margin: 0 auto 70px auto;
    text-align: center;
  }
  /* line 416, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .main-info .affiliate-program a {
    margin-left: 0;
  }
}
@media screen and (max-width: 712px) {
  /* line 427, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .how-it-works ol {
    height: 747px;
    max-width: 327px;
  }
  /* line 432, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .how-it-works #hoitwo-03 {
    left: 0;
  }
}
@media screen and (max-width: 546px) {
  /* line 442, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .questions .image {
    display: none;
  }
  /* line 445, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .questions img {
    display: none;
  }
  /* line 449, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .questions p {
    margin: 24px auto 0 auto;
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  /* line 459, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper {
    padding: 0 15px;
  }
}
@media screen and (max-width: 440px) {
  /* line 469, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .main-info .affiliate-program ul li {
    margin-left: 0;
  }
}
@media screen and (max-width: 350px) {
  /* line 481, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .how-it-works #one-two-three li {
    left: -6px;
  }
}
@media screen and (max-width: 340px) {
  /* line 491, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .how-it-works #one-two-three li {
    left: -16px;
  }
}
@media screen and (max-width: 330px) {
  /* line 501, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .about img {
    width: 290px;
  }
}
@media screen and (max-width: 325px) {
  /* line 509, ../scss/cms/_affiliates.scss */
  .cms-affiliates .section-wrapper .how-it-works #hoitwo-01,
  .cms-affiliates .section-wrapper .how-it-works #hoitwo-02,
  .cms-affiliates .section-wrapper .how-it-works #hoitwo-03 {
    width: 320px;
  }
}

/* ============================================ *
 * About Us Page
 * Created by Bret Miller 3/6/2017
 * ============================================ */
/* line 7, ../scss/cms/_about-us.scss */
.cms-about-us .main-container {
  padding-bottom: 0;
}
/* line 11, ../scss/cms/_about-us.scss */
.cms-about-us #about-us-top {
  height: 476px;
  background-color: #02b0d8;
  background-image: url(//d2q0f503qhbqv9.cloudfront.net/site_assets/Audy_About_Us_Background_Top.png);
  background-repeat: no-repeat;
  background-position: center -110px;
}
/* line 18, ../scss/cms/_about-us.scss */
.cms-about-us #about-us-top .about-us-top-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
/* line 24, ../scss/cms/_about-us.scss */
.cms-about-us #about-us-top h1 {
  font-size: 63px;
  line-height: 63px;
  color: #fff;
  padding-top: 60px;
  margin-bottom: 15px;
}
/* line 32, ../scss/cms/_about-us.scss */
.cms-about-us #about-us-top p {
  font-size: 21px;
  color: #fff;
  text-align: center;
}
/* line 39, ../scss/cms/_about-us.scss */
.cms-about-us #about-us-body {
  background-color: #fff;
}
/* line 42, ../scss/cms/_about-us.scss */
.cms-about-us #about-us-body .about-us-body-top {
  margin: 0 auto;
  text-align: center;
  max-width: 660px;
}
/* line 48, ../scss/cms/_about-us.scss */
.cms-about-us #about-us-body .about-us-body-top h2 {
  font-size: 36px;
  line-height: 36px;
  padding-top: 85px;
}
/* line 54, ../scss/cms/_about-us.scss */
.cms-about-us #about-us-body .about-us-body-top p {
  font-size: 21px;
  color: #777e80;
  text-align: center;
  margin-bottom: 40px;
}
/* line 61, ../scss/cms/_about-us.scss */
.cms-about-us #about-us-body #we-love-audiobooks {
  padding-bottom: 60px;
  padding-top: 60px;
  margin: 0 auto;
}
/* line 67, ../scss/cms/_about-us.scss */
.cms-about-us #about-us-body #about-us-timeline-tablet,
.cms-about-us #about-us-body #about-us-timeline-mobile {
  display: none;
}
/* line 72, ../scss/cms/_about-us.scss */
.cms-about-us #about-us-body #about-us-timeline {
  margin: 0 81.5px;
  padding-bottom: 60px;
}
/* line 76, ../scss/cms/_about-us.scss */
.cms-about-us #about-us-body #about-us-timeline .timeline-row {
  clear: left;
  height: 147px;
}
/* line 81, ../scss/cms/_about-us.scss */
.cms-about-us #about-us-body #about-us-timeline .timeline1,
.cms-about-us #about-us-body #about-us-timeline .timeline3 {
  float: left;
  max-width: 500px;
  width: calc(50% - 11.5px);
  height: 147px;
}
/* line 89, ../scss/cms/_about-us.scss */
.cms-about-us #about-us-body #about-us-timeline .timeline-row .timeline2 {
  float: left;
}
/* line 93, ../scss/cms/_about-us.scss */
.cms-about-us #about-us-body #about-us-timeline .timeline-year {
  padding: 0 14px;
  float: left;
  font-size: 21px;
  line-height: 21px;
  padding-top: 60px;
}
/* line 101, ../scss/cms/_about-us.scss */
.cms-about-us #about-us-body #about-us-timeline .ty-2021 {
  padding-right: 0;
  padding-top: 69px;
}
/* line 106, ../scss/cms/_about-us.scss */
.cms-about-us #about-us-body #about-us-timeline .ty-shift {
  position: relative;
  left: 5px;
}
/* line 111, ../scss/cms/_about-us.scss */
.cms-about-us #about-us-body #about-us-timeline .timeline-pic {
  float: left;
}
/* line 115, ../scss/cms/_about-us.scss */
.cms-about-us #about-us-body #about-us-timeline .timeline-desc {
  float: left;
  width: calc(100% - 225px);
  font-size: 21px;
  color: #777e80;
  padding-left: 14px;
  padding-top: 38px;
}
/* line 124, ../scss/cms/_about-us.scss */
.cms-about-us #about-us-body #about-us-timeline .timeline-desc {
  float: left;
  width: calc(100% - 225px);
  font-size: 21px;
  color: #777e80;
  padding-left: 14px;
  padding-top: 38px;
}
/* line 133, ../scss/cms/_about-us.scss */
.cms-about-us #about-us-body #about-us-timeline .timeline-row .timeline1 .timeline-desc {
  padding-left: 0;
  padding-right: 14px;
  text-align: right;
}
@media screen and (max-width: 1227px) {
  /* line 144, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline {
    margin: 0;
  }
}
@media screen and (max-width: 867px) {
  /* line 150, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 800px) {
  /* line 156, ../scss/cms/_about-us.scss */
  .cms-about-us .col1-layout .col-main {
    margin-bottom: 0;
  }
  /* line 161, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body .about-us-body-top {
    text-align: center;
    max-width: 653px;
  }
  /* line 166, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline {
    display: none;
  }
  /* line 170, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-tablet {
    display: block;
    padding-bottom: 60px;
    padding-left: 55px;
    height: 1117px;
  }
  /* line 176, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-tablet .timeline-tablet {
    float: left;
  }
  /* line 180, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-tablet .timeline1,
  .cms-about-us #about-us-body #about-us-timeline-tablet .timeline-row .timeline2,
  .cms-about-us #about-us-body #about-us-timeline-tablet .timeline3,
  .cms-about-us #about-us-body #about-us-timeline-tablet .timeline-year,
  .cms-about-us #about-us-body #about-us-timeline-tablet .timeline-circle-mobile {
    float: left;
  }
  /* line 188, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-tablet .timeline-row {
    clear: left;
    height: 182px;
  }
  /* line 193, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-tablet .timeline-year {
    padding: 0 14px 0 4px;
    float: left;
    font-size: 21px;
    line-height: 21px;
    padding-top: 60px;
  }
  /* line 201, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-tablet .timeline-pic {
    float: left;
  }
  /* line 205, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-tablet .timeline-desc {
    float: left;
    width: 360px;
    font-size: 21px;
    color: #777e80;
    padding-left: 14px;
    padding-top: 38px;
  }
}
@media screen and (max-width: 737px) {
  /* line 219, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-tablet {
    padding-left: 0;
  }
}
@media screen and (max-width: 687px) {
  /* line 225, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-top h1 {
    padding-top: 40px;
  }
  /* line 229, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-tablet .timeline-desc {
    width: 280px;
  }
}
@media screen and (max-width: 666px) {
  /* line 235, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-tablet {
    padding-left: 0;
  }
}
@media screen and (max-width: 600px) {
  /* line 242, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-tablet {
    display: none;
  }
  /* line 246, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-mobile {
    display: block;
    padding-bottom: 40px;
    padding-left: 0;
    height: auto;
  }
  /* line 252, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-mobile .timeline1,
  .cms-about-us #about-us-body #about-us-timeline-mobile .timeline-row .timeline2,
  .cms-about-us #about-us-body #about-us-timeline-mobile .timeline3,
  .cms-about-us #about-us-body #about-us-timeline-mobile .timeline-year,
  .cms-about-us #about-us-body #about-us-timeline-mobile .timeline-circle-mobile {
    clear: left;
    text-align: center;
  }
  /* line 261, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-mobile .timeline-pic {
    clear: left;
    text-align: center;
    padding-bottom: 8px;
  }
  /* line 267, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-mobile .timeline-pic img {
    margin: 0 auto;
  }
  /* line 271, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-mobile .timeline-row {
    clear: left;
    height: auto;
    width: 100%;
  }
  /* line 277, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-mobile .timeline-year {
    padding: 0;
    clear: left;
    font-size: 21px;
    line-height: 1.5;
  }
  /* line 284, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-mobile .timeline-desc {
    clear: left;
    width: auto;
    font-size: 21px;
    padding-left: 0;
    padding-top: 0;
    text-align: center;
  }
  /* line 293, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-mobile #see-more-timeline {
    display: none;
  }
  /* line 297, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-mobile .timeline-desc {
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 579px) {
  /* line 306, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-top h1 {
    font-size: 50px;
    line-height: 50px;
  }
}
@media screen and (max-width: 480px) {
  /* line 314, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-top h1 {
    font-size: 36px;
    line-height: 36px;
  }
  /* line 319, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-top p {
    font-size: 18px;
    line-height: 1.4;
  }
  /* line 326, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body .pager_icon {
    display: none;
  }
  /* line 330, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #we-love-audiobooks {
    padding-bottom: 40px;
    padding-top: 40px;
  }
  /* line 336, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body .about-us-body-top h2 {
    padding-top: 40px;
  }
  /* line 340, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body .about-us-body-top p {
    font-size: 18px;
    margin-bottom: 35px;
  }
  /* line 347, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-mobile .timeline-year {
    font-size: 18px;
  }
  /* line 351, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-mobile .timeline-desc {
    font-size: 18px;
  }
  /* line 355, ../scss/cms/_about-us.scss */
  .cms-about-us #about-us-body #about-us-timeline-mobile .ty-desc {
    padding-bottom: 0;
  }
}

/* ============================================ *
 * Contact Us Page
 * Created by Bret Miller 03/17/17
 * ============================================ */
/* line 7, ../scss/cms/_contact-us.scss */
.cms-contact-us .col-1-of-2 {
  float: left;
  width: 50%;
  padding: 40px 20px;
}
/* line 12, ../scss/cms/_contact-us.scss */
.cms-contact-us h1 {
  margin: 0 auto;
  padding: 38px 0;
  background-color: #fff;
  text-align: center;
  font-size: 36px;
  line-height: 36px;
}
/* line 20, ../scss/cms/_contact-us.scss */
.cms-contact-us li {
  list-style: none;
  list-style-type: none;
}
/* line 24, ../scss/cms/_contact-us.scss */
.cms-contact-us h4 {
  text-align: left;
  font-size: 28px;
  line-height: 28px;
  margin-bottom: 30px;
}
/* line 30, ../scss/cms/_contact-us.scss */
.cms-contact-us .contact-inner {
  padding: 0 100px;
}
/* line 33, ../scss/cms/_contact-us.scss */
.cms-contact-us .has-icon {
  position: relative;
}
/* line 36, ../scss/cms/_contact-us.scss */
.cms-contact-us .input-box .icon-font {
  position: absolute;
  left: 8px;
  top: 9px;
}
/* line 41, ../scss/cms/_contact-us.scss */
.cms-contact-us .input-box input {
  padding-left: 30px;
}
/* line 44, ../scss/cms/_contact-us.scss */
.cms-contact-us .input-box textarea {
  background: #fff;
  height: 257px;
  outline: none;
}
/* line 50, ../scss/cms/_contact-us.scss */
.cms-contact-us #contactForm .contact-recaptcha {
  margin-top: 20px;
}
/* line 53, ../scss/cms/_contact-us.scss */
.cms-contact-us #contactForm .contact-recaptcha .g-recaptcha div {
  margin: 0 auto;
}
/* line 58, ../scss/cms/_contact-us.scss */
.cms-contact-us #contactForm #advice-required-entry-hiddenRecaptcha {
  text-align: center;
}
/* line 62, ../scss/cms/_contact-us.scss */
.cms-contact-us .buttons-set {
  margin: 10px auto 0 auto;
  padding-top: 20px;
  border-top: 0;
  text-align: center;
}
/* line 68, ../scss/cms/_contact-us.scss */
.cms-contact-us .form-list .control {
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  /* line 73, ../scss/cms/_contact-us.scss */
  .cms-contact-us .contact-inner {
    padding: 0 50px;
  }
}
@media screen and (max-width: 900px) {
  /* line 79, ../scss/cms/_contact-us.scss */
  .cms-contact-us .contact-inner {
    padding: 0;
  }
}
@media screen and (max-width: 800px) {
  /* line 85, ../scss/cms/_contact-us.scss */
  .cms-contact-us .col-1-of-2 {
    float: none;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  /* line 92, ../scss/cms/_contact-us.scss */
  .cms-contact-us .col-1-of-2 {
    padding: 40px 0;
  }
}
@media screen and (max-width: 374px) {
  /* line 98, ../scss/cms/_contact-us.scss */
  .cms-contact-us .featherlight-content {
    width: 320px;
  }
}

/* line 107, ../scss/cms/_contact-us.scss */
body.contact-template #contactForm textarea {
  height: 227px;
}
/* line 110, ../scss/cms/_contact-us.scss */
body.contact-template #contactForm li {
  list-style: none;
}
/* line 114, ../scss/cms/_contact-us.scss */
body.contact-template .buttons-set {
  border-top: 0;
}

/* ============================================ *
 * Request catalog Page
 * Created by Bret Miller <bret.miller@blackstoneaudio.com>
 * ============================================ */
/* line 7, ../scss/cms/_request-catalog.scss */
.cms-request-catalog .col-1-of-2 {
  float: left;
  width: 50%;
  padding: 40px 20px;
  margin: 0 auto;
  text-align: center;
}
/* line 14, ../scss/cms/_request-catalog.scss */
.cms-request-catalog h1 {
  margin: 0 auto;
  padding: 38px 0;
  background-color: #fff;
  text-align: center;
  font-size: 36px;
  line-height: 36px;
}
/* line 22, ../scss/cms/_request-catalog.scss */
.cms-request-catalog h3.send-message {
  text-align: left;
}
/* line 25, ../scss/cms/_request-catalog.scss */
.cms-request-catalog h3.send-message2 {
  display: none;
}
/* line 28, ../scss/cms/_request-catalog.scss */
.cms-request-catalog li {
  list-style: none;
  list-style-type: none;
}
/* line 32, ../scss/cms/_request-catalog.scss */
.cms-request-catalog .request-inner {
  padding: 0 100px;
}
/* line 35, ../scss/cms/_request-catalog.scss */
.cms-request-catalog .catalog-image {
  clear: left;
}
/* line 38, ../scss/cms/_request-catalog.scss */
.cms-request-catalog .download-text {
  font-size: 16px;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  color: #fff;
  background: #02b2e7;
  padding: 7px 0;
}
/* line 45, ../scss/cms/_request-catalog.scss */
.cms-request-catalog .d-text-link {
  color: #fff;
}
/* line 48, ../scss/cms/_request-catalog.scss */
.cms-request-catalog .downloadButton {
  clear: left;
  margin-top: 30px;
}
/* line 52, ../scss/cms/_request-catalog.scss */
.cms-request-catalog .has-icon {
  position: relative;
}
/* line 55, ../scss/cms/_request-catalog.scss */
.cms-request-catalog .input-box .icon-font {
  position: absolute;
  left: 8px;
  top: 9px;
}
/* line 60, ../scss/cms/_request-catalog.scss */
.cms-request-catalog .input-box input {
  padding-left: 30px;
}
/* line 63, ../scss/cms/_request-catalog.scss */
.cms-request-catalog .input-box textarea {
  background: #fff;
  height: 257px;
  outline: none;
}
/* line 68, ../scss/cms/_request-catalog.scss */
.cms-request-catalog .half-width-left {
  width: 48%;
  float: left;
  margin-right: 2%;
  margin-bottom: 10px;
}
/* line 74, ../scss/cms/_request-catalog.scss */
.cms-request-catalog .half-width-right {
  width: 48%;
  float: left;
  margin-left: 2%;
  margin-bottom: 10px;
}
/* line 81, ../scss/cms/_request-catalog.scss */
.cms-request-catalog.isFirefox .bsaStyledSelect {
  height: 40px;
}
/* line 85, ../scss/cms/_request-catalog.scss */
.cms-request-catalog .catalog-newsletter {
  text-align: left;
}
/* line 89, ../scss/cms/_request-catalog.scss */
.cms-request-catalog #requestcatalogForm .contact-recaptcha {
  margin-top: 20px;
}
/* line 92, ../scss/cms/_request-catalog.scss */
.cms-request-catalog #requestcatalogForm .contact-recaptcha .g-recaptcha div {
  margin: 0 auto;
}
/* line 97, ../scss/cms/_request-catalog.scss */
.cms-request-catalog #requestcatalogForm #advice-required-entry-hiddenRecaptcha {
  text-align: center;
}
/* line 101, ../scss/cms/_request-catalog.scss */
.cms-request-catalog .buttons-set {
  margin: 10px auto 0 auto;
  padding-top: 20px;
  border-top: 0;
  text-align: center;
}
/* line 107, ../scss/cms/_request-catalog.scss */
.cms-request-catalog .form-list .control {
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  /* line 112, ../scss/cms/_request-catalog.scss */
  .cms-request-catalog .request-inner {
    padding: 0 50px;
  }
}
@media screen and (max-width: 900px) {
  /* line 118, ../scss/cms/_request-catalog.scss */
  .cms-request-catalog .request-inner {
    padding: 0;
  }
}
@media screen and (max-width: 800px) {
  /* line 124, ../scss/cms/_request-catalog.scss */
  .cms-request-catalog .col-1-of-2 {
    float: none;
    width: 100%;
  }
  /* line 128, ../scss/cms/_request-catalog.scss */
  .cms-request-catalog .download-text {
    max-width: 460px;
    margin: 0 auto;
  }
  /* line 132, ../scss/cms/_request-catalog.scss */
  .cms-request-catalog .catalog-image {
    margin: 0 auto;
  }
  /* line 135, ../scss/cms/_request-catalog.scss */
  .cms-request-catalog h3.send-message {
    display: none;
  }
  /* line 138, ../scss/cms/_request-catalog.scss */
  .cms-request-catalog h3.send-message2 {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  /* line 144, ../scss/cms/_request-catalog.scss */
  .cms-request-catalog .col-1-of-2 {
    padding: 40px 0;
  }
}
@media screen and (max-width: 374px) {
  /* line 150, ../scss/cms/_request-catalog.scss */
  .cms-request-catalog .featherlight-content {
    width: 320px;
  }
}

/* ============================================ *
 * Digital Downloads Coming Soon Page for Audio Editions
 * Created by Bret Miller 4/25/2018
 * ============================================ */
/* line 7, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .main-container {
  background-color: #fff;
}
/* line 12, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads #dd-banner-background {
  background-image: linear-gradient(#232445, #686bb4);
  height: 460px;
  width: 100%;
}
/* line 18, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-col {
  width: 50%;
  float: left;
  height: 460px;
}
/* line 23, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-col.dd-col-1 img {
  margin: 78px auto 0 auto;
  max-width: 322px;
  max-height: 388px;
}
/* line 29, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-col .dd-col-2-inner {
  max-width: 400px;
  margin: 0 auto;
}
/* line 32, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-col .dd-col-2-inner h1 {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  font-size: 48px;
  line-height: 1.2;
  color: #fff !important;
  margin-top: 71px;
  margin-bottom: 4px;
}
/* line 40, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-col .dd-col-2-inner li {
  font-size: 24px;
  line-height: 1.4;
  color: #fff;
  margin-left: 24px;
}
/* line 46, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-col .dd-col-2-inner h4 {
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  margin: 28px 0 2px 0;
}
/* line 52, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-col .dd-col-2-inner form {
  width: 260px;
}
/* line 55, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-col .dd-col-2-inner .icon-font {
  color: #373c3e;
  font-size: 18px;
}
/* line 59, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-col .dd-col-2-inner #email3 {
  margin-bottom: 14px;
}
/* line 62, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-col .dd-col-2-inner .validation-advice {
  padding-bottom: 0;
  line-height: 1;
  margin-top: -7px;
  margin-bottom: 5px;
}
/* line 68, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-col .dd-col-2-inner .buttons-set {
  clear: both;
  border-top: 0;
  text-align: left;
  margin: 0;
  padding: 0;
}
/* line 74, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-col .dd-col-2-inner .buttons-set button {
  width: 100%;
}
/* line 81, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-col2 {
  width: 33%;
  float: left;
  margin: 75px 0;
}
/* line 85, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-col2 img {
  margin: 0 auto;
}
/* line 88, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-col2 .dd-col2-text {
  clear: left;
  text-align: center;
  max-width: 220px;
  font-size: 21px;
  margin: 10px auto;
}
/* line 97, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-images-container {
  clear: left;
  background-image: url("/media/wysiwyg/dd-images-composite.png");
  height: 225px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
/* line 106, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-images-container2 {
  display: none;
}
/* line 110, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-faq-container {
  clear: left;
  max-width: 830px;
  margin: 0 auto;
  padding-top: 75px;
}
/* line 115, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-faq-container h2 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 55px;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 121, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-faq-container .dd-col3 {
  width: 50%;
  float: left;
}
/* line 124, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-faq-container .dd-col3 .dd-faq {
  padding: 0 40px;
  clear: left;
}
/* line 127, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-faq-container .dd-col3 .dd-faq h3 {
  font-size: 21px;
  margin-bottom: 10px;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 132, ../scss/cms/_digital-downloads.scss */
.ae-digital-downloads .dd-faq-container .dd-col3 .dd-faq p {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  /* line 141, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-col2 .dd-col2-text {
    line-height: 1.2;
  }
}
@media screen and (max-width: 820px) {
  /* line 149, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-col.dd-col-2 {
    padding-left: 40px;
  }
  /* line 153, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-col .dd-col-2-inner h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 800px) {
  /* line 161, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-images-container {
    display: none;
  }
  /* line 165, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-images-container2 {
    display: block;
  }
  /* line 167, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-images-container2 .dd-images {
    float: left;
    width: 50%;
  }
  /* line 171, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-images-container2 .dd-images-pad-1 {
    padding: 0 0 0 10px;
  }
  /* line 174, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-images-container2 .dd-images-pad-2 {
    padding: 0 10px 0 0;
  }
}
@media screen and (max-width: 768px) {
  /* line 181, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads #dd-banner-background {
    height: 340px;
  }
  /* line 184, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-col {
    height: 340px;
  }
  /* line 186, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-col.dd-col-1 {
    display: none;
  }
  /* line 189, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-col.dd-col-2 {
    width: 100%;
    padding-left: 0;
  }
  /* line 193, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-col .dd-col-2-inner {
    max-width: 100%;
  }
  /* line 195, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-col .dd-col-2-inner h1 {
    text-align: center;
    margin-top: 57px;
  }
  /* line 199, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-col .dd-col-2-inner ul {
    justify-content: center;
    display: flex;
  }
  /* line 203, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-col .dd-col-2-inner li {
    float: left;
    font-size: 18px;
  }
  /* line 207, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-col .dd-col-2-inner h4 {
    clear: left;
    width: 260px;
    margin: 0 auto;
  }
  /* line 212, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-col .dd-col-2-inner form {
    margin: 0 auto;
  }
  /* line 218, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-col2 img {
    padding: 0 10px;
  }
  /* line 221, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-col2 .dd-col2-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  /* line 228, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads #dd-banner-background {
    height: 440px;
  }
  /* line 233, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-col .dd-col-2-inner h1 {
    text-align: left;
  }
  /* line 236, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-col .dd-col-2-inner ul {
    max-width: 200px;
    display: block;
  }
  /* line 240, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-col .dd-col-2-inner h4 {
    margin: 0;
    padding-top: 40px;
  }
  /* line 244, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-col .dd-col-2-inner form {
    margin: 0;
    width: 100%;
  }
  /* line 250, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-col2 {
    width: 100%;
    float: none;
    margin: 30px 0 0 0;
  }
  /* line 254, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-col2:last-child {
    margin-bottom: 30px;
  }
  /* line 259, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-faq-container h2 {
    font-size: 24px;
    margin-bottom: 35px;
  }
  /* line 263, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-faq-container .dd-col3 {
    width: 100%;
  }
  /* line 265, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-faq-container .dd-col3 .dd-faq {
    padding: 0;
  }
  /* line 271, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-images-container2 .dd-images {
    width: 100%;
  }
  /* line 274, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-images-container2 .dd-images-pad-1 {
    padding: 0;
  }
  /* line 276, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-images-container2 .dd-images-pad-1 img {
    margin: 0 auto;
  }
  /* line 280, ../scss/cms/_digital-downloads.scss */
  .ae-digital-downloads .dd-images-container2 .dd-images-pad-2 {
    display: none;
  }
}

/* line 3, ../scss/cms/_showcase-countdown.scss */
body.showcase-countdown .showcase-countdown-clock {
  background-color: #ff6000;
  background: linear-gradient(to right, #ff4300, #ff6000);
  padding: 10px 0;
}
/* line 8, ../scss/cms/_showcase-countdown.scss */
body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner {
  margin: 0 auto;
  max-width: 445px;
}
/* line 12, ../scss/cms/_showcase-countdown.scss */
body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner .showcase-countdown-img {
  clear: both;
  float: left;
  padding-right: 15px;
}
/* line 16, ../scss/cms/_showcase-countdown.scss */
body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner .showcase-countdown-img img {
  width: 66px;
}
/* line 20, ../scss/cms/_showcase-countdown.scss */
body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner .showcase-countdown-title {
  float: left;
  color: #fff;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.2;
  padding-top: 10px;
}
/* line 27, ../scss/cms/_showcase-countdown.scss */
body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner .showcase-countdown-line {
  width: 1px;
  background-color: #ff883d;
  height: 53px;
  margin: 2px 20px;
  float: left;
  padding-top: 10px;
}
/* line 35, ../scss/cms/_showcase-countdown.scss */
body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner .showcase-countdown-view-deal {
  float: left;
  padding-top: 14px;
}
/* line 39, ../scss/cms/_showcase-countdown.scss */
body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner .showcase-countdown-clock-inner {
  display: block;
  padding: 4px 0 4px 0;
  color: #fff;
  font-size: 18px;
  line-height: 18px;
  max-width: 100%;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}
@media screen and (max-width: 500px) {
  /* line 54, ../scss/cms/_showcase-countdown.scss */
  body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner .showcase-countdown-line {
    display: none;
  }
  /* line 57, ../scss/cms/_showcase-countdown.scss */
  body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner .showcase-countdown-view-deal {
    float: right;
  }
}
@media screen and (max-width: 445px) {
  /* line 66, ../scss/cms/_showcase-countdown.scss */
  body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner {
    max-width: 100%;
  }
  /* line 68, ../scss/cms/_showcase-countdown.scss */
  body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner .showcase-countdown-view-deal {
    padding-left: 20px;
  }
}
@media screen and (max-width: 420px) {
  /* line 78, ../scss/cms/_showcase-countdown.scss */
  body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner .showcase-countdown-title {
    font-size: 16px;
    padding-top: 6px;
  }
  /* line 82, ../scss/cms/_showcase-countdown.scss */
  body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner .showcase-countdown-clock-inner {
    font-size: 16px;
  }
  /* line 86, ../scss/cms/_showcase-countdown.scss */
  body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner .showcase-countdown-img img {
    width: 50px;
  }
  /* line 90, ../scss/cms/_showcase-countdown.scss */
  body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner .showcase-countdown-view-deal {
    padding-top: 7px;
  }
}
@media screen and (max-width: 380px) {
  /* line 100, ../scss/cms/_showcase-countdown.scss */
  body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner .showcase-countdown-title {
    font-size: 14px;
    padding-top: 8px;
  }
  /* line 104, ../scss/cms/_showcase-countdown.scss */
  body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner .showcase-countdown-clock-inner {
    font-size: 14px;
    padding: 2px 0 2px 0;
  }
}
@media screen and (max-width: 360px) {
  /* line 115, ../scss/cms/_showcase-countdown.scss */
  body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner .showcase-countdown-title {
    padding-right: 20px;
    padding-top: 2px;
    padding-bottom: 7px;
  }
  /* line 121, ../scss/cms/_showcase-countdown.scss */
  body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner .showcase-countdown-img img {
    width: 80px;
  }
  /* line 125, ../scss/cms/_showcase-countdown.scss */
  body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner .showcase-countdown-view-deal {
    float: none;
  }
  /* line 127, ../scss/cms/_showcase-countdown.scss */
  body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner .showcase-countdown-view-deal a {
    font-size: 14px;
    padding: 6px 15px 4px 15px;
  }
  /* line 132, ../scss/cms/_showcase-countdown.scss */
  body.showcase-countdown .showcase-countdown-clock .showcase-countdown-clockinner .showcase-countdown-clock-inner {
    padding-top: 0;
    padding-bottom: 4px;
  }
}

/* line 144, ../scss/cms/_showcase-countdown.scss */
body.genre-landing-page.showcase-countdown #cat-banner {
  margin-bottom: 0;
}
/* line 147, ../scss/cms/_showcase-countdown.scss */
body.genre-landing-page.showcase-countdown .showcase-countdown-clock {
  margin-bottom: 40px;
}

/* line 156, ../scss/cms/_showcase-countdown.scss */
body.deal-page.showcase-countdown .main-container .bswrap {
  padding-top: 0;
}

@media screen and (max-width: 480px) {
  /* line 166, ../scss/cms/_showcase-countdown.scss */
  body.cms-home.showcase-countdown .std {
    margin-top: 0;
  }
}
/* ============================================ *
 * Feather Light CSS overrides
 * Created by Bret Miller 12/29/2016
 * ============================================ */
/* line 7, ../scss/module/_featherlight.scss */
body .featherlight {
  background: rgba(0, 0, 0, 0.7);
  /* ============================================ *
   * Featherlight Newsletter Modal
   * ============================================ */
}
/* line 10, ../scss/module/_featherlight.scss */
body .featherlight .featherlight-content {
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  text-align: center;
  margin: 0 auto;
  padding: 30px;
  border-bottom: 0;
}
/* line 20, ../scss/module/_featherlight.scss */
body .featherlight .featherlight-content .f-message-inner {
  max-width: 315px;
}
/* line 24, ../scss/module/_featherlight.scss */
body .featherlight .featherlight-content h3 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 0;
}
/* line 29, ../scss/module/_featherlight.scss */
body .featherlight .featherlight-content p {
  font-size: 18px;
  color: #777e80;
  margin-bottom: 10px;
  line-height: 1.2;
}
/* line 35, ../scss/module/_featherlight.scss */
body .featherlight .featherlight-content .icon-checkmark {
  color: #6fc315;
  font-size: 50px;
}
/* line 39, ../scss/module/_featherlight.scss */
body .featherlight .featherlight-content .icon-Menu_close {
  color: #ff0000;
  font-size: 50px;
}
/* line 43, ../scss/module/_featherlight.scss */
body .featherlight .featherlight-content button {
  margin: 30px auto 0 auto;
  padding: 10px 100px 7px;
}
/* line 46, ../scss/module/_featherlight.scss */
body .featherlight .featherlight-content button.drm-confirm-buy-button {
  padding-left: 0;
  padding-right: 0;
}
/* line 57, ../scss/module/_featherlight.scss */
body .featherlight .featherlight-content .fNewsletter {
  max-width: 315px;
}
/* line 59, ../scss/module/_featherlight.scss */
body .featherlight .featherlight-content .fNewsletter h3 {
  text-align: center;
  margin-bottom: 0;
  font-size: 28px;
}
/* line 64, ../scss/module/_featherlight.scss */
body .featherlight .featherlight-content .fNewsletter p {
  text-align: center;
  color: #605a54;
  margin-bottom: 30px;
}
/* line 69, ../scss/module/_featherlight.scss */
body .featherlight .featherlight-content .fNewsletter button {
  margin-top: 0;
  padding-left: 60px;
  padding-right: 60px;
}
/* line 74, ../scss/module/_featherlight.scss */
body .featherlight .featherlight-content .fNewsletter .buttons-set {
  border-top: 0;
}
/* line 77, ../scss/module/_featherlight.scss */
body .featherlight .featherlight-content .fNewsletter .contactButton {
  width: 100%;
}
/* line 80, ../scss/module/_featherlight.scss */
body .featherlight .featherlight-content .fNewsletter .button-inner {
  margin: 0 auto;
}
/* line 83, ../scss/module/_featherlight.scss */
body .featherlight .featherlight-content .fNewsletter .icon-Menu_close {
  color: #ff0000;
  font-size: 50px;
  margin-bottom: 30px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  /* line 94, ../scss/module/_featherlight.scss */
  body .featherlight-content {
    padding: 25px 25px 0;
    border-bottom: 25px solid transparent;
  }
}
@media screen and (max-width: 374px) {
  /* line 102, ../scss/module/_featherlight.scss */
  body .featherlight .featherlight-content {
    padding: 15px;
  }
  /* line 104, ../scss/module/_featherlight.scss */
  body .featherlight .featherlight-content .fNewsletter {
    max-width: 290px;
  }
}

/* ============================================ *
 * Titles Index Page
 * ============================================ */
/* line 30, ../scss/module/_titles.scss */
body.blackstone-titles-title-index .index-toolbar {
  float: left;
  width: 100%;
}
/* line 33, ../scss/module/_titles.scss */
body.blackstone-titles-title-index .index-toolbar .title-index-cat-image-filter {
  width: 100%;
  text-align: center;
}
/* line 36, ../scss/module/_titles.scss */
body.blackstone-titles-title-index .index-toolbar .title-index-cat-image-filter a {
  display: inline-block;
}
/* line 38, ../scss/module/_titles.scss */
body.blackstone-titles-title-index .index-toolbar .title-index-cat-image-filter a .category_icon_default {
  min-width: 24px;
  font-size: 14px;
  margin: 0 3px;
  padding: 2px 5px 0 5px;
}
/* line 46, ../scss/module/_titles.scss */
body.blackstone-titles-title-index .index-toolbar .title-index-cat-image-filter a.selected .category_icon_default {
  background: #6fc315;
}
/* line 52, ../scss/module/_titles.scss */
body.blackstone-titles-title-index .title-list-container {
  width: 100%;
  clear: both;
}
/* line 55, ../scss/module/_titles.scss */
body.blackstone-titles-title-index .title-list-container .title-widget-grid {
  width: 25%;
  display: table;
  float: left;
}
/* line 59, ../scss/module/_titles.scss */
body.blackstone-titles-title-index .title-list-container .title-widget-grid .pad {
  padding: 5px;
}

/* ============================================ *
 * Titles View Page
 * ============================================ */
/* line 70, ../scss/module/_titles.scss */
body.grouped-title-view {
  /* css for sections with show / hide buttons */
  /* end show hide section css */
}
/* line 71, ../scss/module/_titles.scss */
body.grouped-title-view .col-main {
  background: #fff;
}
/* line 74, ../scss/module/_titles.scss */
body.grouped-title-view .daily-steal-countdown {
  background-color: #ff6000;
}
/* line 76, ../scss/module/_titles.scss */
body.grouped-title-view .daily-steal-countdown.blue {
  background-color: #02B2E7;
}
/* line 79, ../scss/module/_titles.scss */
body.grouped-title-view .daily-steal-countdown.royal-blue {
  background-color: #1a5191;
}
/* line 82, ../scss/module/_titles.scss */
body.grouped-title-view .daily-steal-countdown.red {
  background-color: #e81600;
}
/* line 85, ../scss/module/_titles.scss */
body.grouped-title-view .daily-steal-countdown.green {
  background-color: #64ae55;
}
/* line 88, ../scss/module/_titles.scss */
body.grouped-title-view .daily-steal-countdown.brown {
  background-color: #bf8e2f;
}
/* line 91, ../scss/module/_titles.scss */
body.grouped-title-view .daily-steal-countdown.magento {
  background-color: #e816c6;
}
/* line 94, ../scss/module/_titles.scss */
body.grouped-title-view .daily-steal-countdown.yellow {
  background-color: #f4e003;
}
/* line 97, ../scss/module/_titles.scss */
body.grouped-title-view .daily-steal-countdown .daily-steal-countdown-inner {
  padding: 8px 0 4px 0;
  color: #fff;
  font-size: 21px;
  line-height: 21px;
  max-width: 100%;
  text-align: right;
}
@media only screen and (max-width: 600px) {
  /* line 97, ../scss/module/_titles.scss */
  body.grouped-title-view .daily-steal-countdown .daily-steal-countdown-inner {
    text-align: center;
  }
}
@media only screen and (max-width: 400px) {
  /* line 97, ../scss/module/_titles.scss */
  body.grouped-title-view .daily-steal-countdown .daily-steal-countdown-inner {
    font-size: 18px;
    line-height: 18px;
  }
}
/* line 112, ../scss/module/_titles.scss */
body.grouped-title-view .daily-steal-countdown.dark-gray {
  background-color: #16191a;
}
/* line 114, ../scss/module/_titles.scss */
body.grouped-title-view .daily-steal-countdown.dark-gray .daily-steal-countdown-inner {
  color: #ff5f00;
}
/* line 119, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-first-tier-bg,
body.grouped-title-view .lbd-first-tier-overlay,
body.grouped-title-view .lbd-first-tier-wrapper,
body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 {
  height: 235px;
  width: 100%;
}
/* line 126, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-first-tier-wrapper {
  position: relative;
}
/* line 128, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-first-tier-wrapper p,
body.grouped-title-view .lbd-first-tier-wrapper span,
body.grouped-title-view .lbd-first-tier-wrapper a {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}
/* line 137, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-first-tier-wrapper .overlay-holder .overlay-inner .overlay-inner-play,
body.grouped-title-view .lbd-first-tier-wrapper .overlay-holder .overlay-inner .overlay-inner-pause {
  height: 100%;
  width: 100%;
}
/* line 144, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-first-tier-wrapper .page-title {
  border-bottom: 0;
  padding: 0;
  max-width: 100%;
  margin-bottom: 5px;
}
/* line 149, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-first-tier-wrapper .page-title h1 {
  text-align: left;
  font-size: 28px;
  color: #fff;
  margin-bottom: 0;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  padding-bottom: 0;
}
/* line 158, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-first-tier-wrapper .col1-of-2,
body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 {
  float: left;
  padding-top: 40px;
}
/* line 163, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-first-tier-wrapper .col1-of-2 {
  width: 33.5%;
  position: relative;
}
/* line 166, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-first-tier-wrapper .col1-of-2 .img-wrap {
  position: absolute;
}
/* line 168, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-first-tier-wrapper .col1-of-2 .img-wrap .badge-image {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: 84px;
  width: 22%;
}
/* line 177, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-first-tier-wrapper .col1-of-2 .img-wrap.has-sample-overlay .overlay-holder.sample {
  display: none;
}
/* line 184, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 {
  width: 66.5%;
  padding-left: 30px;
  position: relative;
}
/* line 189, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-first-tier-wrapper .lbd-first-tier-bg,
body.grouped-title-view .lbd-first-tier-wrapper .lbd-first-tier-overlay {
  position: absolute;
  overflow: hidden;
}
/* line 194, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-first-tier-wrapper .lbd-first-tier-bg-inner {
  width: 200%;
  height: 200%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-filter: blur(25px);
  -moz-filter: blur(25px);
  -o-filter: blur(25px);
  -ms-filter: blur(25px);
  filter: blur(25px);
  position: absolute;
  left: -50%;
  top: -50%;
}
/* line 209, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-first-tier-wrapper .lbd-first-tier-overlay {
  background: rgba(0, 0, 0, 0.6);
}
/* line 212, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-first-tier-wrapper .lbd-first-tier-lower-line {
  position: absolute;
  left: 30px;
  bottom: 20px;
}
/* line 217, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-first-tier-wrapper .lbd-first-tier-lower-line .lbd-first-tier-lower-line-inner .bullet,
body.grouped-title-view .lbd-first-tier-wrapper .lbd-first-tier-lower-line .lbd-first-tier-lower-line-inner .ratings-wrap,
body.grouped-title-view .lbd-first-tier-wrapper .lbd-first-tier-lower-line .lbd-first-tier-lower-line-inner .runtime,
body.grouped-title-view .lbd-first-tier-wrapper .lbd-first-tier-lower-line .lbd-first-tier-lower-line-inner .release,
body.grouped-title-view .lbd-first-tier-wrapper .lbd-first-tier-lower-line .lbd-first-tier-lower-line-inner .abridgement {
  float: left;
  font-size: 16px;
}
/* line 225, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-first-tier-wrapper .lbd-first-tier-lower-line .lbd-first-tier-lower-line-inner .bullet {
  margin: 0 5px;
}
/* line 228, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-first-tier-wrapper .lbd-first-tier-lower-line .lbd-first-tier-lower-line-inner .ratings-wrap {
  bottom: 3px;
  position: relative;
}
/* line 231, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-first-tier-wrapper .lbd-first-tier-lower-line .lbd-first-tier-lower-line-inner .ratings-wrap .ratings {
  margin: 0;
}
/* line 233, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-first-tier-wrapper .lbd-first-tier-lower-line .lbd-first-tier-lower-line-inner .ratings-wrap .ratings .rating-box {
  margin: 3px 0;
}
/* line 241, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper {
  width: 100%;
  overflow: hidden;
  min-height: 200px;
  background-color: #fff;
}
/* line 246, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col1-of-3,
body.grouped-title-view .lbd-second-tier-wrapper .col2-of-3,
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 {
  margin: 24px auto 10px auto;
  float: left;
  min-height: 1px;
  font-size: 16px;
}
/* line 254, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col1-of-3 {
  width: 33.3%;
}
/* line 257, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col2-of-3 {
  padding: 0 0 0 30px;
  width: 33.3%;
}
/* line 260, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col2-of-3 .col-pad-outer {
  overflow: hidden;
  padding-right: 25px;
  border-bottom: 1px solid #d3d8d9;
}
/* line 264, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col2-of-3 .col-pad-outer .col-pad {
  position: relative;
}
/* line 265, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col2-of-3 .col-pad-outer .col-pad .title-copy-more-link {
  display: inline-block;
  margin-top: 15px;
}
/* line 270, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col2-of-3 .col-pad-outer .col-pad .small-summary,
body.grouped-title-view .lbd-second-tier-wrapper .col2-of-3 .col-pad-outer .col-pad .membership-upsell {
  position: absolute;
  top: 0;
  width: 100%;
  transition: opacity 1s;
  -moz-transition: opacity 1s;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
  line-height: 170%;
}
/* line 280, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col2-of-3 .col-pad-outer .col-pad .small-summary ul,
body.grouped-title-view .lbd-second-tier-wrapper .col2-of-3 .col-pad-outer .col-pad .membership-upsell ul {
  list-style: initial;
  padding-left: 18px;
}
/* line 284, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col2-of-3 .col-pad-outer .col-pad .small-summary a.learn-more,
body.grouped-title-view .lbd-second-tier-wrapper .col2-of-3 .col-pad-outer .col-pad .membership-upsell a.learn-more {
  padding-top: 5px;
  display: inline-block;
}
/* line 289, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col2-of-3 .col-pad-outer .col-pad .membership-upsell {
  z-index: 0;
  opacity: 0;
}
/* line 293, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col2-of-3 .col-pad-outer .col-pad .high-profile-details-wrap,
body.grouped-title-view .lbd-second-tier-wrapper .col2-of-3 .col-pad-outer .col-pad .small-summary {
  position: relative;
  z-index: 10;
}
/* line 303, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col2-of-3 .col-pad,
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .col-pad {
  margin-bottom: 30px;
}
/* line 307, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 {
  width: 33.3%;
  float: right;
}
/* line 310, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .col-pad {
  border-left: 1px solid #d3d8d9;
}
/* line 312, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .col-pad .title-view-products-wrapper {
  padding-left: 25px;
  min-height: 150px;
}
/* line 315, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .col-pad .title-view-products-wrapper .price-box {
  margin: 0;
  display: inline-block;
}
/* line 319, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .col-pad .title-view-products-wrapper .price-box .price {
  font-size: 28px;
}
/* line 322, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .col-pad .title-view-products-wrapper .product-list-membership-upsell {
  transition: opacity 1s;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  margin-top: -10px;
}
/* line 329, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .col-pad .title-view-products-wrapper .credit-cost-string {
  display: inline-block;
  font-size: 28px;
  color: #373c3e;
}
/* line 337, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .high-profile-details-wrap {
  font-size: 16px;
  line-height: 120%;
}
/* line 340, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .high-profile-details-wrap td {
  vertical-align: top;
}
/* line 343, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .high-profile-details-wrap .left {
  padding-right: 12px;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 348, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .high-profile-details-wrap .holding-wrapper .icon-font {
  font-size: 14px;
}
/* line 354, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 {
  border-bottom: 1px solid #d3d8d9;
}
/* line 356, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .col-pad {
  overflow: hidden;
}
/* line 363, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .product-group-wrapper-container .product-items .product-item-selector {
  display: inline-block;
  cursor: pointer;
  color: #919799;
  font-size: 41px;
  position: relative;
  right: 2px;
  margin-top: -5px;
}
/* line 372, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .product-group-wrapper-container .product-items .product-item-selector.selected {
  color: #02b2e7;
}
/* line 375, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .product-group-wrapper-container .product-items .product-item {
  display: none;
}
/* line 378, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .product-group-wrapper-container .product-items .product-item.selected {
  display: block;
}
/* line 381, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .product-group-wrapper-container .product-items .unavailable-in-territory {
  font-size: 16px;
}
/* line 385, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .product-group-wrapper-container .isbn,
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .product-group-wrapper-container .units,
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .product-group-wrapper-container .stock-status {
  display: none;
}
/* line 391, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .product-group-wrapper-container.show-isbn p.isbn {
  display: inline-block;
}
/* line 394, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .product-group-wrapper-container.show-isbn span.isbn {
  display: inline-block;
}
/* line 399, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .product-group-wrapper-container.show-units p.units {
  display: block;
}
/* line 402, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .product-group-wrapper-container.show-units span.units {
  display: inline-block;
  color: #777e80;
}
/* line 408, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .product-group-wrapper-container.show-stock-status span.stock-status {
  display: inline-block;
}
/* line 412, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .product-group-wrapper-container .not-yet-released-msg {
  display: block;
}
/* line 415, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .product-group-wrapper-container .marc-wrapper {
  display: inline-block;
  position: relative;
  top: 4px;
}
/* line 421, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .shipping-notice,
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .shipping-notice-discount {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 120%;
}
/* line 428, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .shipping-notice-discount {
  color: #2e9202;
}
/* line 432, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .dropdown-product-item-selector {
  width: 100%;
  display: none;
}
/* line 435, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .dropdown-product-item-selector .dropdown-pad {
  cursor: pointer;
  background: #edf2f3;
  display: inline-block;
  border: 1px solid #abb2b3;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -o-border-radius: 4px;
  padding: 10px 10px 0 10px;
  width: 100%;
}
/* line 446, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .dropdown-product-item-selector .dropdown-pad .col-of-3 {
  float: left;
  display: block;
  text-align: left;
  border-width: 0;
  font-size: 14px;
  margin: 0;
  padding: 0;
}
/* line 455, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .dropdown-product-item-selector .dropdown-pad .col1-of-3 {
  width: 50px;
  font-size: 36px;
}
/* line 460, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .dropdown-product-item-selector .dropdown-pad .col2-of-3 .row {
  width: 100%;
  display: block;
}
/* line 464, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .dropdown-product-item-selector .dropdown-pad .col2-of-3 .dropdown-product-item-center-top {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 468, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .dropdown-product-item-selector .dropdown-pad .col3-of-3 {
  float: right;
  width: 50px;
  text-align: center;
  font-size: 24px;
  padding-top: 8px;
}
/* line 475, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .dropdown-product-item-selector .dropdown-pad .col3-of-3,
body.grouped-title-view .lbd-second-tier-wrapper .dropdown-product-item-selector .dropdown-pad .col2-of-3 .dropdown-product-item-center-top {
  display: none;
}
/* line 479, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .dropdown-product-item-selector .dropdown-pad .dropdown-product-item-center-bottom {
  margin-top: 9px;
  font-size: 18px;
}
/* line 486, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .dropdown-product-item-selector.selected, body.grouped-title-view .lbd-second-tier-wrapper .dropdown-product-item-selector.open {
  display: none;
}
/* line 492, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .dropdown-product-item-selector.selected .dropdown-pad .col3-of-3,
body.grouped-title-view .lbd-second-tier-wrapper .dropdown-product-item-selector.selected .dropdown-pad .dropdown-product-item-center-top {
  display: block;
}
/* line 496, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .dropdown-product-item-selector.selected .dropdown-pad .dropdown-product-item-center-bottom {
  margin-top: 0;
  font-size: 14px;
}
/* line 505, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .product-items.count-1 .dropdown-product-item-selector .dropdown-pad {
  cursor: default;
}
/* line 507, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-second-tier-wrapper .product-items.count-1 .dropdown-product-item-selector .dropdown-pad .col3-of-3 {
  display: none;
}
/* line 515, ../scss/module/_titles.scss */
body.grouped-title-view.show-membership-upsell .product-list-membership-upsell {
  opacity: 0;
}
/* line 517, ../scss/module/_titles.scss */
body.grouped-title-view.show-membership-upsell .product-list-membership-upsell a {
  cursor: default;
  pointer-events: none;
}
/* line 524, ../scss/module/_titles.scss */
body.grouped-title-view.show-membership-upsell #smallSummaryArea .col-pad .small-summary {
  z-index: 0;
  opacity: 0;
}
/* line 527, ../scss/module/_titles.scss */
body.grouped-title-view.show-membership-upsell #smallSummaryArea .col-pad .small-summary a {
  pointer-events: none;
  cursor: default;
}
/* line 532, ../scss/module/_titles.scss */
body.grouped-title-view.show-membership-upsell #smallSummaryArea .col-pad .membership-upsell {
  opacity: 1;
  z-index: 10;
}
/* line 540, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-third-tier-wrapper {
  overflow: hidden;
  min-height: 89px;
  background-color: #fff;
}
/* line 545, ../scss/module/_titles.scss */
body.grouped-title-view .social-icons-andplay-wrapper {
  width: 33.5%;
  float: left;
  text-align: center;
}
/* line 550, ../scss/module/_titles.scss */
body.grouped-title-view .social-icons-andplay-wrapper ul li {
  display: inline-block;
}
/* line 552, ../scss/module/_titles.scss */
body.grouped-title-view .social-icons-andplay-wrapper ul li a {
  color: #777e80;
  padding: 0 2px;
  font-size: 20px;
}
/* line 556, ../scss/module/_titles.scss */
body.grouped-title-view .social-icons-andplay-wrapper ul li a:hover {
  text-decoration: none;
}
/* line 562, ../scss/module/_titles.scss */
body.grouped-title-view .social-icons-andplay-wrapper ul li.player a {
  font-size: 30px;
  color: #373c3e;
  position: relative;
  top: 4px;
  padding-right: 0;
}
/* line 572, ../scss/module/_titles.scss */
body.grouped-title-view .social-icons-andplay-wrapper ul #playControlAlt a,
body.grouped-title-view .social-icons-andplay-wrapper ul #pauseControlAlt a {
  cursor: pointer;
  font-size: 16px;
  top: initial;
  bottom: 3px;
  padding-left: 0;
}
/* line 580, ../scss/module/_titles.scss */
body.grouped-title-view .social-icons-andplay-wrapper ul li.hidden {
  display: none;
}
/* line 585, ../scss/module/_titles.scss */
body.grouped-title-view .product-buttons {
  float: right;
  margin-top: 10px;
  transition: opacity 1s;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  position: relative;
  z-index: 10;
}
/* line 594, ../scss/module/_titles.scss */
body.grouped-title-view .product-buttons button {
  float: right;
}
/* line 597, ../scss/module/_titles.scss */
body.grouped-title-view .product-buttons #add-to-cart,
body.grouped-title-view .product-buttons #add-to-cart-membership {
  margin-left: 15px;
}
/* line 601, ../scss/module/_titles.scss */
body.grouped-title-view .product-buttons.membership-upsell {
  z-index: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 25px;
}
/* line 607, ../scss/module/_titles.scss */
body.grouped-title-view .product-buttons.membership-upsell button,
body.grouped-title-view .product-buttons.membership-upsell a {
  pointer-events: none;
  cursor: default;
}
/* line 615, ../scss/module/_titles.scss */
body.grouped-title-view.show-membership-upsell .product-buttons {
  opacity: 0;
}
/* line 617, ../scss/module/_titles.scss */
body.grouped-title-view.show-membership-upsell .product-buttons button,
body.grouped-title-view.show-membership-upsell .product-buttons a {
  pointer-events: none;
  cursor: default;
}
/* line 622, ../scss/module/_titles.scss */
body.grouped-title-view.show-membership-upsell .product-buttons.membership-upsell {
  opacity: 1;
  z-index: 10;
}
/* line 625, ../scss/module/_titles.scss */
body.grouped-title-view.show-membership-upsell .product-buttons.membership-upsell button,
body.grouped-title-view.show-membership-upsell .product-buttons.membership-upsell a {
  pointer-events: initial;
  cursor: pointer;
}
/* line 633, ../scss/module/_titles.scss */
body.grouped-title-view .title-view-nav-bar-wrapper {
  min-height: 83px;
}
/* line 637, ../scss/module/_titles.scss */
body.grouped-title-view #title-view-nav-bar ul {
  text-align: center;
}
/* line 639, ../scss/module/_titles.scss */
body.grouped-title-view #title-view-nav-bar ul li.first {
  margin-left: 0;
}
/* line 642, ../scss/module/_titles.scss */
body.grouped-title-view #title-view-nav-bar ul li.last {
  margin-right: 0;
}
/* line 645, ../scss/module/_titles.scss */
body.grouped-title-view #title-view-nav-bar ul li {
  display: inline-block;
  margin: 0 7px;
}
/* line 648, ../scss/module/_titles.scss */
body.grouped-title-view #title-view-nav-bar ul li a {
  display: block;
  color: #919799;
  font-size: 21px;
  border-bottom: 2px solid transparent;
  padding: 25px 0;
}
/* line 655, ../scss/module/_titles.scss */
body.grouped-title-view #title-view-nav-bar ul li a:hover {
  text-decoration: none;
  border-bottom: 2px solid #02b2e7;
  color: #373c3e;
  outline: none;
}
/* line 661, ../scss/module/_titles.scss */
body.grouped-title-view #title-view-nav-bar ul li a.selected {
  border-bottom: 2px solid #02b2e7;
  color: #373c3e;
}
/* line 666, ../scss/module/_titles.scss */
body.grouped-title-view #title-view-nav-bar ul .add-to-cart-float-wrap {
  position: absolute;
  top: 21px;
  margin-left: 25px;
  opacity: 0;
  transition: opacity .5s;
  -moz-transition: opacity .5s;
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
}
/* line 682, ../scss/module/_titles.scss */
body.grouped-title-view .hasSeeAll .item {
  display: none;
}
/* line 684, ../scss/module/_titles.scss */
body.grouped-title-view .hasSeeAll .item.topX {
  display: block;
}
/* line 688, ../scss/module/_titles.scss */
body.grouped-title-view .hasSeeAll .toggleReadMore {
  margin: 0 auto;
  text-align: center;
  display: none;
}
/* line 693, ../scss/module/_titles.scss */
body.grouped-title-view .hasSeeAll .read-more-button {
  display: block;
}
/* line 697, ../scss/module/_titles.scss */
body.grouped-title-view .hasSeeAll.seeAll .item {
  display: block;
}
/* line 700, ../scss/module/_titles.scss */
body.grouped-title-view .hasSeeAll.seeAll .read-more-button {
  display: none;
}
/* line 703, ../scss/module/_titles.scss */
body.grouped-title-view .hasSeeAll.seeAll .hide-more-button {
  display: block;
}
/* line 711, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper h2,
body.grouped-title-view .lbd-fifth-tier-wrapper h3 {
  text-align: center;
}
/* line 715, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .drawer-header {
  display: none;
}
/* line 719, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-quotes .title-quote-item {
  margin: 20px auto;
}
/* line 725, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-quotes .title-quote-item p,
body.grouped-title-view .lbd-fifth-tier-wrapper .title-quotes .title-quote-item span {
  display: inline;
}
/* line 731, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-block-item {
  width: 100%;
  display: block;
  border-top: 1px solid #d3d8d9;
  padding: 50px 0;
}
/* line 736, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-block-item .awards-wrap {
  text-align: center;
  margin-bottom: 30px;
}
/* line 739, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-block-item .awards-wrap .award-item {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 742, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-block-item .awards-wrap .toggleReadMore {
  margin-top: 30px;
}
/* line 746, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-block-item.title-primary-author {
  padding-bottom: 0;
}
/* line 750, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-primary-author {
  border-top-width: 0;
  position: relative;
  overflow: hidden;
}
/* line 754, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-primary-author .lbd-author-bg,
body.grouped-title-view .lbd-fifth-tier-wrapper .title-primary-author .lbd-author-overlay {
  position: absolute;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
/* line 761, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-primary-author .lbd-author-bg-inner {
  width: 200%;
  height: 200%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-filter: blur(90px);
  -moz-filter: blur(90px);
  -o-filter: blur(90px);
  -ms-filter: blur(90px);
  filter: blur(90px);
  position: absolute;
  left: -50%;
  top: -50%;
}
/* line 776, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-primary-author .lbd-author-overlay {
  background: rgba(0, 0, 0, 0.6);
}
/* line 779, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-primary-author p,
body.grouped-title-view .lbd-fifth-tier-wrapper .title-primary-author h2,
body.grouped-title-view .lbd-fifth-tier-wrapper .title-primary-author h3,
body.grouped-title-view .lbd-fifth-tier-wrapper .title-primary-author a {
  color: #fff;
}
/* line 785, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-primary-author .author-image {
  max-width: 200px;
  margin: 30px auto 25px auto;
  border-radius: 50%;
}
/* line 790, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-primary-author .title-primary-author-item {
  padding: 0;
  position: relative;
}
/* line 793, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-primary-author .title-primary-author-item .author-section-title {
  padding-top: 50px;
}
/* line 796, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-primary-author .title-primary-author-item .titles-by-author {
  margin-top: 30px;
}
/* line 798, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-primary-author .title-primary-author-item .titles-by-author ul {
  padding: 10px 0 25px 0;
  text-align: center;
}
/* line 801, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-primary-author .title-primary-author-item .titles-by-author ul li {
  display: inline-block;
  padding: 5px 5px;
}
/* line 806, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-primary-author .title-primary-author-item .titles-by-author .author-see-all-link {
  text-align: center;
  display: block;
  position: relative;
  bottom: 25px;
}
/* line 815, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-details {
  text-align: center;
}
/* line 817, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-details table {
  font-size: 16px;
  width: 100%;
  margin: 0 auto;
  color: #373c3e;
}
/* line 823, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-details .left {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  width: 50%;
  text-align: right;
  padding-right: 5px;
}
/* line 829, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-details .right {
  width: 50%;
  text-align: left;
  padding-left: 5px;
}
/* line 835, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews {
  padding-bottom: 0;
}
/* line 838, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews #customer-reviews .review-item {
  border-bottom: 1px solid #d3d8d9;
}
/* line 840, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews #customer-reviews .review-item.rn_0 {
  border-top: 1px solid #d3d8d9;
}
/* line 843, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews #customer-reviews .review-item .review-meta {
  width: 100%;
  display: block;
  text-transform: none;
  color: #919799;
  overflow: hidden;
  margin: 20px 0 0;
}
/* line 850, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews #customer-reviews .review-item .review-meta .review-by {
  float: left;
}
/* line 853, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews #customer-reviews .review-item .review-meta .review-date {
  float: right;
}
/* line 857, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews #customer-reviews .review-item .review-title {
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
/* line 862, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews #customer-reviews .review-item .review-title p {
  font-size: 16px;
  text-align: left;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 868, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews #customer-reviews .review-item .review-details {
  margin-top: 0;
  font-size: 16px;
  margin-bottom: 25px;
}
/* line 873, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews #customer-reviews .review-item .ratings {
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 5px;
}
/* line 877, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews #customer-reviews .review-item .ratings .a-rating {
  float: left;
  margin-right: 20px;
}
/* line 880, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews #customer-reviews .review-item .ratings .a-rating .rating-title,
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews #customer-reviews .review-item .ratings .a-rating .rating-box {
  float: left;
}
/* line 884, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews #customer-reviews .review-item .ratings .a-rating .rating-title {
  margin-right: 10px;
  font-size: 16px;
}
/* line 888, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews #customer-reviews .review-item .ratings .a-rating dd {
  font-size: 16px;
}
/* line 894, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews #customer-reviews .toggleReadMore {
  margin-top: 30px;
}
/* line 899, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews .add-review-title {
  display: none;
}
/* line 902, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews .cancel-review-button,
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews .write-review-button {
  margin: 0 auto;
  display: block;
  margin-bottom: 25px;
}
/* line 908, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews .cancel-review-button {
  display: none;
}
/* line 912, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews.show-review-form .write-review-button {
  display: none;
}
/* line 915, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews.show-review-form .cancel-review-button {
  display: block;
}
/* line 919, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews.show-review-form .form-add form {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #d3d8d9;
}
/* line 924, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews.show-review-form .form-add .how-would-you-rate-header,
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews.show-review-form .form-add .your-reviewing-header {
  display: none;
}
/* line 930, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews.show-review-form .form-add .review-summary-table tbody th {
  background: transparent;
}
/* line 935, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews.show-review-form .form-add .buttons-set {
  text-align: center;
  margin-bottom: 50px;
}
/* line 938, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews.show-review-form .form-add .buttons-set .buttons-set-review-inner {
  width: 300px;
  margin: 0 auto;
}
/* line 941, ../scss/module/_titles.scss */
body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews.show-review-form .form-add .buttons-set .buttons-set-review-inner button {
  display: inline-block;
  margin: 0 5px;
  float: right;
}
@media screen and (max-width: 870px) {
  /* line 954, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-bg,
  body.grouped-title-view .lbd-first-tier-overlay,
  body.grouped-title-view .lbd-first-tier-wrapper {
    height: 325px;
  }
  /* line 960, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-wrapper .col1-of-2 {
    width: 33%;
  }
  /* line 962, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-wrapper .col1-of-2 .img-wrap {
    position: relative;
  }
  /* line 966, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 {
    width: 66%;
  }
  /* line 971, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-second-tier-wrapper .col1-of-3 {
    display: none;
  }
  /* line 974, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-second-tier-wrapper .col2-of-3,
  body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 {
    width: 50%;
  }
  /* line 978, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-second-tier-wrapper .col2-of-3 {
    padding-left: 0;
  }
  /* line 983, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .product-group-wrapper-container .product-group-wrapper {
    display: none;
  }
  /* line 987, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .product-group-wrapper-container .product-items .product-item-selector {
    display: none;
  }
  /* line 991, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .product-group-wrapper-container .product-items .dropdown-product-item-selector.selected, body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .product-group-wrapper-container .product-items .dropdown-product-item-selector.open {
    display: inline-block;
  }
  /* line 1000, ../scss/module/_titles.scss */
  body.grouped-title-view .social-icons-andplay-wrapper {
    margin: 0 auto;
    width: auto;
  }
}
@media screen and (max-width: 600px) {
  /* line 1007, ../scss/module/_titles.scss */
  body.grouped-title-view .col-main {
    margin-bottom: 0;
  }
  /* line 1010, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-bg,
  body.grouped-title-view .lbd-first-tier-overlay,
  body.grouped-title-view .lbd-first-tier-wrapper {
    height: 265px;
  }
  /* line 1015, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-wrapper {
    height: auto;
  }
  /* line 1017, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-wrapper .col-of-2 {
    width: 100%;
    text-align: center;
  }
  /* line 1022, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-wrapper .col1-of-2 .img-wrap {
    margin: 0 auto;
    display: inline-block;
  }
  /* line 1027, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-wrapper .col1-of-2 .img-wrap.has-sample-overlay .overlay-holder.sample {
    display: inline-block;
  }
  /* line 1034, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 {
    height: auto;
    padding-left: 0;
    padding-top: 25px;
  }
  /* line 1038, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 h1,
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 h2,
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 h3,
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 span,
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 p,
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 a {
    text-align: center;
    color: #373c3e;
  }
  /* line 1047, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 .page-title {
    margin-bottom: 3px;
  }
  /* line 1050, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 .lbd-first-tier-lower-line {
    position: static;
  }
  /* line 1052, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 .lbd-first-tier-lower-line .bullet,
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 .lbd-first-tier-lower-line .ratings-wrap,
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 .lbd-first-tier-lower-line .runtime,
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 .lbd-first-tier-lower-line .release,
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 .lbd-first-tier-lower-line .abridgement {
    float: none;
    display: inline-block;
  }
  /* line 1063, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-wrapper .lbd-first-tier-lower-line .ratings-wrap {
    bottom: 0;
    top: 2px;
  }
  /* line 1071, ../scss/module/_titles.scss */
  body.grouped-title-view.show-membership-upsell .lbd-second-tier-wrapper #smallSummaryArea {
    display: inline-block;
  }
  /* line 1073, ../scss/module/_titles.scss */
  body.grouped-title-view.show-membership-upsell .lbd-second-tier-wrapper #smallSummaryArea .col-pad-outer {
    padding-right: 0;
  }
  /* line 1075, ../scss/module/_titles.scss */
  body.grouped-title-view.show-membership-upsell .lbd-second-tier-wrapper #smallSummaryArea .col-pad-outer .membership-upsell {
    position: static;
  }
  /* line 1082, ../scss/module/_titles.scss */
  body.grouped-title-view.show-membership-upsell .lbd-third-tier-wrapper .product-buttons {
    display: none;
    position: static;
  }
  /* line 1085, ../scss/module/_titles.scss */
  body.grouped-title-view.show-membership-upsell .lbd-third-tier-wrapper .product-buttons.membership-upsell {
    display: inline-block;
  }
  /* line 1091, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-second-tier-wrapper {
    min-height: 0;
  }
  /* line 1093, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-second-tier-wrapper .col2-of-3.desc {
    display: none;
    width: 100%;
  }
  /* line 1097, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 {
    width: 100%;
    margin: 35px auto 0;
  }
  /* line 1100, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .col-pad {
    border-left-width: 0;
    margin-bottom: 10px;
  }
  /* line 1103, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .col-pad .title-view-products-wrapper {
    padding-left: 0;
  }
  /* line 1105, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .col-pad .title-view-products-wrapper .product-item {
    margin-top: 11px;
  }
  /* line 1107, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .col-pad .title-view-products-wrapper .product-item .product-list-membership-upsell {
    margin-top: -8px;
  }
  /* line 1111, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .col-pad .title-view-products-wrapper.no-prods {
    display: none;
  }
  /* line 1117, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-second-tier-wrapper .col2-of-3,
  body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 {
    border-bottom-width: 0;
  }
  /* line 1119, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-second-tier-wrapper .col2-of-3 .col-pad,
  body.grouped-title-view .lbd-second-tier-wrapper .col3-of-3 .col-pad {
    height: auto !important;
    min-height: 0 !important;
  }
  /* line 1125, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-second-tier-wrapper .product-list-membership-upsell,
  body.grouped-title-view .lbd-second-tier-wrapper .price-box {
    text-align: center;
  }
  /* line 1131, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-second-tier-wrapper .product-group-wrapper-container .product-items .pad {
    text-align: center;
  }
  /* line 1137, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-third-tier-wrapper {
    min-height: 0;
  }
  /* line 1139, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-third-tier-wrapper .social-icons-andplay-wrapper {
    display: none;
  }
  /* line 1142, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-third-tier-wrapper .product-buttons {
    position: static;
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
  /* line 1147, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-third-tier-wrapper .product-buttons a.button {
    width: 100%;
  }
  /* line 1150, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-third-tier-wrapper .product-buttons #add-to-cart {
    margin-left: auto;
  }
  /* line 1153, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-third-tier-wrapper .product-buttons button {
    width: 100%;
    margin: 0 auto 8px auto;
  }
  /* line 1157, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-third-tier-wrapper .product-buttons.membership-upsell {
    display: none;
    opacity: 1;
  }
  /* line 1163, ../scss/module/_titles.scss */
  body.grouped-title-view .social-icons-andplay-wrapper {
    margin: 0 auto;
    width: 100%;
  }
  /* line 1167, ../scss/module/_titles.scss */
  body.grouped-title-view .title-view-nav-bar-wrapper {
    display: none;
  }
  /* line 1171, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-fifth-tier-wrapper .title-block-item {
    padding: 0;
  }
  /* line 1174, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-fifth-tier-wrapper .drawer-label {
    color: #373c3e;
    font-size: 21px;
  }
  /* line 1178, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-fifth-tier-wrapper .title-primary-author {
    border-top-width: 1px;
  }
  /* line 1180, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-fifth-tier-wrapper .title-primary-author .drawer-label {
    color: #373c3e;
    font-size: 21px;
  }
  /* line 1185, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-fifth-tier-wrapper .drawer-header {
    display: block;
    padding: 16px 0;
    text-align: left;
  }
  /* line 1189, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-fifth-tier-wrapper .drawer-header .drawer-label {
    text-align: left;
    margin-bottom: 0;
  }
  /* line 1193, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-fifth-tier-wrapper .drawer-header .drawer-icon {
    text-align: right;
    float: right;
  }
  /* line 1197, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-fifth-tier-wrapper .drawer-header .drawer-icon.close {
    display: none;
  }
  /* line 1200, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-fifth-tier-wrapper .drawer-header .drawer-icon.open {
    display: inline-block;
  }
  /* line 1204, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-fifth-tier-wrapper .drawer-header.open .drawer-icon.open {
    display: none;
  }
  /* line 1207, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-fifth-tier-wrapper .drawer-header.open .drawer-icon.close {
    display: inline-block;
  }
  /* line 1212, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-fifth-tier-wrapper .drawer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s;
  }
  /* line 1216, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-fifth-tier-wrapper .drawer .pad {
    padding: 24px 0;
  }
  /* line 1218, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-fifth-tier-wrapper .drawer .pad .title-block-item-header {
    display: none;
  }
  /* line 1223, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-fifth-tier-wrapper .drawer.open {
    max-height: 10000px;
    border-top: 1px solid #d3d8d9;
  }
}
@media screen and (max-width: 480px) {
  /* line 1231, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-bg,
  body.grouped-title-view .lbd-first-tier-overlay,
  body.grouped-title-view .lbd-first-tier-wrapper {
    height: 206px;
  }
  /* line 1238, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-wrapper .col1-of-2 .img-wrap {
    padding: 0;
    margin: 0 60px;
  }
  /* line 1244, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 p,
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 a,
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 span {
    font-size: 16px;
  }
  /* line 1250, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 .page-title h1,
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 .page-title h2,
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 .page-title h3 {
    font-size: 21px;
  }
  /* line 1257, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 .lbd-first-tier-lower-line .ratings-wrap {
    width: 100%;
  }
  /* line 1260, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 .lbd-first-tier-lower-line .ratings-wrap .ratings .rating-box {
    margin: 0 auto;
  }
  /* line 1265, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-wrapper .col2-of-2 .lbd-first-tier-lower-line .bullet-count-1 {
    display: none;
  }
  /* line 1276, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews.show-review-form .form-add .buttons-set .buttons-set-review-inner {
    width: 100%;
  }
  /* line 1278, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-fifth-tier-wrapper .title-reviews.show-review-form .form-add .buttons-set .buttons-set-review-inner button.submit-review {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 410px) {
  /* line 1290, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-bg,
  body.grouped-title-view .lbd-first-tier-overlay,
  body.grouped-title-view .lbd-first-tier-wrapper {
    height: 113px;
  }
  /* line 1296, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-wrapper .col1-of-2 {
    margin-top: 0;
    padding-top: 25px;
  }
  /* line 1299, ../scss/module/_titles.scss */
  body.grouped-title-view .lbd-first-tier-wrapper .col1-of-2 .img-wrap {
    margin: 0 50px;
  }
}
/* line 1305, ../scss/module/_titles.scss */
body.grouped-title-view .confirm-buy-popup {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}
/* line 1309, ../scss/module/_titles.scss */
body.grouped-title-view .confirm-buy-popup .pad {
  padding: 10px;
  overflow: hidden;
}
/* line 1314, ../scss/module/_titles.scss */
body.grouped-title-view .confirm-buy-popup .top-area p {
  color: #919799;
}
/* line 1318, ../scss/module/_titles.scss */
body.grouped-title-view .confirm-buy-popup .middle-area {
  background: #edf2f3;
  overflow: hidden;
}
/* line 1321, ../scss/module/_titles.scss */
body.grouped-title-view .confirm-buy-popup .middle-area .pad {
  padding: 20px 10px;
}
/* line 1323, ../scss/module/_titles.scss */
body.grouped-title-view .confirm-buy-popup .middle-area .pad .col-of-2 {
  width: 50%;
  float: left;
  text-align: center;
}
/* line 1327, ../scss/module/_titles.scss */
body.grouped-title-view .confirm-buy-popup .middle-area .pad .col-of-2 img {
  margin: 0 auto;
  height: 40px;
}
/* line 1334, ../scss/module/_titles.scss */
body.grouped-title-view .confirm-buy-popup .bottom-area {
  padding-top: 10px;
}

/* line 1341, ../scss/module/_titles.scss */
body.grouped-title-view.floating-bar #title-view-nav-bar {
  position: fixed;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #d3d8d9;
}
/* line 1346, ../scss/module/_titles.scss */
body.grouped-title-view.floating-bar #title-view-nav-bar .add-to-cart-float-wrap {
  opacity: 1;
}

@media screen and (max-width: 979px) {
  /* line 1354, ../scss/module/_titles.scss */
  #title-view-nav-bar .add-to-cart-float-wrap .add-to-cart-button {
    display: none;
  }
}
/* ============================================ *
 * Titles Category Page
 * ============================================ */
/* line 1365, ../scss/module/_titles.scss */
body.catalog-category-view .index-toolbar {
  float: left;
}
/* line 1368, ../scss/module/_titles.scss */
body.catalog-category-view .title-list-container {
  width: 100%;
  clear: both;
}
/* line 1371, ../scss/module/_titles.scss */
body.catalog-category-view .title-list-container .title-widget-grid {
  width: 25%;
  display: table;
  float: left;
}
/* line 1375, ../scss/module/_titles.scss */
body.catalog-category-view .title-list-container .title-widget-grid .pad {
  padding: 5px;
}

/* ============================================ *
 * People Index Page
 * ============================================ */
/* line 30, ../scss/module/_people.scss */
body.blackstone-people-person-index .index-toolbar {
  float: left;
}
/* line 33, ../scss/module/_people.scss */
body.blackstone-people-person-index .people-list-container {
  width: 100%;
  clear: both;
}
/* line 36, ../scss/module/_people.scss */
body.blackstone-people-person-index .people-list-container .person-widget-grid {
  width: 25%;
  display: table;
  float: left;
}
/* line 40, ../scss/module/_people.scss */
body.blackstone-people-person-index .people-list-container .person-widget-grid .pad {
  padding: 5px;
}

/* ============================================ *
 * People View Page
 * ============================================ */
/* line 53, ../scss/module/_people.scss */
body.blackstone-people-person-view .col1-of-2,
body.blackstone-people-person-view .col2-of-2 {
  float: left;
  width: 50%;
}
/* line 59, ../scss/module/_people.scss */
body.blackstone-people-person-view .page-title h1 {
  font-size: 24px;
}
/* line 63, ../scss/module/_people.scss */
body.blackstone-people-person-view .page-title .page-subtitle h2 {
  font-size: 21px;
}
/* line 68, ../scss/module/_people.scss */
body.blackstone-people-person-view .person-bio {
  margin-bottom: 10px;
}
/* line 70, ../scss/module/_people.scss */
body.blackstone-people-person-view .person-bio img {
  float: left;
  margin: 0 25px 25px 0;
}
/* line 76, ../scss/module/_people.scss */
body.blackstone-people-person-view .tab-content .item {
  width: 18%;
  height: auto;
  margin: 0 2% 2% 0;
}
/* line 85, ../scss/module/_people.scss */
body.blackstone-people-person-view .product-collateral-wrap .toggle-tabs li > span {
  text-transform: none;
}

/* ============================================ *
 * Overrides for Revolution Slider
 * ============================================ */
/* line 5, ../scss/module/_revslider-overrides.scss */
.rev_slider_wrapper .tp-caption.medium_bold_red,
.rev_slider_wrapper .medium_bold_red {
  font-size: 24px !important;
  line-height: 150% !important;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif !important;
  color: #b01610 !important;
  padding: 0 80px !important;
}
/* line 12, ../scss/module/_revslider-overrides.scss */
.rev_slider_wrapper .tp-caption.medium_bold_red i,
.rev_slider_wrapper .medium_bold_red i {
  font-family: "Kievit-BoldItalic", "Helvetica Neue", Arial, sans-serif !important;
}
/* line 19, ../scss/module/_revslider-overrides.scss */
.rev_slider_wrapper .tparrows {
  background-image: none;
  background-color: #edf2f3;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
}
/* line 29, ../scss/module/_revslider-overrides.scss */
.rev_slider_wrapper .tparrows:before {
  font-family: icomoon;
  font-size: 28px;
  color: #373c3e;
  line-height: 48px;
}
/* line 37, ../scss/module/_revslider-overrides.scss */
.rev_slider_wrapper .tparrows.tp-leftarrow:before {
  content: "\2c";
  margin-left: 9px;
}
/* line 41, ../scss/module/_revslider-overrides.scss */
.rev_slider_wrapper .tparrows.tp-rightarrow:before {
  content: "\2d";
  margin-left: -6px;
}
/* line 46, ../scss/module/_revslider-overrides.scss */
.rev_slider_wrapper .tp-leftarrow,
.rev_slider_wrapper .tp-rightarrow {
  opacity: 1;
}
/* line 51, ../scss/module/_revslider-overrides.scss */
.rev_slider_wrapper .tp-leftarrow:hover,
.rev_slider_wrapper .tp-rightarrow:hover {
  opacity: .9;
}
/* line 56, ../scss/module/_revslider-overrides.scss */
.rev_slider_wrapper .tp-bullet {
  background-image: url(//d2q0f503qhbqv9.cloudfront.net/site_assets/Audy_Featured_Scroller_Bullet.png);
  box-shadow: 0 0 black;
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin-right: 0px;
  float: left;
  margin-top: 0px;
  margin-left: 3px;
  background-color: transparent;
}
/* line 67, ../scss/module/_revslider-overrides.scss */
.rev_slider_wrapper .tp-bullet:hover {
  background-position: bottom left;
}
/* line 72, ../scss/module/_revslider-overrides.scss */
.rev_slider_wrapper .tp-bullet.selected {
  background-position: bottom left;
  background-color: transparent;
}
@media only screen and (max-width: 768px) {
  /* line 80, ../scss/module/_revslider-overrides.scss */
  .rev_slider_wrapper .tp-caption.medium_bold_red,
  .rev_slider_wrapper .medium_bold_red {
    font-size: 18px !important;
  }
}

/* line 91, ../scss/module/_revslider-overrides.scss */
body.hasTouch .rev_slider_wrapper .tparrows {
  display: none;
}

/* ============================================ *
 * Overrides for Featured Product Scroller
 * ============================================ */
/* line 6, ../scss/module/_featured-product-scroller-overrides.scss */
body .std .featured-slider-title {
  margin-top: 0;
}
/* line 9, ../scss/module/_featured-product-scroller-overrides.scss */
body .std .featured-slider-title a.see-all {
  font-size: 16px;
}
/* line 14, ../scss/module/_featured-product-scroller-overrides.scss */
body .horizontal_slider {
  margin-bottom: 38px;
}
/* line 21, ../scss/module/_featured-product-scroller-overrides.scss */
body .horizontal_slider.default .carousel-content .name,
body .horizontal_slider.default .carousel-content .second-line {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
/* line 33, ../scss/module/_featured-product-scroller-overrides.scss */
body .image_container {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  background: transparent;
}
/* line 39, ../scss/module/_featured-product-scroller-overrides.scss */
body .horizontal_slider.default .carousel-wrapper {
  border-left: 0;
  width: 100% !important;
}
/* line 44, ../scss/module/_featured-product-scroller-overrides.scss */
body .default .carousel-content {
  margin-left: -10px;
}
/* line 47, ../scss/module/_featured-product-scroller-overrides.scss */
body .default .carousel-content a {
  border-bottom: 0;
}
/* line 49, ../scss/module/_featured-product-scroller-overrides.scss */
body .default .carousel-content a img {
  border: 0;
}
/* line 55, ../scss/module/_featured-product-scroller-overrides.scss */
body .default .carousel-content div.slide-item {
  border: 0;
  background: transparent;
  padding-right: 10.5px;
  padding-left: 10.5px;
  width: 192px !important;
  height: auto !important;
}
/* line 63, ../scss/module/_featured-product-scroller-overrides.scss */
body .default .carousel-content div.slide-item a {
  background-color: white;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  margin: 0 auto 3px auto;
}
/* line 75, ../scss/module/_featured-product-scroller-overrides.scss */
body .default .carousel-content div.slide-item:hover {
  background: transparent;
}
/* line 80, ../scss/module/_featured-product-scroller-overrides.scss */
body .default a.carousel-control.prev,
body .default a.carousel-control.next {
  background-color: #edf2f3;
  border: 0;
  width: 41px;
  height: 50px;
  font-size: 64px;
  padding-top: 11px;
  opacity: 0;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
}
/* line 95, ../scss/module/_featured-product-scroller-overrides.scss */
body .default a.carousel-control.next {
  top: 86px;
  right: -25px;
  font-size: 28px;
  color: #373c3e;
  box-shadow: -3px 1.7px 3px 0 rgba(0, 0, 0, 0.16), -3px -1.7px 3px 0 rgba(0, 0, 0, 0.16);
}
/* line 103, ../scss/module/_featured-product-scroller-overrides.scss */
body .default a.carousel-control.prev {
  top: 86px;
  left: -25px;
  font-size: 28px;
  color: #373c3e;
  box-shadow: 3px 1.7px 3px 0 rgba(0, 0, 0, 0.16), 3px -1.7px 3px 0 rgba(0, 0, 0, 0.16);
}
/* line 111, ../scss/module/_featured-product-scroller-overrides.scss */
body.hasTouch .default a.carousel-control.next,
body.hasTouch .default a.carousel-control.prev {
  display: none;
}
/* line 117, ../scss/module/_featured-product-scroller-overrides.scss */
body .default .carousel-content a .name {
  font-size: 16px;
  padding: 16px 16px 0 16px;
}
/* line 122, ../scss/module/_featured-product-scroller-overrides.scss */
body .default .carousel-content a .second-line {
  font-size: 16px;
  padding: 0 16px 16px 16px;
  margin-bottom: 0;
  color: #777e80;
  line-height: 1.2;
}
/* line 133, ../scss/module/_featured-product-scroller-overrides.scss */
body .brick_banner_outer_wrap a.carousel-control.prev,
body .brick_banner_outer_wrap a.carousel-control.next,
body .brick_banner_outer_wrap .jcarousel-control-prev,
body .brick_banner_outer_wrap .jcarousel-control-next,
body .brick_banner_outer_wrap .tp-leftarrow,
body .brick_banner_outer_wrap .tp-rightarrow,
body .brick_banner_outer_wrap .tp-bullets,
body .horizontal_slider a.carousel-control.prev,
body .horizontal_slider a.carousel-control.next,
body .horizontal_slider .jcarousel-control-prev,
body .horizontal_slider .jcarousel-control-next,
body .horizontal_slider .tp-leftarrow,
body .horizontal_slider .tp-rightarrow,
body .horizontal_slider .tp-bullets,
body .rev_slider_wrapper a.carousel-control.prev,
body .rev_slider_wrapper a.carousel-control.next,
body .rev_slider_wrapper .jcarousel-control-prev,
body .rev_slider_wrapper .jcarousel-control-next,
body .rev_slider_wrapper .tp-leftarrow,
body .rev_slider_wrapper .tp-rightarrow,
body .rev_slider_wrapper .tp-bullets {
  opacity: 0;
  transition: opacity 1s;
  -moz-transition: opacity 1s;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
}
/* line 147, ../scss/module/_featured-product-scroller-overrides.scss */
body .brick_banner_outer_wrap:hover a.carousel-control.prev,
body .brick_banner_outer_wrap:hover a.carousel-control.next,
body .brick_banner_outer_wrap:hover .jcarousel-control-prev,
body .brick_banner_outer_wrap:hover .jcarousel-control-next,
body .brick_banner_outer_wrap:hover .tp-leftarrow,
body .brick_banner_outer_wrap:hover .tp-rightarrow,
body .brick_banner_outer_wrap:hover .tp-bullets,
body .horizontal_slider:hover a.carousel-control.prev,
body .horizontal_slider:hover a.carousel-control.next,
body .horizontal_slider:hover .jcarousel-control-prev,
body .horizontal_slider:hover .jcarousel-control-next,
body .horizontal_slider:hover .tp-leftarrow,
body .horizontal_slider:hover .tp-rightarrow,
body .horizontal_slider:hover .tp-bullets,
body .rev_slider_wrapper:hover a.carousel-control.prev,
body .rev_slider_wrapper:hover a.carousel-control.next,
body .rev_slider_wrapper:hover .jcarousel-control-prev,
body .rev_slider_wrapper:hover .jcarousel-control-next,
body .rev_slider_wrapper:hover .tp-leftarrow,
body .rev_slider_wrapper:hover .tp-rightarrow,
body .rev_slider_wrapper:hover .tp-bullets {
  opacity: .9;
  transition: opacity 1s;
  -moz-transition: opacity 1s;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
}
@media screen and (max-width: 480px) {
  /* line 164, ../scss/module/_featured-product-scroller-overrides.scss */
  body .default .carousel-content {
    margin-left: 0;
  }
  /* line 167, ../scss/module/_featured-product-scroller-overrides.scss */
  body .default .carousel-content a .name {
    padding: 12px 12px 0 12px;
  }
  /* line 170, ../scss/module/_featured-product-scroller-overrides.scss */
  body .default .carousel-content a .second-line {
    padding: 0 12px 12px 12px;
  }
  /* line 173, ../scss/module/_featured-product-scroller-overrides.scss */
  body .default .carousel-content a .name,
  body .default .carousel-content a .second-line {
    font-size: 14px;
    line-height: 1.2;
  }
  /* line 178, ../scss/module/_featured-product-scroller-overrides.scss */
  body .horizontal_slider {
    margin-bottom: 25px;
  }
  /* line 181, ../scss/module/_featured-product-scroller-overrides.scss */
  body .horizontal_slider.default {
    margin-left: -4px;
  }
  /* line 184, ../scss/module/_featured-product-scroller-overrides.scss */
  body .default .carousel-content div.slide-item {
    width: 140px !important;
    padding: 0 5px;
  }
  /* line 188, ../scss/module/_featured-product-scroller-overrides.scss */
  body .default a.carousel-control.next {
    right: -15px;
  }
  /* line 192, ../scss/module/_featured-product-scroller-overrides.scss */
  body .default a.carousel-control.prev {
    left: -15px;
  }
}
@media screen and (max-width: 414px) {
  /* line 198, ../scss/module/_featured-product-scroller-overrides.scss */
  body .default .carousel-content div.slide-item {
    width: 140px !important;
  }
}
@media screen and (max-width: 331px) {
  /* line 204, ../scss/module/_featured-product-scroller-overrides.scss */
  body .horizontal_slider.default {
    margin-left: -8px;
  }
  /* line 208, ../scss/module/_featured-product-scroller-overrides.scss */
  body .default .carousel-content div.slide-item {
    width: 120px !important;
    padding-right: 7.5px;
    padding-left: 7.5px;
  }
}

/* line 1, ../scss/module/_jcarousel.responsive.scss */
.bsa_carousel_wrapper {
  margin: 0 auto 14px auto;
  padding: 12px 0;
}
/* line 5, ../scss/module/_jcarousel.responsive.scss */
.bsa_carousel_wrapper .carousel_title .carousel_title_inner {
  padding: 0;
}
/* line 7, ../scss/module/_jcarousel.responsive.scss */
.bsa_carousel_wrapper .carousel_title .carousel_title_inner h1,
.bsa_carousel_wrapper .carousel_title .carousel_title_inner h2,
.bsa_carousel_wrapper .carousel_title .carousel_title_inner h3,
.bsa_carousel_wrapper .carousel_title .carousel_title_inner h4,
.bsa_carousel_wrapper .carousel_title .carousel_title_inner h5,
.bsa_carousel_wrapper .carousel_title .carousel_title_inner h6,
.bsa_carousel_wrapper .carousel_title .carousel_title_inner a {
  font-size: 28px;
  display: inline-block;
  margin-bottom: 0;
}
/* line 18, ../scss/module/_jcarousel.responsive.scss */
.bsa_carousel_wrapper .carousel_title .carousel_title_inner a {
  font-size: 16px;
  float: right;
  line-height: 39px;
  position: relative;
  top: 4px;
}
/* line 28, ../scss/module/_jcarousel.responsive.scss */
.bsa_carousel_wrapper ul li {
  margin: 0 10px;
}
/* line 30, ../scss/module/_jcarousel.responsive.scss */
.bsa_carousel_wrapper ul li .pad {
  border-bottom: 0;
}
/* line 32, ../scss/module/_jcarousel.responsive.scss */
.bsa_carousel_wrapper ul li .pad a {
  color: #373c3e;
  position: relative;
  display: block;
}
/* line 37, ../scss/module/_jcarousel.responsive.scss */
.bsa_carousel_wrapper ul li .pad a .carousel_text .carousel_text_inner {
  padding-top: 10px;
}
/* line 39, ../scss/module/_jcarousel.responsive.scss */
.bsa_carousel_wrapper ul li .pad a .carousel_text .carousel_text_inner div {
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  text-align: center;
  line-height: 120%;
}
/* line 47, ../scss/module/_jcarousel.responsive.scss */
.bsa_carousel_wrapper ul li .pad a .carousel_text .carousel_text_inner div p,
.bsa_carousel_wrapper ul li .pad a .carousel_text .carousel_text_inner div a {
  display: inline;
}
/* line 52, ../scss/module/_jcarousel.responsive.scss */
.bsa_carousel_wrapper ul li .pad a .carousel_text .carousel_text_inner .carousel_author_name {
  color: #605a54;
}
/* line 58, ../scss/module/_jcarousel.responsive.scss */
.bsa_carousel_wrapper ul li .pad a:hover {
  text-decoration: none;
}
/* line 63, ../scss/module/_jcarousel.responsive.scss */
.bsa_carousel_wrapper ul li.item_number_0 {
  margin-left: 0;
}

/* line 72, ../scss/module/_jcarousel.responsive.scss */
.bsa_carousel_wrapper.brick_banner {
  margin: 0 auto;
}
/* line 76, ../scss/module/_jcarousel.responsive.scss */
.bsa_carousel_wrapper.brick_banner .jcarousel ul li {
  width: auto;
  padding: 5px 0;
}
/* line 79, ../scss/module/_jcarousel.responsive.scss */
.bsa_carousel_wrapper.brick_banner .jcarousel ul li .inner {
  width: auto;
  background-color: #fff;
  overflow: hidden;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
}
/* line 91, ../scss/module/_jcarousel.responsive.scss */
.bsa_carousel_wrapper.brick_banner .jcarousel ul li .inner .bottom {
  background-color: #fff;
}
/* line 93, ../scss/module/_jcarousel.responsive.scss */
.bsa_carousel_wrapper.brick_banner .jcarousel ul li .inner .bottom h5.name {
  padding: 25.5px 16px;
  margin-bottom: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 16px;
  text-align: center;
  line-height: 1.4;
}
/* line 107, ../scss/module/_jcarousel.responsive.scss */
.bsa_carousel_wrapper.brick_banner .jcarousel .jcarousel-control-prev,
.bsa_carousel_wrapper.brick_banner .jcarousel .jcarousel-control-next {
  height: 133px;
}

/* line 115, ../scss/module/_jcarousel.responsive.scss */
.std .bsa_carousel_wrapper.no_top_border {
  border-top: 0;
}

/* line 119, ../scss/module/_jcarousel.responsive.scss */
.brick_banner_outer_wrap {
  position: relative;
  padding: 10px 0 38px 0;
  margin-left: -10px;
}

/* line 125, ../scss/module/_jcarousel.responsive.scss */
.jcarousel-wrapper {
  overflow: hidden;
  position: relative;
  padding: 0;
}

/** Carousel **/
/* line 133, ../scss/module/_jcarousel.responsive.scss */
.jcarousel {
  position: relative;
  display: block;
  width: 100%;
}

/* line 139, ../scss/module/_jcarousel.responsive.scss */
.jcarousel ul {
  width: 20000em;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 147, ../scss/module/_jcarousel.responsive.scss */
.jcarousel li {
  width: 200px;
  float: left;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
}

/* line 156, ../scss/module/_jcarousel.responsive.scss */
.jcarousel img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  height: auto !important;
}

/* line 163, ../scss/module/_jcarousel.responsive.scss */
.jcarousel p {
  text-align: center;
}

/** Carousel Controls **/
/* line 169, ../scss/module/_jcarousel.responsive.scss */
.jcarousel-control-prev,
.jcarousel-control-next {
  position: absolute;
  top: 132px;
  width: 44px;
  height: 44px;
  background: #edf2f3;
  display: table;
}
/* line 178, ../scss/module/_jcarousel.responsive.scss */
.jcarousel-control-prev .icon-font,
.jcarousel-control-next .icon-font {
  display: table-cell;
  vertical-align: middle;
  color: #373c3e;
  font-size: 28px;
  text-align: center;
}

/* line 187, ../scss/module/_jcarousel.responsive.scss */
.jcarousel-control-prev {
  box-shadow: 3px 1.7px 3px 0 rgba(0, 0, 0, 0.16), 3px -1.7px 3px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 3px 1.7px 3px 0 rgba(0, 0, 0, 0.16), 3px -1.7px 3px 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 3px 1.7px 3px 0 rgba(0, 0, 0, 0.16), 3px -1.7px 3px 0 rgba(0, 0, 0, 0.16);
  -o-box-shadow: 3px 1.7px 3px 0 rgba(0, 0, 0, 0.16), 3px -1.7px 3px 0 rgba(0, 0, 0, 0.16);
}

/* line 193, ../scss/module/_jcarousel.responsive.scss */
.jcarousel-control-next {
  box-shadow: -3px 1.7px 3px 0 rgba(0, 0, 0, 0.16), -3px -1.7px 3px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: -3px 1.7px 3px 0 rgba(0, 0, 0, 0.16), -3px -1.7px 3px 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: -3px 1.7px 3px 0 rgba(0, 0, 0, 0.16), -3px -1.7px 3px 0 rgba(0, 0, 0, 0.16);
  -o-box-shadow: -3px 1.7px 3px 0 rgba(0, 0, 0, 0.16), -3px -1.7px 3px 0 rgba(0, 0, 0, 0.16);
}

/* line 200, ../scss/module/_jcarousel.responsive.scss */
.brick_banner_outer_wrap .jcarousel-control-prev,
.brick_banner_outer_wrap .jcarousel-control-next {
  top: 43%;
  transform: translateY(-50%);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
}
/* line 210, ../scss/module/_jcarousel.responsive.scss */
.brick_banner_outer_wrap.carousel-adj .jcarousel-control-prev,
.brick_banner_outer_wrap.carousel-adj .jcarousel-control-next {
  top: 34.5%;
}

/* line 218, ../scss/module/_jcarousel.responsive.scss */
.hasTouch .brick_banner_outer_wrap .jcarousel-control-prev,
.hasTouch .brick_banner_outer_wrap .jcarousel-control-next {
  display: none;
}
/* line 223, ../scss/module/_jcarousel.responsive.scss */
.hasTouch .brick_banner_outer_wrap:hover .jcarousel-control-prev,
.hasTouch .brick_banner_outer_wrap:hover .jcarousel-control-next {
  display: none;
}

/* line 230, ../scss/module/_jcarousel.responsive.scss */
.jcarousel-control-prev:hover,
.jcarousel-control-next:hover {
  background: rgba(237, 242, 243, 0.9);
}

/* line 235, ../scss/module/_jcarousel.responsive.scss */
.jcarousel-control-prev {
  left: -15px;
  text-align: right;
}

/* line 240, ../scss/module/_jcarousel.responsive.scss */
.jcarousel-control-next {
  right: -25px;
  text-align: left;
}

/* line 245, ../scss/module/_jcarousel.responsive.scss */
.jcarousel-control-prev:hover,
.jcarousel-control-next:hover,
.jcarousel-control-prev:focus,
.jcarousel-control-next:focus {
  text-decoration: none;
  color: #edf2f3;
}

/** Carousel Pagination **/
/* line 255, ../scss/module/_jcarousel.responsive.scss */
.jcarousel-pagination {
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  margin: 0;
}

/* line 265, ../scss/module/_jcarousel.responsive.scss */
.jcarousel-pagination a {
  text-decoration: none;
  display: inline-block;
  font-size: 11px;
  height: 10px;
  width: 10px;
  line-height: 10px;
  background: #fff;
  color: #4E443C;
  border-radius: 10px;
  text-indent: -9999px;
  margin-right: 7px;
  -webkit-box-shadow: 0 0 2px #4E443C;
  -moz-box-shadow: 0 0 2px #4E443C;
  box-shadow: 0 0 2px #4E443C;
}

/* line 287, ../scss/module/_jcarousel.responsive.scss */
.jcarousel-pagination a.active {
  background: #4E443C;
  color: #fff;
  opacity: 1;
  -webkit-box-shadow: 0 0 2px #F0EFE7;
  -moz-box-shadow: 0 0 2px #F0EFE7;
  box-shadow: 0 0 2px #F0EFE7;
}

@media screen and (max-width: 480px) {
  /* line 298, ../scss/module/_jcarousel.responsive.scss */
  .brick_banner_outer_wrap {
    padding: 2px 0 25px 0;
    margin: 0 0 0 -5px;
  }
  /* line 302, ../scss/module/_jcarousel.responsive.scss */
  .brick_banner_outer_wrap .jcarousel-control-prev,
  .brick_banner_outer_wrap .jcarousel-control-next {
    /* top: 28px; */
  }

  /* line 308, ../scss/module/_jcarousel.responsive.scss */
  .bsa_carousel_wrapper.brick_banner {
    margin: 0 auto;
  }
  /* line 312, ../scss/module/_jcarousel.responsive.scss */
  .bsa_carousel_wrapper.brick_banner .jcarousel ul li {
    width: 250px;
    margin: 0 5px;
  }
  /* line 316, ../scss/module/_jcarousel.responsive.scss */
  .bsa_carousel_wrapper.brick_banner .jcarousel ul li.brick-adj {
    width: 140px !important;
  }
  /* line 320, ../scss/module/_jcarousel.responsive.scss */
  .bsa_carousel_wrapper.brick_banner .jcarousel .jcarousel-control-prev,
  .bsa_carousel_wrapper.brick_banner .jcarousel .jcarousel-control-next {
    height: 133px;
  }

  /* line 327, ../scss/module/_jcarousel.responsive.scss */
  .jcarousel-control-prev {
    left: -15px;
  }

  /* line 331, ../scss/module/_jcarousel.responsive.scss */
  .jcarousel-control-next {
    right: -15px;
  }
}
@media screen and (max-width: 375px) {
  /* line 342, ../scss/module/_jcarousel.responsive.scss */
  .bsa_carousel_wrapper.brick_banner .jcarousel ul li {
    width: 250px !important;
  }
  /* line 345, ../scss/module/_jcarousel.responsive.scss */
  .bsa_carousel_wrapper.brick_banner .jcarousel ul li.brick-adj {
    width: 140px !important;
  }
}
/* ============================================ *
 *  Library
 * ============================================ */
/* line 30, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-top-wrapper {
  background: #fff;
}
/* line 32, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-top-wrapper h1,
body.bsa-customer-library .library-top-wrapper h2,
body.bsa-customer-library .library-top-wrapper h3 {
  padding-top: 40px;
  padding-bottom: 10px;
  font-size: 24px;
  color: #373c3e;
  margin: 0;
}
/* line 42, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-middle-wrapper {
  min-height: 52px;
  border-bottom: 1px solid #d3d8d9;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 0;
  display: inline-block;
  width: 100%;
}
/* line 50, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-middle-wrapper #library-filter-toggle {
  float: left;
  cursor: pointer;
  display: inline-block;
}
/* line 54, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-middle-wrapper #library-filter-toggle .toggle-open,
body.bsa-customer-library .library-middle-wrapper #library-filter-toggle .toggle-close {
  margin-right: 5px;
  font-size: 12px;
}
/* line 59, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-middle-wrapper #library-filter-toggle .toggle-open {
  display: inline-block;
}
/* line 62, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-middle-wrapper #library-filter-toggle .toggle-close {
  display: none;
}
/* line 66, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-middle-wrapper #library-filter-toggle.active .toggle-open {
  display: none;
}
/* line 69, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-middle-wrapper #library-filter-toggle.active .toggle-close {
  display: inline-block;
}
/* line 74, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-middle-wrapper .library-item-filters {
  display: inline-block;
  text-align: center;
  padding-top: 5px;
}
/* line 79, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-middle-wrapper .library-item-filters ul li {
  display: inline-block;
}
/* line 81, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-middle-wrapper .library-item-filters ul li a {
  padding: 4px 10px 13px 10px;
  border-bottom: 1px solid transparent;
  color: #919799;
}
/* line 85, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-middle-wrapper .library-item-filters ul li a.active {
  border-bottom-color: #02b2e7;
  color: #373c3e;
}
/* line 89, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-middle-wrapper .library-item-filters ul li a:hover {
  text-decoration: none;
  color: #373c3e;
  border-bottom-color: #02b2e7;
}
/* line 96, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-middle-wrapper .library-item-filters ul li.active a {
  color: #373c3e;
  border-bottom-color: #02b2e7;
}
/* line 104, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-middle-wrapper .library-sort-wrapper {
  float: right;
}
/* line 109, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper .bswrap {
  margin-top: 2.33%;
}
/* line 112, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper .filters-wrap {
  float: left;
  width: 0;
  overflow: hidden;
}
/* line 117, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper .filters-wrap .filters .filter {
  margin: 10px 0;
}
/* line 119, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper .filters-wrap .filters .filter .filter-header {
  padding: 4px 8px;
  font-weight: 500;
  background-color: #f4f4f4;
  color: #919799;
  text-align: left;
  text-transform: uppercase;
}
/* line 127, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper .filters-wrap .filters .filter .filter-list {
  padding: 7px 0px;
  background: #fff;
}
/* line 131, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper .filters-wrap .filters .filter .filter-list li a {
  padding: 0px 10px;
  color: #373c3e;
}
/* line 136, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper .filters-wrap .filters .filter .filter-list li.active a {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 145, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid {
  margin-left: 0;
}
/* line 147, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid li {
  width: 25%;
  margin: 0;
  padding: 0;
  float: left;
}
/* line 152, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid li .item-pad {
  margin: 10px;
  text-align: center;
  background: #fff;
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  overflow: hidden;
}
/* line 164, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid li .item-pad .product-library-item-link {
  color: #373c3e;
  cursor: pointer;
}
/* line 167, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid li .item-pad .product-library-item-link .image-wrapper {
  position: relative;
}
/* line 169, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid li .item-pad .product-library-item-link .image-wrapper .overlay-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  right: 0;
}
/* line 174, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid li .item-pad .product-library-item-link .image-wrapper .overlay-wrapper .rental-dogear {
  position: relative;
  float: right;
  width: 75%;
  height: 75%;
  background: #02b2e7;
  color: #fff;
  text-align: center;
  -ms-transform: translate(50%, -50%) rotate(45deg);
  /* IE 9 */
  -webkit-transform: translate(50%, -50%) rotate(45deg);
  /* Safari */
  transform: translate(50%, -50%) rotate(45deg);
}
/* line 185, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid li .item-pad .product-library-item-link .image-wrapper .overlay-wrapper .rental-dogear .dogear-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
/* line 194, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid li .item-pad .product-library-item-link .product-info {
  min-height: 70px;
  padding: 19px 10px 11px 10px;
}
/* line 197, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid li .item-pad .product-library-item-link .product-info .title,
body.bsa-customer-library .library-items-wrapper #items-grid li .item-pad .product-library-item-link .product-info .author {
  display: block;
  color: #373c3e;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.2;
}
/* line 207, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid li .item-pad .product-library-item-link .product-info .author {
  color: #777e80;
  padding-bottom: 10px;
}
/* line 212, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid li .item-pad .product-library-item-link .rental-info {
  border-top: 1px solid #d3d8d9;
  padding: 5px 0;
}
/* line 215, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid li .item-pad .product-library-item-link .rental-info .extend-wrap {
  color: #373c3e;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.2;
}
/* line 222, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid li .item-pad .product-library-item-link .rental-info .extend-wrap a {
  color: #02b2e7;
  font-size: 16px;
}
/* line 225, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid li .item-pad .product-library-item-link .rental-info .extend-wrap a .icon-font {
  position: relative;
  top: 1px;
}
/* line 232, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid li .item-pad .product-library-item-link:hover {
  text-decoration: none;
}
/* line 241, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid.show-downloads li.is-rental {
  display: none;
}
/* line 246, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid.show-rentals li.is-not-rental {
  display: none;
}
/* line 250, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper {
  width: 100%;
  z-index: 1;
  position: relative;
}
/* line 255, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .carrot-accent .pointer {
  border-color: #fff transparent;
  top: 0;
  border-width: 0 10px 10px;
  margin: 0 auto;
}
/* line 262, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad {
  min-height: 270px;
  background: #fff;
}
/* line 265, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-header {
  text-align: center;
  border-bottom: 1px solid #e0e4e5;
  overflow: hidden;
}
/* line 269, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-header #info-close-desktop {
  position: absolute;
  right: 30px;
  padding-top: 21px;
}
/* line 274, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-header ul {
  text-align: center;
}
/* line 276, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-header ul li {
  width: auto;
  display: inline-block;
  float: none;
}
/* line 280, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-header ul li a {
  padding: 21px;
  border-bottom: 1px solid transparent;
  color: #919799;
  display: block;
}
/* line 285, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-header ul li a.active {
  border-bottom-color: #02b2e7;
  color: #373c3e;
}
/* line 289, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-header ul li a:hover {
  text-decoration: none;
  color: #373c3e;
  border-bottom-color: #02b2e7;
}
/* line 296, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-header ul li.active a {
  color: #373c3e;
  border-bottom-color: #02b2e7;
  line-height: 18px;
}
/* line 306, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .tab {
  display: none;
}
/* line 308, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .tab.active {
  display: block;
  overflow: hidden;
}
/* line 313, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .info-item {
  font-size: 16px;
  line-height: 16px;
  text-align: left;
  padding: 7px 0;
}
/* line 318, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .info-item .label {
  color: #373c3e;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 325, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 {
  display: table-cell;
  float: left;
}
/* line 328, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .pad {
  overflow: hidden;
  display: block;
  padding: 0 21px 15px 21px;
  margin-top: 25px;
}
/* line 333, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .pad p {
  font-size: 16px;
}
/* line 336, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .pad h4 {
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 0;
  padding-bottom: 17px;
}
/* line 344, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3.col2-of-3 .pad {
  min-height: 50px;
  border-left: 1px solid #e0e4e5;
  border-right: 1px solid #e0e4e5;
}
/* line 348, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3.col2-of-3 .pad .stream-coming-soon {
  padding-top: 10px;
}
/* line 353, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .launch-player {
  color: #fff;
  margin: 17px auto 7px auto;
}
/* line 357, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .rental-wrap,
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .drm-wrap {
  display: none;
}
/* line 360, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .rental-wrap .app-button-wrap,
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .drm-wrap .app-button-wrap {
  text-align: center;
  line-height: 0;
  padding-top: 11px;
}
/* line 365, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .rental-wrap .app-button-wrap .app-button,
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .drm-wrap .app-button-wrap .app-button {
  display: inline-block;
}
/* line 367, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .rental-wrap .app-button-wrap .app-button img,
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .drm-wrap .app-button-wrap .app-button img {
  height: 40px;
}
/* line 372, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .rental-wrap .app-button-wrap .google-play-button,
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .drm-wrap .app-button-wrap .google-play-button {
  padding: 0 20px 0 20px;
}
/* line 374, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .rental-wrap .app-button-wrap .google-play-button img,
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .drm-wrap .app-button-wrap .google-play-button img {
  width: 135px;
}
/* line 380, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .app-wrap {
  display: none;
}
/* line 382, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .app-wrap img {
  margin: 0 auto;
}
/* line 387, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-2 {
  display: table-cell;
  float: left;
}
/* line 391, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower #format-preference {
  width: 50%;
  padding-top: 4px;
  margin-bottom: 21px;
}
/* line 398, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .bsa-loader {
  z-index: 3;
}
/* line 400, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .bsa-loader .inner {
  display: none;
}
/* line 405, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper.rental-item .item-pad {
  min-height: 289px;
}
/* line 419, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library.notMobile .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .download-wrap {
  display: block;
}
/* line 422, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library.notMobile .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .app-wrap.notMobile,
body.bsa-customer-library.notMobile .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .drm-wrap.notMobile,
body.bsa-customer-library.notMobile .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .rental-wrap.notMobile {
  display: block;
}
/* line 441, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library.mobile-isIos .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .download-wrap {
  display: none;
}
/* line 444, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library.mobile-isIos .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .app-wrap.iOs,
body.bsa-customer-library.mobile-isIos .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .drm-wrap.iOs,
body.bsa-customer-library.mobile-isIos .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .rental-wrap.iOs {
  display: block;
}
/* line 463, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library.mobile-isAndroid .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .download-wrap {
  display: none;
}
/* line 466, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library.mobile-isAndroid .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .app-wrap.android,
body.bsa-customer-library.mobile-isAndroid .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .drm-wrap.android,
body.bsa-customer-library.mobile-isAndroid .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .rental-wrap.android {
  display: block;
}
/* line 480, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library #dl-window .divTable {
  background: #edf2f3;
}
/* line 483, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library #dl-window .divTableHeading {
  text-align: center;
  background: #777e80;
}
/* line 486, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library #dl-window .divTableHeading .divTableCell {
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  padding-top: 10px;
  padding-bottom: 10px;
}
/* line 495, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library #dl-window .divTableHeading .divTableCell:first-child {
  padding-left: 40px;
}
/* line 498, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library #dl-window .divTableHeading .divTableCell:last-child {
  padding-right: 40px;
}
/* line 503, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library #dl-window .divTableBody .divTableCell {
  font-size: 14px;
  line-height: 1.2;
  border-bottom: 1px solid #fff;
}
/* line 507, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library #dl-window .divTableBody .divTableCell button {
  margin-right: 40px;
}
/* line 511, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library #dl-window .divTableBody .divTableCell:last-child {
  padding: 20px;
}
/* line 515, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library #dl-window .format-row {
  display: none;
}
/* line 518, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library #dl-window .file-name {
  padding-top: 0;
  padding-right: 40px;
  padding-left: 40px;
  font-size: 14px;
  line-height: 1.2;
}
/* line 524, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library #dl-window .file-name .dl-title {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 529, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library #dl-window.format-mp3 .format-zip {
  display: table-row;
}
/* line 534, ../scss/module/_customerlibrary.scss */
body.bsa-customer-library #dl-window.format-m4b .format-m4b {
  display: table-row;
}

@media screen and (max-width: 1155px) {
  /* line 552, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .rental-wrap .app-button-wrap .google-play-button,
  body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .drm-wrap .app-button-wrap .google-play-button {
    padding: 0 20px 11px 20px;
  }
  /* line 555, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .rental-wrap .app-button-wrap .ios-play-button,
  body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .drm-wrap .app-button-wrap .ios-play-button {
    padding-bottom: 12px;
  }
}
@media only screen and (max-width: 870px) {
  /* line 573, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #items-grid li {
    width: 33.33%;
  }
}
@media only screen and (max-width: 770px) {
  /* line 582, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .filters-wrap {
    height: 0;
    width: 100% !important;
    opacity: 1 !important;
    float: none;
    clear: both;
  }
  /* line 590, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .facets-open .filters-wrap {
    height: auto;
  }
  /* line 595, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-middle-wrapper #library-filter-toggle,
  body.bsa-customer-library .library-middle-wrapper .library-item-filters,
  body.bsa-customer-library .library-middle-wrapper .library-sort-wrapper {
    width: 100%;
  }
  /* line 600, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-middle-wrapper .library-item-filters {
    border-bottom: 1px solid #e0e4e5;
    position: relative;
    top: 10px;
  }
  /* line 605, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-middle-wrapper .library-item-filters ul li {
    width: 50%;
    float: left;
  }
  /* line 608, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-middle-wrapper .library-item-filters ul li a {
    width: 100%;
    display: block;
  }
  /* line 616, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-middle-wrapper .library-sort-wrapper select {
    width: 100%;
  }
  /* line 626, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #info-wrapper .item-pad .info-bubble-header ul li.info-bubble-tab {
    /*width:33.3%;
    float:left;*/
  }
  /* line 629, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #info-wrapper .item-pad .info-bubble-header ul li.info-bubble-tab a {
    width: 100%;
    display: block;
  }
  /* line 637, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #info-wrapper .item-pad .info-bubble-lower .col-of-3 {
    width: 100%;
  }
  /* line 639, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #info-wrapper .item-pad .info-bubble-lower .col-of-3 .pad {
    margin: 10px 20px;
  }
  /* line 641, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #info-wrapper .item-pad .info-bubble-lower .col-of-3 .pad .info-item {
    text-align: center;
  }
  /* line 645, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #info-wrapper .item-pad .info-bubble-lower .col-of-3.col1-of-3 {
    border-bottom: 1px solid #e0e4e5;
  }
  /* line 648, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #info-wrapper .item-pad .info-bubble-lower .col-of-3.col2-of-3 {
    border-bottom: 1px solid #e0e4e5;
  }
  /* line 650, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #info-wrapper .item-pad .info-bubble-lower .col-of-3.col2-of-3 .pad {
    border-left: none;
    border-right: none;
  }
  /* line 656, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #info-wrapper .item-pad .info-bubble-lower .col-of-3,
  body.bsa-customer-library .library-items-wrapper #info-wrapper .item-pad .info-bubble-lower .col-of-2 {
    width: 100%;
  }
  /* line 659, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #info-wrapper .item-pad .info-bubble-lower .col-of-3 .button,
  body.bsa-customer-library .library-items-wrapper #info-wrapper .item-pad .info-bubble-lower .col-of-3 button,
  body.bsa-customer-library .library-items-wrapper #info-wrapper .item-pad .info-bubble-lower .col-of-2 .button,
  body.bsa-customer-library .library-items-wrapper #info-wrapper .item-pad .info-bubble-lower .col-of-2 button {
    margin: 0 auto;
  }
  /* line 665, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #info-wrapper .item-pad #info-close {
    display: block;
    text-align: center;
    margin: 10px auto;
  }
  /* line 669, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #info-wrapper .item-pad #info-close a {
    cursor: pointer;
    color: #02b2e7;
  }
  /* line 676, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #items-grid {
    float: none;
    clear: both;
    margin-left: 0 !important;
  }
  /* line 680, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #items-grid li {
    width: 50%;
  }

  /* line 692, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3.col2-of-3 .pad {
    border-left: 0;
    border-right: 0;
  }
  /* line 700, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .rental-wrap .app-button-wrap .google-play-button,
  body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .drm-wrap .app-button-wrap .google-play-button {
    padding-bottom: 0;
  }
  /* line 703, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .rental-wrap .app-button-wrap .ios-play-button,
  body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .drm-wrap .app-button-wrap .ios-play-button {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 480px) {
  /* line 719, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .main-container.full-width {
    padding-bottom: 70px;
  }
  /* line 727, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .pad {
    padding-left: 0;
    padding-right: 0;
  }
  /* line 735, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #items-grid li .item-pad {
    margin: 5px;
  }
  /* line 739, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #items-grid li .item-pad .product-library-item-link .product-info .title,
  body.bsa-customer-library .library-items-wrapper #items-grid li .item-pad .product-library-item-link .product-info .author,
  body.bsa-customer-library .library-items-wrapper #items-grid li .item-pad .product-library-item-link .product-info .time-remaining {
    font-size: 14px;
  }
}
@media screen and (max-width: 394px) {
  /* line 765, ../scss/module/_customerlibrary.scss */
  body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .rental-wrap .app-button-wrap .google-play-button,
  body.bsa-customer-library .library-items-wrapper #items-grid #info-wrapper .item-pad .info-bubble-lower .col-of-3 .drm-wrap .app-button-wrap .google-play-button {
    padding-bottom: 20px;
  }
}
/* line 5, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-wrapper {
  max-width: 600px;
  margin: 125px auto 0 auto;
}
/* line 10, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container .background-overlay,
body.bsa-customer-library-player #player-container .background-container {
  position: fixed;
  top: -50%;
  left: -50%;
  height: 200%;
  width: 200%;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
/* line 22, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container .background-container {
  filter: blur(25px);
  -webkit-filter: blur(25px);
  -moz-filter: blur(25px);
  -o-filter: blur(25px);
  -ms-filter: blur(25px);
}
/* line 29, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container .background-overlay {
  background-color: rgba(0, 0, 0, 0.6);
}
/* line 32, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container .pad {
  padding: 25px;
}
/* line 35, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container .player-inner {
  position: relative;
  z-index: 100;
  background: #fff;
}
/* line 39, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container .player-inner .title-container {
  position: relative;
  top: -125px;
  width: 100%;
  margin-bottom: -125px;
}
/* line 44, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container .player-inner .title-container img {
  margin: 0 auto;
  max-width: 51%;
}
/* line 48, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container .player-inner .title-container h1,
body.bsa-customer-library-player #player-container .player-inner .title-container h2 {
  text-align: center;
  color: #373c3e;
  font-size: 28px;
  margin-top: 16px;
}
/* line 56, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container .player-inner #plwrap {
  position: relative;
}
/* line 58, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container .player-inner #plwrap .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(#fff, rgba(255, 255, 255, 0.5));
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(#fff, rgba(255, 255, 255, 0.5));
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(#fff, rgba(255, 255, 255, 0.5));
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(#ffffff, rgba(255, 255, 255, 0.5));
  /* Standard syntax (must be last) */
}
/* line 72, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container .player-inner #plList {
  border-top: 1px solid #d3d8d9;
}
/* line 74, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container .player-inner #plList li {
  cursor: pointer;
  padding: 0 0 2px 0;
  margin: 0 12.5px;
  border-bottom: 1px solid #d3d8d9;
}
/* line 79, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container .player-inner #plList li .plItem {
  position: relative;
  font-size: 21px;
}
/* line 83, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container .player-inner #plList li .plItem .icon-wrap .icon-font {
  font-size: 36px;
  position: relative;
  top: 5px;
}
/* line 88, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container .player-inner #plList li .plItem .icon-wrap .pause-button {
  display: none;
}
/* line 92, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container .player-inner #plList li .plItem .trackName {
  position: relative;
  bottom: 4px;
}
/* line 96, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container .player-inner #plList li .plItem .plLength {
  padding-left: 21px;
  position: absolute;
  right: 4px;
  top: 9px;
}
/* line 112, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container.playing #plList li.plSel .plItem .icon-wrap .play-button {
  display: none;
}
/* line 115, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container.playing #plList li.plSel .plItem .icon-wrap .pause-button {
  display: inline-block;
}
/* line 124, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container .resume-info-container,
body.bsa-customer-library-player #player-container .start-info-container {
  display: none;
  text-align: center;
  padding: 45px;
  padding-top: 10px;
  position: absolute;
  z-index: 200;
  margin-top: 6px;
  color: #777e80;
  line-height: 1.2;
}
/* line 135, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container .resume-info-container button,
body.bsa-customer-library-player #player-container .start-info-container button {
  margin: 20px auto;
  display: block;
  width: 60%;
}
/* line 140, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container .resume-info-container h2,
body.bsa-customer-library-player #player-container .start-info-container h2 {
  margin-bottom: 2px;
}
/* line 145, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container .title-container .title {
  display: none;
}
/* line 150, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container.hasPosition .resume-info-container {
  display: block;
}
/* line 155, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container.noPosition .start-info-container {
  display: block;
}
/* line 159, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap {
  height: 71px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 200;
  background: #fff;
  width: 100%;
  display: none;
  border-top: 1px solid #d3d8d9;
  text-align: center;
}
/* line 170, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .loading-overlay {
  position: absolute;
  z-index: 10;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
}
/* line 176, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .loading-overlay .bsa-loader {
  position: absolute;
  height: 100%;
  width: 100%;
}
/* line 182, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .audiowrap-inner-pad {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 25px;
}
/* line 186, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .audiowrap-inner-pad .audiowrap-inner {
  position: relative;
}
/* line 190, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .image-wrap {
  left: 0;
  top: 0;
  position: absolute;
  width: 50px;
  float: left;
}
/* line 196, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .image-wrap img {
  max-width: 100%;
}
/* line 200, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .mobile-track-info {
  display: none;
}
/* line 203, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .slider-wrap {
  margin-left: 50px;
  margin-right: 197px;
  padding: 5px 20px;
}
/* line 207, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .slider-wrap #timeSlider {
  height: 4px;
}
/* line 209, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .slider-wrap #timeSlider.ui-widget-content {
  background: #6fc315;
}
/* line 212, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .slider-wrap #timeSlider .ui-widget-header {
  background: #777e80;
}
/* line 215, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .slider-wrap #timeSlider .ui-slider-handle {
  border: 2px solid #777e80;
  height: 15px;
  width: 15px;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  -o-border-radius: 100%;
  top: -6px;
}
/* line 226, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .slider-wrap .slider,
body.bsa-customer-library-player #player-container #audiowrap .slider-wrap .slider-lower {
  width: 100%;
}
/* line 230, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .slider-wrap .slider-lower {
  width: 100%;
  padding-top: 10px;
}
/* line 233, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .slider-wrap .slider-lower div {
  display: inline-block;
  font-size: 16px;
  color: #777e80;
}
/* line 238, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .slider-wrap .slider-lower .pull-center {
  float: none;
  text-align: center;
  position: relative;
  bottom: 2px;
  color: #373c3e;
}
/* line 245, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .slider-wrap .slider-lower .pull-left {
  float: left;
}
/* line 248, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .slider-wrap .slider-lower .pull-right {
  float: right;
}
/* line 253, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .controls {
  position: absolute;
  right: 0;
  top: 0;
  width: 197px;
  float: right;
}
/* line 259, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .controls .icon-font {
  font-size: 36px;
  cursor: pointer;
  position: relative;
  top: 4px;
}
/* line 265, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .controls .speed-controls,
body.bsa-customer-library-player #player-container #audiowrap .controls .track-controls,
body.bsa-customer-library-player #player-container #audiowrap .controls .volume-controls {
  display: inline-block;
}
/* line 271, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .controls .speed-controls .speed {
  display: none;
  cursor: pointer;
}
/* line 274, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .controls .speed-controls .speed.active {
  display: inline;
}
/* line 279, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .controls .volume-controls {
  position: relative;
}
/* line 281, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .controls .volume-controls .volume-slider-wrap {
  display: none;
  position: absolute;
  z-index: 10;
  left: 2px;
  bottom: 100%;
  width: 51px;
  height: 145px;
  background: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/volume-popover.png") no-repeat top center;
  padding: 10px 0;
}
/* line 291, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .controls .volume-controls .volume-slider-wrap #volumeSlider {
  margin: 0 auto;
  width: 4px;
  height: 113px;
}
/* line 295, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .controls .volume-controls .volume-slider-wrap #volumeSlider.ui-widget-content {
  background: #777e80;
}
/* line 298, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .controls .volume-controls .volume-slider-wrap #volumeSlider .ui-widget-header {
  background: #02b2e7;
}
/* line 301, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .controls .volume-controls .volume-slider-wrap #volumeSlider .ui-slider-handle {
  border: 2px solid #777e80;
  height: 15px;
  width: 15px;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  -o-border-radius: 100%;
  left: -6px;
}
/* line 314, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .controls .volume-controls.open .volume-slider-wrap {
  display: block;
}
/* line 319, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container #audiowrap .controls #btnPause {
  display: none;
}
/* line 327, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container.playing #audiowrap .controls #btnPlay {
  display: none;
}
/* line 330, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container.playing #audiowrap .controls #btnPause {
  display: inline-block;
}
/* line 338, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container.info-hidden .resume-info-container,
body.bsa-customer-library-player #player-container.info-hidden .start-info-container {
  display: none !important;
}
/* line 344, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container.info-hidden .player-inner #plwrap .overlay {
  display: none;
}
/* line 350, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container.info-hidden .title-container .title {
  display: block;
}
/* line 355, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container.player-open {
  margin-bottom: 100px;
}
/* line 357, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container.player-open #audiowrap {
  display: block;
}
/* line 363, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container.player-open #plList li.plSel .plItem {
  color: #02b2e7;
}
/* line 366, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player #player-container.player-open #plList li.plSel .plItem .icon-wrap .icon-font {
  color: #02b2e7;
}
/* line 380, ../scss/module/_customerlibrary-player.scss */
body.bsa-customer-library-player.mobile-isIos #player-container #audiowrap .controls .volume-controls {
  display: none;
}
@media only screen and (max-width: 535px) {
  /* line 390, ../scss/module/_customerlibrary-player.scss */
  body.bsa-customer-library-player #player-container .pad {
    padding: 0;
    padding-top: 40px;
  }
  /* line 396, ../scss/module/_customerlibrary-player.scss */
  body.bsa-customer-library-player #player-container .resume-info-container button,
  body.bsa-customer-library-player #player-container .start-info-container button {
    width: 100%;
  }
  /* line 401, ../scss/module/_customerlibrary-player.scss */
  body.bsa-customer-library-player #player-container #audiowrap .audiowrap-inner-pad {
    padding: 0;
  }
  /* line 404, ../scss/module/_customerlibrary-player.scss */
  body.bsa-customer-library-player #player-container #audiowrap .image-wrap {
    position: static;
    padding-left: 10px;
  }
  /* line 408, ../scss/module/_customerlibrary-player.scss */
  body.bsa-customer-library-player #player-container #audiowrap .slider-wrap {
    margin: 0 auto;
    padding: 5px 8px 10px 8px;
  }
  /* line 411, ../scss/module/_customerlibrary-player.scss */
  body.bsa-customer-library-player #player-container #audiowrap .slider-wrap .slider-lower {
    display: none;
  }
  /* line 415, ../scss/module/_customerlibrary-player.scss */
  body.bsa-customer-library-player #player-container #audiowrap .mobile-track-info {
    padding-left: 15px;
    display: block;
    float: left;
  }
  /* line 419, ../scss/module/_customerlibrary-player.scss */
  body.bsa-customer-library-player #player-container #audiowrap .mobile-track-info .remaining,
  body.bsa-customer-library-player #player-container #audiowrap .mobile-track-info .now-playing-track {
    display: block;
    font-size: 16px;
    color: #777e80;
    text-align: left;
  }
  /* line 426, ../scss/module/_customerlibrary-player.scss */
  body.bsa-customer-library-player #player-container #audiowrap .mobile-track-info .now-playing-track {
    color: #373c3e;
  }
  /* line 429, ../scss/module/_customerlibrary-player.scss */
  body.bsa-customer-library-player #player-container #audiowrap .mobile-track-info .remaining {
    position: relative;
    bottom: 2px;
  }
  /* line 434, ../scss/module/_customerlibrary-player.scss */
  body.bsa-customer-library-player #player-container #audiowrap .controls {
    position: static;
    width: auto;
    padding-right: 10px;
  }
  /* line 438, ../scss/module/_customerlibrary-player.scss */
  body.bsa-customer-library-player #player-container #audiowrap .controls .track-controls {
    padding-right: 7px;
  }
}
@media only screen and (max-width: 410px) {
  /* line 449, ../scss/module/_customerlibrary-player.scss */
  body.bsa-customer-library-player #player-container .player-inner .title-container img {
    max-width: 85%;
  }
}
@media only screen and (max-width: 360px) {
  /* line 459, ../scss/module/_customerlibrary-player.scss */
  body.bsa-customer-library-player #player-container .track-controls #btnPrev,
  body.bsa-customer-library-player #player-container .track-controls #btnNext {
    display: none;
  }
}

/* ============================================ *
 * Customer Login / Signup
 * ============================================ */
/* line 31, ../scss/module/_customer-loginsignup.scss */
.page-account-simple {
  background: #edf2f3;
}
/* line 34, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .wrapper {
  background: #edf2f3;
  position: relative;
}
/* line 39, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .page {
  position: static !important;
}
/* line 43, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .main-container {
  background: #edf2f3;
  padding-bottom: 0;
}
/* line 49, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main {
  padding: 90px 0;
  margin: 0 auto;
}
/* line 53, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box {
  background: #fff;
  max-width: 340px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #c6cbcc;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  box-shadow: 1px 1px 4px 0 rgba(198, 204, 205, 0.47);
  -moz-box-shadow: 1px 1px 4px 0 rgba(198, 204, 205, 0.47);
  -webkit-box-shadow: 1px 1px 4px 0 rgba(198, 204, 205, 0.47);
  -o-box-shadow: 1px 1px 4px 0 rgba(198, 204, 205, 0.47);
}
/* line 68, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-upper .bsa-login-wrap {
  width: 80%;
  margin: 30px auto 15px auto;
}
/* line 71, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-upper .bsa-login-wrap .bsa-account-portal-title {
  font-size: 30px;
  color: #16191a;
  line-height: 100%;
  margin-bottom: 0;
}
/* line 77, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-upper .bsa-login-wrap #reg-welcome {
  margin-bottom: 8px;
}
/* line 80, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-upper .bsa-login-wrap .icon-email {
  font-size: 50px;
}
/* line 83, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-upper .bsa-login-wrap .icon-checkmark {
  color: #6fc315;
  font-size: 50px;
}
/* line 90, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap {
  margin: 0 25px;
  /* create account */
}
/* line 92, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap .bsa-account-portal-title {
  font-size: 30px;
  color: #373c3e;
  line-height: 100%;
}
/* line 97, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap .contact-recaptcha {
  position: relative;
  left: -12px;
  padding-top: 16px;
  padding-bottom: 10px;
}
/* line 103, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap .form-instructions {
  font-size: 18px;
  font-style: normal;
  line-height: 1.35;
}
/* line 108, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap .buttons-set {
  border-top: 0;
  max-width: 278px;
  margin: 20px auto 30px auto;
  padding-top: 0;
}
/* line 114, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap .forgot-password {
  font-size: 14px;
  line-height: 19.5px;
}
/* line 118, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap .input-box {
  max-width: 278px;
  margin: 0 auto;
  position: relative;
}
/* line 122, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap .input-box label {
  width: 100%;
}
/* line 124, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap .input-box label .icon-font {
  float: left;
  position: absolute;
  top: 9px;
  padding-left: 7px;
}
/* line 130, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap .input-box label input {
  background: #fff;
  box-shadow: 0 0 0;
  border: 1px solid #c6cbcc;
  font-size: 16px;
  height: 37px;
  padding: 6px 8px 7px 30px;
}
/* line 143, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap .fieldset {
  margin-left: 0;
}
/* line 146, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap .input-box.input-checkbox-box {
  text-align: left;
  padding-left: 9px;
  width: auto;
}
/* line 151, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap .label_is_subscribed {
  font-size: 16px;
  line-height: 150%;
  text-transform: none;
  padding: 14px 10px 6px 19px;
}
/* line 157, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap .form-list .control input.checkbox {
  margin-top: 19px;
  margin-left: -2px;
}
/* line 164, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .remember-me-box div,
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .remember-me-box input,
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .remember-me-box label,
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .remember-me-box a {
  display: inline-block;
}
/* line 171, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .forgot-password {
  margin-top: 15px;
}
/* line 173, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .forgot-password a {
  font-size: 16px;
  line-height: 16px;
  color: #0ca2e3;
}
/* line 180, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-lower {
  background: #edf2f3;
}
/* line 182, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-login-main .bsa-login-box .bsa-login-lower .create-account {
  font-size: 16px;
  padding: 20px 0;
  margin-bottom: 0;
  line-height: 1.35;
}
@media screen and (max-width: 768px) {
  /* line 194, ../scss/module/_customer-loginsignup.scss */
  .page-account-simple .col1-layout .col-main {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  /* line 200, ../scss/module/_customer-loginsignup.scss */
  .page-account-simple .wrapper .main-container {
    margin-top: 0;
  }
}
@media screen and (max-width: 480px) {
  /* line 206, ../scss/module/_customer-loginsignup.scss */
  .page-account-simple .bsa-login-main {
    padding: 60px 0 150px 0;
  }
  /* line 210, ../scss/module/_customer-loginsignup.scss */
  .page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap {
    margin: 0 15px;
  }
  /* line 216, ../scss/module/_customer-loginsignup.scss */
  .page-account-simple #bsa-footer-simple {
    position: static;
  }
}

/* line 227, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .account-forgotpassword .bsa-login-middle .bsa-login-wrap .contact-recaptcha {
  padding-top: 17px;
}
/* line 235, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .account-create .bsa-login-main .bsa-login-box {
  text-align: left;
}
/* line 238, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .account-create .bsa-login-main .bsa-login-upper,
.page-account-simple .account-create .bsa-login-main .bsa-login-lower {
  text-align: center;
}
/* line 244, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .account-create .bsa-login-main .bsa-login-middle .bsa-login-wrap .contact-recaptcha {
  padding-top: 17px;
}
/* line 250, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .account-create .bsa-login-main .control label {
  background: none;
}
/* line 256, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-privacy-signup-notice {
  text-align: center;
  max-width: 340px;
  margin: 0 auto;
  padding: 12px 0 0 0;
  font-size: 14px;
  color: #373c3e;
}
/* line 263, ../scss/module/_customer-loginsignup.scss */
.page-account-simple .bsa-privacy-signup-notice .underline {
  text-decoration: underline;
}
@media screen and (max-width: 360px) {
  /* line 273, ../scss/module/_customer-loginsignup.scss */
  .page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap .contact-recaptcha {
    position: relative;
    left: 0;
    overflow: hidden;
    padding-top: 20px;
  }
  /* line 278, ../scss/module/_customer-loginsignup.scss */
  .page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap .contact-recaptcha .g-recaptcha {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    border-right: 1px solid #d8d8d8;
    -webkit-transform: scale(0.92);
    -moz-transform: scale(0.92);
    -ms-transform: scale(0.92);
    -o-transform: scale(0.92);
    transform: scale(0.92);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}
@media screen and (max-width: 340px) {
  /* line 300, ../scss/module/_customer-loginsignup.scss */
  .page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap .contact-recaptcha .g-recaptcha {
    -webkit-transform: scale(0.89);
    -moz-transform: scale(0.89);
    -ms-transform: scale(0.89);
    -o-transform: scale(0.89);
    transform: scale(0.89);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}
@media screen and (max-width: 330px) {
  /* line 317, ../scss/module/_customer-loginsignup.scss */
  .page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap .contact-recaptcha .g-recaptcha {
    -webkit-transform: scale(0.88);
    -moz-transform: scale(0.88);
    -ms-transform: scale(0.88);
    -o-transform: scale(0.88);
    transform: scale(0.88);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}
@media screen and (max-width: 320px) {
  /* line 334, ../scss/module/_customer-loginsignup.scss */
  .page-account-simple .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap .contact-recaptcha .g-recaptcha {
    -webkit-transform: scale(0.85);
    -moz-transform: scale(0.85);
    -ms-transform: scale(0.85);
    -o-transform: scale(0.85);
    transform: scale(0.85);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}

/* ============================================ *
 * Category Landing Pages
 * Created by Bret Miller 11/16/2016
 * ============================================ */
/* line 5, ../scss/module/_footer-membership-upsell.scss */
#bm-free-audio-membership-container {
  display: none;
}

/* line 10, ../scss/module/_footer-membership-upsell.scss */
body.has-membership-upsell .bm-membership-upsell {
  margin-bottom: 230px;
}
/* line 14, ../scss/module/_footer-membership-upsell.scss */
body.has-membership-upsell .bm-fr {
  float: right;
}
/* line 18, ../scss/module/_footer-membership-upsell.scss */
body.has-membership-upsell .bm-dn {
  display: none;
}
/* line 22, ../scss/module/_footer-membership-upsell.scss */
body.has-membership-upsell #bm-free-audio-membership-container {
  background: transparent;
  width: 100%;
  height: auto;
  text-align: center;
  position: fixed;
  left: 0px;
  bottom: 0px;
  display: none;
  z-index: 1000;
}
/* line 34, ../scss/module/_footer-membership-upsell.scss */
body.has-membership-upsell #bm-free-audio-membership {
  width: 100%;
  background: #e0e4e5;
  color: #373c3e;
  height: 185px;
  display: block;
  padding-left: 24px;
  position: absolute;
  bottom: 0px;
  z-index: 10;
  overflow: visible !important;
}
/* line 47, ../scss/module/_footer-membership-upsell.scss */
body.has-membership-upsell #bm-free-audio-membership-inner {
  width: 960px;
  color: #373c3e;
  display: block;
  padding-left: 24px;
  margin: 0 auto;
  position: relative;
}
/* line 56, ../scss/module/_footer-membership-upsell.scss */
body.has-membership-upsell #bm-free-audio-message {
  clear: left;
  background: #e0e4e5;
  width: 100%;
  height: 54px;
  text-align: center;
  color: #373c3e;
  font-size: 24px;
  padding-top: 16px;
  position: fixed;
  bottom: 0px;
  display: none;
}
/* line 70, ../scss/module/_footer-membership-upsell.scss */
body.has-membership-upsell #bm-phone {
  position: relative;
  top: -50px;
  width: 318px;
  float: left;
}
/* line 77, ../scss/module/_footer-membership-upsell.scss */
body.has-membership-upsell #bm-free-audio-membership-text {
  width: 368px;
  float: left;
  margin: 17px 0 0 30px;
  text-align: left;
}
/* line 84, ../scss/module/_footer-membership-upsell.scss */
body.has-membership-upsell #bm-fraume-01 {
  color: #373c3e;
  font-size: 24px;
}
/* line 89, ../scss/module/_footer-membership-upsell.scss */
body.has-membership-upsell #bm-fraume-02 {
  clear: left;
  color: #373c3e;
  font-size: 18px;
  padding: 7px 0 11px 0;
  line-height: 26px;
}
/* line 97, ../scss/module/_footer-membership-upsell.scss */
body.has-membership-upsell #bm-member-button {
  max-width: 234px;
  float: left;
  margin-top: 70px;
}
/* line 103, ../scss/module/_footer-membership-upsell.scss */
body.has-membership-upsell #bm-learn-more {
  font-size: 18px;
}
/* line 107, ../scss/module/_footer-membership-upsell.scss */
body.has-membership-upsell .bm-bec-mem {
  background: #6fc315;
  border-color: #6fc315;
}
/* line 111, ../scss/module/_footer-membership-upsell.scss */
body.has-membership-upsell .bm-bec-mem:hover {
  background: #78d614;
}
/* line 114, ../scss/module/_footer-membership-upsell.scss */
body.has-membership-upsell .bm-bec-mem:active {
  background: #60ad0e;
}
/* line 117, ../scss/module/_footer-membership-upsell.scss */
body.has-membership-upsell .bm-bec-mem:focus {
  background: #60ad0e;
}
/* line 122, ../scss/module/_footer-membership-upsell.scss */
body.has-membership-upsell #bm-icon-down {
  float: right;
  position: fixed;
  bottom: 155px;
  right: 10px;
}
/* line 129, ../scss/module/_footer-membership-upsell.scss */
body.has-membership-upsell .bm-bec-mem-fs {
  font-size: 24px;
  cursor: pointer;
}
/* line 134, ../scss/module/_footer-membership-upsell.scss */
body.has-membership-upsell .bm-bec-mem-fs-02 {
  font-size: 24px;
  cursor: pointer;
  margin-right: 10px;
}
/* line 140, ../scss/module/_footer-membership-upsell.scss */
body.has-membership-upsell .bm-kv-bold {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
@media screen and (max-width: 946px) {
  /* line 145, ../scss/module/_footer-membership-upsell.scss */
  body.has-membership-upsell #bm-free-audio-membership {
    padding-left: 0px;
  }
  /* line 149, ../scss/module/_footer-membership-upsell.scss */
  body.has-membership-upsell #bm-free-audio-membership-inner {
    width: 635px;
  }
  /* line 153, ../scss/module/_footer-membership-upsell.scss */
  body.has-membership-upsell #bm-free-audio-membership-text {
    width: 255px;
    margin: 10px 0 0 10px;
  }
  /* line 158, ../scss/module/_footer-membership-upsell.scss */
  body.has-membership-upsell #bm-fraume-02 {
    font-size: 14px;
    padding: 8px 0 8px 0;
    line-height: 20px;
  }
  /* line 164, ../scss/module/_footer-membership-upsell.scss */
  body.has-membership-upsell #bm-member-button {
    margin-top: -32px;
    margin-left: 121px;
  }
  /* line 169, ../scss/module/_footer-membership-upsell.scss */
  body.has-membership-upsell #bm-phone {
    left: -10px;
  }
}
@media screen and (min-width: 661px) {
  /* line 177, ../scss/module/_footer-membership-upsell.scss */
  body.has-membership-upsell #bm-free-audio-membership-container {
    display: block;
  }
}
@media screen and (max-width: 660px) {
  /* line 184, ../scss/module/_footer-membership-upsell.scss */
  body.has-membership-upsell #bm-free-audio-membership-container {
    display: none;
  }
}
@media screen and (min-width: 661px) {
  /* line 192, ../scss/module/_footer-membership-upsell.scss */
  body.has-membership-upsell.has-membership #bm-free-audio-membership-container {
    display: none;
  }
}

/* ============================================ *
 * Blackstone Custom - Category List Widget
 * ============================================ */
/* line 31, ../scss/module/_category-list-widget.scss */
body .page .alpha-nav {
  padding-top: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d3d8d9;
  list-style-type: none;
  text-align: center;
  margin-bottom: 0;
}
/* line 38, ../scss/module/_category-list-widget.scss */
body .page .alpha-nav a {
  display: inline-block;
  color: #373c3e;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 44, ../scss/module/_category-list-widget.scss */
body .page .alpha-separator {
  width: 100%;
  border-top: 1px solid #d3d8d9;
}
/* line 47, ../scss/module/_category-list-widget.scss */
body .page .alpha-separator.count-1 {
  border-top-color: transparent;
}
/* line 51, ../scss/module/_category-list-widget.scss */
body .page .catList {
  overflow: hidden;
  padding: 30px 25px 15px 25px;
}
/* line 55, ../scss/module/_category-list-widget.scss */
body .page .catList .alpha-separator .alpha {
  font-size: 28px;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  padding-top: 20px;
  display: inline-block;
}
/* line 62, ../scss/module/_category-list-widget.scss */
body .page .catList li {
  width: 33%;
  padding: 0;
  margin: 0;
  float: left;
  list-style: none;
  text-align: left;
}
/* line 69, ../scss/module/_category-list-widget.scss */
body .page .catList li a {
  color: #373c3e;
}
@media screen and (max-width: 979px) {
  /* line 74, ../scss/module/_category-list-widget.scss */
  body .page .catList li {
    width: 50%;
  }
}
@media screen and (max-width: 800px) {
  /* line 79, ../scss/module/_category-list-widget.scss */
  body .page .catList li {
    width: 100%;
  }
}

/* ============================================ *
 * jQuery UI styles
 * ============================================ */
/*! jQuery UI - v1.12.1 - 2016-09-14
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?bgShadowXPos=&bgOverlayXPos=&bgErrorXPos=&bgHighlightXPos=&bgContentXPos=&bgHeaderXPos=&bgActiveXPos=&bgHoverXPos=&bgDefaultXPos=&bgShadowYPos=&bgOverlayYPos=&bgErrorYPos=&bgHighlightYPos=&bgContentYPos=&bgHeaderYPos=&bgActiveYPos=&bgHoverYPos=&bgDefaultYPos=&bgShadowRepeat=&bgOverlayRepeat=&bgErrorRepeat=&bgHighlightRepeat=&bgContentRepeat=&bgHeaderRepeat=&bgActiveRepeat=&bgHoverRepeat=&bgDefaultRepeat=&iconsHover=url(https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/css/%22images%2Fui-icons_555555_256x240.png%22)&iconsHighlight=url(https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/css/%22images%2Fui-icons_777620_256x240.png%22)&iconsHeader=url(https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/css/%22images%2Fui-icons_444444_256x240.png%22)&iconsError=url(https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/css/%22images%2Fui-icons_cc0000_256x240.png%22)&iconsDefault=url(https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/css/%22images%2Fui-icons_777777_256x240.png%22)&iconsContent=url(https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/css/%22images%2Fui-icons_444444_256x240.png%22)&iconsActive=url(https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/css/%22images%2Fui-icons_ffffff_256x240.png%22)&bgImgUrlShadow=&bgImgUrlOverlay=&bgImgUrlHover=&bgImgUrlHighlight=&bgImgUrlHeader=&bgImgUrlError=&bgImgUrlDefault=&bgImgUrlContent=&bgImgUrlActive=&opacityFilterShadow=Alpha(Opacity%3D30)&opacityFilterOverlay=Alpha(Opacity%3D30)&opacityShadowPerc=30&opacityOverlayPerc=30&iconColorHover=%23555555&iconColorHighlight=%23777620&iconColorHeader=%23444444&iconColorError=%23cc0000&iconColorDefault=%23777777&iconColorContent=%23444444&iconColorActive=%23ffffff&bgImgOpacityShadow=0&bgImgOpacityOverlay=0&bgImgOpacityError=95&bgImgOpacityHighlight=55&bgImgOpacityContent=75&bgImgOpacityHeader=75&bgImgOpacityActive=65&bgImgOpacityHover=75&bgImgOpacityDefault=75&bgTextureShadow=flat&bgTextureOverlay=flat&bgTextureError=flat&bgTextureHighlight=flat&bgTextureContent=flat&bgTextureHeader=flat&bgTextureActive=flat&bgTextureHover=flat&bgTextureDefault=flat&cornerRadius=3px&fwDefault=normal&ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&cornerRadiusShadow=8px&thicknessShadow=5px&offsetLeftShadow=0px&offsetTopShadow=0px&opacityShadow=.3&bgColorShadow=%23666666&opacityOverlay=.3&bgColorOverlay=%23aaaaaa&fcError=%235f3f3f&borderColorError=%23f1a899&bgColorError=%23fddfdf&fcHighlight=%23777620&borderColorHighlight=%23dad55e&bgColorHighlight=%23fffa90&fcContent=%23333333&borderColorContent=%23dddddd&bgColorContent=%23ffffff&fcHeader=%23333333&borderColorHeader=%23dddddd&bgColorHeader=%23e9e9e9&fcActive=%23ffffff&borderColorActive=%23003eff&bgColorActive=%23007fff&fcHover=%232b2b2b&borderColorHover=%23cccccc&bgColorHover=%23ededed&fcDefault=%23454545&borderColorDefault=%23c5c5c5&bgColorDefault=%23f6f6f6
* Copyright jQuery Foundation and other contributors; Licensed MIT */
/* Layout helpers
----------------------------------*/
/* line 9, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-helper-hidden {
  display: none;
}

/* line 13, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* line 24, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

/* line 35, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

/* line 42, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-helper-clearfix:after {
  clear: both;
}

/* line 46, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
  /* support: IE8 */
}

/* line 56, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-front {
  z-index: 100;
}

/* Interaction Cues
----------------------------------*/
/* line 62, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

/* Icons
----------------------------------*/
/* line 69, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

/* line 79, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

/* Misc visuals
----------------------------------*/
/* Overlays */
/* line 89, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 97, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 2px 0 0 0;
  padding: .5em .5em .5em .7em;
  font-size: 100%;
}

/* line 106, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto;
}

/* line 112, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
}

/* line 119, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  outline: 0;
}

/* line 127, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-menu .ui-menu {
  position: absolute;
}

/* line 131, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-menu .ui-menu-item {
  margin: 0;
  cursor: pointer;
  /* support: IE10, see #8844 */
  list-style-image: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/css/data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}

/* line 138, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-menu .ui-menu-item-wrapper {
  position: relative;
  padding: 3px 1em 3px .4em;
}

/* line 143, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-menu .ui-menu-divider {
  margin: 5px 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}

/* line 151, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
  margin: -1px;
}

/* icon support */
/* line 157, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-menu-icons {
  position: relative;
}

/* line 161, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-menu-icons .ui-menu-item-wrapper {
  padding-left: 2em;
}

/* left-aligned */
/* line 166, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-menu .ui-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: .2em;
  margin: auto 0;
}

/* right-aligned */
/* line 175, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}

/* line 180, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-button {
  padding: .4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: .1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Support: IE <= 11 */
  overflow: visible;
}

/* line 198, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
/* line 207, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-button-icon-only {
  width: 2em;
  box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap;
}

/* no icon support for input elements */
/* line 215, ../scss/module/jquery-ui/_jqueryui.scss */
input.ui-button.ui-button-icon-only {
  text-indent: 0;
}

/* button icon element(s) */
/* line 220, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}

/* line 228, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap;
}

/* line 237, ../scss/module/jquery-ui/_jqueryui.scss */
input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: .4em 1em;
}

/* workarounds */
/* Support: Firefox 5 - 40 */
/* line 247, ../scss/module/jquery-ui/_jqueryui.scss */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 253, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-controlgroup {
  vertical-align: middle;
  display: inline-block;
}

/* line 258, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-controlgroup > .ui-controlgroup-item {
  float: left;
  margin-left: 0;
  margin-right: 0;
}

/* line 264, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
  z-index: 9999;
}

/* line 269, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-controlgroup-vertical > .ui-controlgroup-item {
  display: block;
  float: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
}

/* line 278, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-controlgroup-vertical .ui-controlgroup-item {
  box-sizing: border-box;
}

/* line 282, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-controlgroup .ui-controlgroup-label {
  padding: .4em 1em;
}

/* line 286, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-controlgroup .ui-controlgroup-label span {
  font-size: 80%;
}

/* line 290, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
  border-left: none;
}

/* line 294, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
  border-top: none;
}

/* line 298, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
  border-right: none;
}

/* line 302, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
  border-bottom: none;
}

/* Spinner specific style fixes */
/* line 307, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-controlgroup-vertical .ui-spinner-input {
  /* Support: IE8 only, Android < 4.4 only */
  width: 75%;
  width: calc(100% - 2.4em);
}

/* line 314, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
  border-top-style: solid;
}

/* line 318, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-checkboxradio-label .ui-icon-background {
  box-shadow: inset 1px 1px 1px #ccc;
  border-radius: .12em;
  border: none;
}

/* line 324, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-checkboxradio-radio-label .ui-icon-background {
  width: 16px;
  height: 16px;
  border-radius: 1em;
  overflow: visible;
  border: none;
}

/* line 332, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  background-image: none;
  width: 8px;
  height: 8px;
  border-width: 4px;
  border-style: solid;
}

/* line 341, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-checkboxradio-disabled {
  pointer-events: none;
}

/* line 345, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker {
  width: 17em;
  padding: .2em .2em 0;
  display: none;
}

/* line 351, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0;
}

/* line 356, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

/* line 364, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

/* line 369, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

/* line 373, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

/* line 377, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

/* line 381, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

/* line 385, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

/* line 395, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

/* line 401, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

/* line 406, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

/* line 411, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em;
}

/* line 418, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

/* line 425, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker td {
  border: 0;
  padding: 1px;
}

/* line 430, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none;
}

/* line 438, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

/* line 447, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible;
}

/* line 456, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

/* with multiple calendars */
/* line 461, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

/* line 465, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

/* line 469, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em;
}

/* line 474, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

/* line 478, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

/* line 482, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

/* line 486, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

/* line 491, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

/* line 495, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

/* RTL support */
/* line 502, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker-rtl {
  direction: rtl;
}

/* line 506, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

/* line 511, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

/* line 516, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

/* line 521, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

/* line 526, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

/* line 530, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

/* line 534, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

/* line 539, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

/* Icons */
/* line 546, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: .5em;
  top: .3em;
}

/* line 555, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: .2em;
  outline: 0;
}

/* line 563, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-dialog .ui-dialog-titlebar {
  padding: .4em 1em 0 1em;
  position: relative;
}

/* line 568, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-dialog .ui-dialog-title {
  float: left;
  margin: .1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 577, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: .3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}

/* line 587, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0 1em;
  background: none;
  overflow: auto;
  text-align: center;
  color: #777e80;
  font-size: 16px;
}

/* line 598, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: .5em;
  padding: .3em 1em .5em .4em;
}

/* line 606, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

/* line 610, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-dialog .ui-dialog-buttonpane button {
  margin: .5em .4em .5em 0;
  cursor: pointer;
}

/* line 615, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0;
}

/* line 620, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-dialog .ui-resizable-e {
  width: 2px;
  right: 0;
}

/* line 625, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-dialog .ui-resizable-s {
  height: 2px;
  bottom: 0;
}

/* line 630, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-dialog .ui-resizable-w {
  width: 2px;
  left: 0;
}

/* line 635, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
  width: 7px;
  height: 7px;
}

/* line 643, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-dialog .ui-resizable-se {
  right: 0;
  bottom: 0;
}

/* line 648, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-dialog .ui-resizable-sw {
  left: 0;
  bottom: 0;
}

/* line 653, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0;
}

/* line 658, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0;
}

/* line 663, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

/* line 667, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-draggable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

/* line 672, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-resizable {
  position: relative;
}

/* line 676, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block;
  -ms-touch-action: none;
  touch-action: none;
}

/* line 684, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}

/* line 689, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

/* line 697, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

/* line 705, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

/* line 713, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

/* line 721, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

/* line 729, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

/* line 737, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

/* line 745, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

/* line 753, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden;
}

/* line 759, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}

/* line 764, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-progressbar .ui-progressbar-overlay {
  background: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/css/data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  height: 100%;
  filter: alpha(opacity=25);
  /* support: IE8 */
  opacity: 0.25;
}

/* line 771, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}

/* line 775, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-selectable {
  -ms-touch-action: none;
  touch-action: none;
}

/* line 780, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}

/* line 786, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

/* line 795, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
}

/* line 801, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  padding: 2px 0.4em;
  margin: 0.5em 0 0 0;
  height: auto;
  border: 0;
}

/* line 811, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-selectmenu-open {
  display: block;
}

/* line 815, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-selectmenu-text {
  display: block;
  margin-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 822, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-selectmenu-button.ui-button {
  text-align: left;
  white-space: nowrap;
  width: 14em;
}

/* line 828, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-selectmenu-icon.ui-icon {
  float: right;
  margin-top: 0;
}

/* line 833, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-slider {
  position: relative;
  text-align: left;
}

/* line 838, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}

/* line 848, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

/* support: IE8 - See #6727 */
/* line 858, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}

/* line 863, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-slider-horizontal {
  height: .8em;
}

/* line 867, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-slider-horizontal .ui-slider-handle {
  top: -.3em;
  margin-left: -.6em;
}

/* line 872, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

/* line 877, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

/* line 881, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

/* line 885, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-slider-vertical {
  width: .8em;
  height: 100px;
}

/* line 890, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-slider-vertical .ui-slider-handle {
  left: -.3em;
  margin-left: 0;
  margin-bottom: -.6em;
}

/* line 896, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

/* line 901, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

/* line 905, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

/* line 909, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-sortable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

/* line 914, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}

/* line 922, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: .222em 0;
  margin: .2em 0;
  vertical-align: middle;
  margin-left: .4em;
  margin-right: 2em;
}

/* line 933, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-spinner-button {
  width: 1.6em;
  height: 50%;
  font-size: .5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}

/* more specificity required here to override default borders */
/* line 948, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-spinner a.ui-spinner-button {
  border-top-style: none;
  border-bottom-style: none;
  border-right-style: none;
}

/* line 954, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-spinner-up {
  top: 0;
}

/* line 958, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-spinner-down {
  bottom: 0;
}

/* line 962, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-tabs {
  position: relative;
  /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
  padding: .2em;
}

/* line 967, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: .2em .2em 0;
}

/* line 972, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px .2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap;
}

/* line 983, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: .5em 1em;
  text-decoration: none;
}

/* line 989, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

/* line 994, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}

/* line 1000, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}

/* line 1004, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}

/* line 1011, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
}

/* line 1018, ../scss/module/jquery-ui/_jqueryui.scss */
body .ui-tooltip {
  border-width: 2px;
}

/* Component containers
----------------------------------*/
/* line 1024, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

/* line 1029, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-widget .ui-widget {
  font-size: 1em;
}

/* line 1033, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

/* line 1041, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

/* line 1045, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-widget-content {
  background: #ffffff;
  color: #333333;
}

/* line 1050, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-widget-content a {
  color: #333333;
}

/* line 1054, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}

/* line 1061, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-widget-header a {
  color: #333333;
}

/* Interaction states
----------------------------------*/
/* line 1067, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

/* line 1081, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  text-decoration: none;
}

/* line 1091, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  font-weight: normal;
}

/* line 1102, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}

/* line 1116, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-visual-focus {
  box-shadow: 0 0 3px 1px #5e9ed6;
}

/* line 1120, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff;
}

/* line 1132, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff;
}

/* line 1138, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
/* line 1147, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}

/* line 1155, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}

/* line 1160, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}

/* line 1166, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

/* line 1174, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

/* line 1180, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

/* line 1186, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

/* line 1192, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter: Alpha(Opacity=70);
  /* support: IE8 */
  font-weight: normal;
}

/* line 1200, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter: Alpha(Opacity=35);
  /* support: IE8 */
  background-image: none;
}

/* line 1208, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
  /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/
/* states and images */
/* line 1216, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon {
  width: 16px;
  height: 16px;
}

/* line 1221, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/jquery-ui/ui-icons_444444_256x240.png");
}

/* line 1226, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-widget-header .ui-icon {
  background-image: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/jquery-ui/ui-icons_444444_256x240.png");
}

/* line 1230, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/jquery-ui/ui-icons_555555_256x240.png");
}

/* line 1237, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/jquery-ui/ui-icons_ffffff_256x240.png");
}

/* line 1242, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/jquery-ui/ui-icons_777620_256x240.png");
}

/* line 1247, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/jquery-ui/ui-icons_cc0000_256x240.png");
}

/* line 1252, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-button .ui-icon {
  background-image: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/jquery-ui/ui-icons_777777_256x240.png");
}

/* positioning */
/* line 1257, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-blank {
  background-position: 16px 16px;
}

/* line 1261, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-caret-1-n {
  background-position: 0 0;
}

/* line 1265, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

/* line 1269, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-caret-1-e {
  background-position: -32px 0;
}

/* line 1273, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-caret-1-se {
  background-position: -48px 0;
}

/* line 1277, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-caret-1-s {
  background-position: -65px 0;
}

/* line 1281, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

/* line 1285, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-caret-1-w {
  background-position: -96px 0;
}

/* line 1289, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

/* line 1293, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

/* line 1297, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

/* line 1301, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

/* line 1305, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

/* line 1309, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

/* line 1313, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

/* line 1317, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

/* line 1321, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

/* line 1325, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

/* line 1329, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

/* line 1333, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

/* line 1337, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

/* line 1341, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

/* line 1345, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

/* line 1349, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

/* line 1353, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

/* line 1357, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

/* line 1361, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

/* line 1365, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

/* line 1369, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

/* line 1373, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

/* line 1377, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

/* line 1381, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

/* line 1385, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

/* line 1389, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

/* line 1393, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

/* line 1397, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

/* line 1401, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

/* line 1405, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

/* line 1409, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

/* line 1413, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

/* line 1417, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

/* line 1421, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

/* line 1425, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

/* line 1429, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

/* line 1433, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

/* line 1437, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

/* line 1441, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

/* line 1445, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

/* line 1449, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

/* line 1453, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

/* line 1457, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

/* line 1461, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

/* line 1465, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

/* line 1469, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

/* line 1473, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

/* line 1477, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

/* line 1481, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

/* line 1485, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

/* line 1489, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

/* line 1493, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

/* line 1497, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

/* line 1501, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

/* line 1505, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

/* line 1509, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

/* line 1513, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

/* line 1517, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

/* line 1521, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

/* line 1525, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-extlink {
  background-position: -32px -80px;
}

/* line 1529, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-newwin {
  background-position: -48px -80px;
}

/* line 1533, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-refresh {
  background-position: -64px -80px;
}

/* line 1537, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-shuffle {
  background-position: -80px -80px;
}

/* line 1541, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

/* line 1545, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

/* line 1549, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

/* line 1553, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-folder-open {
  background-position: -16px -96px;
}

/* line 1557, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-document {
  background-position: -32px -96px;
}

/* line 1561, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-document-b {
  background-position: -48px -96px;
}

/* line 1565, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-note {
  background-position: -64px -96px;
}

/* line 1569, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-mail-closed {
  background-position: -80px -96px;
}

/* line 1573, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-mail-open {
  background-position: -96px -96px;
}

/* line 1577, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-suitcase {
  background-position: -112px -96px;
}

/* line 1581, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-comment {
  background-position: -128px -96px;
}

/* line 1585, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-person {
  background-position: -144px -96px;
}

/* line 1589, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-print {
  background-position: -160px -96px;
}

/* line 1593, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-trash {
  background-position: -176px -96px;
}

/* line 1597, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-locked {
  background-position: -192px -96px;
}

/* line 1601, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-unlocked {
  background-position: -208px -96px;
}

/* line 1605, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-bookmark {
  background-position: -224px -96px;
}

/* line 1609, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-tag {
  background-position: -240px -96px;
}

/* line 1613, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-home {
  background-position: 0 -112px;
}

/* line 1617, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-flag {
  background-position: -16px -112px;
}

/* line 1621, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-calendar {
  background-position: -32px -112px;
}

/* line 1625, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-cart {
  background-position: -48px -112px;
}

/* line 1629, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-pencil {
  background-position: -64px -112px;
}

/* line 1633, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-clock {
  background-position: -80px -112px;
}

/* line 1637, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-disk {
  background-position: -96px -112px;
}

/* line 1641, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-calculator {
  background-position: -112px -112px;
}

/* line 1645, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-zoomin {
  background-position: -128px -112px;
}

/* line 1649, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-zoomout {
  background-position: -144px -112px;
}

/* line 1653, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-search {
  background-position: -160px -112px;
}

/* line 1657, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-wrench {
  background-position: -176px -112px;
}

/* line 1661, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-gear {
  background-position: -192px -112px;
}

/* line 1665, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-heart {
  background-position: -208px -112px;
}

/* line 1669, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-star {
  background-position: -224px -112px;
}

/* line 1673, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-link {
  background-position: -240px -112px;
}

/* line 1677, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-cancel {
  background-position: 0 -128px;
}

/* line 1681, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-plus {
  background-position: -16px -128px;
}

/* line 1685, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-plusthick {
  background-position: -32px -128px;
}

/* line 1689, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-minus {
  background-position: -48px -128px;
}

/* line 1693, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-minusthick {
  background-position: -64px -128px;
}

/* line 1697, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-close {
  background-position: -80px -128px;
}

/* line 1701, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-closethick {
  background-position: -96px -128px;
}

/* line 1705, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-key {
  background-position: -112px -128px;
}

/* line 1709, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-lightbulb {
  background-position: -128px -128px;
}

/* line 1713, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-scissors {
  background-position: -144px -128px;
}

/* line 1717, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-clipboard {
  background-position: -160px -128px;
}

/* line 1721, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-copy {
  background-position: -176px -128px;
}

/* line 1725, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-contact {
  background-position: -192px -128px;
}

/* line 1729, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-image {
  background-position: -208px -128px;
}

/* line 1733, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-video {
  background-position: -224px -128px;
}

/* line 1737, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-script {
  background-position: -240px -128px;
}

/* line 1741, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-alert {
  background-position: 0 -144px;
}

/* line 1745, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-info {
  background-position: -16px -144px;
}

/* line 1749, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-notice {
  background-position: -32px -144px;
}

/* line 1753, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-help {
  background-position: -48px -144px;
}

/* line 1757, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-check {
  background-position: -64px -144px;
}

/* line 1761, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-bullet {
  background-position: -80px -144px;
}

/* line 1765, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-radio-on {
  background-position: -96px -144px;
}

/* line 1769, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-radio-off {
  background-position: -112px -144px;
}

/* line 1773, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-pin-w {
  background-position: -128px -144px;
}

/* line 1777, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-pin-s {
  background-position: -144px -144px;
}

/* line 1781, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-play {
  background-position: 0 -160px;
}

/* line 1785, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-pause {
  background-position: -16px -160px;
}

/* line 1789, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-seek-next {
  background-position: -32px -160px;
}

/* line 1793, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-seek-prev {
  background-position: -48px -160px;
}

/* line 1797, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-seek-end {
  background-position: -64px -160px;
}

/* line 1801, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-seek-start {
  background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
/* line 1806, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-seek-first {
  background-position: -80px -160px;
}

/* line 1810, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-stop {
  background-position: -96px -160px;
}

/* line 1814, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-eject {
  background-position: -112px -160px;
}

/* line 1818, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-volume-off {
  background-position: -128px -160px;
}

/* line 1822, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-volume-on {
  background-position: -144px -160px;
}

/* line 1826, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-power {
  background-position: 0 -176px;
}

/* line 1830, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-signal-diag {
  background-position: -16px -176px;
}

/* line 1834, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-signal {
  background-position: -32px -176px;
}

/* line 1838, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-battery-0 {
  background-position: -48px -176px;
}

/* line 1842, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-battery-1 {
  background-position: -64px -176px;
}

/* line 1846, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-battery-2 {
  background-position: -80px -176px;
}

/* line 1850, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-battery-3 {
  background-position: -96px -176px;
}

/* line 1854, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-circle-plus {
  background-position: 0 -192px;
}

/* line 1858, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-circle-minus {
  background-position: -16px -192px;
}

/* line 1862, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-circle-close {
  background-position: -32px -192px;
}

/* line 1866, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

/* line 1870, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

/* line 1874, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

/* line 1878, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

/* line 1882, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

/* line 1886, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

/* line 1890, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

/* line 1894, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

/* line 1898, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

/* line 1902, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

/* line 1906, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-circle-check {
  background-position: -208px -192px;
}

/* line 1910, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

/* line 1914, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

/* line 1918, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

/* line 1922, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

/* line 1926, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

/* line 1930, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

/* line 1934, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

/* line 1938, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

/* line 1942, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

/* line 1946, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

/* line 1950, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

/* line 1954, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

/* Misc visuals
----------------------------------*/
/* Corner radius */
/* line 1962, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}

/* line 1969, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}

/* line 1976, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}

/* line 1983, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}

/* Overlays */
/* line 1991, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-widget-overlay {
  background: #aaaaaa;
  opacity: .003;
  filter: Alpha(Opacity=0.3);
  /* support: IE8 */
}

/* line 1997, ../scss/module/jquery-ui/_jqueryui.scss */
.ui-widget-shadow {
  -webkit-box-shadow: 0px 0px 5px #666666;
  box-shadow: 0px 0px 5px #666666;
}

/* line 1, ../scss/module/jquery-ui/_custom.scss */
.ui-widget {
  line-height: 120%;
  color: #373c3e;
  padding: 25px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}
/* line 9, ../scss/module/jquery-ui/_custom.scss */
.ui-widget.context-menu {
  padding: 5px;
}
/* line 13, ../scss/module/jquery-ui/_custom.scss */
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
}
/* line 20, ../scss/module/jquery-ui/_custom.scss */
.ui-widget input:focus {
  outline-width: 0;
}
/* line 24, ../scss/module/jquery-ui/_custom.scss */
.ui-widget .ui-dialog-titlebar {
  text-align: center;
  background: transparent;
  border-width: 0;
  padding: 0;
  position: initial;
}
/* line 30, ../scss/module/jquery-ui/_custom.scss */
.ui-widget .ui-dialog-titlebar .ui-dialog-title {
  margin: 0;
  font-weight: normal;
  font-size: 24px;
  line-height: 1.2;
  width: 100%;
}
/* line 37, ../scss/module/jquery-ui/_custom.scss */
.ui-widget .ui-dialog-titlebar .ui-dialog-titlebar-close {
  border-width: 0;
  background: transparent;
  top: 9px;
  right: 0;
}
/* line 49, ../scss/module/jquery-ui/_custom.scss */
.ui-widget .ui-dialog-content {
  padding: 0;
}
/* line 51, ../scss/module/jquery-ui/_custom.scss */
.ui-widget .ui-dialog-content .header {
  border-bottom: 1px solid #e0e4e5;
  padding-bottom: 14px;
  margin-bottom: 14px;
}
/* line 57, ../scss/module/jquery-ui/_custom.scss */
.ui-widget label {
  width: 100%;
}
/* line 60, ../scss/module/jquery-ui/_custom.scss */
.ui-widget .ui-dialog-buttonpane {
  padding: 0;
  margin-top: 25px;
}
/* line 63, ../scss/module/jquery-ui/_custom.scss */
.ui-widget .ui-dialog-buttonpane .ui-dialog-buttonset {
  width: 100%;
  text-align: center;
  padding: 0;
}
/* line 67, ../scss/module/jquery-ui/_custom.scss */
.ui-widget .ui-dialog-buttonpane .ui-dialog-buttonset button {
  margin: 0;
  display: inline-block;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  font-size: 16px;
}

/* ============================================ *
 * Membership Product View
 * ============================================ */
/* ============================================ *
 * Membership - Cart item
 * ============================================ */
/* line 36, ../scss/module/_membership.scss */
.checkout-cart-index .membership-item-row .membership-description-line {
  font-size: 14px;
  position: relative;
  bottom: 14px;
}

/* ============================================ *
 * kbase Overrides
 * ============================================ */
/* line 7, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main-header,
body.kbase-article-search .kbase-main-header {
  background: #fff;
}
/* line 10, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main-header h1,
body.kbase-article-search .kbase-main-header h1 {
  text-align: center;
  font-size: 36px;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 0;
  color: #373c3e;
}
/* line 23, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .breadcrumbs,
body.kbase-article-index .kbase-search .breadcrumbs,
body.kbase-article-search .kbase-main .breadcrumbs,
body.kbase-article-search .kbase-search .breadcrumbs {
  margin-top: 0;
}
/* line 25, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .breadcrumbs li,
body.kbase-article-index .kbase-search .breadcrumbs li,
body.kbase-article-search .kbase-main .breadcrumbs li,
body.kbase-article-search .kbase-search .breadcrumbs li {
  text-transform: none;
}
/* line 30, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .kbase-main-search,
body.kbase-article-index .kbase-search .kbase-main-search,
body.kbase-article-search .kbase-main .kbase-main-search,
body.kbase-article-search .kbase-search .kbase-main-search {
  padding: 55px 0 5px 0;
  width: 425px;
  margin: 0 auto;
  top: -6px;
  position: relative;
}
/* line 37, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .kbase-main-search .kbase-block-content,
body.kbase-article-index .kbase-search .kbase-main-search .kbase-block-content,
body.kbase-article-search .kbase-main .kbase-main-search .kbase-block-content,
body.kbase-article-search .kbase-search .kbase-main-search .kbase-block-content {
  position: relative;
  top: -21px;
}
/* line 40, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .kbase-main-search .kbase-block-content .icon-Search,
body.kbase-article-index .kbase-search .kbase-main-search .kbase-block-content .icon-Search,
body.kbase-article-search .kbase-main .kbase-main-search .kbase-block-content .icon-Search,
body.kbase-article-search .kbase-search .kbase-main-search .kbase-block-content .icon-Search {
  float: left;
  position: relative;
  top: 35px;
  padding-left: 6px;
  color: #919799;
  font-size: 28px;
}
/* line 50, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .kbase-main-search form,
body.kbase-article-index .kbase-search .kbase-main-search form,
body.kbase-article-search .kbase-main .kbase-main-search form,
body.kbase-article-search .kbase-search .kbase-main-search form {
  margin: 0 auto;
  text-align: center;
}
/* line 53, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .kbase-main-search form #kbase_search_inputh,
body.kbase-article-index .kbase-search .kbase-main-search form #kbase_search_inputh,
body.kbase-article-search .kbase-main .kbase-main-search form #kbase_search_inputh,
body.kbase-article-search .kbase-search .kbase-main-search form #kbase_search_inputh {
  margin-bottom: 12px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}
/* line 61, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .kbase-main-search input,
body.kbase-article-index .kbase-search .kbase-main-search input,
body.kbase-article-search .kbase-main .kbase-main-search input,
body.kbase-article-search .kbase-search .kbase-main-search input {
  border: 1px solid #abb2b3;
  padding-left: 38px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}
/* line 71, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .kbase-block,
body.kbase-article-index .kbase-search .kbase-block,
body.kbase-article-search .kbase-main .kbase-block,
body.kbase-article-search .kbase-search .kbase-block {
  border: 0;
}
/* line 75, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .kbase-main-category,
body.kbase-article-index .kbase-search .kbase-main-category,
body.kbase-article-search .kbase-main .kbase-main-category,
body.kbase-article-search .kbase-search .kbase-main-category {
  border: solid 1px #C4C1BC;
  background-color: #fff;
  padding: 18px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}
/* line 85, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .kbase-main-category .kbase-list li,
body.kbase-article-index .kbase-search .kbase-main-category .kbase-list li,
body.kbase-article-search .kbase-main .kbase-main-category .kbase-list li,
body.kbase-article-search .kbase-search .kbase-main-category .kbase-list li {
  background-color: #edf2f3;
  margin: 10px 0;
  padding: 10px 0 0 0;
  border: 1px solid #979797;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}
/* line 94, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .kbase-main-category .kbase-list li a,
body.kbase-article-index .kbase-search .kbase-main-category .kbase-list li a,
body.kbase-article-search .kbase-main .kbase-main-category .kbase-list li a,
body.kbase-article-search .kbase-search .kbase-main-category .kbase-list li a {
  color: #373c3e;
  padding-left: 10px;
}
/* line 99, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .kbase-main-category .kbase-list li:last-child,
body.kbase-article-index .kbase-search .kbase-main-category .kbase-list li:last-child,
body.kbase-article-search .kbase-main .kbase-main-category .kbase-list li:last-child,
body.kbase-article-search .kbase-search .kbase-main-category .kbase-list li:last-child {
  margin-bottom: 0;
}
/* line 102, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .kbase-main-category .kbase-list .level-0-bottom-spacer,
body.kbase-article-index .kbase-search .kbase-main-category .kbase-list .level-0-bottom-spacer,
body.kbase-article-search .kbase-main .kbase-main-category .kbase-list .level-0-bottom-spacer,
body.kbase-article-search .kbase-search .kbase-main-category .kbase-list .level-0-bottom-spacer {
  height: 10px;
}
/* line 105, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .kbase-main-category .kbase-list .level-1,
body.kbase-article-index .kbase-search .kbase-main-category .kbase-list .level-1,
body.kbase-article-search .kbase-main .kbase-main-category .kbase-list .level-1,
body.kbase-article-search .kbase-search .kbase-main-category .kbase-list .level-1 {
  padding-left: 20px;
  padding-right: 20px;
  background-color: #fff;
  padding-top: 7px;
  border-top: 1px solid #979797;
}
/* line 111, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .kbase-main-category .kbase-list .level-1 li,
body.kbase-article-index .kbase-search .kbase-main-category .kbase-list .level-1 li,
body.kbase-article-search .kbase-main .kbase-main-category .kbase-list .level-1 li,
body.kbase-article-search .kbase-search .kbase-main-category .kbase-list .level-1 li {
  border: 0;
  background-color: #fff;
  margin: 0;
  padding-top: 18px;
  padding-bottom: 7px;
}
/* line 117, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .kbase-main-category .kbase-list .level-1 li a,
body.kbase-article-index .kbase-search .kbase-main-category .kbase-list .level-1 li a,
body.kbase-article-search .kbase-main .kbase-main-category .kbase-list .level-1 li a,
body.kbase-article-search .kbase-search .kbase-main-category .kbase-list .level-1 li a {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  padding-left: 0;
  font-size: 16px;
}
/* line 121, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .kbase-main-category .kbase-list .level-1 li a:hover,
body.kbase-article-index .kbase-search .kbase-main-category .kbase-list .level-1 li a:hover,
body.kbase-article-search .kbase-main .kbase-main-category .kbase-list .level-1 li a:hover,
body.kbase-article-search .kbase-search .kbase-main-category .kbase-list .level-1 li a:hover {
  color: #029ecc;
}
/* line 124, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .kbase-main-category .kbase-list .level-1 li a:active,
body.kbase-article-index .kbase-search .kbase-main-category .kbase-list .level-1 li a:active,
body.kbase-article-search .kbase-main .kbase-main-category .kbase-list .level-1 li a:active,
body.kbase-article-search .kbase-search .kbase-main-category .kbase-list .level-1 li a:active {
  color: #373c3e;
}
/* line 130, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .kbase-main-category .kbase-list .level-2,
body.kbase-article-index .kbase-search .kbase-main-category .kbase-list .level-2,
body.kbase-article-search .kbase-main .kbase-main-category .kbase-list .level-2,
body.kbase-article-search .kbase-search .kbase-main-category .kbase-list .level-2 {
  word-wrap: break-word;
  padding-right: 20px;
  background-color: #fff;
}
/* line 135, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .kbase-main-category .kbase-list .level-2 li p,
body.kbase-article-index .kbase-search .kbase-main-category .kbase-list .level-2 li p,
body.kbase-article-search .kbase-main .kbase-main-category .kbase-list .level-2 li p,
body.kbase-article-search .kbase-search .kbase-main-category .kbase-list .level-2 li p {
  font-size: 16px;
  padding-left: 15px;
}
/* line 141, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .kbase-main-category .kbase-list .level-2 p.kbase-video,
body.kbase-article-index .kbase-search .kbase-main-category .kbase-list .level-2 p.kbase-video,
body.kbase-article-search .kbase-main .kbase-main-category .kbase-list .level-2 p.kbase-video,
body.kbase-article-search .kbase-search .kbase-main-category .kbase-list .level-2 p.kbase-video {
  position: relative;
  max-height: 310px;
  max-width: 534px;
}
/* line 145, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-main .kbase-main-category .kbase-list .level-2 p.kbase-video iframe,
body.kbase-article-index .kbase-search .kbase-main-category .kbase-list .level-2 p.kbase-video iframe,
body.kbase-article-search .kbase-main .kbase-main-category .kbase-list .level-2 p.kbase-video iframe,
body.kbase-article-search .kbase-search .kbase-main-category .kbase-list .level-2 p.kbase-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* line 159, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-search #kbase_search,
body.kbase-article-search .kbase-search #kbase_search {
  border: solid 1px #C4C1BC;
  background-color: #fff;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  padding: 18px;
}
/* line 169, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-search #kbase_search thead th,
body.kbase-article-search .kbase-search #kbase_search thead th {
  background-color: #fff;
  font-size: 28px;
  padding: 18px 18px 14px 18px;
  font-weight: normal;
}
/* line 177, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-search #kbase_search tbody .kbase-listing,
body.kbase-article-search .kbase-search #kbase_search tbody .kbase-listing {
  border: 0;
}
/* line 180, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-search #kbase_search tbody td,
body.kbase-article-search .kbase-search #kbase_search tbody td {
  background-color: #fff;
  padding: 0 18px 10px 18px;
  border-bottom: 0;
}
/* line 184, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-search #kbase_search tbody td .kbase-listing-title,
body.kbase-article-search .kbase-search #kbase_search tbody td .kbase-listing-title {
  background-color: #edf2f3;
  padding: 10px 0 10px 10px;
  border: 1px solid #979797;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}
/* line 192, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-search #kbase_search tbody td .kbase-listing-title a,
body.kbase-article-search .kbase-search #kbase_search tbody td .kbase-listing-title a {
  color: #373c3e;
  display: block;
}
/* line 197, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-search #kbase_search tbody td .kbase-listing-description-full,
body.kbase-article-search .kbase-search #kbase_search tbody td .kbase-listing-description-full {
  border-left: solid 1px #C4C1BC;
  border-right: solid 1px #C4C1BC;
  border-bottom: solid 1px #C4C1BC;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  padding: 25px;
}
/* line 206, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-search #kbase_search tbody td .kbase-listing-description-full p,
body.kbase-article-search .kbase-search #kbase_search tbody td .kbase-listing-description-full p {
  padding-bottom: 10px;
}
/* line 211, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-search #kbase_search tbody tr:last-child td,
body.kbase-article-search .kbase-search #kbase_search tbody tr:last-child td {
  padding-bottom: 18px;
}
/* line 219, ../scss/module/_kbase.scss */
body.kbase-article-index .kbase-search .pager .pages img,
body.kbase-article-search .kbase-search .pager .pages img {
  display: none;
}
@media screen and (max-width: 480px) {
  /* line 229, ../scss/module/_kbase.scss */
  body.kbase-article-index .kbase-main .kbase-main-search,
  body.kbase-article-index .kbase-search .kbase-main-search,
  body.kbase-article-search .kbase-main .kbase-main-search,
  body.kbase-article-search .kbase-search .kbase-main-search {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  /* line 238, ../scss/module/_kbase.scss */
  body.kbase-article-index .kbase-main .kbase-list .level-1,
  body.kbase-article-search .kbase-main .kbase-list .level-1 {
    word-wrap: break-word;
    padding-left: 10px;
  }
}

/*! Flickity v2.0.5
http://flickity.metafizzy.co
---------------------------------------------- */
/* line 5, ../scss/module/blackstone_carousels/_carousels-flickity.scss */
.flickity-enabled {
  position: relative;
}

/* line 9, ../scss/module/blackstone_carousels/_carousels-flickity.scss */
.flickity-enabled:focus {
  outline: none;
}

/* line 11, ../scss/module/blackstone_carousels/_carousels-flickity.scss */
.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

/* line 17, ../scss/module/blackstone_carousels/_carousels-flickity.scss */
.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
/* line 25, ../scss/module/blackstone_carousels/_carousels-flickity.scss */
.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;
}

/* line 34, ../scss/module/blackstone_carousels/_carousels-flickity.scss */
.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

/* line 40, ../scss/module/blackstone_carousels/_carousels-flickity.scss */
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- previous/next buttons ---- */
/* line 47, ../scss/module/blackstone_carousels/_carousels-flickity.scss */
.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%);
  transform: translateY(-50%);
}

/* line 62, ../scss/module/blackstone_carousels/_carousels-flickity.scss */
.flickity-prev-next-button:hover {
  background: white;
}

/* line 65, ../scss/module/blackstone_carousels/_carousels-flickity.scss */
.flickity-prev-next-button.previous {
  left: 10px;
}

/* line 66, ../scss/module/blackstone_carousels/_carousels-flickity.scss */
.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
/* line 68, ../scss/module/blackstone_carousels/_carousels-flickity.scss */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

/* line 72, ../scss/module/blackstone_carousels/_carousels-flickity.scss */
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

/* line 77, ../scss/module/blackstone_carousels/_carousels-flickity.scss */
.flickity-prev-next-button:disabled {
  cursor: auto;
}

/* line 81, ../scss/module/blackstone_carousels/_carousels-flickity.scss */
.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* line 89, ../scss/module/blackstone_carousels/_carousels-flickity.scss */
.flickity-prev-next-button .arrow {
  fill: #333;
}

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

/* line 106, ../scss/module/blackstone_carousels/_carousels-flickity.scss */
.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

/* line 108, ../scss/module/blackstone_carousels/_carousels-flickity.scss */
.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

/* line 119, ../scss/module/blackstone_carousels/_carousels-flickity.scss */
.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* line 1, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper {
  margin-bottom: 38px;
}
/* line 3, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper a.second-text {
  font-size: 16px;
  float: right;
}
/* line 7, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel {
  margin-left: -10px;
  height: 278px;
  overflow: hidden;
}
/* line 11, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel.loaded {
  overflow: visible;
  height: auto;
}
/* line 15, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .flickity-prev-next-button {
  top: 97.5px;
}
/* line 18, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .flickity-page-dots {
  display: none;
}
/* line 21, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell {
  display: inline-block;
}
/* line 23, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad {
  padding: 5px 10px;
}
/* line 25, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner {
  width: 195px;
  background-color: #fff;
  overflow: hidden;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
}
/* line 37, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .image-container {
  position: relative;
  background-image: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/ajax-loader2.gif") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
/* line 42, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .image-container .carousel-main-image {
  opacity: 0;
  transition: opacity .25s;
  -moz-transition: opacity .25s;
  -webkit-transition: opacity .25s;
  -o-transition: opacity .25s;
}
/* line 48, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .image-container .carousel-main-image.flickity-lazyloaded {
  opacity: 1;
}
/* line 51, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .image-container .carousel-main-image.lazyloaded {
  opacity: 1;
}
/* line 55, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .image-container .badge-image {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 25%;
}
/* line 61, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .image-container .overlay-holder {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}
/* line 66, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .image-container .overlay-holder img {
  margin-right: 8px;
  margin-bottom: 8px;
  height: 40px;
  width: 40px;
}
/* line 72, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .image-container .overlay-holder .add-to-modal-button {
  float: left;
}
/* line 74, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .image-container .overlay-holder .add-to-modal-button .icon-font {
  font-size: 41px;
  color: #fff;
}
/* line 79, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .image-container .overlay-holder .play-sample-icon {
  float: right;
}
/* line 82, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .image-container .overlay-holder #quick-view-icon {
  margin-left: 8px;
}
/* line 87, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .name,
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .second-line {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 16px;
  text-align: center;
}
/* line 95, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .name {
  padding: 16px 16px 0 16px;
  margin-bottom: 0;
}
/* line 99, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .second-line {
  padding: 0 16px 16px 16px;
  margin-bottom: 0;
  color: #777e80;
  line-height: 1.2;
}
/* line 104, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .second-line.with-price {
  padding-bottom: 0;
}
/* line 109, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .bottom .price-box {
  text-align: center;
}
/* line 111, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .bottom .price-box .special-price,
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .bottom .price-box .old-price {
  margin-bottom: 0;
}
/* line 120, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .price-box .price {
  color: #373c3e;
  font-size: 16px;
}
/* line 125, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .price-box .special-price {
  padding-left: 0;
}
/* line 127, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .price-box .special-price .price {
  color: #d21d05;
  font-size: 16px;
}
/* line 133, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .price-box .old-price .price {
  color: #777e80;
}
@media screen and (max-width: 480px) {
  /* line 138, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
  .bsa-carousel-wrapper .bsa-carousel .carousel-cell .price-box .price {
    font-size: 14px;
  }
  /* line 142, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
  .bsa-carousel-wrapper .bsa-carousel .carousel-cell .price-box .special-price .price {
    font-size: 14px;
  }
}
/* line 148, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell .overlay-inner {
  opacity: 0;
  transition: opacity 1s;
  -moz-transition: opacity 1s;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
}
/* line 156, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell:hover .overlay-inner {
  opacity: 1;
}
/* line 161, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .carousel-cell.playing .overlay-inner {
  opacity: 1;
}
/* line 166, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .previous,
.bsa-carousel-wrapper .bsa-carousel .next {
  opacity: 0;
  transition: opacity 1s;
  -moz-transition: opacity 1s;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
  font-family: 'icomoon';
  font-size: 28px;
  color: #373c3e;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  padding: 0;
}
/* line 182, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .previous svg,
.bsa-carousel-wrapper .bsa-carousel .next svg {
  display: none;
}
/* line 185, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .previous:disabled,
.bsa-carousel-wrapper .bsa-carousel .next:disabled {
  opacity: 0;
}
/* line 189, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .next {
  right: -25px;
  box-shadow: -3px 1.7px 3px 0 rgba(0, 0, 0, 0.16), -3px -1.7px 3px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: -3px 1.7px 3px 0 rgba(0, 0, 0, 0.16), -3px -1.7px 3px 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: -3px 1.7px 3px 0 rgba(0, 0, 0, 0.16), -3px -1.7px 3px 0 rgba(0, 0, 0, 0.16);
  -o-box-shadow: -3px 1.7px 3px 0 rgba(0, 0, 0, 0.16), -3px -1.7px 3px 0 rgba(0, 0, 0, 0.16);
}
/* line 195, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .next:after {
  content: "\2d";
}
/* line 199, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .previous {
  left: -15px;
  box-shadow: 3px 1.7px 3px 0 rgba(0, 0, 0, 0.16), 3px -1.7px 3px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 3px 1.7px 3px 0 rgba(0, 0, 0, 0.16), 3px -1.7px 3px 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 3px 1.7px 3px 0 rgba(0, 0, 0, 0.16), 3px -1.7px 3px 0 rgba(0, 0, 0, 0.16);
  -o-box-shadow: 3px 1.7px 3px 0 rgba(0, 0, 0, 0.16), 3px -1.7px 3px 0 rgba(0, 0, 0, 0.16);
}
/* line 205, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel .previous:after {
  content: "\2c";
}
/* line 210, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel:hover .next,
.bsa-carousel-wrapper .bsa-carousel:hover .previous {
  opacity: .9;
}
/* line 213, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel:hover .next:hover,
.bsa-carousel-wrapper .bsa-carousel:hover .previous:hover {
  opacity: .9;
}
/* line 216, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .bsa-carousel:hover .next:disabled,
.bsa-carousel-wrapper .bsa-carousel:hover .previous:disabled {
  opacity: 0;
}
/* line 222, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .carousel-info-hover {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 10;
}
/* line 229, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .carousel-info-hover .carrot-accent.right .pointer {
  right: -5px;
  left: auto;
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
}
/* line 237, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .carousel-info-hover .carrot-accent.left .pointer {
  left: 10px;
  right: auto;
  border-width: 15px 15px 15px 0;
  border-color: transparent rgba(0, 0, 0, 0.8) transparent transparent;
}
/* line 244, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .carousel-info-hover .carrot-accent .pointer {
  top: 50%;
  transform: translateY(-50%);
}
/* line 249, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .carousel-info-hover .hover-inner {
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px;
}
/* line 254, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .carousel-info-hover .hover-inner .bsa-loader {
  height: 100%;
}
/* line 257, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .carousel-info-hover .hover-inner ul {
  list-style-type: none;
  margin-bottom: 0;
}
/* line 260, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .carousel-info-hover .hover-inner ul li {
  margin-left: 0;
  font-size: 18px;
  line-height: 30px;
}
/* line 264, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .carousel-info-hover .hover-inner ul li .icon-font {
  font-size: 24px;
  position: relative;
  top: 4px;
}
/* line 271, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .carousel-info-hover .hover-inner ul.bottom-info {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* line 276, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
.bsa-carousel-wrapper .carousel-info-hover .hover-inner ul.bottom-info li {
  font-size: 16px;
  text-transform: capitalize;
  text-align: center;
}

/* line 288, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
body.isMobile .bsa-carousel-wrapper .bsa-carousel .next,
body.isMobile .bsa-carousel-wrapper .bsa-carousel .previous {
  display: none;
}

@media screen and (max-width: 768px) {
  /* line 302, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
  .bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .image-container .overlay-holder {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  /* line 314, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
  .bsa-carousel-wrapper .bsa-carousel {
    margin-left: -5px;
  }
  /* line 317, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
  .bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad {
    padding: 5px 5px;
  }
  /* line 319, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
  .bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner {
    width: 140px;
  }
  /* line 321, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
  .bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .name {
    padding: 12px 12px 0 12px;
    font-size: 14px;
    line-height: 1.2;
  }
  /* line 326, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
  .bsa-carousel-wrapper .bsa-carousel .carousel-cell .pad .inner .second-line {
    padding: 0 12px 12px 12px;
    font-size: 14px;
    line-height: 1.2;
  }
  /* line 334, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
  .bsa-carousel-wrapper .bsa-carousel .next {
    right: -15px;
  }
  /* line 337, ../scss/module/blackstone_carousels/_bsa-carousels.scss */
  .bsa-carousel-wrapper .bsa-carousel .previous {
    left: -15px;
  }
}
/* line 4, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.bsa-carousel-wrapper.hide-hover-price .carousel-info-hover-v2 .price-wrapper div {
  display: none;
}
/* line 13, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.bsa-carousel-wrapper.show-hover-units .carousel-info-hover-v2 .avail-formats-line .format-string-wrapper .units {
  display: inline;
}

/* line 22, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 {
  height: 468px;
  position: absolute;
  top: -108px;
  z-index: 100;
  color: #373c3e;
}
/* line 28, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2.button-count-triple {
  height: 558px;
  top: -146px;
}
/* line 31, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2.button-count-triple .carrot-accent {
  top: 245px;
}
/* line 35, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2.left {
  padding-left: 20px;
}
/* line 38, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2.right {
  padding-right: 20px;
}
/* line 41, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .hover-inner {
  height: 100%;
  width: 364px;
  background: #fff;
  border: 1px solid #abb2b3;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}
/* line 54, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2.loading .hover-inner .bsa-loader {
  height: 100%;
  width: 100%;
}
/* line 60, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .carrot-accent {
  width: auto;
  top: 195px;
  position: absolute;
}
/* line 64, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .carrot-accent.left {
  left: 7px;
}
/* line 67, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .carrot-accent.right {
  right: 7px;
}
/* line 71, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .pad {
  padding: 25px;
  padding-bottom: 27px;
}
/* line 76, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .hover-inner p {
  margin: 0;
  font-size: 16px;
}
/* line 79, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .hover-inner p.name, .carousel-info-hover-v2 .hover-inner p.avail-formats-line, .carousel-info-hover-v2 .hover-inner p.meta, .carousel-info-hover-v2 .hover-inner p.credit-line, .carousel-info-hover-v2 .hover-inner p.release-date {
  color: #777e80;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 125%;
}
/* line 90, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .hover-inner p.avail-formats-line {
  color: #373c3e;
}
/* line 93, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .hover-inner p.name {
  color: #373c3e;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 98, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .hover-inner p.release-date.not-released {
  color: #ff6000;
}
/* line 102, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .hover-inner p.description {
  margin-bottom: 22px;
}
/* line 107, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .units {
  display: none;
}
/* line 110, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .format-switcher {
  margin-bottom: auto;
}
/* line 112, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .format-switcher li {
  margin-left: auto;
  color: #919799;
  list-style: none;
  display: inline-block;
}
/* line 117, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .format-switcher li .icon-font {
  font-size: 41px;
}
/* line 120, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .format-switcher li.active {
  color: #02b2e7;
}
/* line 125, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .price-wrapper {
  margin: 14px 0;
}
/* line 128, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .cta-buttons-wrapper {
  padding-top: 12px;
}
/* line 130, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .cta-buttons-wrapper .cta-button-wrap {
  margin-bottom: 5px;
}
/* line 132, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .cta-buttons-wrapper .cta-button-wrap .button {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
/* line 138, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .cta-buttons-wrapper.double {
  margin-left: -5px;
  margin-right: -5px;
}
/* line 141, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .cta-buttons-wrapper.double .cta-button-wrap {
  padding: 0 5px;
  width: 50%;
  float: left;
  position: relative;
  margin-bottom: 0;
}
/* line 147, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .cta-buttons-wrapper.double .cta-button-wrap .added-success {
  position: absolute;
  width: 100%;
  top: 4px;
  left: 0;
  font-size: 18px;
  text-align: center;
}
/* line 154, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .cta-buttons-wrapper.double .cta-button-wrap .added-success .text {
  position: relative;
  bottom: 6px;
  margin-left: 5px;
  font-size: 16px;
}
/* line 160, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .cta-buttons-wrapper.double .cta-button-wrap .added-success .icon-font {
  font-size: 28px;
  color: #6fc315;
}
/* line 164, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .cta-buttons-wrapper.double .cta-button-wrap .added-success.hidden {
  opacity: 0;
}
/* line 169, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .cta-buttons-wrapper.double .added-success-wishlist {
  float: left;
  width: 50%;
  margin-top: 4px;
  font-size: 18px;
  text-align: center;
}
/* line 175, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .cta-buttons-wrapper.double .added-success-wishlist .text {
  position: relative;
  bottom: 6px;
  margin-left: 5px;
  font-size: 16px;
}
/* line 181, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .cta-buttons-wrapper.double .added-success-wishlist .icon-font {
  font-size: 28px;
  color: #6fc315;
}
/* line 185, ../scss/module/blackstone_carousels/hover/_version-two.scss */
.carousel-info-hover-v2 .cta-buttons-wrapper.double .added-success-wishlist.hidden {
  opacity: 0;
}

/* line 2, ../scss/module/blackstone_replacements/_panel.scss */
#replacementsPanel h1 {
  font-size: 36px;
}
/* line 5, ../scss/module/blackstone_replacements/_panel.scss */
#replacementsPanel #snapshot-wrapper,
#replacementsPanel #search-wrapper {
  width: 50%;
  float: left;
}
/* line 9, ../scss/module/blackstone_replacements/_panel.scss */
#replacementsPanel #snapshot-wrapper input,
#replacementsPanel #search-wrapper input {
  border-width: 1px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}
/* line 16, ../scss/module/blackstone_replacements/_panel.scss */
#replacementsPanel #snapshot-wrapper .outer-pad,
#replacementsPanel #search-wrapper .outer-pad {
  margin: 5px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -o-border-radius: 2px;
  box-shadow: 1px 1px 5px 1px #ccc;
  -moz-box-shadow: 1px 1px 5px 1px #ccc;
  -webkit-box-shadow: 1px 1px 5px 1px #ccc;
  -o-box-shadow: 1px 1px 5px 1px #ccc;
}
/* line 26, ../scss/module/blackstone_replacements/_panel.scss */
#replacementsPanel #snapshot-wrapper .outer-pad .header,
#replacementsPanel #search-wrapper .outer-pad .header {
  background: #777e80;
}
/* line 27, ../scss/module/blackstone_replacements/_panel.scss */
#replacementsPanel #snapshot-wrapper .outer-pad .header h1,
#replacementsPanel #snapshot-wrapper .outer-pad .header h2,
#replacementsPanel #snapshot-wrapper .outer-pad .header h3,
#replacementsPanel #snapshot-wrapper .outer-pad .header p,
#replacementsPanel #search-wrapper .outer-pad .header h1,
#replacementsPanel #search-wrapper .outer-pad .header h2,
#replacementsPanel #search-wrapper .outer-pad .header h3,
#replacementsPanel #search-wrapper .outer-pad .header p {
  color: #fff;
  margin-bottom: 0;
}
/* line 36, ../scss/module/blackstone_replacements/_panel.scss */
#replacementsPanel #snapshot-wrapper .outer-pad .inner,
#replacementsPanel #search-wrapper .outer-pad .inner {
  background: #fff;
}
/* line 39, ../scss/module/blackstone_replacements/_panel.scss */
#replacementsPanel #snapshot-wrapper .outer-pad .pad,
#replacementsPanel #search-wrapper .outer-pad .pad {
  padding: 5px 18px;
}
/* line 45, ../scss/module/blackstone_replacements/_panel.scss */
#replacementsPanel #loading-lock.locked {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  background-image: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/ajax-loader2.gif") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  z-index: 999;
}

/* line 4, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #search-wrapper .snapshot-remove-button {
  display: none;
}
/* line 9, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .search-add-button {
  display: none !important;
}
/* line 12, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .snapshot-remove-button {
  display: block;
}
/* line 18, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item,
#replacementsPanel #search-wrapper .list-item {
  list-style: none;
  margin-bottom: 10px;
  font-size: 16px;
  background: #fff;
}
/* line 23, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .outer-edge,
#replacementsPanel #search-wrapper .list-item .outer-edge {
  border: 1px solid #abb2b3;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  -moz-border-radius: 3px;
}
/* line 30, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-head,
#replacementsPanel #search-wrapper .list-item .list-item-head {
  cursor: pointer;
  background: #edf2f3;
}
/* line 33, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-head .pad,
#replacementsPanel #search-wrapper .list-item .list-item-head .pad {
  padding: 10px 6px;
  position: relative;
}
/* line 37, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-head .info-toggle-wrapper,
#replacementsPanel #search-wrapper .list-item .list-item-head .info-toggle-wrapper {
  position: absolute;
  top: 24px;
}
/* line 40, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-head .info-toggle-wrapper .close,
#replacementsPanel #search-wrapper .list-item .list-item-head .info-toggle-wrapper .close {
  display: none;
}
/* line 44, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-head .image,
#replacementsPanel #search-wrapper .list-item .list-item-head .image {
  width: 50px;
  position: absolute;
  left: 28px;
}
/* line 48, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-head .image .prod-image,
#replacementsPanel #search-wrapper .list-item .list-item-head .image .prod-image {
  max-width: 100%;
}
/* line 52, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-head .name,
#replacementsPanel #snapshot-wrapper .list-item .list-item-head .lower-title-line,
#replacementsPanel #search-wrapper .list-item .list-item-head .name,
#replacementsPanel #search-wrapper .list-item .list-item-head .lower-title-line {
  padding-left: 80px;
}
/* line 56, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-head .snapshot-remove-button,
#replacementsPanel #snapshot-wrapper .list-item .list-item-head .search-add-button,
#replacementsPanel #search-wrapper .list-item .list-item-head .snapshot-remove-button,
#replacementsPanel #search-wrapper .list-item .list-item-head .search-add-button {
  float: right;
  position: absolute;
  top: 22px;
  right: 13px;
}
/* line 67, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item.info-open .list-item-head .info-toggle-wrapper .close,
#replacementsPanel #search-wrapper .list-item.info-open .list-item-head .info-toggle-wrapper .close {
  display: inline-block;
}
/* line 70, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item.info-open .list-item-head .info-toggle-wrapper .open,
#replacementsPanel #search-wrapper .list-item.info-open .list-item-head .info-toggle-wrapper .open {
  display: none;
}
/* line 76, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-info,
#replacementsPanel #search-wrapper .list-item .list-item-info {
  border-top: 1px solid #d3d8d9;
}
/* line 78, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-info .pad,
#replacementsPanel #search-wrapper .list-item .list-item-info .pad {
  padding: 18px;
}
/* line 81, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-info .upper,
#replacementsPanel #search-wrapper .list-item .list-item-info .upper {
  color: #777e80;
  padding-bottom: 15px;
}
/* line 86, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-info .upper .left-col,
#replacementsPanel #search-wrapper .list-item .list-item-info .upper .left-col {
  width: 25%;
}
/* line 89, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-info .upper .right-col,
#replacementsPanel #search-wrapper .list-item .list-item-info .upper .right-col {
  width: 75%;
}
/* line 91, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-info .upper .right-col .col-pad,
#replacementsPanel #search-wrapper .list-item .list-item-info .upper .right-col .col-pad {
  padding-left: 10px;
}
/* line 95, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-info .upper .left-col,
#replacementsPanel #snapshot-wrapper .list-item .list-item-info .upper .right-col,
#replacementsPanel #search-wrapper .list-item .list-item-info .upper .left-col,
#replacementsPanel #search-wrapper .list-item .list-item-info .upper .right-col {
  float: left;
}
/* line 99, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-info .upper h3,
#replacementsPanel #search-wrapper .list-item .list-item-info .upper h3 {
  font-size: 16px;
  margin-bottom: 0;
}
/* line 104, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-info .component-table,
#replacementsPanel #search-wrapper .list-item .list-item-info .component-table {
  width: 100%;
  font-size: 16px;
}
/* line 107, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-info .component-table thead,
#replacementsPanel #search-wrapper .list-item .list-item-info .component-table thead {
  border-bottom: 1px solid #abb2b3;
}
/* line 111, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-info .component-table thead tr th.qty,
#replacementsPanel #search-wrapper .list-item .list-item-info .component-table thead tr th.qty {
  text-align: right;
}
/* line 118, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-info .component-table .replacement-component-selection input,
#replacementsPanel #search-wrapper .list-item .list-item-info .component-table .replacement-component-selection input {
  padding: 5px 8px;
}
/* line 121, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-info .component-table .replacement-component-selection tr,
#replacementsPanel #search-wrapper .list-item .list-item-info .component-table .replacement-component-selection tr {
  border-bottom: 1px solid #abb2b3;
}
/* line 123, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-info .component-table .replacement-component-selection tr td,
#replacementsPanel #search-wrapper .list-item .list-item-info .component-table .replacement-component-selection tr td {
  padding: 10px 20px 0 0;
}
/* line 125, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-info .component-table .replacement-component-selection tr td.action,
#replacementsPanel #search-wrapper .list-item .list-item-info .component-table .replacement-component-selection tr td.action {
  padding-right: 0;
}
/* line 130, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-info .component-table .replacement-component-selection tr td.disc input, #replacementsPanel #snapshot-wrapper .list-item .list-item-info .component-table .replacement-component-selection tr td.qty input,
#replacementsPanel #search-wrapper .list-item .list-item-info .component-table .replacement-component-selection tr td.disc input,
#replacementsPanel #search-wrapper .list-item .list-item-info .component-table .replacement-component-selection tr td.qty input {
  max-width: 60px;
}
/* line 136, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-info .component-table .replacement-component-selection tr td.qty input, #replacementsPanel #snapshot-wrapper .list-item .list-item-info .component-table .replacement-component-selection tr td.action input,
#replacementsPanel #search-wrapper .list-item .list-item-info .component-table .replacement-component-selection tr td.qty input,
#replacementsPanel #search-wrapper .list-item .list-item-info .component-table .replacement-component-selection tr td.action input {
  float: right;
}
/* line 140, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-info .component-table .replacement-component-selection tr td.qty,
#replacementsPanel #search-wrapper .list-item .list-item-info .component-table .replacement-component-selection tr td.qty {
  padding-right: 0;
  padding-left: 20px;
}
/* line 144, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-info .component-table .replacement-component-selection tr td.action,
#replacementsPanel #search-wrapper .list-item .list-item-info .component-table .replacement-component-selection tr td.action {
  font-size: 24px;
  text-align: right;
}
/* line 152, ../scss/module/blackstone_replacements/_item.scss */
#replacementsPanel #snapshot-wrapper .list-item .list-item-info .additional-component-wrapper,
#replacementsPanel #search-wrapper .list-item .list-item-info .additional-component-wrapper {
  text-align: center;
  margin: 10px 0 18px 0;
}

/* line 3, ../scss/module/blackstone_replacements/_snapshot.scss */
#replacementsPanel #snapshot-wrapper .snapshot-header {
  line-height: 234%;
  font-size: 21px;
}
/* line 6, ../scss/module/blackstone_replacements/_snapshot.scss */
#replacementsPanel #snapshot-wrapper .snapshot-header #snapshot-import {
  float: right;
  font-size: 16px;
  color: white;
}
/* line 10, ../scss/module/blackstone_replacements/_snapshot.scss */
#replacementsPanel #snapshot-wrapper .snapshot-header #snapshot-import .icon-font {
  position: relative;
  top: 2px;
}
/* line 14, ../scss/module/blackstone_replacements/_snapshot.scss */
#replacementsPanel #snapshot-wrapper .snapshot-header #snapshot-import:hover {
  color: rgba(255, 255, 255, 0.7);
}
/* line 19, ../scss/module/blackstone_replacements/_snapshot.scss */
#replacementsPanel #snapshot-wrapper ul.snapshot-list {
  padding-top: 13px;
}
/* line 22, ../scss/module/blackstone_replacements/_snapshot.scss */
#replacementsPanel #snapshot-wrapper ul.snapshot-list .list-item.helper-item {
  background: #edf2f3;
  border: 1px dashed #abb2b3;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  -moz-border-radius: 3px;
}
/* line 29, ../scss/module/blackstone_replacements/_snapshot.scss */
#replacementsPanel #snapshot-wrapper ul.snapshot-list .list-item.helper-item p {
  line-height: 150px;
  text-align: center;
}
/* line 34, ../scss/module/blackstone_replacements/_snapshot.scss */
#replacementsPanel #snapshot-wrapper ul.snapshot-list .list-item .addComponentToSnapshot-button {
  display: none;
}
/* line 39, ../scss/module/blackstone_replacements/_snapshot.scss */
#replacementsPanel #snapshot-wrapper .add-to-cart-wrap {
  text-align: center;
}

/* line 3, ../scss/module/blackstone_replacements/_search.scss */
#replacementsPanel #search-wrapper .search-input-wrapper {
  position: relative;
}
/* line 5, ../scss/module/blackstone_replacements/_search.scss */
#replacementsPanel #search-wrapper .search-input-wrapper input {
  margin: 3px 0;
  padding-left: 40px;
}
/* line 9, ../scss/module/blackstone_replacements/_search.scss */
#replacementsPanel #search-wrapper .search-input-wrapper #replacements-search-icon {
  top: 10px;
  left: 5px;
  position: absolute;
  font-size: 30px;
}
/* line 17, ../scss/module/blackstone_replacements/_search.scss */
#replacementsPanel #search-wrapper #instant-search #search-hits {
  padding-top: 13px;
}

/* line 3, ../scss/module/blackstone_replacements/_isbn-import.scss */
.bsa-replacements .dialog input {
  max-width: 100%;
}

/* line 3, ../scss/module/blackstone_marc/_customer_account.scss */
body.customer-account .my-account .marc-preferences {
  max-width: 400px;
}
/* line 5, ../scss/module/blackstone_marc/_customer_account.scss */
body.customer-account .my-account .marc-preferences p {
  font-size: 16px;
  line-height: 120%;
}
/* line 10, ../scss/module/blackstone_marc/_customer_account.scss */
body.customer-account .my-account .marc-preferences form label {
  font-size: 14px;
}
/* line 12, ../scss/module/blackstone_marc/_customer_account.scss */
body.customer-account .my-account .marc-preferences form label.large-text {
  font-size: 16px;
}
/* line 15, ../scss/module/blackstone_marc/_customer_account.scss */
body.customer-account .my-account .marc-preferences form label input[type="checkbox"] {
  position: relative;
  top: 1px;
}
/* line 19, ../scss/module/blackstone_marc/_customer_account.scss */
body.customer-account .my-account .marc-preferences form label input,
body.customer-account .my-account .marc-preferences form label textarea {
  margin-top: 2px;
}
/* line 24, ../scss/module/blackstone_marc/_customer_account.scss */
body.customer-account .my-account .marc-preferences form button,
body.customer-account .my-account .marc-preferences form label {
  margin-top: 20px;
}
/* line 28, ../scss/module/blackstone_marc/_customer_account.scss */
body.customer-account .my-account .marc-preferences form label,
body.customer-account .my-account .marc-preferences form input.fullwidth {
  display: block;
  width: 100%;
  max-width: 100%;
}
/* line 34, ../scss/module/blackstone_marc/_customer_account.scss */
body.customer-account .my-account .marc-preferences form input,
body.customer-account .my-account .marc-preferences form textarea {
  background: #fff;
}

/* line 2, ../scss/module/blackstone_holdings/_base.scss */
body .holding-wrapper {
  display: inline-block;
}
/* line 5, ../scss/module/blackstone_holdings/_base.scss */
body .holding-wrapper.not-held .icon-font {
  opacity: 0;
}
/* line 8, ../scss/module/blackstone_holdings/_base.scss */
body .holding-wrapper.not-held.show-empty {
  display: inline-block;
}
/* line 10, ../scss/module/blackstone_holdings/_base.scss */
body .holding-wrapper.not-held.show-empty .icon-font {
  opacity: .7;
  color: #919799;
}
/* line 16, ../scss/module/blackstone_holdings/_base.scss */
body .holding-wrapper .icon-font {
  color: #fe721d;
  font-size: 16px;
}

/* line 3, ../scss/module/blackstone_holdings/_lbd.scss */
.catalog-product-view .holding-wrapper.not-held {
  display: none;
}

/* line 2, ../scss/module/blackstone_custom/_info-bar.scss */
#home-page-info-bar-wrapper .info-bar {
  border: 1px solid #d3d8d9;
  border-left-width: 0;
  border-right-width: 0;
  padding-top: 4px;
}
/* line 7, ../scss/module/blackstone_custom/_info-bar.scss */
#home-page-info-bar-wrapper .info-bar ul {
  text-align: center;
}
/* line 9, ../scss/module/blackstone_custom/_info-bar.scss */
#home-page-info-bar-wrapper .info-bar ul li {
  display: inline;
  text-align: center;
  padding: 0 30px;
}
/* line 13, ../scss/module/blackstone_custom/_info-bar.scss */
#home-page-info-bar-wrapper .info-bar ul li a {
  font-size: 21px;
  line-height: 50px;
  color: #373c3e;
}
/* line 17, ../scss/module/blackstone_custom/_info-bar.scss */
#home-page-info-bar-wrapper .info-bar ul li a .icon-font {
  font-size: 30px;
  position: relative;
  top: 5px;
  padding-right: 3px;
}

@media (max-width: 800px) {
  /* line 30, ../scss/module/blackstone_custom/_info-bar.scss */
  #home-page-info-bar-wrapper {
    display: none;
  }
}
/* line 1, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-widget-overlay {
  background: #000;
  opacity: .8;
  z-index: 998;
}

/* line 6, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog {
  z-index: 999;
}
/* line 8, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog label {
  text-align: left;
}
/* line 12, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog .ui-dialog-buttonpane button {
  text-transform: capitalize;
}
/* line 14, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog .ui-dialog-buttonpane button.oneoftwo {
  float: left;
  width: 48%;
  margin-right: 0;
}
/* line 19, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog .ui-dialog-buttonpane button.twooftwo {
  float: right;
  width: 48%;
  margin-right: 0;
}
/* line 24, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog .ui-dialog-buttonpane button.full-width {
  margin-bottom: 20px;
}
/* line 29, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.bsa-addto-success {
  border-width: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px 10px 10px 10px;
  min-width: 330px;
}
/* line 34, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.bsa-addto-success .ui-dialog-content {
  min-height: 52px !important;
}
/* line 37, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.bsa-addto-success .ui-dialog-titlebar {
  display: none;
}
/* line 40, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.bsa-addto-success .ui-dialog-titlebar-close {
  display: none;
}
/* line 43, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.bsa-addto-success .left-col,
.ui-dialog.bsa-addto-success .right-col {
  display: inline-block;
  float: left;
  text-align: left;
}
/* line 48, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.bsa-addto-success .left-col h1,
.ui-dialog.bsa-addto-success .left-col h2,
.ui-dialog.bsa-addto-success .left-col h3,
.ui-dialog.bsa-addto-success .left-col p,
.ui-dialog.bsa-addto-success .right-col h1,
.ui-dialog.bsa-addto-success .right-col h2,
.ui-dialog.bsa-addto-success .right-col h3,
.ui-dialog.bsa-addto-success .right-col p {
  color: #fff;
  margin-bottom: 0;
}
/* line 55, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.bsa-addto-success .left-col h3,
.ui-dialog.bsa-addto-success .right-col h3 {
  font-size: 21px;
  position: relative;
  top: 12px;
}
/* line 61, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.bsa-addto-success h3 {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 64, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.bsa-addto-success .left-col {
  width: 15%;
}
/* line 67, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.bsa-addto-success .right-col {
  width: 85%;
  padding-left: 10px;
}
/* line 71, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.bsa-addto-success .icon-checkmark {
  position: relative;
  top: 4px;
  font-size: 42px;
  color: #6fc315;
}
/* line 79, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.bsa-addto-success.addtocart-success .right-col h3 {
  position: relative;
  top: 12px;
}
/* line 91, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.addtocart-notice.has-drm .ui-dialog-titlebar .ui-dialog-title {
  white-space: normal;
}
/* line 95, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.addtocart-notice.has-drm a {
  color: #02b2e7;
}
/* line 99, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.addtocart-notice.has-drm .addtocart-drm .middle-area {
  margin-top: 10px;
  background: #edf2f3;
  overflow: hidden;
}
/* line 103, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.addtocart-notice.has-drm .addtocart-drm .middle-area .pad {
  /*padding:20px 10px;*/
  padding: 0;
}
/* line 106, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.addtocart-notice.has-drm .addtocart-drm .middle-area .pad .col-of-2 {
  padding: 5px;
  width: 50%;
  float: left;
  text-align: center;
}
/* line 111, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.addtocart-notice.has-drm .addtocart-drm .middle-area .pad .col-of-2 img {
  margin: 0 auto;
  height: 40px;
}
/* line 122, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.addtocart-notice.is-rental .ui-dialog-titlebar .ui-dialog-title {
  white-space: normal;
}
/* line 127, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.addtocart-notice.is-rental .addtocart-rental .middle-area {
  margin-top: 10px;
  background: #edf2f3;
  overflow: hidden;
}
/* line 131, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.addtocart-notice.is-rental .addtocart-rental .middle-area .pad {
  /*padding:20px 10px;*/
  padding: 0;
}
/* line 134, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.addtocart-notice.is-rental .addtocart-rental .middle-area .pad .col-of-2 {
  padding: 5px;
  width: 50%;
  float: left;
  text-align: center;
}
/* line 139, ../scss/module/blackstone_custom/_dialogues.scss */
.ui-dialog.addtocart-notice.is-rental .addtocart-rental .middle-area .pad .col-of-2 img {
  margin: 0 auto;
  height: 40px;
}

/* line 153, ../scss/module/blackstone_custom/_dialogues.scss */
.customerlists-common-not-saleable ul.not-available {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}

/* line 3, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap .bsa-login-main {
  /* Hide the browser's default radio button */
  /* Create a custom radio button */
  /* On mouse-over, add a grey background color */
  /* When the radio button is checked, add a blue background */
  /* Create the indicator (the dot/circle - hidden when not checked) */
  /* Show the indicator (dot/circle) when checked */
  /* Style the indicator (dot/circle) */
}
/* line 4, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap .bsa-login-main p,
.blackstone-plans-setup-index .bswrap .bsa-login-main a {
  font-size: 16px;
}
/* line 9, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap .bsa-login-main .bsa-login-box .bsa-login-middle {
  text-align: left;
}
/* line 12, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap .input-box {
  max-width: 100%;
}
/* line 16, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap .bsa-login-main .bsa-login-box .bsa-login-middle .bsa-login-wrap {
  margin: 0 30px;
}
/* line 22, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap .bsa-login-main .steps li {
  padding-top: 10px;
}
/* line 24, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap .bsa-login-main .steps li.first {
  padding-top: 0;
}
/* line 28, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap .bsa-login-main .steps li ul.radio-options li {
  padding-top: 5px;
}
/* line 34, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap .bsa-login-main span.setupradio {
  display: block;
}
/* line 37, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap .bsa-login-main span.setupcheck {
  display: block;
  margin-left: 16px;
  margin-top: -18px;
}
/* line 42, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap .bsa-login-main .label-container {
  display: block;
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* line 55, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap .bsa-login-main .label-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
/* line 62, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap .bsa-login-main .label-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 17px;
  width: 17px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #ccc;
}
/* line 74, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap .bsa-login-main .label-container:hover input ~ .label-checkmark {
  background-color: #ccc;
}
/* line 79, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap .bsa-login-main .label-container input:checked ~ .label-checkmark {
  background-color: #2196F3;
}
/* line 84, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap .bsa-login-main .label-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* line 91, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap .bsa-login-main .label-container input:checked ~ .label-checkmark:after {
  display: block;
}
/* line 96, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap .bsa-login-main .label-container .label-checkmark:after {
  top: 4px;
  left: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
}
/* line 104, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap .bsa-login-main .mode-select .validation-advice,
.blackstone-plans-setup-index .bswrap .bsa-login-main .autoship-select .validation-advice {
  padding-top: 4px;
}
/* line 108, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap .bsa-login-main #plan-PO {
  padding-left: 5px;
}
/* line 111, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap .bsa-login-main #terms-container .validation-advice {
  padding-left: 15px;
  padding-top: 4px;
}
/* line 117, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .bswrap p.space-above {
  padding-top: 10px;
}
/* line 124, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .plan-selects .plan-row .request-plan-remove {
  position: absolute;
  top: 10px;
  right: -23px;
  cursor: pointer;
}
/* line 133, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .plan-selects .plan-row-template .plan-row .request-plan-remove {
  display: none;
}
/* line 139, ../scss/module/blackstone_plans/_setup.scss */
.blackstone-plans-setup-index .lower-border {
  border-bottom: 1px solid #e0e4e5;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  /* line 146, ../scss/module/blackstone_plans/_setup.scss */
  .blackstone-plans-setup-index .main-container {
    margin-top: 90px !important;
  }
  /* line 150, ../scss/module/blackstone_plans/_setup.scss */
  .blackstone-plans-setup-index .bswrap .bsa-login-main {
    padding-top: 0;
  }
}

/* line 3, ../scss/module/blackstone_plans/_dashboard.scss */
.blackstone-plans-customer-account .box-plan .plan-wrapper {
  padding-top: 20px;
  width: 50%;
  max-width: 300px;
  float: left;
  margin-top: 15px;
}
/* line 5, ../scss/module/blackstone_plans/_dashboard.scss */
.blackstone-plans-customer-account .box-plan .plan-wrapper .pad {
  padding-right: 5px;
}
/* line 12, ../scss/module/blackstone_plans/_dashboard.scss */
.blackstone-plans-customer-account .box-plan .plan-wrapper label,
.blackstone-plans-customer-account .box-plan .plan-wrapper table,
.blackstone-plans-customer-account .box-plan .plan-wrapper p {
  line-height: 120%;
  font-size: 16px;
}
/* line 18, ../scss/module/blackstone_plans/_dashboard.scss */
.blackstone-plans-customer-account .box-plan .plan-wrapper.even {
  float: right;
}
/* line 22, ../scss/module/blackstone_plans/_dashboard.scss */
.blackstone-plans-customer-account .box-plan .plan-wrapper .plan-head .header {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  line-height: 120%;
  font-size: 16px;
}
/* line 28, ../scss/module/blackstone_plans/_dashboard.scss */
.blackstone-plans-customer-account .box-plan .plan-wrapper label,
.blackstone-plans-customer-account .box-plan .plan-wrapper select {
  width: 100%;
}
/* line 33, ../scss/module/blackstone_plans/_dashboard.scss */
.blackstone-plans-customer-account .box-plan .plan-wrapper .obligation .value {
  color: #373c3e;
}
/* line 40, ../scss/module/blackstone_plans/_dashboard.scss */
.blackstone-plans-customer-account .box-plan .plan-wrapper.active .obligation .value.unfulfilled {
  color: #DF280A;
}
/* line 48, ../scss/module/blackstone_plans/_dashboard.scss */
.blackstone-plans-customer-account .notices {
  margin-top: 50px;
}
/* line 50, ../scss/module/blackstone_plans/_dashboard.scss */
.blackstone-plans-customer-account .notices a,
.blackstone-plans-customer-account .notices p {
  line-height: 120%;
  font-size: 16px;
}
/* line 55, ../scss/module/blackstone_plans/_dashboard.scss */
.blackstone-plans-customer-account .notices .notice-cta {
  line-height: 150%;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}

/* line 4, ../scss/module/blackstone_plans/_snapshot.scss */
.blackstone-plan-snapshot .plan-data .header a {
  color: #02b2e7;
}
/* line 8, ../scss/module/blackstone_plans/_snapshot.scss */
.blackstone-plan-snapshot .plan-data .plan-wrapper {
  margin-top: 14px;
}
/* line 10, ../scss/module/blackstone_plans/_snapshot.scss */
.blackstone-plan-snapshot .plan-data .plan-wrapper .plan-label {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 0;
}
/* line 16, ../scss/module/blackstone_plans/_snapshot.scss */
.blackstone-plan-snapshot .plan-data .plan-wrapper p {
  font-size: 14px;
}
/* line 19, ../scss/module/blackstone_plans/_snapshot.scss */
.blackstone-plan-snapshot .plan-data .plan-wrapper .obligation-info {
  color: #DF280A;
}
/* line 21, ../scss/module/blackstone_plans/_snapshot.scss */
.blackstone-plan-snapshot .plan-data .plan-wrapper .obligation-info.fulfilled {
  color: #373c3e;
}

/* ============================================ *
 * Global Add To Modal
 * ============================================ */
/* line 33, ../scss/module/_addtomodal.scss */
.catalogsearch-result-index .featherlight .featherlight-content {
  padding: 10px;
  border-bottom: 0;
}
@media screen and (max-width: 910px) {
  /* line 39, ../scss/module/_addtomodal.scss */
  .catalogsearch-result-index .featherlight {
    top: 90px;
  }
}

/* line 46, ../scss/module/_addtomodal.scss */
.addto-modal .left-col,
.addto-modal .mid-col,
.addto-modal .right-col {
  position: relative;
  float: left;
  height: 450px;
}
/* line 53, ../scss/module/_addtomodal.scss */
.addto-modal .left-col {
  min-width: 25px;
}
/* line 57, ../scss/module/_addtomodal.scss */
.addto-modal .mid-col img {
  padding: 25px 0 0 0;
}
/* line 60, ../scss/module/_addtomodal.scss */
.addto-modal .mid-col .mid-col-bottom {
  background: #edf2f3;
  height: 25px;
}
/* line 65, ../scss/module/_addtomodal.scss */
.addto-modal .right-col {
  max-width: 460px;
}
/* line 68, ../scss/module/_addtomodal.scss */
.addto-modal .right-col .top {
  padding: 25px 25px 0 25px;
}
/* line 71, ../scss/module/_addtomodal.scss */
.addto-modal .right-col .top h2.product-name {
  font-size: 21px;
  margin-bottom: 0;
}
/* line 75, ../scss/module/_addtomodal.scss */
.addto-modal .right-col .top h3.subtitle {
  margin-bottom: 0;
}
/* line 78, ../scss/module/_addtomodal.scss */
.addto-modal .right-col .top .credit-line {
  color: #777e80;
  font-size: 16px;
}
/* line 81, ../scss/module/_addtomodal.scss */
.addto-modal .right-col .top .credit-line a {
  color: #777e80;
  font-size: 16px;
}
/* line 84, ../scss/module/_addtomodal.scss */
.addto-modal .right-col .top .credit-line a:hover {
  color: #02b2e7;
}
/* line 89, ../scss/module/_addtomodal.scss */
.addto-modal .right-col .top .extra-info {
  color: #777e80;
  font-size: 16px;
}
/* line 94, ../scss/module/_addtomodal.scss */
.addto-modal .right-col .bottom {
  padding: 25px 25px 0 25px;
}
/* line 96, ../scss/module/_addtomodal.scss */
.addto-modal .right-col .bottom .price-box .price {
  font-size: 28px;
}
/* line 99, ../scss/module/_addtomodal.scss */
.addto-modal .right-col .bottom .addtocart-success {
  text-align: center;
}
/* line 101, ../scss/module/_addtomodal.scss */
.addto-modal .right-col .bottom .addtocart-success .btn-cart {
  margin-top: 30px;
}
/* line 105, ../scss/module/_addtomodal.scss */
.addto-modal .right-col .bottom .addtowishlist-success {
  text-align: center;
}
/* line 107, ../scss/module/_addtomodal.scss */
.addto-modal .right-col .bottom .addtowishlist-success button {
  margin-bottom: 12px;
}
/* line 113, ../scss/module/_addtomodal.scss */
.addto-modal .top,
.addto-modal .bottom {
  width: 100%;
}
/* line 117, ../scss/module/_addtomodal.scss */
.addto-modal .top {
  height: 40%;
}
/* line 120, ../scss/module/_addtomodal.scss */
.addto-modal .bottom {
  position: relative;
  height: 60%;
  background: #edf2f3;
}
/* line 125, ../scss/module/_addtomodal.scss */
.addto-modal .product-info-wrapper {
  height: 88px;
}
/* line 129, ../scss/module/_addtomodal.scss */
.addto-modal .form-inputs label {
  float: left;
}
/* line 131, ../scss/module/_addtomodal.scss */
.addto-modal .form-inputs label.product-selector-label {
  width: 200px;
}
/* line 134, ../scss/module/_addtomodal.scss */
.addto-modal .form-inputs label.qty-label {
  width: 100px;
  margin-left: 25px;
}
/* line 137, ../scss/module/_addtomodal.scss */
.addto-modal .form-inputs label.qty-label input {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 8px;
  font-size: 16px;
  border: 1px solid #abb2b3;
  width: 50px;
  background-color: #fff;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  outline: none;
}
/* line 154, ../scss/module/_addtomodal.scss */
.addto-modal .ctas .product-item {
  float: right;
  width: 50%;
}
/* line 157, ../scss/module/_addtomodal.scss */
.addto-modal .ctas .product-item .add-to-cart-button,
.addto-modal .ctas .product-item .add-to-wishlist,
.addto-modal .ctas .product-item .add-to-list {
  width: 162.5px;
  padding: 16px 0 13px 0;
  text-align: center;
}
/* line 164, ../scss/module/_addtomodal.scss */
.addto-modal .ctas .product-item .add-to-cart-button {
  margin-left: 12px;
}
/* line 167, ../scss/module/_addtomodal.scss */
.addto-modal .ctas .product-item .add-to-wishlist,
.addto-modal .ctas .product-item .add-to-list {
  margin-right: 12px;
}
@media screen and (max-width: 910px) {
  /* line 177, ../scss/module/_addtomodal.scss */
  .addto-modal .left-col,
  .addto-modal .mid-col-bottom {
    display: none;
  }
  /* line 181, ../scss/module/_addtomodal.scss */
  .addto-modal .mid-col,
  .addto-modal .right-col {
    height: auto;
    width: 100%;
    text-align: center;
  }
  /* line 188, ../scss/module/_addtomodal.scss */
  .addto-modal .mid-col img {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
  /* line 195, ../scss/module/_addtomodal.scss */
  .addto-modal .bottom {
    height: auto;
  }
  /* line 198, ../scss/module/_addtomodal.scss */
  .addto-modal button.large.tight,
  .addto-modal .button.large.tight {
    width: 100%;
  }
  /* line 203, ../scss/module/_addtomodal.scss */
  .addto-modal .right-col {
    float: none;
    clear: both;
  }
  /* line 207, ../scss/module/_addtomodal.scss */
  .addto-modal .right-col .top {
    margin-bottom: 25px;
  }
  /* line 211, ../scss/module/_addtomodal.scss */
  .addto-modal .right-col .bottom .addtowishlist-success,
  .addto-modal .right-col .bottom .addtocart-success {
    padding-bottom: 20px;
  }
  /* line 217, ../scss/module/_addtomodal.scss */
  .addto-modal .right-col .addtocart-success button {
    margin-bottom: 12px;
  }
  /* line 222, ../scss/module/_addtomodal.scss */
  .addto-modal .ctas {
    padding-bottom: 25px;
  }
  /* line 224, ../scss/module/_addtomodal.scss */
  .addto-modal .ctas .product-item {
    float: none;
  }
  /* line 226, ../scss/module/_addtomodal.scss */
  .addto-modal .ctas .product-item .add-to-cart-button {
    margin-left: 0;
    margin-bottom: 12px;
  }
  /* line 230, ../scss/module/_addtomodal.scss */
  .addto-modal .ctas .product-item button.large,
  .addto-modal .ctas .product-item .button.large {
    width: 100%;
  }
  /* line 237, ../scss/module/_addtomodal.scss */
  .addto-modal .product-info-wrapper {
    height: auto;
    margin: 5px auto 20px auto;
  }
  /* line 243, ../scss/module/_addtomodal.scss */
  .addto-modal .form-inputs label {
    float: left;
  }
  /* line 245, ../scss/module/_addtomodal.scss */
  .addto-modal .form-inputs label.product-selector-label {
    width: 100%;
  }
  /* line 248, ../scss/module/_addtomodal.scss */
  .addto-modal .form-inputs label.qty-label {
    margin-left: 0;
    float: none;
  }
}

/*========================
App Common
 ========================*/
/* line 4, ../scss/module/customerlists/common/_app.scss */
#customerListApp {
  min-height: 200px;
}
/* line 6, ../scss/module/customerlists/common/_app.scss */
#customerListApp select {
  cursor: pointer;
}
/* line 9, ../scss/module/customerlists/common/_app.scss */
#customerListApp .row {
  width: 100%;
  clear: both;
}
/* line 15, ../scss/module/customerlists/common/_app.scss */
#customerListApp .header .input-label input {
  background: transparent;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  padding-left: 0;
  margin: 0;
  border: 1px solid transparent;
}
/* line 21, ../scss/module/customerlists/common/_app.scss */
#customerListApp .header .input-label input:focus {
  border-color: #d3d8d9;
  border-style: dashed;
}
/* line 25, ../scss/module/customerlists/common/_app.scss */
#customerListApp .header .input-label input.inline {
  width: auto;
  display: inline;
}
/* line 32, ../scss/module/customerlists/common/_app.scss */
#customerListApp #app-body {
  width: 100%;
}
/* line 35, ../scss/module/customerlists/common/_app.scss */
#customerListApp .ui-helper {
  width: 100% !important;
}
/* line 39, ../scss/module/customerlists/common/_app.scss */
#customerListApp #save-indicator,
#customerListApp .locker {
  position: absolute;
  display: none;
  background-image: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/ajax-loader2.gif") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  z-index: 999;
}
/* line 48, ../scss/module/customerlists/common/_app.scss */
#customerListApp #loading-lock {
  position: fixed;
}
/* line 53, ../scss/module/customerlists/common/_app.scss */
#customerListApp #save-indicator.locked, #customerListApp #save-indicator.saving,
#customerListApp #loading-lock.locked,
#customerListApp #loading-lock.saving {
  display: block;
}
/* line 58, ../scss/module/customerlists/common/_app.scss */
#customerListApp #save-indicator {
  top: 0;
  right: 0;
  height: 50px;
  width: 50px;
}
/* line 64, ../scss/module/customerlists/common/_app.scss */
#customerListApp #loading-lock {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
}

/* line 3, ../scss/module/customerlists/common/_header.scss */
#customerListApp .panel-header .org-switch-wrapper {
  float: right;
}
/* line 5, ../scss/module/customerlists/common/_header.scss */
#customerListApp .panel-header .org-switch-wrapper label {
  color: #2c3033;
}
/* line 8, ../scss/module/customerlists/common/_header.scss */
#customerListApp .panel-header .org-switch-wrapper select {
  width: auto;
  margin-left: 6px;
}
/* line 13, ../scss/module/customerlists/common/_header.scss */
#customerListApp .panel-header .plan-data-cta-wrapper {
  padding-top: 4px;
}
/* line 16, ../scss/module/customerlists/common/_header.scss */
#customerListApp .panel-header .plan-data-cta-wrapper .plan-obligation-info a {
  color: #373c3e;
}
/* line 18, ../scss/module/customerlists/common/_header.scss */
#customerListApp .panel-header .plan-data-cta-wrapper .plan-obligation-info a .icon-font {
  font-size: 21px;
  position: relative;
  top: 2px;
  padding-right: 2px;
}

/* line 30, ../scss/module/customerlists/common/_header.scss */
#header #header-customerlists {
  display: inline-block;
  float: right;
}
/* line 33, ../scss/module/customerlists/common/_header.scss */
#header #header-customerlists a {
  height: 100px;
  padding: 30px 10px 0 10px;
  font-size: 28px;
  color: #fff;
  display: block;
}
/* line 39, ../scss/module/customerlists/common/_header.scss */
#header #header-customerlists a .icon-List:before {
  color: #fff !important;
}
/* line 43, ../scss/module/customerlists/common/_header.scss */
#header #header-customerlists a:hover {
  text-decoration: none;
  background: #000;
}

@media only screen and (max-width: 768px) {
  /* line 52, ../scss/module/customerlists/common/_header.scss */
  body #header #header-customerlists {
    display: none !important;
  }
}
/* line 4, ../scss/module/customerlists/common/_dialogues.scss */
.blackstone-customerlists-app .dialog .import-isbns label {
  width: 100%;
  max-width: 100%;
}
/* line 11, ../scss/module/customerlists/common/_dialogues.scss */
.blackstone-customerlists-app .dialog .import-isbns-success ul li {
  font-size: 12px;
}
/* line 13, ../scss/module/customerlists/common/_dialogues.scss */
.blackstone-customerlists-app .dialog .import-isbns-success ul li .fail {
  color: #E41300;
}
/* line 20, ../scss/module/customerlists/common/_dialogues.scss */
.blackstone-customerlists-app .dialog label.inactive {
  opacity: .8;
  color: #919799;
}

/* line 27, ../scss/module/customerlists/common/_dialogues.scss */
.context-menu-wrapper {
  position: absolute;
  z-index: 999;
}
/* line 30, ../scss/module/customerlists/common/_dialogues.scss */
.context-menu-wrapper .context-menu {
  display: none;
  z-index: 1;
}
/* line 34, ../scss/module/customerlists/common/_dialogues.scss */
.context-menu-wrapper .context-menu li .ui-menu-item-wrapper {
  white-space: nowrap;
}
/* line 38, ../scss/module/customerlists/common/_dialogues.scss */
.context-menu-wrapper .context-menu li.status .icon-font {
  font-size: 12px;
  padding-right: 5px;
  position: relative;
  bottom: 1px;
}
/* line 47, ../scss/module/customerlists/common/_dialogues.scss */
.context-menu-wrapper .context-menu li.delete div a {
  color: #d21d05;
}
/* line 55, ../scss/module/customerlists/common/_dialogues.scss */
.context-menu-wrapper .context-menu li.disabled.delete div a, .context-menu-wrapper .context-menu li.disabled div a {
  color: #919799;
}

/* line 64, ../scss/module/customerlists/common/_dialogues.scss */
.customerlists-global-dialogue {
  width: 255px;
}
/* line 67, ../scss/module/customerlists/common/_dialogues.scss */
.customerlists-global-dialogue h2 {
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0;
}
/* line 74, ../scss/module/customerlists/common/_dialogues.scss */
.customerlists-global-dialogue h3 {
  font-size: 16px !important;
  line-height: 1.2;
  color: #777e80;
  text-align: center;
  margin-bottom: 0;
}
/* line 82, ../scss/module/customerlists/common/_dialogues.scss */
.customerlists-global-dialogue label {
  width: 100%;
  max-width: 100%;
}
/* line 87, ../scss/module/customerlists/common/_dialogues.scss */
.customerlists-global-dialogue select {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 16px;
}
/* line 93, ../scss/module/customerlists/common/_dialogues.scss */
.customerlists-global-dialogue input {
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -o-border-radius: 4px;
  margin-top: 14px;
  margin-bottom: 0;
  border: 1px solid #abb2b3;
  font-size: 16px;
}
/* line 104, ../scss/module/customerlists/common/_dialogues.scss */
.customerlists-global-dialogue button.button {
  margin-top: 25px;
  width: 100%;
}
/* line 110, ../scss/module/customerlists/common/_dialogues.scss */
.customerlists-global-dialogue .list-info-wrapper .list-info-prod {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  margin-top: 25px;
}

/* line 119, ../scss/module/customerlists/common/_dialogues.scss */
.isFirefox .customerlists-global-addtolist select {
  height: 40px !important;
}

/* line 1, ../scss/module/customerlists/views/_base.scss */
#customerListApp {
  /*========================
  Views Base
  =======================*/
}
/* line 5, ../scss/module/customerlists/views/_base.scss */
#customerListApp .panel-header {
  overflow: hidden;
  width: 100%;
  padding-top: 45px;
}
/* line 9, ../scss/module/customerlists/views/_base.scss */
#customerListApp .panel-header span {
  cursor: pointer;
}

/* line 1, ../scss/module/customerlists/views/_folder.scss */
#customerListApp {
  /*========================
  Folder View
  =======================*/
  /*@media screen and (max-width: $bp-R-xsmall) {
    .folder-wrapper {
      .pad {
        .folder-inner {
          .customerList {
            width:100%;
          }
        }
      }
    }
  }*/
}
/* line 5, ../scss/module/customerlists/views/_folder.scss */
#customerListApp #folders {
  padding-top: 5px;
}
/* line 8, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
}
/* line 13, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad {
  padding: 0;
  position: relative;
}
/* line 16, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-header {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
  border-top: 1px solid #abb2b3;
}
/* line 19, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-header .folder-toggle-wrapper {
  cursor: pointer;
}
/* line 21, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-header .folder-toggle-wrapper .icon-font {
  font-size: 21px;
}
/* line 24, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-header .folder-toggle-wrapper .open {
  display: none;
}
/* line 26, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-header .folder-toggle-wrapper .open .icon-font {
  top: 16px;
}
/* line 31, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-header .folder-toggle-wrapper .close .icon-font {
  top: 17px;
}
/* line 36, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-header .folder-toggle-wrapper.closed .close {
  display: none;
}
/* line 39, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-header .folder-toggle-wrapper.closed .open {
  display: block;
}
/* line 44, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-header .icon-font {
  font-size: 32px;
  position: absolute;
  top: 11px;
}
/* line 48, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-header .icon-font.second-icon {
  left: 29px;
}
/* line 53, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-header .folder-label input {
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  padding-left: 66px;
  width: 100%;
  font-size: 28px;
  display: block;
}
/* line 62, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner {
  margin: 0 -7px 44px;
}
/* line 64, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .folder-inner-clear {
  clear: both;
}
/* line 67, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList {
  float: left;
  width: 25%;
}
/* line 70, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList:active {
  cursor: grabbing;
}
/* line 73, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .header {
  position: relative;
  z-index: 1;
}
/* line 76, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .header .list-label {
  padding-right: 30px;
  display: block;
}
/* line 79, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .header .list-label input {
  padding: 3px 4px 3px 6px;
  margin: 3px 4px 3px 6px;
}
/* line 84, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .header .list-context-menu-button {
  width: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  color: #fff;
  cursor: pointer;
}
/* line 91, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .header .list-context-menu-button .icon-font {
  padding-left: 1px;
  font-size: 24px;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
}
/* line 97, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .header .list-context-menu-button .icon-font:hover {
  background: rgba(0, 0, 0, 0.7);
}
/* line 102, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .header input {
  color: #fff;
}
/* line 104, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .header input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #B7C1C2;
}
/* line 107, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .header input::-moz-placeholder {
  /* Firefox 19+ */
  color: #B7C1C2;
}
/* line 110, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .header input:-ms-input-placeholder {
  /* IE 10+ */
  color: #B7C1C2;
}
/* line 113, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .header input:-moz-placeholder {
  /* Firefox 18- */
  color: #B7C1C2;
}
/* line 118, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .inner {
  padding: 8px 12px;
}
/* line 121, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .pad {
  padding: 7px;
  padding-top: 9px;
}
/* line 124, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .pad .wrap {
  position: relative;
  box-shadow: -1px 3px 5px #d3d8d9;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
}
/* line 131, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .pad .wrap .hover-overlay {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}
/* line 141, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .pad .wrap .hover-overlay .button-holder {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
/* line 147, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .pad .wrap .hover-overlay .lower-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 16px;
  padding-bottom: 10px;
}
/* line 156, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .pad .wrap .hover-overlay .lower-cta .icon-font {
  font-size: 24px;
  position: relative;
  top: 5px;
  padding-right: 5px;
}
/* line 166, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList.new-list {
  cursor: pointer;
}
/* line 168, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList.new-list .wrap {
  border: 2px dashed #d3d8d9;
  box-shadow: none;
}
/* line 172, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList.new-list .inner {
  padding: 81px 0;
  text-align: center;
}
/* line 175, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList.new-list .inner p {
  font-size: 21px;
  color: #777e80;
}
/* line 178, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList.new-list .inner p span {
  display: block;
  width: 100%;
}
/* line 182, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList.new-list .inner p .icon-font {
  font-size: 48px;
  color: #777e80;
}
/* line 187, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList.new-list .inner .icon-font {
  font-size: 50px;
}
/* line 192, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .pad {
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}
/* line 197, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .pad .top {
  background: #777e80;
  border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  -webkit-border-radius: 3px 3px 0 0;
  -o-border-radius: 3px 3px 0 0;
  border: 1px solid #d3d8d9;
  border-bottom: 0;
}
/* line 206, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .pad .status-color-bar {
  height: 4px;
  width: 100%;
  border: 1px solid #d3d8d9;
  border-bottom: 0;
  border-top: 0;
}
/* line 213, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .pad .bottom {
  background: #fff;
  border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  -webkit-border-radius: 0 0 3px 3px;
  -o-border-radius: 0 0 3px 3px;
  border: 1px solid #d3d8d9;
  border-top: 0;
}
/* line 222, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .pad .meta {
  color: #777e80;
  font-size: 14px;
  margin-bottom: 20px;
}
/* line 227, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .pad .info {
  font-size: 16px;
}
/* line 229, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .pad .info .locker {
  display: inline-block;
  background-size: contain;
  height: 18px;
  width: 12px;
  z-index: 0;
}
/* line 237, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .pad .lower {
  border-top: 1px solid #d3d8d9;
  font-size: 16px;
}
/* line 240, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .pad .lower p {
  padding: 4px 0;
}
/* line 242, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList .pad .lower p .status-dot {
  margin-right: 5px;
  position: relative;
  top: 1px;
  z-index: 0;
}
/* line 253, ../scss/module/customerlists/views/_folder.scss */
#customerListApp .folder-wrapper .pad .folder-inner .customerList.drop-placeholder .pad .wrap {
  box-shadow: none;
  border: 3px dashed #777e80;
  opacity: .8;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -webkit-border-radius: 3px;
}
@media screen and (max-width: 1199px) {
  /* line 273, ../scss/module/customerlists/views/_folder.scss */
  #customerListApp .folder-wrapper .pad .folder-inner .customerList {
    width: 33.3%;
  }
}
@media screen and (max-width: 800px) {
  /* line 284, ../scss/module/customerlists/views/_folder.scss */
  #customerListApp .folder-wrapper .pad .folder-inner .customerList {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  /* line 295, ../scss/module/customerlists/views/_folder.scss */
  #customerListApp .folder-wrapper .pad .folder-inner .customerList {
    width: 100%;
  }
}

/* line 1, ../scss/module/customerlists/views/_list.scss */
#customerListApp {
  /*========================
  List View
  =======================*/
  /*========================
  Search
  =======================*/
  /*========================
  Users and Sharing
  =======================*/
}
/* line 6, ../scss/module/customerlists/views/_list.scss */
#customerListApp .panel-header .second-row {
  margin-top: 30px;
}
/* line 9, ../scss/module/customerlists/views/_list.scss */
#customerListApp .panel-header #go-to-dashboard {
  float: left;
  font-size: 16px;
}
/* line 12, ../scss/module/customerlists/views/_list.scss */
#customerListApp .panel-header #go-to-dashboard .icon-font {
  font-size: 10px;
  margin-right: 1px;
}
/* line 18, ../scss/module/customerlists/views/_list.scss */
#customerListApp .panel-header #compare-lists {
  float: right;
  font-size: 16px;
}
/* line 21, ../scss/module/customerlists/views/_list.scss */
#customerListApp .panel-header #compare-lists .icon-font {
  margin-right: 5px;
  font-size: 30px;
  position: relative;
  top: 5px;
}
/* line 30, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView .pad {
  padding: 18px;
}
/* line 33, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-toggle {
  font-size: 16px;
  float: left;
}
/* line 36, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-toggle .icon-font {
  position: relative;
  top: 8px;
  font-size: 30px;
  padding-right: 5px;
}
/* line 42, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-toggle .close {
  display: none;
}
/* line 45, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-toggle .open {
  display: inline-block;
}
/* line 51, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView.search-open #search-toggle .close {
  display: inline-block;
}
/* line 54, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView.search-open #search-toggle .open {
  display: none;
}
/* line 60, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists-wrapper {
  margin-left: -10px;
  margin-right: -10px;
}
/* line 68, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-body .middle .drawer-toggle h4 {
  margin-bottom: 0;
}
/* line 76, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .customer-list {
  float: left;
  position: relative;
  transition: width 1s;
  -moz-transition: width 1s;
  -webkit-transition: width 1s;
  -o-transition: width 1s;
}
/* line 84, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-sorts {
  padding-top: 15px;
}
/* line 86, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-sorts ul.sort-links {
  text-align: center;
}
/* line 88, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-sorts ul.sort-links li {
  display: inline-block;
  padding: 0 5px;
}
/* line 91, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-sorts ul.sort-links li a {
  color: #373c3e;
}
/* line 97, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-counters {
  padding-top: 21px;
  width: 100%;
  display: block;
  text-align: right;
  font-size: 16px;
  margin-bottom: 20px;
}
/* line 104, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-counters .counter {
  display: block;
  clear: both;
}
/* line 108, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-counters.updating {
  background-image: url(https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/ajax-loader2.gif) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
/* line 114, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header {
  overflow: hidden;
  border-bottom: 1px solid #d3d8d9;
}
/* line 117, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .buttons {
  display: inline-block;
  float: right;
}
/* line 121, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .list-label-pad {
  padding: 6px 18px 6px 18px;
}
/* line 123, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .list-label-pad input {
  padding: 5px 8px 5px 0;
}
/* line 127, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .pad {
  position: relative;
  padding-bottom: 5px;
}
/* line 131, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .list-header-action-area {
  position: absolute;
  width: 142px;
  top: 14px;
  right: 0;
  font-size: 16px;
  color: #fff;
}
/* line 139, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .listViewCloseList {
  float: left;
  cursor: pointer;
}
/* line 143, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .list-context-menu-button {
  float: right;
  display: inline-block;
  padding-right: 10px;
  font-size: 24px;
  cursor: pointer;
  position: relative;
  bottom: 2px;
}
/* line 152, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .list-users-wrapper {
  display: inline-block;
  float: left;
}
/* line 156, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .list-label {
  width: 100%;
  display: block;
  overflow: hidden;
  float: left;
  padding-right: 150px;
}
/* line 162, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .list-label input {
  font-size: 18px;
  display: block;
  float: left;
  text-align: left;
  width: 100%;
}
/* line 170, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .row {
  padding: 10px 0 0 0;
}
/* line 172, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .row.title-row {
  padding: 0;
  background: #777e80;
}
/* line 175, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .row.title-row input {
  color: #fff;
}
/* line 179, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .row.edit-info {
  color: #777e80;
  font-size: 14px;
}
/* line 183, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .row.bottom-border {
  border-bottom: 1px solid #d3d8d9;
}
/* line 186, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .row.no-padding-top {
  padding-top: 0;
}
/* line 189, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .row .left,
#customerListApp #lists .header .row .right {
  width: 50%;
  float: left;
}
/* line 194, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .row .curated-info,
#customerListApp #lists .header .row .list-usernote {
  width: 100%;
  padding-top: 5px;
}
/* line 197, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .row .curated-info label,
#customerListApp #lists .header .row .list-usernote label {
  line-height: 150%;
  width: 100%;
}
/* line 200, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .row .curated-info label textarea,
#customerListApp #lists .header .row .list-usernote label textarea {
  height: 126px;
  font-size: 16px;
}
/* line 208, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .status-color-bar {
  height: 5px;
}
/* line 211, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .status-wrapper {
  position: relative;
  float: right;
  width: 25%;
  padding: 3px 0;
}
/* line 216, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .status-wrapper label {
  position: relative;
  width: 100%;
}
/* line 219, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .status-wrapper label .liststatus-legend {
  position: absolute;
  top: 30%;
  left: 8px;
  height: 10px;
  width: 10px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  background: #000;
}
/* line 231, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .header .status-wrapper label select {
  padding-left: 22px;
}
/* line 239, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .customer-list.not-editable .not-editable-locker {
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}
/* line 251, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .customer-list .list-item .list-item-info .pad {
  padding: 25px;
}
/* line 258, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item {
  margin-bottom: 10px;
  position: relative;
  z-index: 99;
  font-size: 16px;
}
/* line 263, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item.not-salable {
  opacity: .7;
}
/* line 267, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .price-box .price {
  font-size: 16px;
}
/* line 271, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item.ui-draggable-dragging {
  z-index: 100;
}
/* line 274, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .locker {
  display: none;
  height: 100%;
  width: 100%;
  top: 0;
}
/* line 281, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item.locked .locker {
  display: block;
}
/* line 285, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item.helper-item {
  margin-bottom: 16px;
}
/* line 287, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item.helper-item .pad {
  border-color: transparent;
  background: #fff;
}
/* line 290, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item.helper-item .pad .list-item-head {
  background: transparent;
  text-align: center;
}
/* line 293, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item.helper-item .pad .list-item-head:active {
  cursor: default;
}
/* line 296, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item.helper-item .pad .list-item-head .name {
  padding-left: 0;
  padding-right: 0;
}
/* line 299, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item.helper-item .pad .list-item-head .name .icon-font {
  margin-right: 8px;
  position: relative;
  top: 1px;
}
/* line 309, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item.ui-sortable-helper .pad {
  -webkit-box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.44);
  -moz-box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.44);
  box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.44);
}
/* line 315, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item.drop-placeholder,
#customerListApp .list-item .outer-edge {
  background: #edf2f3;
  border: 1px solid #d3d8d9;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  overflow: hidden;
}
/* line 325, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .pad {
  padding: 5px;
}
/* line 328, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item.drop-placeholder {
  border-style: dashed;
  opacity: .8;
  background: #fff;
}
/* line 332, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item.drop-placeholder .pad {
  background: #fff;
}
/* line 336, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .info-toggle-wrapper {
  cursor: pointer;
}
/* line 338, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .info-toggle-wrapper .open,
#customerListApp .list-item .info-toggle-wrapper .close {
  float: left;
  cursor: pointer;
  position: relative;
  top: 1px;
  padding-right: 4px;
}
/* line 346, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .info-toggle-wrapper .close {
  display: none;
}
/* line 349, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .info-toggle-wrapper .open {
  display: inline-block;
}
/* line 355, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item.info-open .info-toggle-wrapper .close {
  display: inline-block;
}
/* line 358, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item.info-open .info-toggle-wrapper .open {
  display: none;
}
/* line 363, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .item-delete {
  float: right;
  cursor: pointer;
}
/* line 367, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head {
  overflow: hidden;
  background: #edf2f3;
}
/* line 370, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head:active {
  cursor: grabbing;
}
/* line 373, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .pad {
  padding: 10px;
}
/* line 376, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .pad .image .overlay-holder-v2 {
  top: 2px;
}
/* line 378, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .pad .image .overlay-holder-v2 .badge {
  margin: 1px 0 1px 3px;
}
/* line 381, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .pad .image .overlay-holder-v2 .badge .badge-inner span {
  display: none;
}
/* line 383, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .pad .image .overlay-holder-v2 .badge .badge-inner span.mini {
  display: inline-block;
}
/* line 392, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .info-toggle-wrapper {
  position: absolute;
  left: 6px;
  top: 25px;
}
/* line 397, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .image {
  width: 55px;
  position: absolute;
  left: 28px;
}
/* line 401, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .image .prod-image {
  max-width: 100%;
}
/* line 405, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .lower-title-line,
#customerListApp .list-item .list-item-head .name {
  display: block;
  width: 100%;
  padding-left: 83px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 256px;
  line-height: 120%;
}
/* line 417, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .release-date.not-released {
  color: #fe721d;
}
/* line 421, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .price-wrapper-outer,
#customerListApp .list-item .list-item-head .rel-context-menu-button,
#customerListApp .list-item .list-item-head .qty {
  position: absolute;
  top: 20px;
}
/* line 428, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .price-wrapper-outer {
  text-align: right;
  width: 140px;
  top: 23px;
  right: 134px;
}
/* line 434, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .rel-context-menu-button {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 23px;
}
/* line 440, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .qty {
  right: 20px;
}
/* line 443, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .price-box {
  margin: 0;
}
/* line 447, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .price-magento .special-price {
  padding-left: 3px;
}
/* line 451, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .rel-context-menu-button {
  float: right;
  font-size: 18px;
}
/* line 455, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .search-add-button {
  float: right;
  position: absolute;
  top: 11px;
  right: 12px;
  display: none;
}
/* line 462, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .qty {
  float: right;
  margin-right: 10px;
}
/* line 465, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .qty label {
  text-transform: uppercase;
}
/* line 468, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .qty input {
  max-width: 60px;
  padding: 0px 5px;
  margin: 0;
  border-width: 1px;
}
/* line 474, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-head .qty input,
#customerListApp .list-item .list-item-head .qty select {
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}
/* line 484, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-body .list-item-info {
  border-top: 1px solid #d3d8d9;
}
/* line 486, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-body .list-item-info .middle {
  margin: 30px 0 8px 0;
}
/* line 489, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-body .list-item-info .left-col,
#customerListApp .list-item .list-item-body .list-item-info .right-col {
  float: left;
}
/* line 493, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-body .list-item-info .left-col {
  width: 31.5%;
}
/* line 496, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-body .list-item-info .right-col {
  width: 68.5%;
}
/* line 498, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-body .list-item-info .right-col .col-pad {
  padding-left: 30px;
}
/* line 502, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-body .list-item-info .title-block {
  margin-bottom: 30px;
}
/* line 504, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-body .list-item-info .title-block h3 {
  margin-bottom: 0;
}
/* line 508, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-body .list-item-info .image {
  width: 100%;
  position: relative;
}
/* line 511, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-body .list-item-info .image .prod-image {
  max-width: 100%;
}
/* line 515, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-body .list-item-info .meta {
  width: 100%;
}
/* line 517, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-body .list-item-info .meta h4 {
  text-align: center;
}
/* line 520, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-body .list-item-info .meta ul {
  width: 100%;
  max-width: 375px;
}
/* line 524, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-body .list-item-info .meta ul li .label,
#customerListApp .list-item .list-item-body .list-item-info .meta ul li .value {
  vertical-align: top;
  font-size: 16px;
  display: inline-block;
}
/* line 530, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-body .list-item-info .meta ul li .label {
  width: 40%;
  text-align: right;
}
/* line 534, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-body .list-item-info .meta ul li .value {
  color: #777e80;
  width: 60%;
  text-align: left;
  padding-left: 10px;
}
/* line 543, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-body .list-item-info .notes {
  padding-top: 0;
}
/* line 545, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-body .list-item-info .notes label {
  width: 100%;
}
/* line 547, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-body .list-item-info .notes label textarea {
  width: 100%;
  height: 223px;
}
/* line 554, ../scss/module/customerlists/views/_list.scss */
#customerListApp .list-item .list-item-body .list-item-info .ajaxed-data-point .locker {
  background-size: contain;
  display: inline-block;
  position: relative;
  height: auto;
  width: 10px;
}
/* line 570, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #lists {
  width: 100%;
  float: right;
}
/* line 574, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper {
  width: 0;
  height: 0;
  overflow: hidden;
  float: left;
}
/* line 579, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .header {
  border-bottom: 1px solid #d3d8d9;
}
/* line 581, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .header .search-input-wrapper {
  position: relative;
}
/* line 583, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .header .search-input-wrapper #search-icon {
  font-size: 30px;
  position: absolute;
  top: 7px;
  left: 6px;
}
/* line 589, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .header .search-input-wrapper #search-box {
  padding-left: 40px;
}
/* line 595, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper #search-pagination-container .ais-pagination--item a {
  padding: 5px 3px;
}
/* line 599, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper #search-box {
  border-width: 1px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
}
/* line 606, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item {
  list-style: none;
}
/* line 609, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .list-item-head .pad {
  padding-right: 42px;
}
/* line 612, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .list-item-head .info-toggle-wrapper {
  top: 28px;
}
/* line 615, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .list-item-head .name {
  padding-right: 60px;
}
/* line 618, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .list-item-head .price-wrapper-outer {
  width: 55px;
  top: 11px;
  right: 43px;
}
/* line 623, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .list-item-head .qty {
  display: none;
}
/* line 626, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .list-item-head .item-delete {
  display: none;
}
/* line 629, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .list-item-head .search-add-button {
  display: inline-block;
}
/* line 632, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .list-item-head .rel-context-menu-button {
  display: none;
}
/* line 637, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .list-item-body .pad {
  padding: 11px;
  padding-bottom: 20px;
}
/* line 642, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .list-item-body .pad .upper .image .overlay-holder-v2 {
  top: 2px;
}
/* line 644, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .list-item-body .pad .upper .image .overlay-holder-v2 .badge {
  margin: 1px 0 1px 3px;
}
/* line 647, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .list-item-body .pad .upper .image .overlay-holder-v2 .badge .badge-inner span {
  display: none;
}
/* line 649, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .list-item-body .pad .upper .image .overlay-holder-v2 .badge .badge-inner span.mini {
  display: inline-block;
}
/* line 660, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .notes {
  display: none;
}
/* line 663, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .price-magento {
  display: none;
}
/* line 666, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .middle {
  margin-top: 15px;
  margin-bottom: 18px;
  border-bottom: 1px solid #d3d8d9;
}
/* line 670, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .middle .left-col,
#customerListApp .customerListView #search-wrapper .list-item .middle .right-col {
  width: 50%;
}
/* line 674, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .middle h4 {
  border-bottom: 3px solid transparent;
  color: #777e80;
  font-size: 18px;
}
/* line 681, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .upper .title-block {
  color: #777e80;
  font-size: 16px;
}
/* line 684, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .upper .title-block a {
  color: #777e80;
}
/* line 687, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .upper .title-block h3 {
  font-size: 16px;
  color: #373c3e;
}
/* line 692, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .upper .left-col {
  width: 25%;
}
/* line 695, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .upper .right-col {
  width: 75%;
}
/* line 697, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .upper .right-col .col-pad {
  padding-left: 12px;
}
/* line 703, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .lower .left-col,
#customerListApp .customerListView #search-wrapper .list-item .lower .right-col {
  width: 100%;
}
/* line 707, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .lower .meta-drawer,
#customerListApp .customerListView #search-wrapper .list-item .lower .description-drawer {
  display: none;
}
/* line 711, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .lower .meta {
  font-size: 14px;
}
/* line 713, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .lower .meta .label {
  width: 30%;
}
/* line 716, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .lower .meta .value {
  width: 70%;
}
/* line 724, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .list-item-info.meta-active .meta-header h4 {
  color: #373c3e;
  border-bottom-color: #02b2e7;
}
/* line 729, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .list-item-info.meta-active .meta-drawer {
  display: block;
}
/* line 735, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .list-item-info.description-active .description-header h4 {
  color: #373c3e;
  border-bottom-color: #02b2e7;
}
/* line 740, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .list-item-info.description-active .description-drawer {
  display: block;
}
/* line 742, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .list-item .list-item-info.description-active .description-drawer .col-pad {
  padding-left: 0;
}
/* line 750, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #lists,
#customerListApp .customerListView #search-wrapper {
  -webkit-transition: width .5s;
  transition: width .5s;
}
/* line 754, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #lists .outer-pad,
#customerListApp .customerListView #search-wrapper .outer-pad {
  margin: 10px;
}
/* line 756, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #lists .outer-pad .outer-edge,
#customerListApp .customerListView #search-wrapper .outer-pad .outer-edge {
  border: 1px solid #abb2b3;
}
/* line 760, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #lists .outer-edge,
#customerListApp .customerListView #search-wrapper .outer-edge {
  background: #fff;
  overflow: hidden;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  -moz-border-radius: 3px;
}
/* line 770, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView #search-wrapper .outer-pad {
  margin-left: 0;
}
/* line 775, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView.search-open #lists,
#customerListApp .customerListView.search-open #search-wrapper {
  height: auto;
}
/* line 779, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView.search-open #lists {
  width: 66%;
}
/* line 782, ../scss/module/customerlists/views/_list.scss */
#customerListApp .customerListView.search-open #search-wrapper {
  width: 33%;
}
/* line 793, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .pad {
  padding: 0;
}
/* line 796, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .users-list-label {
  float: left;
}
/* line 799, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .users-list {
  float: left;
  list-style: none;
}
/* line 802, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .users-list .user {
  float: left;
}
/* line 804, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .users-list .user.current-user {
  border-right: 1px solid #d3d8d9;
  padding-right: 10px;
  margin-left: 0;
  margin-right: 8px;
}
/* line 810, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .users-list .user.current-user .pad .avatar {
  margin-top: 0;
}
/* line 812, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .users-list .user.current-user .pad .avatar .avatar-fallback {
  height: 50px;
  line-height: 50px;
  color: #fff;
  /*text-shadow:
          -1px -1px 0 #000,
          1px -1px 0 #000,
          -1px 1px 0 #000,
          1px 1px 0 #000;*/
}
/* line 825, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .users-list .user.editable {
  cursor: pointer;
}
/* line 828, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .users-list .user.add-user-permission {
  cursor: pointer;
}
/* line 831, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .users-list .user.add-user-permission .pad .avatar {
  height: 34px;
  width: 34px;
  background: #edf2f3;
  border: 1px solid #777e80;
}
/* line 836, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .users-list .user.add-user-permission .pad .avatar .avatar-fallback {
  display: inline-block;
  text-align: center;
  color: #373c3e;
}
/* line 840, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .users-list .user.add-user-permission .pad .avatar .avatar-fallback .icon-font {
  line-height: 33px;
}
/* line 847, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .users-list .user .pad {
  padding: 0 5px;
  overflow: hidden;
}
/* line 850, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .users-list .user .pad .left {
  float: left;
  width: auto;
}
/* line 854, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .users-list .user .pad .right {
  float: left;
  width: auto;
  padding-top: 9px;
}
/* line 859, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .users-list .user .pad .avatar {
  color: #fff;
  margin-top: 10px;
  overflow: hidden;
  position: relative;
  border-radius: 100px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  -o-border-radius: 100px;
}
/* line 868, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .users-list .user .pad .avatar img {
  z-index: 1;
  position: relative;
}
/* line 872, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .users-list .user .pad .avatar .avatar-fallback {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 34px;
  line-height: 34px;
  z-index: 0;
}
/* line 883, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .users-list .user .pad .name,
#customerListApp #lists .list-users-manager .users-list .user .pad .role {
  font-size: 16px;
  padding-left: 5px;
  line-height: 120%;
}
/* line 889, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .users-list .user .pad .name {
  margin-left: 2px;
}
/* line 892, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .users-list .user .pad .role {
  color: #777e80;
  white-space: nowrap;
}
/* line 896, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .users-list .user .pad .role ul li {
  margin-left: 0;
}
/* line 904, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .list-users-manager .sharing-wrapper {
  clear: both;
}
/* line 911, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .customer-list.permission-type-blanket .row.top-info-row, #customerListApp #lists .customer-list.permission-type-blanket .row.edit-info {
  display: none;
}
/* line 915, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .customer-list.permission-type-blanket .row .curated-info {
  max-width: 90%;
  font-size: 16px;
}
/* line 919, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .customer-list.permission-type-blanket .row .blanket-cta-buttons-wrap {
  width: 100%;
}
/* line 921, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .customer-list.permission-type-blanket .row .blanket-cta-buttons-wrap .duplicate-list {
  float: left;
}
/* line 924, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .customer-list.permission-type-blanket .row .blanket-cta-buttons-wrap .add-to-cart {
  float: right;
}
/* line 931, ../scss/module/customerlists/views/_list.scss */
#customerListApp #lists .customer-list.permission-type-blanket .product-list .list-item.helper-item {
  display: none;
}

/* line 943, ../scss/module/customerlists/views/_list.scss */
.blackstone-customerlists-app .import-isbns .import-method-drawer input {
  max-width: 100%;
}

/* line 2, ../scss/module/_organizations.scss */
.blackstone-organizations-customer-account .organization_switcher {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #777e80;
}
/* line 6, ../scss/module/_organizations.scss */
.blackstone-organizations-customer-account .organization_switcher label {
  width: 100%;
}
/* line 9, ../scss/module/_organizations.scss */
.blackstone-organizations-customer-account .organization_switcher .switcher-label {
  display: block;
}
/* line 12, ../scss/module/_organizations.scss */
.blackstone-organizations-customer-account .organization_switcher select {
  margin-top: 3px;
  width: 50%;
  float: left;
}
/* line 19, ../scss/module/_organizations.scss */
.blackstone-organizations-customer-account .box-organization table {
  font-size: 16px;
  line-height: 120%;
  margin-bottom: 40px;
}
/* line 23, ../scss/module/_organizations.scss */
.blackstone-organizations-customer-account .box-organization table th {
  font-size: 16px;
  line-height: 120%;
  background: #777e80;
  color: #fff;
  text-transform: none;
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 31, ../scss/module/_organizations.scss */
.blackstone-organizations-customer-account .box-organization table td {
  font-size: 16px;
  line-height: 120%;
}
/* line 35, ../scss/module/_organizations.scss */
.blackstone-organizations-customer-account .box-organization table td.label {
  vertical-align: top;
  padding: 5px 5px 0 0;
}

/* line 43, ../scss/module/_organizations.scss */
.ajax_organization_switcher {
  max-width: 325px;
}
/* line 45, ../scss/module/_organizations.scss */
.ajax_organization_switcher .switcher-label {
  font-size: 24px;
  margin-bottom: 20px;
  display: block;
}
/* line 50, ../scss/module/_organizations.scss */
.ajax_organization_switcher select {
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 0;
}
/* line 55, ../scss/module/_organizations.scss */
.ajax_organization_switcher button {
  margin-top: 15px;
}

/* line 10, ../scss/module/_solesource.scss */
.image-container .overlay-holder.sole-source,
.img-wrap .overlay-holder.sole-source,
.thumb .overlay-holder.sole-source,
#instant-search-results-container .result-thumbnail .overlay-holder.sole-source {
  bottom: auto;
  top: 0;
  left: 0;
  right: auto;
  height: 100%;
  z-index: 0;
}
/* line 17, ../scss/module/_solesource.scss */
.image-container .overlay-holder.sole-source .overlay-inner,
.img-wrap .overlay-holder.sole-source .overlay-inner,
.thumb .overlay-holder.sole-source .overlay-inner,
#instant-search-results-container .result-thumbnail .overlay-holder.sole-source .overlay-inner {
  float: left;
  width: 100%;
  opacity: 1;
}

/* line 29, ../scss/module/_solesource.scss */
.carousel-cell .overlay-holder.sole-source .overlay-inner .sole-source-badge {
  left: -27%;
  top: 15%;
}

/* line 43, ../scss/module/_solesource.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result-content .result-thumbnail .overlay-holder.sole-source {
  height: 100%;
}
/* line 45, ../scss/module/_solesource.scss */
#algolia_instant_selector #instant-search-results-container .result-wrapper .result-content .result-thumbnail .overlay-holder.sole-source .overlay-inner {
  opacity: 1;
}

/* line 58, ../scss/module/_solesource.scss */
#algolia-autocomplete-container .thumb .overlay-holder.sole-source {
  font-size: 2px;
}

/* line 64, ../scss/module/_solesource.scss */
.sole-source-badge {
  display: block;
  width: 100%;
  min-height: 1.5em;
  background: #e74c3c;
  position: absolute;
  z-index: 10;
  top: 12%;
  left: -33%;
  text-align: center;
  color: white;
  font-family: Impact;
  line-height: 1.5em;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-box-shadow: #777 0 0 1px;
  -moz-box-shadow: #777 0 0 1px;
  -ms-box-shadow: #777 0 0 1px;
  -o-box-shadow: #777 0 0 1px;
  box-shadow: #777 0 0 1px;
  letter-spacing: 1px;
}

/* ============================================ *
 * Pager Overrides
 * ============================================ */
/* line 5, ../scss/module/_blackstone-pager.scss */
.bsa-pager {
  float: none;
  text-align: center;
}
/* line 9, ../scss/module/_blackstone-pager.scss */
.bsa-pager .cat-pages {
  display: inline-block;
  margin-top: 30px;
}
/* line 13, ../scss/module/_blackstone-pager.scss */
.bsa-pager .cat-pages .li-icon-prev {
  float: left;
  margin-top: 0;
  margin-right: 26px;
  top: 18px;
  position: relative;
}
/* line 20, ../scss/module/_blackstone-pager.scss */
.bsa-pager .cat-pages .li-icon-prev .prev-icon-cursor {
  cursor: default;
}
/* line 23, ../scss/module/_blackstone-pager.scss */
.bsa-pager .cat-pages .li-icon-prev .instant-search-prev-icon {
  border-radius: 50%;
  border: 1px solid #abb2b3;
  font-size: 18px;
  padding: 10px 10px 10px 11px;
  color: #666666;
}
/* line 29, ../scss/module/_blackstone-pager.scss */
.bsa-pager .cat-pages .li-icon-prev .instant-search-prev-icon:before {
  position: relative;
  left: 1px;
}
/* line 33, ../scss/module/_blackstone-pager.scss */
.bsa-pager .cat-pages .li-icon-prev .instant-search-prev-icon:hover {
  background-color: #fff;
}
/* line 36, ../scss/module/_blackstone-pager.scss */
.bsa-pager .cat-pages .li-icon-prev .instant-search-prev-icon:active {
  background-color: #d3d8d9;
}
/* line 39, ../scss/module/_blackstone-pager.scss */
.bsa-pager .cat-pages .li-icon-prev .instant-search-prev-icon.inactive {
  color: #919799;
  border: 1px solid #abb2b3;
  background-color: transparent;
  outline: none;
}
/* line 48, ../scss/module/_blackstone-pager.scss */
.bsa-pager .cat-pages .li-page-select {
  float: left;
  max-width: 150px;
  top: -3px;
  position: relative;
}
/* line 53, ../scss/module/_blackstone-pager.scss */
.bsa-pager .cat-pages .li-page-select .custom-pagination-select {
  margin: 12px 0;
  padding-left: 12px;
}
/* line 59, ../scss/module/_blackstone-pager.scss */
.bsa-pager .cat-pages .li-icon-next {
  float: left;
  margin-top: 0;
  margin-left: 26px;
  top: 18px;
  position: relative;
}
/* line 66, ../scss/module/_blackstone-pager.scss */
.bsa-pager .cat-pages .li-icon-next .next-icon-cursor {
  cursor: default;
}
/* line 70, ../scss/module/_blackstone-pager.scss */
.bsa-pager .cat-pages .li-icon-next .instant-search-next-icon {
  border-radius: 50%;
  border: 1px solid #abb2b3;
  font-size: 18px;
  padding: 10px;
  color: #666666;
}
/* line 76, ../scss/module/_blackstone-pager.scss */
.bsa-pager .cat-pages .li-icon-next .instant-search-next-icon:before {
  position: relative;
  right: 2px;
}
/* line 80, ../scss/module/_blackstone-pager.scss */
.bsa-pager .cat-pages .li-icon-next .instant-search-next-icon:hover {
  background-color: #fff;
}
/* line 83, ../scss/module/_blackstone-pager.scss */
.bsa-pager .cat-pages .li-icon-next .instant-search-next-icon:active {
  background-color: #d3d8d9;
}
/* line 86, ../scss/module/_blackstone-pager.scss */
.bsa-pager .cat-pages .li-icon-next .instant-search-next-icon.inactive {
  color: #919799;
  border: 1px solid #abb2b3;
  background-color: transparent;
  outline: none;
}

/* line 100, ../scss/module/_blackstone-pager.scss */
body.catalog-category-view .bsa-pager .li-icon-next, body.kbase-article-search .bsa-pager .li-icon-next {
  /*  margin-top: 5px; */
}
/* line 103, ../scss/module/_blackstone-pager.scss */
body.catalog-category-view .bsa-pager .li-icon-prev, body.kbase-article-search .bsa-pager .li-icon-prev {
  /*  margin-top: 5px; */
}
/* line 108, ../scss/module/_blackstone-pager.scss */
body.catalog-category-view .toolbar-bottom .toolbar, body.kbase-article-search .toolbar-bottom .toolbar {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
/* line 111, ../scss/module/_blackstone-pager.scss */
body.catalog-category-view .toolbar-bottom .toolbar .pager, body.kbase-article-search .toolbar-bottom .toolbar .pager {
  line-height: 64px;
  margin: 0 auto;
}
/* line 114, ../scss/module/_blackstone-pager.scss */
body.catalog-category-view .toolbar-bottom .toolbar .pager ol, body.kbase-article-search .toolbar-bottom .toolbar .pager ol {
  text-align: center;
}
/* line 116, ../scss/module/_blackstone-pager.scss */
body.catalog-category-view .toolbar-bottom .toolbar .pager ol li, body.kbase-article-search .toolbar-bottom .toolbar .pager ol li {
  display: inline-block;
}

/* line 127, ../scss/module/_blackstone-pager.scss */
body.sales-order-history.isFirefox .li-page-select, body.catalog-category-view.isFirefox .li-page-select, body.kbase-article-search.isFirefox .li-page-select {
  top: -2px;
}
/* line 132, ../scss/module/_blackstone-pager.scss */
body.sales-order-history.isIE .li-page-select, body.catalog-category-view.isIE .li-page-select, body.kbase-article-search.isIE .li-page-select {
  top: -2px;
}

@media screen and (max-width: 340px) {
  /* line 141, ../scss/module/_blackstone-pager.scss */
  .bsa-pager .cat-pages .li-icon-next {
    margin-left: 20px;
  }
  /* line 144, ../scss/module/_blackstone-pager.scss */
  .bsa-pager .cat-pages .li-icon-prev {
    margin-right: 20px;
  }
}

/*
.kbase-search {
  .pager {
    .pages {
      img {
        display: none;
      }
    }
  }
}
*/
/* ============================================ *
 * Header Simple
 * ============================================ */
/* line 29, ../scss/layout/_header-simple.scss */
#bsaheader-simple {
  background: #2c3033;
  border-bottom: 1px solid #e0e4e5;
}
/* line 32, ../scss/layout/_header-simple.scss */
#bsaheader-simple .logo-wrap {
  padding: 12px 0;
}
/* line 35, ../scss/layout/_header-simple.scss */
#bsaheader-simple .logo {
  margin: 0 auto;
  float: none;
  clear: both;
}
/* line 39, ../scss/layout/_header-simple.scss */
#bsaheader-simple .logo img {
  margin: 0 auto !important;
  max-width: 197px;
}

@media only screen and (max-width: 768px) {
  /* line 46, ../scss/layout/_header-simple.scss */
  body {
    margin-top: 0;
  }
}
/* ============================================ *
 * Footer Simple
 * ============================================ */
/* line 31, ../scss/layout/_footer-simple.scss */
#bsa-footer-simple .end-footer-line a {
  border-left: 1px solid #919799;
}
/* line 33, ../scss/layout/_footer-simple.scss */
#bsa-footer-simple .end-footer-line a.first {
  border-left-width: 0;
}

/* line 41, ../scss/layout/_footer-simple.scss */
#bsa-footer-simple {
  background: #edf2f3;
  color: #373c3e;
  border-top: 1px solid #d3d8d9;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
/* line 50, ../scss/layout/_footer-simple.scss */
#bsa-footer-simple ul {
  margin: 0 auto;
  text-align: center;
}
/* line 53, ../scss/layout/_footer-simple.scss */
#bsa-footer-simple ul li {
  display: inline-block;
}
/* line 55, ../scss/layout/_footer-simple.scss */
#bsa-footer-simple ul li a {
  padding: 15px;
}
/* line 60, ../scss/layout/_footer-simple.scss */
#bsa-footer-simple address {
  color: #919799;
  text-align: center;
  padding: 12px 0;
  margin: 0 auto;
  max-width: 505px;
  font-size: 14px;
}
/* line 67, ../scss/layout/_footer-simple.scss */
#bsa-footer-simple address .copy-links {
  float: right;
}
/* line 70, ../scss/layout/_footer-simple.scss */
#bsa-footer-simple address .copy-links a {
  font-size: 14px;
  color: #919799;
}
/* line 73, ../scss/layout/_footer-simple.scss */
#bsa-footer-simple address .copy-links a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 609px) {
  /* line 84, ../scss/layout/_footer-simple.scss */
  #bsa-footer-simple address {
    padding: 14px 0;
  }
  /* line 87, ../scss/layout/_footer-simple.scss */
  #bsa-footer-simple address .copy-links,
  #bsa-footer-simple address .copy-text {
    width: 100%;
  }
  /* line 92, ../scss/layout/_footer-simple.scss */
  #bsa-footer-simple address .copy-spacer {
    display: none;
  }
}

/* ============================================ *
 * Kievit Font
 * ============================================ */
/* Kievit Regular */
@font-face {
  font-family: 'Kievit-Regular';
  src: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/KievitWeb.eot");
  src: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/KievitWeb.eot?#iefix") format("embedded-opentype"), url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/KievitWeb.woff") format("woff"), url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/KievitWeb.ttf") format("truetype");
}
/* Kievit Italic */
@font-face {
  font-family: 'Kievit-RegularItalic';
  src: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/KievitWeb-Ita.eot");
  src: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/KievitWeb-Ita.eot?#iefix") format("embedded-opentype"), url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/KievitWeb-Ita.woff") format("woff"), url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/KievitWeb-Ita.ttf") format("truetype");
}
/* Kievit Bold */
@font-face {
  font-family: 'Kievit-Bold';
  src: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/KievitWeb-Bold.eot");
  src: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/KievitWeb-Bold.eot?#iefix") format("embedded-opentype"), url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/KievitWeb-Bold.woff") format("woff"), url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/KievitWeb-Bold.ttf") format("truetype");
}
/* Kievit BoldItalic */
@font-face {
  font-family: 'Kievit-BoldItalic';
  src: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/KievitWeb-BoldIta.eot");
  src: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/KievitWeb-BoldIta.eot?#iefix") format("embedded-opentype"), url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/KievitWeb-BoldIta.woff") format("woff"), url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/KievitWeb-BoldIta.ttf") format("truetype");
}
/* ============================================ *
 * PressStart2P Font
 * ============================================ */
/* PressStart2P Regular */
@font-face {
  font-family: 'PressStart2P-Regular';
  src: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/PressStart2P-Regular.ttf") format("truetype");
}
/* ============================================ *
 * Baloo Bhai Font
 * ============================================ */
/* line 7, ../scss/fonts/_baloo-bhai.scss */
.category_icon_default {
  font-family: 'Baloo Bhai', cursive;
}

/*------------------------ Do Not Update Except Version Number ------------------*/
@font-face {
  font-family: 'icomoon';
  font-weight: normal;
  font-style: normal;
  src: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/icomoon.eot?v=20");
  src: url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/icomoon.eot?v=20#iefix") format("embedded-opentype"), url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/icomoon.ttf?v=20") format("truetype"), url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/icomoon.woff?v=20") format("woff"), url("https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/fonts/icomoon.svg?v=20#icomoon") format("svg");
}
/*------------------------ Do Not Update ----------------------------------------*/
/* line 13, ../scss/fonts/_icomoon.scss */
.icon-font {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*--------------------------------------------------------------------------------*/
/* line 39, ../scss/fonts/_icomoon.scss */
.icon-Galley:before {
  content: "\e94e";
}

/* line 42, ../scss/fonts/_icomoon.scss */
.icon-Author:before {
  content: "\e94c";
}

/* line 45, ../scss/fonts/_icomoon.scss */
.icon-Move:before {
  content: "\e94b";
}

/* line 48, ../scss/fonts/_icomoon.scss */
.icon-overflow_alt:before {
  content: "\e949";
}

/* line 51, ../scss/fonts/_icomoon.scss */
.icon-Edit_alt:before {
  content: "\e94a";
}

/* line 54, ../scss/fonts/_icomoon.scss */
.icon-Self-Help:before {
  content: "\e947";
}

/* line 57, ../scss/fonts/_icomoon.scss */
.icon-Sports:before {
  content: "\e948";
}

/* line 60, ../scss/fonts/_icomoon.scss */
.icon-up:before {
  content: "\e94d";
}

/* line 63, ../scss/fonts/_icomoon.scss */
.icon-CD_Repack1:before {
  content: "\e93f";
}

/* line 66, ../scss/fonts/_icomoon.scss */
.icon-CD_Repack2:before {
  content: "\e940";
}

/* line 69, ../scss/fonts/_icomoon.scss */
.icon-Export_List:before {
  content: "\e941";
}

/* line 72, ../scss/fonts/_icomoon.scss */
.icon-Import_List:before {
  content: "\e942";
}

/* line 75, ../scss/fonts/_icomoon.scss */
.icon-Marc_full_alt:before {
  content: "\e943";
}

/* line 78, ../scss/fonts/_icomoon.scss */
.icon-Marc_brief_alt:before {
  content: "\e944";
}

/* line 81, ../scss/fonts/_icomoon.scss */
.icon-In-list:before {
  content: "\e945";
}

/* line 84, ../scss/fonts/_icomoon.scss */
.icon-Purchase:before {
  content: "\e946";
}

/* line 87, ../scss/fonts/_icomoon.scss */
.icon-Daisy:before {
  content: "\e93d";
}

/* line 90, ../scss/fonts/_icomoon.scss */
.icon-less_alt:before {
  content: "\e93e";
}

/* line 93, ../scss/fonts/_icomoon.scss */
.icon-Drag:before {
  content: "\e93c";
}

/* line 96, ../scss/fonts/_icomoon.scss */
.icon-Organization:before {
  content: "\e93a";
}

/* line 99, ../scss/fonts/_icomoon.scss */
.icon-Books:before {
  content: "\e93b";
}

/* line 102, ../scss/fonts/_icomoon.scss */
.icon-folder:before {
  content: "\e939";
}

/* line 105, ../scss/fonts/_icomoon.scss */
.icon-Compare_List:before {
  content: "\e936";
}

/* line 108, ../scss/fonts/_icomoon.scss */
.icon-List:before {
  content: "\e937";
}

/* line 111, ../scss/fonts/_icomoon.scss */
.icon-Edit:before {
  content: "\e938";
}

/* line 114, ../scss/fonts/_icomoon.scss */
.icon-bookmark:before {
  content: "\e935";
}

/* line 117, ../scss/fonts/_icomoon.scss */
.icon-Overlfow:before {
  content: "\e933";
}

/* line 120, ../scss/fonts/_icomoon.scss */
.icon-Tracklist:before {
  content: "\e934";
}

/* line 123, ../scss/fonts/_icomoon.scss */
.icon-Pause_title:before {
  content: "\e931";
}

/* line 126, ../scss/fonts/_icomoon.scss */
.icon-Play_title:before {
  content: "\e932";
}

/* line 129, ../scss/fonts/_icomoon.scss */
.icon-two:before {
  content: "\e928";
}

/* line 132, ../scss/fonts/_icomoon.scss */
.icon-one-point-seven-five:before {
  content: "\e929";
}

/* line 135, ../scss/fonts/_icomoon.scss */
.icon-one-point-five:before {
  content: "\e92a";
}

/* line 138, ../scss/fonts/_icomoon.scss */
.icon-one-point-two-five:before {
  content: "\e92b";
}

/* line 141, ../scss/fonts/_icomoon.scss */
.icon-one:before {
  content: "\e92c";
}

/* line 144, ../scss/fonts/_icomoon.scss */
.icon-half:before {
  content: "\e92d";
}

/* line 147, ../scss/fonts/_icomoon.scss */
.icon-business:before {
  content: "\e92e";
}

/* line 150, ../scss/fonts/_icomoon.scss */
.icon-YA:before {
  content: "\e927";
}

/* line 153, ../scss/fonts/_icomoon.scss */
.icon-History:before {
  content: "\e918";
}

/* line 156, ../scss/fonts/_icomoon.scss */
.icon-Mystery:before {
  content: "\e919";
}

/* line 159, ../scss/fonts/_icomoon.scss */
.icon-Science:before {
  content: "\e91a";
}

/* line 162, ../scss/fonts/_icomoon.scss */
.icon-Biography:before {
  content: "\e91b";
}

/* line 165, ../scss/fonts/_icomoon.scss */
.icon-Childrens:before {
  content: "\e91c";
}

/* line 168, ../scss/fonts/_icomoon.scss */
.icon-Horror:before {
  content: "\e91d";
}

/* line 171, ../scss/fonts/_icomoon.scss */
.icon-Thriller:before {
  content: "\e91e";
}

/* line 174, ../scss/fonts/_icomoon.scss */
.icon-Fantasy:before {
  content: "\e91f";
}

/* line 177, ../scss/fonts/_icomoon.scss */
.icon-Romance:before {
  content: "\e920";
}

/* line 180, ../scss/fonts/_icomoon.scss */
.icon-Western:before {
  content: "\e921";
}

/* line 183, ../scss/fonts/_icomoon.scss */
.icon-Classics:before {
  content: "\e922";
}

/* line 186, ../scss/fonts/_icomoon.scss */
.icon-Fiction:before {
  content: "\e923";
}

/* line 189, ../scss/fonts/_icomoon.scss */
.icon-Nonfiction:before {
  content: "\e924";
}

/* line 192, ../scss/fonts/_icomoon.scss */
.icon-Scifi:before {
  content: "\e925";
}

/* line 195, ../scss/fonts/_icomoon.scss */
.icon-deals:before {
  content: "\e926";
}

/* line 198, ../scss/fonts/_icomoon.scss */
.icon-Previous:before {
  content: "\e916";
}

/* line 201, ../scss/fonts/_icomoon.scss */
.icon-Next:before {
  content: "\e917";
}

/* line 204, ../scss/fonts/_icomoon.scss */
.icon-Business:before {
  content: "\e915";
}

/* line 207, ../scss/fonts/_icomoon.scss */
.icon-Zip:before {
  content: "\e90f";
}

/* line 210, ../scss/fonts/_icomoon.scss */
.icon-City:before {
  content: "\e910";
}

/* line 213, ../scss/fonts/_icomoon.scss */
.icon-Credit-Card:before {
  content: "\e911";
}

/* line 216, ../scss/fonts/_icomoon.scss */
.icon-address:before {
  content: "\e912";
}

/* line 219, ../scss/fonts/_icomoon.scss */
.icon-telephone:before {
  content: "\e913";
}

/* line 222, ../scss/fonts/_icomoon.scss */
.icon-Date:before {
  content: "\e914";
}

/* line 225, ../scss/fonts/_icomoon.scss */
.icon-Playaway-format:before {
  content: "\e90c";
}

/* line 228, ../scss/fonts/_icomoon.scss */
.icon-libraryCD-format:before {
  content: "\e90e";
}

/* line 231, ../scss/fonts/_icomoon.scss */
.icon-mass-market-format:before {
  content: "\e906";
}

/* line 234, ../scss/fonts/_icomoon.scss */
.icon-paperback-format:before {
  content: "\e907";
}

/* line 237, ../scss/fonts/_icomoon.scss */
.icon-premium-mass-market-format:before {
  content: "\e908";
}

/* line 240, ../scss/fonts/_icomoon.scss */
.icon-hardcover-format:before {
  content: "\e909";
}

/* line 243, ../scss/fonts/_icomoon.scss */
.icon-enlarge:before {
  content: "\e92f";
}

/* line 246, ../scss/fonts/_icomoon.scss */
.icon-minus:before {
  content: "\e930";
}

/* line 249, ../scss/fonts/_icomoon.scss */
.icon-mp3cd-format:before {
  content: "\e905";
}

/* line 252, ../scss/fonts/_icomoon.scss */
.icon-cd-format:before {
  content: "\e90a";
}

/* line 255, ../scss/fonts/_icomoon.scss */
.icon-epub-format:before {
  content: "\e90b";
}

/* line 258, ../scss/fonts/_icomoon.scss */
.icon-rental-format:before {
  content: "\e90d";
}

/* line 261, ../scss/fonts/_icomoon.scss */
.icon-processing:before {
  content: "\e904";
}

/* line 264, ../scss/fonts/_icomoon.scss */
.icon-ez:before {
  content: "\e903";
}

/* line 267, ../scss/fonts/_icomoon.scss */
.icon-Credit:before {
  content: "\e900";
}

/* line 270, ../scss/fonts/_icomoon.scss */
.icon-account2:before {
  content: "\e901";
}

/* line 273, ../scss/fonts/_icomoon.scss */
.icon-Search:before {
  content: "\e902";
}

/* line 276, ../scss/fonts/_icomoon.scss */
.icon-checkmark:before {
  content: "\e614";
}

/* line 279, ../scss/fonts/_icomoon.scss */
.icon-email:before {
  content: "\e615";
}

/* line 282, ../scss/fonts/_icomoon.scss */
.icon-Menu_close:before {
  content: "\e612";
}

/* line 285, ../scss/fonts/_icomoon.scss */
.icon-Menu:before {
  content: "\e613";
}

/* line 288, ../scss/fonts/_icomoon.scss */
.icon-UrbanAudio:before {
  content: "\e611";
}

/* line 291, ../scss/fonts/_icomoon.scss */
.icon-LibraryCD_alt:before {
  content: "\e60f";
}

/* line 294, ../scss/fonts/_icomoon.scss */
.icon-LibraryCD:before {
  content: "\e610";
}

/* line 297, ../scss/fonts/_icomoon.scss */
.icon-pause-alt:before {
  content: "\e60b";
}

/* line 300, ../scss/fonts/_icomoon.scss */
.icon-play-alt:before {
  content: "\e60c";
}

/* line 303, ../scss/fonts/_icomoon.scss */
.icon-grid_view:before {
  content: "\e60d";
}

/* line 306, ../scss/fonts/_icomoon.scss */
.icon-Expanded_grid:before {
  content: "\e60e";
}

/* line 309, ../scss/fonts/_icomoon.scss */
.icon-rental_alt:before {
  content: "\e60a";
}

/* line 312, ../scss/fonts/_icomoon.scss */
.icon-more_alt:before {
  content: "\e604";
}

/* line 315, ../scss/fonts/_icomoon.scss */
.icon-down_triangle:before {
  content: "\e605";
}

/* line 318, ../scss/fonts/_icomoon.scss */
.icon-listen:before {
  content: "\e606";
}

/* line 321, ../scss/fonts/_icomoon.scss */
.icon-marc_total:before {
  content: "\e607";
}

/* line 324, ../scss/fonts/_icomoon.scss */
.icon-marc_full:before {
  content: "\e608";
}

/* line 327, ../scss/fonts/_icomoon.scss */
.icon-marc_brief:before {
  content: "\e609";
}

/* line 330, ../scss/fonts/_icomoon.scss */
.icon-question:before {
  content: "\e601";
}

/* line 333, ../scss/fonts/_icomoon.scss */
.icon-rental_arrow:before {
  content: "\e602";
}

/* line 336, ../scss/fonts/_icomoon.scss */
.icon-reviews:before {
  content: "\e603";
}

/* line 339, ../scss/fonts/_icomoon.scss */
.icon-replacement-CD:before {
  content: "\e600";
}

/* line 342, ../scss/fonts/_icomoon.scss */
.icon-account:before {
  content: "\22";
}

/* line 345, ../scss/fonts/_icomoon.scss */
.icon-membership:before {
  content: "\23";
}

/* line 348, ../scss/fonts/_icomoon.scss */
.icon-shopping2:before {
  content: "\24";
}

/* line 351, ../scss/fonts/_icomoon.scss */
.icon-shopping:before {
  content: "\25";
}

/* line 354, ../scss/fonts/_icomoon.scss */
.icon-settings:before {
  content: "\26";
}

/* line 357, ../scss/fonts/_icomoon.scss */
.icon-signout:before {
  content: "\28";
}

/* line 360, ../scss/fonts/_icomoon.scss */
.icon-library:before {
  content: "\29";
}

/* line 363, ../scss/fonts/_icomoon.scss */
.icon-orders:before {
  content: "\2a";
}

/* line 366, ../scss/fonts/_icomoon.scss */
.icon-lock:before {
  content: "\2b";
}

/* line 369, ../scss/fonts/_icomoon.scss */
.icon-left:before {
  content: "\2c";
}

/* line 372, ../scss/fonts/_icomoon.scss */
.icon-right:before {
  content: "\2d";
}

/* line 375, ../scss/fonts/_icomoon.scss */
.icon-down:before {
  content: "\2e";
}

/* line 378, ../scss/fonts/_icomoon.scss */
.icon-more:before {
  content: "\2f";
}

/* line 381, ../scss/fonts/_icomoon.scss */
.icon-remove:before {
  content: "\31";
}

/* line 384, ../scss/fonts/_icomoon.scss */
.icon-close:before {
  content: "\32";
}

/* line 387, ../scss/fonts/_icomoon.scss */
.icon-pause:before {
  content: "\33";
}

/* line 390, ../scss/fonts/_icomoon.scss */
.icon-play:before {
  content: "\34";
}

/* line 393, ../scss/fonts/_icomoon.scss */
.icon-uni37:before {
  content: "\37";
}

/* line 396, ../scss/fonts/_icomoon.scss */
.icon-cd:before {
  content: "\38";
}

/* line 399, ../scss/fonts/_icomoon.scss */
.icon-mp3_alt:before {
  content: "\39";
}

/* line 402, ../scss/fonts/_icomoon.scss */
.icon-download:before {
  content: "\3a";
}

/* line 405, ../scss/fonts/_icomoon.scss */
.icon-phone:before {
  content: "\3c";
}

/* line 408, ../scss/fonts/_icomoon.scss */
.icon-question2:before {
  content: "\3d";
}

/* line 411, ../scss/fonts/_icomoon.scss */
.icon-faq:before {
  content: "\3e";
}

/* line 414, ../scss/fonts/_icomoon.scss */
.icon-info:before {
  content: "\3f";
}

/* line 417, ../scss/fonts/_icomoon.scss */
.icon-thumbsup:before {
  content: "\40";
}

/* line 420, ../scss/fonts/_icomoon.scss */
.icon-thumbsdown:before {
  content: "\41";
}

/* line 423, ../scss/fonts/_icomoon.scss */
.icon-descending:before {
  content: "\42";
}

/* line 426, ../scss/fonts/_icomoon.scss */
.icon-ascending:before {
  content: "\43";
}

/* line 429, ../scss/fonts/_icomoon.scss */
.icon-less:before {
  content: "\30";
}

/* line 432, ../scss/fonts/_icomoon.scss */
.icon-pinterest:before {
  content: "\44";
}

/* line 435, ../scss/fonts/_icomoon.scss */
.icon-twitter:before {
  content: "\45";
}

/* line 438, ../scss/fonts/_icomoon.scss */
.icon-facebook:before {
  content: "\46";
}

/* line 441, ../scss/fonts/_icomoon.scss */
.icon-google-plus:before {
  content: "\47";
}

/* line 444, ../scss/fonts/_icomoon.scss */
.icon-soundcloud:before {
  content: "\48";
}

/* line 447, ../scss/fonts/_icomoon.scss */
.icon-wish:before {
  content: "\27";
}

/* line 450, ../scss/fonts/_icomoon.scss */
.icon-movie:before {
  content: "\3b";
}

/* line 453, ../scss/fonts/_icomoon.scss */
.icon-mic2:before {
  content: "\35";
}

/* line 456, ../scss/fonts/_icomoon.scss */
.icon-letter:before {
  content: "\36";
}

/* line 459, ../scss/fonts/_icomoon.scss */
.icon-downpour:before {
  content: "\49";
}

/* line 462, ../scss/fonts/_icomoon.scss */
.icon-catalog3:before {
  content: "\4b";
}

/* line 465, ../scss/fonts/_icomoon.scss */
.icon-mp3_alter:before {
  content: "\4c";
}

/* line 468, ../scss/fonts/_icomoon.scss */
.icon-cd_alt:before {
  content: "\4d";
}

/* line 471, ../scss/fonts/_icomoon.scss */
.icon-playaway:before {
  content: "\4e";
}

/* line 474, ../scss/fonts/_icomoon.scss */
.icon-mp3:before {
  content: "\4a";
}

/* line 477, ../scss/fonts/_icomoon.scss */
.icon-SOP:before {
  content: "\4f";
}

/* line 480, ../scss/fonts/_icomoon.scss */
.icon-MARC_alt:before {
  content: "\50";
}

/* line 483, ../scss/fonts/_icomoon.scss */
.icon-worldcat:before {
  content: "\e616";
}

/* line 486, ../scss/fonts/_icomoon.scss */
.icon-google-plus2:before {
  content: "\ea88";
}

/* line 489, ../scss/fonts/_icomoon.scss */
.icon-facebook2:before {
  content: "\ea8c";
}

/* line 492, ../scss/fonts/_icomoon.scss */
.icon-twitter2:before {
  content: "\ea91";
}

/* line 495, ../scss/fonts/_icomoon.scss */
.icon-paypal:before {
  content: "\ead6";
}

/* line 16, ../scss/fonts/_transformicons.scss */
body .wrapper .tcon {
  appearance: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  transition: 0.3s;
  user-select: none;
  width: 40px;
  background: transparent;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
}
/* line 32, ../scss/fonts/_transformicons.scss */
body .wrapper .tcon > * {
  display: block;
}
/* line 36, ../scss/fonts/_transformicons.scss */
body .wrapper .tcon:hover, body .wrapper .tcon:focus {
  outline: none;
}
/* line 40, ../scss/fonts/_transformicons.scss */
body .wrapper .tcon::-moz-focus-inner {
  border: 0;
}
/* line 54, ../scss/fonts/_transformicons.scss */
body .wrapper .tcon-menu__lines {
  display: inline-block;
  height: 5.71429px;
  width: 40px;
  border-radius: 1px;
  transition: 0.3s;
  background: black;
  position: relative;
}
/* line 58, ../scss/fonts/_transformicons.scss */
body .wrapper .tcon-menu__lines::before, body .wrapper .tcon-menu__lines::after {
  display: inline-block;
  height: 5.71429px;
  width: 40px;
  border-radius: 1px;
  transition: 0.3s;
  background: black;
  content: '';
  position: absolute;
  left: 0;
  transform-origin: 2.85714px center;
  width: 100%;
}
/* line 68, ../scss/fonts/_transformicons.scss */
body .wrapper .tcon-menu__lines::before {
  top: 10px;
}
/* line 72, ../scss/fonts/_transformicons.scss */
body .wrapper .tcon-menu__lines::after {
  top: -10px;
}
/* line 76, ../scss/fonts/_transformicons.scss */
.tcon-transform body .wrapper .tcon-menu__lines {
  transform: scale3d(0.8, 0.8, 0.8);
}
/* line 80, ../scss/fonts/_transformicons.scss */
body .wrapper .tcon-menu--xcross {
  width: auto;
}
/* line 84, ../scss/fonts/_transformicons.scss */
body .wrapper .tcon-menu--xcross.tcon-transform .tcon-menu__lines {
  background: transparent;
}
/* line 87, ../scss/fonts/_transformicons.scss */
body .wrapper .tcon-menu--xcross.tcon-transform .tcon-menu__lines::before, body .wrapper .tcon-menu--xcross.tcon-transform .tcon-menu__lines::after {
  transform-origin: 50% 50%;
  top: 0;
  width: 40px;
}
/* line 94, ../scss/fonts/_transformicons.scss */
body .wrapper .tcon-menu--xcross.tcon-transform .tcon-menu__lines::before {
  transform: rotate3d(0, 0, 1, 45deg);
}
/* line 98, ../scss/fonts/_transformicons.scss */
body .wrapper .tcon-menu--xcross.tcon-transform .tcon-menu__lines::after {
  transform: rotate3d(0, 0, 1, -45deg);
}
/* line 105, ../scss/fonts/_transformicons.scss */
body .wrapper .tcon-visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* line 115, ../scss/fonts/_transformicons.scss */
body .wrapper .tcon-visuallyhidden:active, body .wrapper .tcon-visuallyhidden:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
/* line 127, ../scss/fonts/_transformicons.scss */
body .wrapper .mobile-menu-hotdog:hover .tcon-menu__lines {
  background: #fff;
}
/* line 130, ../scss/fonts/_transformicons.scss */
body .wrapper .mobile-menu-hotdog:hover .tcon-menu__lines::before, body .wrapper .mobile-menu-hotdog:hover .tcon-menu__lines::after {
  background: #fff;
}
/* line 137, ../scss/fonts/_transformicons.scss */
body .wrapper .mobile-menu-hotdog:hover.tcon-menu--xcross.tcon-transform .tcon-menu__lines {
  background: transparent;
}
@media only screen and (max-width: 768px) {
  /* line 144, ../scss/fonts/_transformicons.scss */
  body .wrapper .tcon {
    height: 36px;
    width: 36px;
  }
  /* line 149, ../scss/fonts/_transformicons.scss */
  body .wrapper .tcon-menu__lines {
    display: inline-block;
    height: 5.14286px;
    width: 36px;
  }
  /* line 154, ../scss/fonts/_transformicons.scss */
  body .wrapper .tcon-menu__lines::before, body .wrapper .tcon-menu__lines::after {
    display: inline-block;
    height: 5.14286px;
    transform-origin: 2.57143px center;
  }
  /* line 161, ../scss/fonts/_transformicons.scss */
  body .wrapper .tcon-menu__lines::before {
    top: 9px;
  }
  /* line 165, ../scss/fonts/_transformicons.scss */
  body .wrapper .tcon-menu__lines::after {
    top: -9px;
  }
  /* line 172, ../scss/fonts/_transformicons.scss */
  body .wrapper .tcon-menu--xcross.tcon-transform .tcon-menu__lines::before, body .wrapper .tcon-menu--xcross.tcon-transform .tcon-menu__lines::after {
    width: 36px;
  }
}
@media only screen and (max-width: 480px) {
  /* line 182, ../scss/fonts/_transformicons.scss */
  body .wrapper .tcon-menu__lines {
    display: inline-block;
    height: 3px;
    width: 27px;
  }
  /* line 187, ../scss/fonts/_transformicons.scss */
  body .wrapper .tcon-menu__lines::before, body .wrapper .tcon-menu__lines::after {
    height: 3px;
  }
  /* line 192, ../scss/fonts/_transformicons.scss */
  body .wrapper .tcon-menu__lines::before {
    top: 7px;
  }
  /* line 196, ../scss/fonts/_transformicons.scss */
  body .wrapper .tcon-menu__lines::after {
    top: -7px;
  }
}

/* ============================================ *
 * Language Switcher
 * ============================================ */
/* line 30, ../scss/locale/_language-selector.scss */
.footer .form-language {
  text-align: right;
  margin: 0 auto;
}
/* line 33, ../scss/locale/_language-selector.scss */
.footer .form-language img {
  max-width: 100%;
  display: inline-block;
}

/* ============================================ *
 * Blackstone Library Core Calls
 * ============================================ */
/* ============================================ *
 * Blackstone Library Variable Sheet
 * ============================================ */
/* line 3, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
body.blackstone-library .footer-lower .copyright {
  max-width: none;
}
/* line 6, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
body.blackstone-library .footer-lower .copyright .copy-links {
  width: 50%;
  text-align: left;
  margin-bottom: 12px;
}
/* line 11, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
body.blackstone-library .footer-lower .copyright .copy-text {
  width: 50%;
  text-align: right;
  float: right;
  padding-right: 4px;
  margin-bottom: 12px;
}
/* line 23, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
body.blackstone-library .footer-container .footer .text {
  text-align: left;
}
/* line 26, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
body.blackstone-library .footer-container .footer .footer_right {
  padding: 50px 30px;
}
/* line 28, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
body.blackstone-library .footer-container .footer .footer_right #fl-column-02,
body.blackstone-library .footer-container .footer .footer_right #fl-column-03 {
  width: 26%;
}
/* line 35, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
body.blackstone-library .footer-container .footer .footer_about_us_left_blurb .footer_left_logo_phone_wrap .logo {
  float: left;
}
/* line 38, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
body.blackstone-library .footer-container .footer .footer_about_us_left_blurb .footer_left_logo_phone_wrap .footer-phone {
  float: left;
  font-size: 24px;
  color: #fff;
  margin: 4px 0 0 40px;
}
@media screen and (max-width: 1130px) {
  /* line 54, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
  body.blackstone-library .footer-container .footer .footer_about_us_left_blurb .footer_left_logo_phone_wrap .logo {
    padding-bottom: 10px;
  }
  /* line 57, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
  body.blackstone-library .footer-container .footer .footer_about_us_left_blurb .footer_left_logo_phone_wrap .footer-phone {
    clear: left;
    margin: 0;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 944px) {
  /* line 72, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
  body.blackstone-library .footer-container .footer .footer_right #fl-column-01 {
    width: 40%;
  }
}
@media only screen and (max-width: 768px) {
  /* line 84, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
  body.blackstone-library .footer-container .footer .footer_right #fl-column-01,
  body.blackstone-library .footer-container .footer .footer_right #fl-column-02,
  body.blackstone-library .footer-container .footer .footer_right #fl-column-03 {
    width: 30%;
  }
  /* line 90, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
  body.blackstone-library .footer-container .footer .footer_about_us_left_blurb {
    padding: 50px 20px 0 20px;
  }
  /* line 93, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
  body.blackstone-library .footer-container .footer .footer_about_us_left_blurb .footer_left_logo_phone_wrap .logo {
    width: 100%;
    max-width: none;
  }
  /* line 96, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
  body.blackstone-library .footer-container .footer .footer_about_us_left_blurb .footer_left_logo_phone_wrap .logo img {
    margin: 0 auto;
  }
  /* line 100, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
  body.blackstone-library .footer-container .footer .footer_about_us_left_blurb .footer_left_logo_phone_wrap .footer-phone {
    margin: 0 auto;
    width: 100%;
  }
}
@media screen and (max-width: 609px) {
  /* line 113, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
  body.blackstone-library .footer-lower .copyright .copy-links,
  body.blackstone-library .footer-lower .copyright .copy-text {
    width: 100%;
    text-align: center;
  }
  /* line 118, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
  body.blackstone-library .footer-lower .copyright .copy-text {
    padding-bottom: 14px;
  }
}
@media only screen and (max-width: 480px) {
  /* line 128, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
  body.blackstone-library .footer-container .footer .footer_right {
    padding-top: 0;
  }
  /* line 133, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
  body.blackstone-library .footer-container .footer .footer_right ul li a {
    font-size: 14px;
  }
  /* line 137, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
  body.blackstone-library .footer-container .footer .footer_right ul .frm-01 {
    display: none;
  }
}
@media screen and (max-width: 340px) {
  /* line 149, ../scss/themeOverrides/blackstone-library/layout/_footer.scss */
  body.blackstone-library .footer-container .footer .footer_right {
    padding-left: 0;
    padding-right: 0;
  }
}

/* line 3, ../scss/themeOverrides/blackstone-library/layout/_header.scss */
body.blackstone-library #header .logo {
  margin-top: 10px;
}
/* line 10, ../scss/themeOverrides/blackstone-library/layout/_header.scss */
body.blackstone-library #header #header-search #search_mini_form .algolia-autocomplete #search {
  background: #fff;
}
/* line 22, ../scss/themeOverrides/blackstone-library/layout/_header.scss */
body.blackstone-library #header #header-account #account-nav ul.menu-type-horizontal li.nav-item-account a .top-header-account-icon {
  padding-top: 34px;
}
/* line 35, ../scss/themeOverrides/blackstone-library/layout/_header.scss */
body.blackstone-library #header #account-nav ul.menu-type-horizontal li a span, body.blackstone-library #header .nav-wrap ul.menu-type-horizontal li a span {
  padding-top: 36px;
}
/* line 41, ../scss/themeOverrides/blackstone-library/layout/_header.scss */
body.blackstone-library #header #account-nav ul.menu-type-horizontal li.nav-item-browse ul.level0, body.blackstone-library #header .nav-wrap ul.menu-type-horizontal li.nav-item-browse ul.level0 {
  width: 755px;
}
/* line 49, ../scss/themeOverrides/blackstone-library/layout/_header.scss */
body.blackstone-library #header #header-customerlists a {
  padding-top: 34px;
}
/* line 56, ../scss/themeOverrides/blackstone-library/layout/_header.scss */
body.blackstone-library #header-cart a {
  padding-top: 34px;
}
/* line 59, ../scss/themeOverrides/blackstone-library/layout/_header.scss */
body.blackstone-library #header-cart a .cart-counter-bubble-wrap .cart-counter-bubble {
  top: 14px;
}
@media only screen and (max-width: 800px) {
  /* line 68, ../scss/themeOverrides/blackstone-library/layout/_header.scss */
  body.blackstone-library #header .logo {
    margin-top: 0;
  }
}

/* ============================================ *
 * Theme Overrides For Algolia
 * ============================================ */
/* line 8, ../scss/themeOverrides/blackstone-library/module/_algoliaenhanced.scss */
#algolia_instant_selector #current-refinements .ais-current-refined-values--body .current-refinement-label {
  display: inline;
}

/* line 3, ../scss/themeOverrides/blackstone-library/module/_blackstone-menuenhanced.scss */
body.blackstone-library .menu-manager-menu li.hidden {
  display: none !important;
}
/* line 10, ../scss/themeOverrides/blackstone-library/module/_blackstone-menuenhanced.scss */
body.blackstone-library.base-main-en .menu-manager-menu li.hidden.show-base-main-en {
  display: inline !important;
}
/* line 19, ../scss/themeOverrides/blackstone-library/module/_blackstone-menuenhanced.scss */
body.blackstone-library.library-main-en .menu-manager-menu li.hidden.show-library-main-en {
  display: inline !important;
}
/* line 28, ../scss/themeOverrides/blackstone-library/module/_blackstone-menuenhanced.scss */
body.blackstone-library.retail-main-en .menu-manager-menu li.hidden.show-retail-main-en {
  display: inline !important;
}

/* ============================================ *
 * Audio Editions Core Calls
 * ============================================ */
/* ============================================ *
 * Audio Editions Variable Sheet
 * ============================================ */
/* ============================================ *
 * Global
 * ============================================ */
/* line 5, ../scss/themeOverrides/audio-editions/layout/_global.scss */
body.audio-editions .wrapper {
  background: #232445;
}
@media screen and (max-width: 600px) {
  /* line 11, ../scss/themeOverrides/audio-editions/layout/_global.scss */
  body.audio-editions .wrapper #header {
    background: #232445;
  }
}

/* ============================================ *
 * Audio Editions Header Overrides
 * ============================================ */
/* line 8, ../scss/themeOverrides/audio-editions/layout/_header.scss */
body.audio-editions .wrapper #header .logo {
  padding: 6px 12px 6px 0;
  margin-top: 0;
  max-width: 160px;
}
/* line 15, ../scss/themeOverrides/audio-editions/layout/_header.scss */
body.audio-editions .wrapper #header .nav-wrap ul.menu-type-horizontal li.level0 > a span {
  padding: 36px 9px 0;
}
/* line 22, ../scss/themeOverrides/audio-editions/layout/_header.scss */
body.audio-editions .wrapper #header #account-nav ul.menu-type-horizontal li.level0 > a span {
  padding: 38px 9px 0;
}
@media only screen and (max-width: 800px) {
  /* line 34, ../scss/themeOverrides/audio-editions/layout/_header.scss */
  body.audio-editions.search-starts-open.search-hide-close .page-header .bswrap {
    padding: 0 15px;
  }
  /* line 38, ../scss/themeOverrides/audio-editions/layout/_header.scss */
  body.audio-editions.search-starts-open.search-hide-close .wrapper .tcon {
    height: 27px;
    width: 27px;
  }
  /* line 42, ../scss/themeOverrides/audio-editions/layout/_header.scss */
  body.audio-editions.search-starts-open.search-hide-close .wrapper #header {
    height: 110px !important;
  }
  /* line 44, ../scss/themeOverrides/audio-editions/layout/_header.scss */
  body.audio-editions.search-starts-open.search-hide-close .wrapper #header .logo {
    padding-right: 0;
    margin-left: 38px;
    max-width: 200px;
  }
  /* line 48, ../scss/themeOverrides/audio-editions/layout/_header.scss */
  body.audio-editions.search-starts-open.search-hide-close .wrapper #header .logo .large {
    display: none;
  }
  /* line 51, ../scss/themeOverrides/audio-editions/layout/_header.scss */
  body.audio-editions.search-starts-open.search-hide-close .wrapper #header .logo .medium {
    display: block;
    padding-top: 9px;
  }
  /* line 59, ../scss/themeOverrides/audio-editions/layout/_header.scss */
  body.audio-editions.search-starts-open.search-hide-close #header .mobile-menu {
    margin-top: 6px;
  }
  /* line 61, ../scss/themeOverrides/audio-editions/layout/_header.scss */
  body.audio-editions.search-starts-open.search-hide-close #header .mobile-menu .mobile-menu-hotdog {
    margin-top: 6px;
  }
  /* line 65, ../scss/themeOverrides/audio-editions/layout/_header.scss */
  body.audio-editions.search-starts-open.search-hide-close #header #header-search {
    margin-top: 0;
    width: 100%;
  }
  /* line 70, ../scss/themeOverrides/audio-editions/layout/_header.scss */
  body.audio-editions.search-starts-open.search-hide-close #header #header-search #search_mini_form #algolia-searchbox .algolia-search-resize-wrapper {
    height: 57px;
  }
  /* line 73, ../scss/themeOverrides/audio-editions/layout/_header.scss */
  body.audio-editions.search-starts-open.search-hide-close #header #header-search #search_mini_form #algolia-searchbox algolia-glass2.magnifying-glass {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  /* line 88, ../scss/themeOverrides/audio-editions/layout/_header.scss */
  body.audio-editions.search-starts-open.search-hide-close .wrapper .main-container {
    margin-top: 110px;
  }
}
@media only screen and (max-width: 480px) {
  /* line 100, ../scss/themeOverrides/audio-editions/layout/_header.scss */
  body.audio-editions.search-starts-open.search-hide-close .wrapper #header {
    background: #232445;
  }
  /* line 102, ../scss/themeOverrides/audio-editions/layout/_header.scss */
  body.audio-editions.search-starts-open.search-hide-close .wrapper #header .mobile-menu {
    margin-left: 0;
  }
  /* line 105, ../scss/themeOverrides/audio-editions/layout/_header.scss */
  body.audio-editions.search-starts-open.search-hide-close .wrapper #header .logo {
    margin-left: 37px;
    margin-top: 9px;
    padding-bottom: 0;
    padding-top: 0;
    min-height: unset;
    max-width: 124px;
  }
  /* line 112, ../scss/themeOverrides/audio-editions/layout/_header.scss */
  body.audio-editions.search-starts-open.search-hide-close .wrapper #header .logo .small {
    display: block;
    width: 50px;
  }
  /* line 116, ../scss/themeOverrides/audio-editions/layout/_header.scss */
  body.audio-editions.search-starts-open.search-hide-close .wrapper #header .logo .medium {
    display: none;
  }
  /* line 120, ../scss/themeOverrides/audio-editions/layout/_header.scss */
  body.audio-editions.search-starts-open.search-hide-close .wrapper #header #search {
    height: 40px;
  }
  /* line 126, ../scss/themeOverrides/audio-editions/layout/_header.scss */
  body.audio-editions.search-starts-open.search-hide-close .wrapper #header #header-search #search_mini_form .algolia-autocomplete .algolia-search-input {
    font-size: 18px;
  }
}
@media only screen and (max-width: 600px) {
  /* line 139, ../scss/themeOverrides/audio-editions/layout/_header.scss */
  body.audio-editions .wrapper #header {
    background: #232445;
  }
  /* line 142, ../scss/themeOverrides/audio-editions/layout/_header.scss */
  body.audio-editions .wrapper #header .logo .small {
    width: 200px;
    padding-top: 6px;
  }
}

/* ============================================ *
 * Audio Editions Header Overrides
 * ============================================ */
/* line 6, ../scss/themeOverrides/audio-editions/layout/_header-nav.scss */
body.audio-editions .level0.triple .carrot-accent .pointer {
  margin-left: 101px;
}
/* line 11, ../scss/themeOverrides/audio-editions/layout/_header-nav.scss */
body.audio-editions .menu-type-horizontal .nav-item-browse ul.level0 {
  left: 108%;
}

/* line 3, ../scss/themeOverrides/audio-editions/layout/_header-search.scss */
body.audio-editions #algolia-searchbox .algolia-autocomplete {
  background: #232445;
}
/* line 9, ../scss/themeOverrides/audio-editions/layout/_header-search.scss */
body.audio-editions #search_mini_form .algolia-autocomplete #search {
  background: #fff;
}

/* ============================================ *
 * Header Simple
 * ============================================ */
/* line 5, ../scss/themeOverrides/audio-editions/layout/_header-simple.scss */
body.audio-editions #bsaheader-simple {
  background: #232445;
}

/* ============================================ *
 * Footer
 * ============================================ */
/* line 5, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .ae-footer-inner {
  position: relative;
}
/* line 8, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .footer_left {
  position: absolute;
  left: 0;
  font-size: 16px;
  color: #fff;
  margin-top: 44px;
  width: 30%;
}
/* line 15, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .footer_left .footer_left_inner {
  text-align: center;
  padding-left: 65px;
}
/* line 18, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .footer_left .footer_left_inner ul {
  text-align: left;
  display: inline-block;
}
/* line 23, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .footer_left a {
  font-size: 16px;
  color: #fff;
}
/* line 28, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .footer_middle {
  padding-top: 44px;
  margin-left: 30%;
  margin-right: 30%;
}
/* line 32, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .footer_middle .footer_middle_inner {
  width: 260px;
  margin: 0 auto;
  text-align: center;
}
/* line 37, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .footer_middle h3 {
  font-family: "Kievit-Bold", "Helvetica Neue", Arial, sans-serif;
}
/* line 40, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .footer_middle .form-list .field {
  margin-bottom: 0;
}
/* line 43, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .footer_middle input {
  margin-bottom: 12px;
  width: 260px;
}
/* line 47, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .footer_middle .buttons-set {
  border-top: 0;
  margin-top: 0;
  margin-bottom: 75px;
  padding-top: 0;
  text-align: center;
}
/* line 54, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .footer_middle button {
  background-color: #7cbe02;
  border-color: #7cbe02;
  width: 260px;
}
/* line 59, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .footer_middle ul.social-icons {
  display: inline-block;
}
/* line 61, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .footer_middle ul.social-icons li {
  float: left;
  padding-bottom: 8px;
}
/* line 64, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .footer_middle ul.social-icons li a {
  color: #fff;
}
/* line 70, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .footer_right_ae {
  position: absolute;
  right: 0;
  font-size: 16px;
  color: #fff;
  margin-top: 44px;
  padding: 0;
  width: 30%;
  top: 0;
}
/* line 79, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .footer_right_ae .footer_right_inner_ae {
  text-align: center;
}
/* line 81, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .footer_right_ae .footer_right_inner_ae ul.customer-desktop {
  text-align: left;
  display: inline-block;
}
/* line 86, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .footer_right_ae a {
  font-size: 16px;
  color: #fff;
}
/* line 90, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .footer_right_ae .footer_right_mobile {
  display: none;
}
/* line 93, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .footer_right_ae .footer_right_mobile_480 {
  display: none;
}
/* line 98, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions.page-account-simple .footer-before-container {
  position: absolute;
  right: 0;
  width: 100%;
  bottom: 46px;
}
/* line 107, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions.page-account-simple .wrapper {
  background: #edf2f3;
}
/* line 114, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .end-footer-line .center .copyright-line {
  border-right: 1px solid #373c3e;
  padding-right: 10px;
}
/* line 118, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
body.audio-editions .end-footer-line .center .end-footer-links {
  padding-left: 10px;
}
@media only screen and (max-width: 768px) {
  /* line 127, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .footer-container .footer .footer_left {
    display: none;
  }
  /* line 130, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .footer-container .footer .footer_middle {
    float: none;
    margin: 0 auto;
    width: 260px;
  }
  /* line 134, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .footer-container .footer .footer_middle .buttons-set {
    margin-bottom: 60px;
  }
  /* line 138, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .footer-container .footer .footer_right_ae {
    position: relative;
    margin-top: 0;
    width: 100%;
  }
  /* line 142, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .footer-container .footer .footer_right_ae .footer_right_inner_ae {
    max-width: 100%;
  }
  /* line 145, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .footer-container .footer .footer_right_ae .customer-desktop {
    display: none;
  }
  /* line 148, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .footer-container .footer .footer_right_ae .footer_right_mobile {
    display: block;
    padding-bottom: 60px;
  }
  /* line 151, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .footer-container .footer .footer_right_ae .footer_right_mobile .frm-01 {
    width: 33%;
    float: left;
    clear: both;
  }
  /* line 156, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .footer-container .footer .footer_right_ae .footer_right_mobile .frm-02 {
    width: 33%;
    float: left;
  }
  /* line 160, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .footer-container .footer .footer_right_ae .footer_right_mobile .frm-03 {
    width: 33%;
    float: left;
  }
  /* line 164, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .footer-container .footer .footer_right_ae .footer_right_mobile ul {
    text-align: left;
    display: inline-block;
  }
  /* line 170, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .footer-container .footer ul.social-icons {
    display: none;
  }
}
@media screen and (max-width: 609px) {
  /* line 179, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .end-footer-line .copyright-line {
    display: block;
    padding-right: 0;
  }
  /* line 183, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .end-footer-line .end-footer-links {
    display: block;
    padding-left: 0;
  }
  /* line 187, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .end-footer-line .copyright-line-mobile {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  /* line 198, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .footer-container .footer .footer_middle .buttons-set {
    margin-bottom: 44px;
  }
  /* line 203, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .footer-container .footer .footer_right_ae .footer_right_mobile {
    display: none;
  }
  /* line 206, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .footer-container .footer .footer_right_ae .footer_right_mobile_480 {
    display: block;
    width: 100%;
    clear: both;
  }
  /* line 210, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .footer-container .footer .footer_right_ae .footer_right_mobile_480 .frm-04 {
    padding-bottom: 24px;
    margin: 0 auto;
    width: 260px;
  }
  /* line 215, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .footer-container .footer .footer_right_ae .footer_right_mobile_480 ul {
    display: inline-block;
  }
  /* line 217, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .footer-container .footer .footer_right_ae .footer_right_mobile_480 ul li {
    display: inline-block;
  }
  /* line 219, ../scss/themeOverrides/audio-editions/layout/_footer.scss */
  body.audio-editions .footer-container .footer .footer_right_ae .footer_right_mobile_480 ul li span {
    padding: 0 10px;
  }
}

/* ============================================ *
 * Blackstone Wholesale Core Calls
 * ============================================ */
/* ============================================ *
 * Blackstone Library Variable Sheet
 * ============================================ */
/* ============================================ *
 * Blackstone Wholesale Header Overrides
 * ============================================ */
/* line 8, ../scss/themeOverrides/blackstone-wholesale/layout/_header.scss */
body.blackstone-wholesale #search_mini_form .algolia-autocomplete #search {
  background: #fff;
}
/* line 14, ../scss/themeOverrides/blackstone-wholesale/layout/_header.scss */
body.blackstone-wholesale #header .logo {
  margin-top: 13px;
}
/* line 21, ../scss/themeOverrides/blackstone-wholesale/layout/_header.scss */
body.blackstone-wholesale #header #account-nav ul.menu-type-horizontal li a span, body.blackstone-wholesale #header .nav-wrap ul.menu-type-horizontal li a span {
  padding-top: 36px;
}
/* line 27, ../scss/themeOverrides/blackstone-wholesale/layout/_header.scss */
body.blackstone-wholesale #header #account-nav ul.menu-type-horizontal li.nav-item-browse ul.level0, body.blackstone-wholesale #header .nav-wrap ul.menu-type-horizontal li.nav-item-browse ul.level0 {
  width: 755px;
}
@media screen and (max-width: 800px) {
  /* line 37, ../scss/themeOverrides/blackstone-wholesale/layout/_header.scss */
  body.blackstone-wholesale #header .logo {
    margin-top: 0;
  }
}

/* ============================================ *
 * Blackstone Wholesale Header Nav Overrides
 * ============================================ */
/* line 8, ../scss/themeOverrides/blackstone-wholesale/layout/_header-nav.scss */
body.blackstone-wholesale .level0.quad .carrot-accent .pointer {
  margin-left: 69px;
}
/* line 18, ../scss/themeOverrides/blackstone-wholesale/layout/_header-nav.scss */
body.blackstone-wholesale #header #account-nav ul.menu-type-horizontal li.quad ul.level0,
body.blackstone-wholesale #header .nav-wrap ul.menu-type-horizontal li.quad ul.level0 {
  left: 288%;
}
/* line 26, ../scss/themeOverrides/blackstone-wholesale/layout/_header-nav.scss */
body.blackstone-wholesale #header .nav-wrap .nav-item-resources li.level1 {
  max-width: 185px;
  width: 100%;
}

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

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

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

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

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

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

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

// ----------------------------------------------
*/
/* ============================================ *
 * Homepage
 * ============================================ */
/* -------------------------------------------- *
 * Primary Banner
 */
/* line 34, ../scss/cms/_home.scss */
body.cms-home {
  /* -------------------------------------------- *
   * Promotion Banner Section
   */
  /* Specifying the body only in order to override the .std ul li styling */
  /* -------------------------------------------- *
   * New Products Section
   */
  /* Hiding the reviews content via CSS because we can't modify the template, */
  /* since it may be used in other places where those elements are needed */
}
/* line 35, ../scss/cms/_home.scss */
body.cms-home .slideshow-container {
  margin-top: 0;
}
/* line 39, ../scss/cms/_home.scss */
body.cms-home #home-page-slider {
  display: block;
}
/* line 43, ../scss/cms/_home.scss */
body.cms-home #home-page-mobile-slider {
  display: none;
}
/* line 48, ../scss/cms/_home.scss */
body.cms-home .std .bsa-carousel-wrapper:first-of-type {
  margin-top: 38px;
}
/* line 52, ../scss/cms/_home.scss */
body.cms-home .std h2 {
  margin-bottom: 8px;
  color: #373c3e;
  line-height: 1;
}
/* line 58, ../scss/cms/_home.scss */
body.cms-home .std h3 {
  margin-bottom: 8px;
  color: #373c3e;
  line-height: 1;
}
/* line 64, ../scss/cms/_home.scss */
body.cms-home .std ul.column_promo {
  padding-top: 0;
  padding-bottom: 40px;
}
/* line 75, ../scss/cms/_home.scss */
body.cms-home .promos {
  margin: 0 0 10px 0;
  padding: 0;
  width: 100%;
}
/* line 81, ../scss/cms/_home.scss */
body.cms-home .promos:after {
  content: '';
  display: table;
  clear: both;
}
/* line 87, ../scss/cms/_home.scss */
body.cms-home body .promos > li {
  margin: 0 0 10px 0;
  list-style: none;
  text-align: center;
  position: relative;
  border: 1px solid #e1e1e0;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
/* line 96, ../scss/cms/_home.scss */
body.cms-home .promos > li:last-child {
  margin-bottom: 0;
}
/* line 100, ../scss/cms/_home.scss */
body.cms-home .promos img {
  max-width: 100%;
  width: 100%;
}
/* line 105, ../scss/cms/_home.scss */
body.cms-home .promos a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: block;
}
/* line 110, ../scss/cms/_home.scss */
body.cms-home .promos span {
  color: #fff;
  text-transform: uppercase;
  position: absolute;
  display: block;
  width: 100%;
  top: 10%;
  font-weight: 500;
  font-size: 20px;
  font-family: "Kievit-Regular", "Helvetica Neue", Arial, sans-serif;
  text-shadow: 1px 1px 3px #555555;
}
/* line 123, ../scss/cms/_home.scss */
body.cms-home .promos strong {
  font-weight: 600;
  font-size: 26px;
  display: block;
}
/* line 135, ../scss/cms/_home.scss */
body.cms-home .cms-index-index .products-grid .ratings,
body.cms-home .cms-index-index .products-grid .actions,
body.cms-home .cms-index-noroute .products-grid .ratings,
body.cms-home .cms-index-noroute .products-grid .actions {
  display: none;
}
/* line 142, ../scss/cms/_home.scss */
body.cms-home .cms-index-index h2.subtitle {
  padding: 6px 0;
  text-align: center;
  color: #02b2e7;
  font-weight: 600;
  border-bottom: 1px solid #e1e1e0;
  border-top: 1px solid #e1e1e0;
}
/* line 151, ../scss/cms/_home.scss */
body.cms-home .cms-index-noroute h2.subtitle {
  display: none;
}
@media only screen and (min-width: 880px) {
  /* line 156, ../scss/cms/_home.scss */
  body.cms-home .promos span {
    font-size: 18px;
  }
  /* line 160, ../scss/cms/_home.scss */
  body.cms-home .promos strong {
    font-size: 24px;
  }
}
@media only screen and (min-width: 769px) {
  /* line 34, ../scss/cms/_home.scss */
  body.cms-home {
    /* Config: Three columns + flexible gutter */
  }
  /* line 166, ../scss/cms/_home.scss */
  body.cms-home .promos span {
    font-size: 16px;
  }
  /* line 170, ../scss/cms/_home.scss */
  body.cms-home .promos strong {
    font-size: 17px;
  }
  /* line 177, ../scss/cms/_home.scss */
  body.cms-home body .promos > li {
    float: left;
    width: 31.74603%;
    margin-right: 2.38095%;
  }
  /* line 183, ../scss/cms/_home.scss */
  body.cms-home .promos > li:nth-child(3n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  /* line 190, ../scss/cms/_home.scss */
  body.cms-home .slideshow .banner-msg h2 {
    font-size: 20px;
  }
  /* line 194, ../scss/cms/_home.scss */
  body.cms-home .slideshow .banner-msg h2 strong {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 201, ../scss/cms/_home.scss */
  body.cms-home #home-page-mobile-slider {
    display: block;
  }
  /* line 203, ../scss/cms/_home.scss */
  body.cms-home #home-page-mobile-slider img {
    width: 100%;
  }
  /* line 208, ../scss/cms/_home.scss */
  body.cms-home #home-page-slider {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  /* line 215, ../scss/cms/_home.scss */
  body.cms-home .slideshow .banner-msg {
    top: 20%;
  }
  /* line 219, ../scss/cms/_home.scss */
  body.cms-home .slideshow .banner-msg h2 {
    font-size: 14px;
  }
  /* line 223, ../scss/cms/_home.scss */
  body.cms-home .slideshow .banner-msg h2 strong {
    font-size: 16px;
  }
  /* line 227, ../scss/cms/_home.scss */
  body.cms-home .main-container {
    padding: 0;
    padding-bottom: 60px;
  }
  /* line 232, ../scss/cms/_home.scss */
  body.cms-home .col1-layout .col-main {
    padding: 0 15px;
  }
  /* line 236, ../scss/cms/_home.scss */
  body.cms-home .full-width .col-main {
    padding: 0 0;
  }
  /* line 239, ../scss/cms/_home.scss */
  body.cms-home .full-width .bswrap {
    padding: 0 15px;
  }
  /* line 243, ../scss/cms/_home.scss */
  body.cms-home .full-width #header .bswrap {
    padding: 0;
  }
  /* line 249, ../scss/cms/_home.scss */
  body.cms-home .std {
    margin-top: 25px;
  }
  /* line 251, ../scss/cms/_home.scss */
  body.cms-home .std ul.column_promo {
    padding-bottom: 0;
  }
  /* line 256, ../scss/cms/_home.scss */
  body.cms-home .std h2 {
    font-size: 21px;
  }
  /* line 260, ../scss/cms/_home.scss */
  body.cms-home body.cms-home .std ul.column_promo {
    padding-bottom: 0;
  }
}

/* ============================================ *
 * Category Landing Pages
 * ============================================ */
/* line 30, ../scss/content/_category.scss */
.category_icon_default {
  display: inline-block;
  background: #fe721d;
  min-width: 68px;
  font-size: 36px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  padding: 5px 5px 0 5px;
  text-align: center;
}

/* line 45, ../scss/content/_category.scss */
.category-image {
  position: relative;
}

/* line 49, ../scss/content/_category.scss */
.categorylandingMainblock {
  border: 1px solid #E2E2E2;
  padding: 7px;
}

/* line 54, ../scss/content/_category.scss */
.catblocks {
  float: left;
  padding: 0 0 20px 0;
  width: 100%;
}

/* line 60, ../scss/content/_category.scss */
.catblocks li {
  position: relative;
  float: left !important;
  width: 23% !important;
  margin-right: 2.66667% !important;
  margin-bottom: 10px;
  border: 1px solid #e1e1e0;
  padding: 10px;
}

/* line 70, ../scss/content/_category.scss */
.catblocks li:hover {
  border-color: #02b2e7;
}

@media only screen and (max-width: 768px) {
  /* line 75, ../scss/content/_category.scss */
  .catblocks li {
    width: 49% !important;
    margin-right: 2% !important;
  }

  /* line 80, ../scss/content/_category.scss */
  .catblocks li:nth-child(even) {
    margin-right: 0 !important;
  }
}
@media only screen and (max-width: 480px) {
  /* line 86, ../scss/content/_category.scss */
  .catblocks li {
    width: 100% !important;
    margin-right: 0 !important;
    float: none;
  }
}
/* line 93, ../scss/content/_category.scss */
.catblocks li:last-child {
  margin-right: 0 !important;
}

/* line 97, ../scss/content/_category.scss */
.catblocks li img {
  width: 100%;
  max-width: 100%;
}

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

/* line 118, ../scss/content/_category.scss */
.catblocklinks a {
  color: #FFFFFF;
  text-decoration: none;
}

/* line 123, ../scss/content/_category.scss */
.catlandingbottomPromoblock {
  float: left;
  width: 100%;
  border: 1px solid #E2E2E2;
  margin-bottom: 100px;
}

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

/* line 141, ../scss/content/_category.scss */
.catalog-category-view div.categoryland-caption span.blue-big-text {
  color: #3399CC;
  font-size: 50px;
  font-weight: 800;
  padding: 0 0 0 8px;
}

/* line 148, ../scss/content/_category.scss */
.catalog-category-view div.categoryland-caption span.blue-big-text {
  padding: 0 !important;
}

/* line 152, ../scss/content/_category.scss */
.catalog-category-view div.categoryland-caption span.three-dots {
  background: url(https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/bg_threeDots.png) no-repeat center center;
  display: block;
  height: 20px;
}

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

/* line 163, ../scss/content/_category.scss */
.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption a.link:hover,
.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption span.link:hover {
  text-decoration: underline;
  color: #1189C5;
}

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

/* line 177, ../scss/content/_category.scss */
.catalog-category-view div.categoryland-caption span.blue-big-text {
  padding: 0 !important;
}

/* line 181, ../scss/content/_category.scss */
.cms-home #homepage-main-slides div.slides_control div div.slideshow-caption span.three-dots,
.catalog-category-view div.categoryland-caption span.three-dots {
  background: url(https://d2j52o29brz8ug.cloudfront.net/skin/frontend/blackstone/default/images/bg_threeDots.png) no-repeat center center;
  display: block;
  height: 20px;
}

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

