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

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

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

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

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

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

// ----------------------------------------------
*/
/* ============================================ *
 * 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 {
  color: #000;
  font-size: 15px;
  line-height: 1.5;
}

/* line 61, ../scss/core/_common.scss */
a {
  color: #55bb51;
  text-decoration: none;
}

/* line 66, ../scss/core/_common.scss */
a:hover {
  color: black;
  text-decoration: underline;
}

/* line 71, ../scss/core/_common.scss */
a:focus {
  outline-color: #5ebe5a;
  color: #2a6527;
}

/* line 76, ../scss/core/_common.scss */
.main-container a:hover img {
  opacity: 0.8;
}

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

/* line 88, ../scss/core/_common.scss */
img {
  -ms-interpolation-mode: bicubic;
}

/* ============================================ *
 * Typography
 * ============================================ */
/* line 96, ../scss/core/_common.scss */
body {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 100, ../scss/core/_common.scss */
h1, .h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #000;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
}

/* line 102, ../scss/core/_common.scss */
h2, .h2 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #000;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
}

/* line 104, ../scss/core/_common.scss */
h3, .h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #000;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

/* line 106, ../scss/core/_common.scss */
h4, .h4 {
  margin: 0;
  margin-bottom: 10px;
  color: #000;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

/* line 108, ../scss/core/_common.scss */
h5, .h5 {
  margin: 0;
  margin-bottom: 10px;
  color: #000;
  font-size: 13px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

/* line 110, ../scss/core/_common.scss */
h6, .h6 {
  margin: 0;
  margin-bottom: 5px;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

/* ============================================ *
 * Shared Classes
 * ============================================ */
/* line 116, ../scss/core/_common.scss */
.main-container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px 30px 40px;
}

@media only screen and (max-width: 770px) {
  /* line 124, ../scss/core/_common.scss */
  .main-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* line 130, ../scss/core/_common.scss */
.address-list address {
  margin-bottom: 1em;
}

/* line 134, ../scss/core/_common.scss */
.availability {
  margin-bottom: 0;
  font-size: 13px;
}

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

/* line 143, ../scss/core/_common.scss */
.availability.in-stock {
  color: #11B400;
}

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

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

/* -------------------------------------------- *
 * Page Titles
 */
/* line 161, ../scss/core/_common.scss */
.page-title h1,
.page-title h2,
.product-name h1,
.product-name .h1 {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  color: #000;
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 3px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

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

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

/* line 181, ../scss/core/_common.scss */
.block-title {
  position: relative;
  padding: 10px 0 0;
  margin-bottom: 5px;
  border-top: 1px solid #CCCCCC;
}
/* line 187, ../scss/core/_common.scss */
.block-title h2,
.block-title h3,
.block-title strong {
  margin: 0;
  margin-bottom: 10px;
  color: #000;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
}
/* line 196, ../scss/core/_common.scss */
.block-title small {
  font-size: 100%;
  font-weight: normal;
  color: #666666;
}

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

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

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

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

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

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

/* line 229, ../scss/core/_common.scss */
.block .actions {
  margin: 10px 0 0;
}
/* line 232, ../scss/core/_common.scss */
.block .actions:after {
  content: '';
  display: table;
  clear: both;
}
/* line 236, ../scss/core/_common.scss */
.block .actions a {
  float: left;
}
/* line 239, ../scss/core/_common.scss */
.block .actions .button {
  float: right;
}

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

@media only screen and (max-width: 770px) {
  /* line 257, ../scss/core/_common.scss */
  .sidebar .block:not(.block-layered-nav) {
    margin-bottom: 0;
  }
  /* line 260, ../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 267, ../scss/core/_common.scss */
  .sidebar .block:not(.block-layered-nav) .block-title > strong {
    margin: 0;
    margin-bottom: 10px;
    color: #000;
    font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    line-height: 1.4;
    text-rendering: optimizeSpeed;
    text-transform: uppercase;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0px;
    padding: 7px 10px 7px 24px;
    border-width: 1px;
    border-style: solid;
    border-color: #CCCCCC;
    position: relative;
    background-color: #ECECEC;
    display: block;
    width: 100%;
    cursor: pointer;
    border-bottom: 0;
  }
  /* line 128, ../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 #FFFFFF;
    border-right: none;
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }
  /* line 276, ../scss/core/_common.scss */
  .sidebar .block:not(.block-layered-nav) .block-title.active > strong {
    margin: 0;
    margin-bottom: 10px;
    color: #000;
    font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    font-style: normal;
    line-height: 1.4;
    text-rendering: optimizeSpeed;
    text-transform: uppercase;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    font-weight: normal;
    margin-bottom: 0px;
    padding: 7px 10px 7px 24px;
    border-width: 1px;
    border-style: solid;
    border-color: #CCCCCC;
    position: relative;
    background-color: #ECECEC;
  }
  /* line 128, ../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 #FFFFFF;
    border-bottom: none;
    left: 10px;
    top: 50%;
    margin-top: -3px;
  }
  /* line 282, ../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: #CCCCCC;
  }
  /* line 292, ../scss/core/_common.scss */
  .sidebar .block:last-of-type {
    border-bottom: 1px solid #CCCCCC;
  }
}
/* -------------------------------------------- *
 * Secondary Navigation
 */
/* line 304, ../scss/core/_common.scss */
.block-account .block-title,
.block-cms-menu .block-title {
  padding-top: 0;
  border-top: none;
}
/* line 309, ../scss/core/_common.scss */
.block-account li,
.block-cms-menu li {
  text-transform: uppercase;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin: 7px 0;
}
/* line 314, ../scss/core/_common.scss */
.block-account li strong,
.block-cms-menu li strong {
  font-weight: 400;
  color: #67C263;
}
/* line 319, ../scss/core/_common.scss */
.block-account li a,
.block-cms-menu li a {
  color: #000;
}
/* line 322, ../scss/core/_common.scss */
.block-account li a:hover,
.block-cms-menu li a:hover {
  color: #67C263;
}

/* ============================================ *
 * Buttons
 * ============================================ */
/* Secondary Buttons */
/* line 334, ../scss/core/_common.scss */
.cart .buttons-set .button,
.cart-table .button,
.sidebar .actions .button,
.button.button-secondary {
  background: #DDDDDD;
  color: #000;
  padding: 7px 15px;
}
/* line 342, ../scss/core/_common.scss */
.cart .buttons-set .button:hover,
.cart-table .button:hover,
.sidebar .actions .button:hover,
.button.button-secondary:hover {
  background: #d0d0d0;
  cursor: pointer;
}
/* line 347, ../scss/core/_common.scss */
.cart .buttons-set .button:active,
.cart-table .button:active,
.sidebar .actions .button:active,
.button.button-secondary:active {
  background: #c4c4c4;
  color: #000;
}
/* line 352, ../scss/core/_common.scss */
.cart .buttons-set .button:focus,
.cart-table .button:focus,
.sidebar .actions .button:focus,
.button.button-secondary:focus {
  color: #000;
  background: #c4c4c4;
  outline: none;
}

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

/* Primary Buttons */
/* line 365, ../scss/core/_common.scss */
.button,
.cart-table .product-cart-actions .button,
#co-shipping-method-form .buttons-set .button,
.footer .button {
  background: #E86403;
  display: inline-block;
  padding: 7px 15px;
  border: 0;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: normal;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
}
/* line 383, ../scss/core/_common.scss */
.button:hover,
.cart-table .product-cart-actions .button:hover,
#co-shipping-method-form .buttons-set .button:hover,
.footer .button:hover {
  background: #cf5903;
  cursor: pointer;
  color: white;
}
/* line 388, ../scss/core/_common.scss */
.button:active,
.cart-table .product-cart-actions .button:active,
#co-shipping-method-form .buttons-set .button:active,
.footer .button:active {
  background: #b64e02;
  color: #FFFFFF;
}
/* line 392, ../scss/core/_common.scss */
.button:focus,
.cart-table .product-cart-actions .button:focus,
#co-shipping-method-form .buttons-set .button:focus,
.footer .button:focus {
  background-color: #b64e02;
  color: #FFFFFF;
}

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

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

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

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

/* line 429, ../scss/core/_common.scss */
.button2 {
  border: 0;
  padding: 0 5px;
  margin: 0;
  background: transparent;
  cursor: pointer;
  vertical-align: middle;
}

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

/* line 442, ../scss/core/_common.scss */
.button2 span,
.button2 span span {
  line-height: 30px;
  height: 30px;
  text-decoration: underline;
  text-transform: uppercase;
  display: inline-block;
  color: #67C263;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}
/* line 452, ../scss/core/_common.scss */
.button2 span:hover,
.button2 span span:hover {
  text-decoration: none;
  color: #419c3d;
}

@media only screen and (max-width: 770px) {
  /* line 460, ../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 467, ../scss/core/_common.scss */
  .col2-set .buttons-set .back-link {
    display: none;
  }
  /* line 470, ../scss/core/_common.scss */
  .col2-set .buttons-set .required {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  /* line 478, ../scss/core/_common.scss */
  .buttons-set .button {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 7px;
  }
  /* line 485, ../scss/core/_common.scss */
  .buttons-set .back-link {
    display: none;
  }
  /* line 488, ../scss/core/_common.scss */
  .buttons-set .required {
    display: none;
  }
}
/* -------------------------------------------- *
 * Paypal Button
 */
/* line 498, ../scss/core/_common.scss */
.paypal-logo.paypal-after {
  float: left;
}

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

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

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

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

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

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

  /* line 528, ../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 544, ../scss/core/_common.scss */
.buttons-set {
  clear: both;
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid #EDEDED;
  text-align: right;
}
/* line 551, ../scss/core/_common.scss */
.buttons-set p.required {
  margin: 0;
  margin-left: 10px;
  line-height: 33px;
  float: right;
}
/* line 557, ../scss/core/_common.scss */
.buttons-set .back-link {
  float: left;
  margin: 0;
  line-height: 33px;
}
/* line 562, ../scss/core/_common.scss */
.buttons-set a:not(.button) {
  line-height: 20px;
  display: inline-block;
  padding: 5px;
}
/* line 567, ../scss/core/_common.scss */
.buttons-set button.button {
  float: right;
  margin-left: 5px;
  min-width: 140px;
}
/* line 573, ../scss/core/_common.scss */
.buttons-set:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Icons
 */
/* line 582, ../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, .top-info-wrapper .cart-link span, .skip-nav .icon, .skip-search .icon, .skip-account .icon, .skip-cart .icon, .footer-container .social-links li a.youtube-button, .footer-container .social-links li a.linkedin-button, .review-summary-table .rating-box .rating-number:after, .ratings-table .rating-box, .ratings-table .rating-box .rating {
  background-image: url(../images/icon_sprite.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 4 / 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  /* line 589, ../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, .top-info-wrapper .cart-link span, .skip-nav .icon, .skip-search .icon, .skip-account .icon, .skip-cart .icon, .footer-container .social-links li a.youtube-button, .footer-container .social-links li a.linkedin-button, .review-summary-table .rating-box .rating-number:after, .ratings-table .rating-box, .ratings-table .rating-box .rating {
    background-image: url(../images/icon_sprite@2x.png);
    background-size: 100px 1000px;
  }
}
/* -------------------------------------------- *
 * Breadcrumbs
 */
/* line 599, ../scss/core/_common.scss */
.breadcrumbs {
  float: left;
  margin-bottom: 20px;
  margin-top: 10px;
  width: 100%;
}
/* line 605, ../scss/core/_common.scss */
.breadcrumbs a {
  float: left;
  color: #000;
}
/* line 609, ../scss/core/_common.scss */
.breadcrumbs a:hover {
  color: #67C263;
}
/* line 614, ../scss/core/_common.scss */
.breadcrumbs strong {
  color: #000;
  font-weight: normal;
}
/* line 619, ../scss/core/_common.scss */
.breadcrumbs span {
  float: left;
  padding: 0 7px;
  line-height: 19px;
}
/* line 625, ../scss/core/_common.scss */
.breadcrumbs li {
  float: left;
  font-size: 12px;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}
/* line 630, ../scss/core/_common.scss */
.breadcrumbs li.home > a {
  color: #67C263;
}
/* line 633, ../scss/core/_common.scss */
.breadcrumbs li.home > a:hover {
  color: black;
}

@media only screen and (max-width: 770px) {
  /* line 642, ../scss/core/_common.scss */
  .breadcrumbs {
    display: none;
  }
}
/* -------------------------------------------- *
 * Button - Remove / Previous
 */
/* line 652, ../scss/core/_common.scss */
.btn-remove,
.btn-previous {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  text-align: center;
  /* Hide text */
  font: 0/0 a;
  text-shadow: none;
  position: relative;
  color: #000;
  text-decoration: none;
  background-color: white;
}
/* line 667, ../scss/core/_common.scss */
.btn-remove:hover,
.btn-previous:hover {
  color: #000;
  background-color: #eee;
  text-decoration: none;
}
/* line 673, ../scss/core/_common.scss */
.btn-remove:focus,
.btn-previous:focus {
  outline-color: #5ebe5a;
  color: #000;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 681, ../scss/core/_common.scss */
.btn-remove:after {
  content: 'X';
  color: #67C263;
  height: 20px;
  line-height: 20px;
  width: 100%;
  font-size: 10px;
  font-weight: bold;
}
/* line 690, ../scss/core/_common.scss */
.btn-remove:hover:after {
  color: #FFFFFF;
  text-decoration: none;
}

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

/* line 713, ../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 #67C263;
  border-left: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -2px;
  margin-top: -4px;
}
/* line 721, ../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 730, ../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 741, ../scss/core/_common.scss */
.checkout-agreements li {
  margin-bottom: 20px;
}

/* line 745, ../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 #CCCCCC;
  background: #ECECEC;
}

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

/* -------------------------------------------- *
 * Container
 */
/* line 769, ../scss/core/_common.scss */
.footer-container {
  padding-top: 0px;
}

/* -------------------------------------------- *
 * Column Layouts
 */
/* line 777, ../scss/core/_common.scss */
.box-highlight, .cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping,
.cart-forms .box-info,
#save_shopping_list,
body .col-main .cart-forms .box-shopping-list,
body .col-main .cart-forms .box-order-form {
  padding: 10px;
  background-color: #ECECEC;
  border: 1px solid #CCCCCC;
}

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

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

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

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

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

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

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

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

/* line 842, ../scss/core/_common.scss */
.col3-layout .col-right {
  width: 20.83333%;
}
/* line 846, ../scss/core/_common.scss */
.col3-layout .col-wrapper {
  float: left;
  width: 79.16667%;
}
/* line 850, ../scss/core/_common.scss */
.col3-layout .col-wrapper .col-main {
  float: right;
  width: 73.68421%;
}
/* line 855, ../scss/core/_common.scss */
.col3-layout .col-wrapper .col-left {
  width: 26.31579%;
}

@media only screen and (max-width: 1000px) {
  /* line 863, ../scss/core/_common.scss */
  .col3-layout .col-right {
    float: left;
    clear: left;
    padding-left: 0;
    padding-right: 10px;
    width: 25%;
  }
  /* line 871, ../scss/core/_common.scss */
  .col3-layout .col-wrapper {
    float: right;
    width: 100%;
  }
  /* line 875, ../scss/core/_common.scss */
  .col3-layout .col-wrapper .col-main {
    float: right;
    width: 75%;
  }
  /* line 880, ../scss/core/_common.scss */
  .col3-layout .col-wrapper .col-left {
    width: 25%;
  }
}
@media only screen and (max-width: 770px) {
  /* line 888, ../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 909, ../scss/core/_common.scss */
  .col3-layout .col-wrapper {
    float: none;
    width: auto;
  }

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

  /* line 919, ../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 */
  }
}
/* Content Columns */
/* line 930, ../scss/core/_common.scss */
.col2-set {
  width: 100%;
}
/* line 933, ../scss/core/_common.scss */
.col2-set .col-1,
.col2-set .col-2 {
  width: 50%;
  padding: 20px;
}
@media only screen and (max-width: 770px) {
  /* line 933, ../scss/core/_common.scss */
  .col2-set .col-1,
  .col2-set .col-2 {
    padding: 10px;
  }
}
/* line 943, ../scss/core/_common.scss */
.col2-set .col-1 {
  float: left;
  padding-left: 0;
}
/* line 948, ../scss/core/_common.scss */
.col2-set .col-2 {
  float: right;
  padding-right: 0;
}
@media only screen and (max-width: 479px) {
  /* line 954, ../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 964, ../scss/core/_common.scss */
.col2-set .narrow {
  width: 33%;
}
/* line 968, ../scss/core/_common.scss */
.col2-set .wide {
  width: 65%;
}
/* line 972, ../scss/core/_common.scss */
.col2-set:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Top Container
 */
@media only screen and (min-width: 771px) {
  /* line 981, ../scss/core/_common.scss */
  .top-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
  }
}
/* -------------------------------------------- *
 * Global Site Notice
 */
/* line 992, ../scss/core/_common.scss */
.global-site-notice {
  background: #676157;
  color: #E6E6E6;
  font-size: 11px;
}
/* line 997, ../scss/core/_common.scss */
.global-site-notice .notice-inner {
  padding-left: 120px;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  line-height: 11px;
  min-height: 40px;
  padding-top: 14.5px;
  padding-bottom: 14.5px;
  background-image: url("../images/demo-logo.png");
  background-position: left;
  background-repeat: no-repeat;
}
/* line 1012, ../scss/core/_common.scss */
.global-site-notice p {
  margin-bottom: 0;
}

/* -------------------------------------------- *
 * Promotional Message Banner
 */
/* line 1021, ../scss/core/_common.scss */
.promo-msg {
  color: #11B400;
  text-align: center;
  margin: 10px;
  text-transform: uppercase;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}

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

/* -------------------------------------------- *
 * Messages
 */
/* line 1040, ../scss/core/_common.scss */
.success {
  color: #11B400;
}

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

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

/* -------------------------------------------- *
 * Messages
 */
/* line 1058, ../scss/core/_common.scss */
.messages {
  margin: 0 auto 10px;
  max-width: 1140px;
}

/* line 1063, ../scss/core/_common.scss */
.messages li li {
  position: relative;
  margin-bottom: 5px;
  padding: 7px 10px 7px 20px;
  background: #ECECEC;
  font-size: 15px;
}

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

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

/* line 1083, ../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 1087, ../scss/core/_common.scss */
.messages .notice-msg li {
  color: black;
  border-left: 5px solid #E26703;
  background-color: #F9EBE6;
}

/* line 1093, ../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 1097, ../scss/core/_common.scss */
.messages .success-msg li {
  color: black;
  border-left: 5px solid #11B400;
  background-color: #EFF5EA;
}

/* line 1103, ../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 #11B400;
  border-right: none;
}

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

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

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

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

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

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

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

/* line 1159, ../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 #CCCCCC;
  background: #ECECEC;
}

/* line 1169, ../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 #CCCCCC;
  border-top: none;
  top: -11px;
  left: 30px;
}

/* line 1175, ../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 #ECECEC;
  border-top: none;
  top: -10px;
  left: 30px;
}

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

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

/* -------------------------------------------- *
 * Price Box - Standard
 */
/* line 1208, ../scss/core/_common.scss */
.price-box {
  margin: 7px 0;
}

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

/* line 1216, ../scss/core/_common.scss */
.price-notice {
  color: #666666;
}

/* line 1220, ../scss/core/_common.scss */
.price-box .price {
  color: black;
  font-size: 16px;
}

/* line 1225, ../scss/core/_common.scss */
.price-box .price,
.price {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 1230, ../scss/core/_common.scss */
.price-box .price-label {
  color: #666666;
  white-space: nowrap;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 1236, ../scss/core/_common.scss */
.price-box .minimal-price-link {
  padding-left: 1em;
  color: #11B400;
  display: block;
  /* We want this to show on its own line, otherwise the layout looks funky */
}
/* line 1241, ../scss/core/_common.scss */
.price-box .minimal-price-link .label {
  color: #666666;
}

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

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

/* line 1270, ../scss/core/_common.scss */
.price-box .special-price {
  color: #11B400;
  padding-left: 1em;
}
/* line 1274, ../scss/core/_common.scss */
.price-box .special-price .price-label {
  color: #D84D3C;
}

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

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

/* -------------------------------------------- *
 * Tier Prices
 */
/* line 1296, ../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 1305, ../scss/core/_common.scss */
.product-pricing li,
.tier-prices li,
.tier-prices-grouped li {
  font-size: 12px;
}
/* line 1308, ../scss/core/_common.scss */
.product-pricing .benefit,
.tier-prices .benefit,
.tier-prices-grouped .benefit {
  font-style: italic;
}
/* line 1311, ../scss/core/_common.scss */
.product-pricing .price,
.tier-prices .price,
.tier-prices-grouped .price {
  font-weight: bold;
}

/* ============================================ *
 * Item Options
 * ============================================ */
/* line 1320, ../scss/core/_common.scss */
.item-options {
  font-size: 14px;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}
/* line 1324, ../scss/core/_common.scss */
.item-options:after {
  content: '';
  display: table;
  clear: both;
}
/* line 1328, ../scss/core/_common.scss */
.item-options dt {
  float: left;
  clear: left;
  font-weight: 600;
  padding-right: 5px;
}
/* line 1334, ../scss/core/_common.scss */
.item-options dt:after {
  content: ': ';
}
/* line 1339, ../scss/core/_common.scss */
.item-options dd {
  float: left;
  padding-left: 10px;
  margin: 0 0 6px;
}

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

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

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

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

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

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

@media only screen and (max-width: 479px) {
  /* line 1396, ../scss/core/_common.scss */
  .truncated {
    cursor: inherit;
  }
  /* line 1399, ../scss/core/_common.scss */
  .truncated a.details {
    display: none;
  }
  /* line 1404, ../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 1412, ../scss/core/_common.scss */
  .truncated .truncated_full_value .item-options p {
    float: none;
  }
  /* line 1416, ../scss/core/_common.scss */
  .truncated .truncated_full_value .item-options:after {
    display: none;
  }
}
/* -------------------------------------------- *
 * Printer Friendly Page
 */
/* line 1429, ../scss/core/_common.scss */
.page-print {
  width: 6.5in;
  margin: 20px;
  background: #FFFFFF;
}

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

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

/* -------------------------------------------- *
 * Product Image
 */
/* line 1456, ../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: 770px) {
  /* line 1463, ../scss/core/_common.scss */
  body .product-img-box .product-image:hover {
    border-color: #EDEDED;
  }
}
/* line 1468, ../scss/core/_common.scss */
.no-touch .product-image:hover {
  border-color: #11B400;
}

/* -------------------------------------------- *
 * Ratings
 */
/* line 1476, ../scss/core/_common.scss */
.ratings {
  margin: 7px 0;
}
/* line 1479, ../scss/core/_common.scss */
.ratings .rating-box,
.ratings .rating-links {
  margin: 5px 0;
}
/* line 1484, ../scss/core/_common.scss */
.ratings .rating-box {
  width: 65px;
  height: 13px;
  background-repeat: repeat-x;
  background-position: 0 -615px;
  overflow: hidden;
}
/* line 1492, ../scss/core/_common.scss */
.ratings .rating-box .rating {
  float: left;
  height: 13px;
  background-repeat: repeat-x;
  background-position: 0 -600px;
}
/* line 1499, ../scss/core/_common.scss */
.ratings .amount {
  display: block;
  margin: 5px auto;
}
/* line 1505, ../scss/core/_common.scss */
.ratings .rating-links .separator {
  margin: 0 3px;
}

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

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

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

/* line 1528, ../scss/core/_common.scss */
.std ul:not(.video-items) {
  list-style: disc outside;
  margin-bottom: 1.5em;
}

/* line 1533, ../scss/core/_common.scss */
.std ul:not(.video-items) ul {
  margin-bottom: 3px;
}

/* line 1537, ../scss/core/_common.scss */
.std ul li:not(.item) {
  margin-left: 2em;
}

/* line 1541, ../scss/core/_common.scss */
.std .note {
  color: #666666;
  font-size: 13px;
}

/* -------------------------------------------- *
 * Tabs
 */
/* line 1550, ../scss/core/_common.scss */
.tabs {
  margin-bottom: 10px;
  background: #FFFFFF;
  float: right;
  width: 100%;
}

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

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

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

/* line 1582, ../scss/core/_common.scss */
.toolbar,
.pager {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000;
  line-height: 30px;
  font-size: 12px;
}

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

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

/* line 1612, ../scss/core/_common.scss */
.sorter > .sort-by {
  float: left;
  margin-right: 5px;
  height: 30px;
}
/* line 1617, ../scss/core/_common.scss */
.sorter > .sort-by .sort-by-switcher {
  width: 30px;
  height: 30px;
  display: inline-block;
}
/* line 1623, ../scss/core/_common.scss */
.sorter > .sort-by .sort-by-switcher--asc {
  background-position: 4px -542px;
}
/* line 1625, ../scss/core/_common.scss */
.sorter > .sort-by .sort-by-switcher--asc:hover {
  background-position: -46px -542px;
}
/* line 1629, ../scss/core/_common.scss */
.sorter > .sort-by .sort-by-switcher--desc {
  background-position: 4px -567px;
}
/* line 1631, ../scss/core/_common.scss */
.sorter > .sort-by .sort-by-switcher--desc:hover {
  background-position: -46px -567px;
}

/* line 1637, ../scss/core/_common.scss */
.sorter > .view-mode {
  float: right;
}
/* line 1640, ../scss/core/_common.scss */
.sorter > .view-mode .grid,
.sorter > .view-mode .list {
  float: left;
  width: 30px;
  height: 30px;
}
/* line 1647, ../scss/core/_common.scss */
.sorter > .view-mode .grid {
  margin-right: 5px;
  background-position: 8px -492px;
}
/* line 1651, ../scss/core/_common.scss */
.sorter > .view-mode strong.grid,
.sorter > .view-mode a.grid:hover {
  background-position: -42px -492px;
}
/* line 1655, ../scss/core/_common.scss */
.sorter > .view-mode .list {
  background-position: 11px -517px;
}
/* line 1659, ../scss/core/_common.scss */
.sorter > .view-mode strong.list,
.sorter > .view-mode a.list:hover {
  background-position: -39px -517px;
}

/* line 1665, ../scss/core/_common.scss */
.pager {
  float: right;
  overflow: hidden;
}
/* line 1669, ../scss/core/_common.scss */
.pager > .count-container {
  float: left;
}
/* line 1673, ../scss/core/_common.scss */
.pager .amount {
  float: left;
  white-space: nowrap;
  margin: 0 15px 0 0;
}
/* line 1679, ../scss/core/_common.scss */
.pager .limiter {
  float: left;
  height: 30px;
  line-height: 30px;
}
/* line 1684, ../scss/core/_common.scss */
.pager .limiter > label {
  padding-right: 5px;
}
/* line 1687, ../scss/core/_common.scss */
.pager .limiter > label:after {
  content: ':';
}
/* line 1693, ../scss/core/_common.scss */
.pager .amount,
.pager .limiter,
.pager .pages {
  margin-bottom: 5px;
}

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

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

/* line 1715, ../scss/core/_common.scss */
.pages a,
.pages .current {
  display: inline-block;
  border: 0;
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
  line-height: 30px;
  width: 25px;
  height: 30px;
  padding: 0;
  color: #67C263;
}

/* line 1731, ../scss/core/_common.scss */
.pages a:hover {
  color: black;
}

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

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

/* line 1759, ../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 #67C263;
  border-right: none;
  top: 50%;
  margin-top: -3px;
  left: 50%;
  margin-left: -2px;
}
/* line 1766, ../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 #419c3d;
  border-right: none;
}

/* line 1772, ../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 #67C263;
  border-left: none;
  top: 50%;
  margin-top: -3px;
  left: 50%;
  margin-left: -2px;
}
/* line 1779, ../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 #419c3d;
  border-left: none;
}

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

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

  /* line 1796, ../scss/core/_common.scss */
  .sort-by label,
  .limiter label {
    display: none;
  }

  /* line 1801, ../scss/core/_common.scss */
  .toolbar {
    padding: 5px 5px 0;
  }
}
@media only screen and (max-width: 770px) {
  /* line 1809, ../scss/core/_common.scss */
  .col1-layout .sorter,
  .col1-layout .pager {
    width: 100%;
  }
  /* line 1814, ../scss/core/_common.scss */
  .col1-layout .pager {
    float: left;
    clear: both;
  }
  /* line 1818, ../scss/core/_common.scss */
  .col1-layout .pager .pages {
    float: left;
    margin-left: 0;
  }
  /* line 1823, ../scss/core/_common.scss */
  .col1-layout .pager .count-container {
    float: right;
  }
}
@media only screen and (max-width: 979px) {
  /* line 1835, ../scss/core/_common.scss */
  .col2-left-layout .pager,
  .col2-right-layout .pager,
  .col3-layout .pager {
    float: right;
    clear: both;
  }
  /* line 1839, ../scss/core/_common.scss */
  .col2-left-layout .pager .pages,
  .col2-right-layout .pager .pages,
  .col3-layout .pager .pages {
    float: left;
    margin-left: 0;
  }
  /* line 1844, ../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 1853, ../scss/core/_common.scss */
  .toolbar .view-mode > label {
    display: none;
  }
}
/* ============================================ *
 * Tax - Full Tax Summary
 * ============================================ */
/* line 1865, ../scss/core/_common.scss */
#checkout-review-table .summary-collapse,
#shopping-cart-totals-table .summary-collapse,
body.customer-account .data-table .summary-collapse {
  position: relative;
  cursor: pointer;
}
/* line 1869, ../scss/core/_common.scss */
#checkout-review-table .summary-collapse:before,
#shopping-cart-totals-table .summary-collapse:before,
body.customer-account .data-table .summary-collapse:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 7px solid #11B400;
  border-bottom: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}
/* line 1875, ../scss/core/_common.scss */
#checkout-review-table .summary-collapse:hover:before,
#shopping-cart-totals-table .summary-collapse:hover:before,
body.customer-account .data-table .summary-collapse:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 7px solid #419c3d;
  border-bottom: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}
/* line 1885, ../scss/core/_common.scss */
#checkout-review-table .show-details .summary-collapse:before,
#shopping-cart-totals-table .show-details .summary-collapse:before,
body.customer-account .data-table .show-details .summary-collapse:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #11B400;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}
/* line 1891, ../scss/core/_common.scss */
#checkout-review-table .show-details .summary-collapse:hover:before,
#shopping-cart-totals-table .show-details .summary-collapse:hover:before,
body.customer-account .data-table .show-details .summary-collapse:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #419c3d;
  border-top: none;
  position: static;
  display: inline-block;
  margin-right: 5px;
}

/* line 1903, ../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 1913, ../scss/core/_common.scss */
.a-center {
  text-align: center;
}

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

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

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

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

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

/* line 1943, ../scss/core/_common.scss */
.always-visible {
  display: block !important;
}

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

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

/* ============================================ *
 * Buttons
 * ============================================ */
/* line 1965, ../scss/core/_common.scss */
.btn-alternative {
  background: url("../images/a-arrow.png") no-repeat right 24px center #008752;
  border-radius: 2px;
  color: #FFFFFF;
  float: left;
  font-family: "Oswald", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  margin: 0 0 25px;
  padding: 12px 35px 12px 30px;
  text-transform: uppercase;
  text-align: center;
}
/* line 1977, ../scss/core/_common.scss */
.btn-alternative span {
  color: #FFFFFF;
}
/* line 1981, ../scss/core/_common.scss */
.btn-alternative:hover {
  text-decoration: none;
  opacity: 0.8;
  color: #FFFFFF;
}

/* line 1988, ../scss/core/_common.scss */
.btn-highlight {
  font-family: "Oswald", "Helvetica Neue", Verdana, Arial, sans-serif;
  background: url("../images/a-arrow.png") no-repeat right 14px center #E86403;
  border-radius: 2px;
  color: #FFF;
  float: left;
  font-size: 12px;
  margin: 0 0 25px;
  padding: 10px 25px 10px 15px;
  text-transform: uppercase;
  text-align: center;
}
/* line 2000, ../scss/core/_common.scss */
.btn-highlight span {
  color: #FFF;
}
/* line 2004, ../scss/core/_common.scss */
.btn-highlight:hover {
  text-decoration: none;
  opacity: 0.8;
  color: #FFF;
}

/* line 2011, ../scss/core/_common.scss */
.btn-highlight-squared {
  background-color: #E86403;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #FFF;
  float: left;
  font-size: 13px;
  margin: 0 0 25px;
  padding: 6px 15px 7px;
  text-transform: uppercase;
  text-align: center;
}
/* line 2022, ../scss/core/_common.scss */
.btn-highlight-squared:hover {
  background-color: #cf5903;
  text-decoration: none;
  color: #FFF;
}

/* ============================================ *
 * Custom Assembly icons
 * ============================================ */
/* line 2033, ../scss/core/_common.scss */
.custom-assembly-icons {
  float: left;
  width: 100%;
}
/* line 2037, ../scss/core/_common.scss */
.custom-assembly-icons > div {
  background-position: center 40px;
  background-repeat: no-repeat;
  border-right: 1px solid #ddd;
  display: inline-block;
  height: 230px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 120px;
  text-align: center;
  vertical-align: top;
  width: 24%;
  margin-top: 40px;
  margin-bottom: 20px;
}
/* line 2052, ../scss/core/_common.scss */
.custom-assembly-icons > div.ideas {
  background-image: url("../images/ideas.png");
}
/* line 2056, ../scss/core/_common.scss */
.custom-assembly-icons > div.talk {
  background-image: url("../images/talk.png");
}
/* line 2060, ../scss/core/_common.scss */
.custom-assembly-icons > div.design {
  background-image: url("../images/design.png");
}
/* line 2064, ../scss/core/_common.scss */
.custom-assembly-icons > div.create {
  background-image: url("../images/create.png");
  border-right: 0;
}
/* line 2070, ../scss/core/_common.scss */
.custom-assembly-icons h2 {
  color: #555;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
}
/* line 2077, ../scss/core/_common.scss */
.custom-assembly-icons p {
  color: #555;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* ============================================ *
 * Custom Common Styles
 * ============================================ */
/* line 2087, ../scss/core/_common.scss */
.link-highlight {
  color: #55bb51;
  background: url("../images/btn-arrow-green.png") no-repeat right 10px;
  padding-right: 8px;
}
/* line 2092, ../scss/core/_common.scss */
.link-highlight:hover {
  background: url("../images/btn-arrow-black.png") no-repeat right 10px;
}

/* ============================================ *
 * Global
 * ============================================ */
/* line 30, ../scss/layout/_global.scss */
html,
body {
  height: 100%;
}

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

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

/* line 47, ../scss/layout/_global.scss */
.page > div,
.page header {
  clear: both;
}

/* line 55, ../scss/layout/_global.scss */
.small-visible,
.medium-visible,
.mobile-visible,
.large-visible,
.xlarge-visible {
  display: none !important;
}

@media only screen and (max-width: 479px) {
  /* line 65, ../scss/layout/_global.scss */
  .xsmall-visible {
    display: block !important;
  }
}
@media only screen and (min-width: 600px) {
  /* line 71, ../scss/layout/_global.scss */
  .small-visible {
    display: block !important;
  }
}
@media only screen and (min-width: 771px) {
  /* line 77, ../scss/layout/_global.scss */
  .medium-visible {
    display: block !important;
  }
}
@media only screen and (min-width: 980px) {
  /* line 83, ../scss/layout/_global.scss */
  .large-visible {
    display: block !important;
  }
}
@media only screen and (min-width: 1200px) {
  /* line 89, ../scss/layout/_global.scss */
  .xlarge-visible {
    display: block !important;
  }
}
@media only screen and (max-width: 770px) {
  /* line 96, ../scss/layout/_global.scss */
  .mobile-hidden {
    display: none !important;
  }

  /* line 99, ../scss/layout/_global.scss */
  .mobile-visible {
    display: block !important;
  }
}
@media only screen and (min-width: 771px) {
  /* line 105, ../scss/layout/_global.scss */
  .desktop-hidden {
    display: none !important;
  }

  /* line 108, ../scss/layout/_global.scss */
  .desktop-visible {
    display: block !important;
  }
}
/* ============================================ *
 * Header
 * ============================================ */
@media only screen and (min-width: 771px) {
  /* line 32, ../scss/layout/_header.scss */
  .page-header-container, .sticky-header > div {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
  }

  /* line 38, ../scss/layout/_header.scss */
  .page-header {
    float: left;
    position: relative;
    width: 100%;
    padding-bottom: 15px;
  }
}
@media print {
  /* line 48, ../scss/layout/_header.scss */
  .sticky-header {
    visibility: hidden;
  }
}
/* line 53, ../scss/layout/_header.scss */
.header-language-container,
.page-header {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  z-index: 10;
}

/* ============================================ *
 * Language switcher + welcome message
 * ============================================ */
/* line 63, ../scss/layout/_header.scss */
.header-language-background {
  padding: 10px;
  background-color: #67C263;
  text-transform: uppercase;
}
/* line 68, ../scss/layout/_header.scss */
.header-language-background .header-language-container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
/* line 74, ../scss/layout/_header.scss */
.header-language-background:after {
  content: '';
  display: table;
  clear: both;
}
/* line 78, ../scss/layout/_header.scss */
.header-language-background .form-language,
.header-language-background .currency-switcher {
  float: left;
  margin-right: 10px;
}
/* line 84, ../scss/layout/_header.scss */
.header-language-background .welcome-msg {
  float: right;
}

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

@media only screen and (max-width: 479px) {
  /* line 103, ../scss/layout/_header.scss */
  .page-header-container .store-language-container {
    padding-top: 8px;
  }
  /* line 106, ../scss/layout/_header.scss */
  .page-header-container .store-language-container select {
    font-size: 12px;
  }
}
/* line 113, ../scss/layout/_header.scss */
.header-language-background,
.header-language-background a {
  color: #E6E6E6;
}

@media only screen and (max-width: 770px) {
  /* line 120, ../scss/layout/_header.scss */
  .header-language-background {
    display: none;
  }
}
/* ============================================ *
 * Logo
 * ============================================ */
/* line 129, ../scss/layout/_header.scss */
.logo {
  display: block;
  float: left;
  width: 65%;
  min-width: 100px;
  text-align: center;
  background: url("../images/logo.png") no-repeat;
  background-size: contain;
  max-width: 238px;
  min-height: 46px;
  padding: 0;
  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 129, ../scss/layout/_header.scss */
  .logo {
    background-image: url("../images/logo@2x.png");
  }
}
/* line 145, ../scss/layout/_header.scss */
.logo img {
  max-width: 100%;
  display: none;
}
/* line 150, ../scss/layout/_header.scss */
.logo .small {
  display: block;
}
/* line 153, ../scss/layout/_header.scss */
.logo .large {
  display: none;
}

/* line 158, ../scss/layout/_header.scss */
.logo:hover {
  opacity: 0.8;
}

/* ============================================ *
 * Skip Links
 * ============================================ */
/* line 166, ../scss/layout/_header.scss */
.skip-links {
  display: none;
  clear: both;
  overflow: hidden;
  width: 100%;
  float: right;
}

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

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

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

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

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

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

/* line 258, ../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 265, ../scss/layout/_header.scss */
  .skip-link .icon {
    margin-right: 3px;
  }
}
@media only screen and (min-width: 500px) {
  /* line 275, ../scss/layout/_header.scss */
  .skip-link .label {
    display: inline;
  }
}
/* ============================================ *
 * Skip Content
 * ============================================ */
/* line 285, ../scss/layout/_header.scss */
.skip-content {
  display: none;
}

/* line 289, ../scss/layout/_header.scss */
.skip-content.skip-active {
  display: block;
}

/* line 293, ../scss/layout/_header.scss */
header {
  position: absolute;
  z-index: 100000;
}

/* line 298, ../scss/layout/_header.scss */
.sticky-header {
  background: none;
  float: left;
  padding-bottom: 5px;
  padding-top: 10px;
  position: relative;
  width: 100%;
  z-index: 99999;
  box-shadow: 0 0 0 transparent;
  background-color: white;
}

/* ============================================ *
 * Global Header Navigation
 * ============================================ */
@media only screen and (max-width: 770px) {
  /* line 319, ../scss/layout/_header.scss */
  .skip-links {
    display: block;
  }

  /* line 323, ../scss/layout/_header.scss */
  #header-account li a,
  .nav-primary a.level0 {
    padding: 0 15px 0 25px;
    border-bottom: 1px solid #CCCCCC;
    text-align: left;
    color: #000;
    text-transform: uppercase;
    line-height: 30px;
  }

  /* line 333, ../scss/layout/_header.scss */
  #header-account li:last-child a,
  .nav-primary li.level0:last-child a.level0 {
    border-bottom: 0;
  }
}
/* line 340, ../scss/layout/_header.scss */
.account-cart-wrapper {
  position: absolute;
  top: 0px;
  right: 0px;
}
@media only screen and (max-width: 770px) {
  /* line 340, ../scss/layout/_header.scss */
  .account-cart-wrapper {
    position: static;
  }
}

/* line 350, ../scss/layout/_header.scss */
.top-info-wrapper {
  float: right;
  font-size: 13px;
  margin-top: 30px;
  position: relative;
  right: 0;
}
/* line 357, ../scss/layout/_header.scss */
.top-info-wrapper p {
  color: #666666;
}
/* line 361, ../scss/layout/_header.scss */
.top-info-wrapper a.login-link {
  color: black;
  font-weight: bold;
}
/* line 365, ../scss/layout/_header.scss */
.top-info-wrapper a.login-link:hover {
  color: #67c263;
}
/* line 370, ../scss/layout/_header.scss */
.top-info-wrapper > p,
.top-info-wrapper > a {
  display: inline-block;
  text-transform: uppercase;
  margin-left: 30px;
  float: right;
  font-size: 12px;
}
/* line 379, ../scss/layout/_header.scss */
.top-info-wrapper > span {
  float: right;
  margin-left: 20px;
}
/* line 384, ../scss/layout/_header.scss */
.top-info-wrapper .cart-link {
  color: black;
  font-weight: bold;
  margin-left: 20px;
  font-size: 15px;
}
/* line 390, ../scss/layout/_header.scss */
.top-info-wrapper .cart-link span {
  background-position: -1px -101px;
  background-repeat: no-repeat;
  display: block;
  float: left;
  height: 20px;
  margin-right: 7px;
  width: 22px;
}
/* line 400, ../scss/layout/_header.scss */
.top-info-wrapper .cart-link:hover {
  color: #67c263;
}
/* line 403, ../scss/layout/_header.scss */
.top-info-wrapper .cart-link:hover span {
  background-position: -51px -101px;
}
/* line 408, ../scss/layout/_header.scss */
.top-info-wrapper .cart-link.shopping-list-link span {
  background-position: 0 -749px;
}
/* line 411, ../scss/layout/_header.scss */
.top-info-wrapper .cart-link.shopping-list-link:hover span {
  background-position: -22px -749px;
}

@media only screen and (max-width: 770px) {
  /* line 419, ../scss/layout/_header.scss */
  header {
    position: relative;
    width: 100%;
  }
  /* line 423, ../scss/layout/_header.scss */
  header .page-header-container {
    margin-bottom: 0;
    float: left;
    width: 100%;
  }
  /* line 428, ../scss/layout/_header.scss */
  header .page-header-container .top-info-wrapper {
    border-bottom: 1px solid #DDDDDD;
    margin-top: 0;
    width: 100%;
  }

  /* line 438, ../scss/layout/_header.scss */
  .sticky-header .skip-link {
    width: 50%;
  }
  /* line 442, ../scss/layout/_header.scss */
  .sticky-header .skip-content.skip-active {
    float: left;
    margin-top: 0;
    width: 100%;
  }
  /* line 448, ../scss/layout/_header.scss */
  .sticky-header a.logo {
    float: none;
    margin: 0px auto 9px;
    width: 100%;
    clear: both;
  }
}
/* ============================================ *
 * Nav - Skip Link
 * ============================================ */
/* line 30, ../scss/layout/_header-nav.scss */
.skip-nav {
  width: 20%;
}
/* line 33, ../scss/layout/_header-nav.scss */
.skip-nav:not(.skip-active):hover {
  text-decoration: none;
}
/* line 36, ../scss/layout/_header-nav.scss */
.skip-nav:not(.skip-active):hover .icon {
  background-position: -46px 4px;
}

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

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

/* line 53, ../scss/layout/_header-nav.scss */
.sticky-header > div {
  position: relative;
}
/* line 56, ../scss/layout/_header-nav.scss */
.sticky-header > div:after {
  content: '';
  display: table;
  clear: both;
}

/* line 63, ../scss/layout/_header-nav.scss */
.nav-primary a.level0 {
  text-transform: uppercase;
  height: 100%;
  font-size: 14px;
}

/* line 70, ../scss/layout/_header-nav.scss */
a:hover img {
  opacity: 0.8;
}

@media only screen and (min-width: 771px) {
  /* line 76, ../scss/layout/_header-nav.scss */
  .skip-nav {
    display: none;
  }
}
/* line 82, ../scss/layout/_header-nav.scss */
#header-nav .technical-documents {
  float: left;
  width: 100% !important;
  border: 1px solid #cbcbcb;
  background-color: #E4E4E4;
  padding: 10px;
}
/* line 89, ../scss/layout/_header-nav.scss */
#header-nav .technical-documents > div {
  background: url("../images/bg-technical-documents.png") no-repeat scroll left top #3863af;
  padding: 35px 30px !important;
  width: 100% !important;
}
/* line 94, ../scss/layout/_header-nav.scss */
#header-nav .technical-documents > div h2 {
  color: white;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 24px;
  font-size: 36px;
  text-transform: none;
  width: 100%;
}
/* line 102, ../scss/layout/_header-nav.scss */
#header-nav .technical-documents > div ul {
  margin-left: 20px;
  width: 100%;
}
/* line 106, ../scss/layout/_header-nav.scss */
#header-nav .technical-documents > div ul li {
  color: white;
  font-size: 19px;
  margin-left: 20px;
  list-style: disc;
  font-weight: normal;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}
/* line 115, ../scss/layout/_header-nav.scss */
#header-nav .technical-documents > div a {
  background-color: white;
  color: #000;
  font-size: 22px;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  display: block;
  text-align: center;
  padding: 5px 50px;
  margin-top: 20px;
  margin-left: 20px;
  float: left;
  border-radius: 3px;
}
/* line 128, ../scss/layout/_header-nav.scss */
#header-nav .technical-documents > div a:hover {
  text-decoration: none;
  background-color: #666666;
  color: white;
}

/* ============================================ *
 * Nav - Skip Content
 * ============================================ */
@media only screen and (max-width: 770px) {
  /* line 143, ../scss/layout/_header-nav.scss */
  .sticky-header {
    padding-bottom: 0;
    height: auto !important;
    position: relative !important;
  }

  /* line 149, ../scss/layout/_header-nav.scss */
  .no-dropdown-mobile > ul {
    display: none !important;
  }
  /* line 153, ../scss/layout/_header-nav.scss */
  .no-dropdown-mobile > a:after {
    border: 0 !important;
  }

  /* line 159, ../scss/layout/_header-nav.scss */
  .page-header-container {
    margin-bottom: 20px;
  }
  /* line 162, ../scss/layout/_header-nav.scss */
  .page-header-container .skip-link .label {
    font-size: 11px;
  }
  /* line 166, ../scss/layout/_header-nav.scss */
  .page-header-container .top-info-wrapper {
    margin-top: 0;
    line-height: 43px;
    width: 60%;
  }
  /* line 171, ../scss/layout/_header-nav.scss */
  .page-header-container .top-info-wrapper > span {
    display: none !important;
  }
  /* line 175, ../scss/layout/_header-nav.scss */
  .page-header-container .top-info-wrapper > a, .page-header-container .top-info-wrapper > span, .page-header-container .top-info-wrapper > p {
    float: right;
    margin-left: 0;
    text-align: center;
    width: 33%;
    font-size: 11px;
    display: block;
    text-transform: uppercase;
    color: #333333;
  }
  /* line 186, ../scss/layout/_header-nav.scss */
  .page-header-container .top-info-wrapper p a {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  /* line 194, ../scss/layout/_header-nav.scss */
  .page-header-container .top-info-wrapper p {
    color: #333333;
  }
  /* line 198, ../scss/layout/_header-nav.scss */
  .page-header-container .top-info-wrapper a {
    border-right: 1px solid #DDDDDD;
  }
  /* line 201, ../scss/layout/_header-nav.scss */
  .page-header-container .top-info-wrapper a.login-link {
    font-weight: normal;
    color: #333333;
  }
  /* line 206, ../scss/layout/_header-nav.scss */
  .page-header-container .top-info-wrapper a.cart-link {
    font-weight: normal;
  }
  /* line 209, ../scss/layout/_header-nav.scss */
  .page-header-container .top-info-wrapper a.cart-link span {
    display: none;
  }
  /* line 214, ../scss/layout/_header-nav.scss */
  .page-header-container .top-info-wrapper a:hover {
    color: #666666;
  }
  /* line 220, ../scss/layout/_header-nav.scss */
  .page-header-container #header-nav {
    padding: 0;
    width: 100%;
  }
  /* line 224, ../scss/layout/_header-nav.scss */
  .page-header-container #header-nav .nav-primary li.level0 > a.level0 {
    padding: 0 5%;
  }
  /* line 229, ../scss/layout/_header-nav.scss */
  .page-header-container #header-search {
    width: 100%;
  }

  /* line 234, ../scss/layout/_header-nav.scss */
  .logo {
    float: none;
    margin: 0 auto;
    padding: 0;
    width: 258px;
  }

  /* line 241, ../scss/layout/_header-nav.scss */
  .skip-links {
    float: left;
    width: 100%;
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
    text-transform: uppercase;
  }

  /* line 249, ../scss/layout/_header-nav.scss */
  .skip-content.skip-active {
    float: left;
    margin-top: 20px;
  }
}
@media only screen and (min-width: 771px) {
  /* line 260, ../scss/layout/_header-nav.scss */
  #header-nav {
    display: block;
    float: right;
    margin-right: 10px;
  }

  /* line 266, ../scss/layout/_header-nav.scss */
  .page-header-container .top-info-wrapper p {
    float: left;
  }
}
/* ============================================ *
 * Nav Primary
 * ============================================ */
@media only screen and (min-width: 771px) {
  /* line 277, ../scss/layout/_header-nav.scss */
  .nav-primary {
    display: block;
    margin-top: 16px;
  }
}
/* ============================================ *
 * General Navigation Styles
 * ============================================ */
/* line 291, ../scss/layout/_header-nav.scss */
.nav-primary a {
  text-decoration: none;
  position: relative;
  display: block;
  color: #000;
  line-height: 30px;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}
/* line 300, ../scss/layout/_header-nav.scss */
.nav-primary li.level1 a {
  border-bottom: 1px solid #CCCCCC;
}

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

/* line 314, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div > img,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div > img {
  margin-bottom: 5px;
}
/* line 318, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div.left-menu-block,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div.left-menu-block {
  border-right: 1px solid #EDEDED;
}
/* line 321, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div.left-menu-block > .desktop-hidden,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div.left-menu-block > .desktop-hidden {
  background: transparent url("../images/btn-arrow-black.png") no-repeat scroll right center;
  color: #000;
  float: left;
  font-size: 14px;
  font-weight: bold;
  padding-right: 10px;
  width: auto;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}
/* line 332, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div.left-menu-block a:hover,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div.left-menu-block a:hover {
  opacity: 0.8;
}
/* line 335, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div.left-menu-block a:hover span,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div.left-menu-block a:hover span {
  color: #000;
}
/* line 338, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div.left-menu-block a:hover span.view-all,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div.left-menu-block a:hover span.view-all {
  color: #55bb51;
}
/* line 344, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div p,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div p {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 29px;
}
/* line 348, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div p a,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div p a {
  background: url("../images/btn-arrow-black.png") no-repeat scroll right center transparent;
  color: #333333;
  font-size: 14px;
  padding-right: 10px;
  font-weight: bold;
  display: inline-block;
  width: auto;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  float: none;
}
/* line 359, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div p a:hover,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div p a:hover {
  color: #55bb51;
  background-image: url("../images/btn-arrow-green.png");
  text-decoration: none;
}
/* line 367, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div h2,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div h2 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 30px;
  width: 100%;
}
/* line 374, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div a,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div a {
  float: left;
  width: 100%;
}
/* line 378, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div a span,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div a span {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 24px;
  font-size: 14px;
  float: left;
  width: 100%;
  color: black;
}
/* line 388, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div .category-link:hover span,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div .category-link:hover span {
  color: #55bb51 !important;
}
/* line 392, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div .view-all,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div .view-all {
  float: left;
  width: 100%;
}
/* line 396, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div .view-all span.arrow-right,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div .view-all span.arrow-right {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 24px;
  float: left;
  background: url("../images/btn-arrow-black.png") no-repeat scroll right center transparent;
  color: #333333;
  font-size: 14px;
  padding-right: 10px;
  font-weight: bold;
  width: auto;
}
/* line 408, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div .view-all:hover span,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div .view-all:hover span {
  color: #55bb51 !important;
}
/* line 411, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div .view-all:hover span.arrow-right,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div .view-all:hover span.arrow-right {
  color: #55bb51;
  background-image: url("../images/btn-arrow-green.png");
}
/* line 418, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div .featured-product,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div .featured-product {
  border: 1px solid #EDEDED;
  position: absolute;
  right: 40px;
  top: 120px;
  width: 170px;
  padding: 10px 20px;
  text-transform: uppercase;
}
/* line 427, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div .featured-product:hover,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div .featured-product:hover {
  opacity: 0.8;
}
/* line 430, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div .featured-product:hover span,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div .featured-product:hover span {
  color: #55bb51 !important;
  background-image: url("../images/btn-arrow-green.png") !important;
}
/* line 436, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div .featured-product img,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div .featured-product img {
  width: 100%;
}
/* line 440, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div .featured-product span.featured-product-name,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div .featured-product span.featured-product-name {
  background: url("../images/btn-arrow-black.png") no-repeat scroll right center transparent;
  color: #000;
  font-size: 13px;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}
/* line 448, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div .menu-products,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div .menu-products {
  width: 100%;
  float: left;
  background-color: white;
  position: relative;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}
/* line 458, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div .menu-products a,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div .menu-products a {
  float: left;
  width: 31%;
  padding-left: 3%;
  border-right: 1px solid #EDEDED;
  background-color: white;
}
/* line 465, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div .menu-products a:hover,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div .menu-products a:hover {
  opacity: 0.8;
}
/* line 468, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div .menu-products a:hover span,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div .menu-products a:hover span {
  color: #55bb51;
  background-image: url("../images/btn-arrow-green.png");
}
/* line 474, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div .menu-products a.first,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div .menu-products a.first {
  padding-left: 0;
}
/* line 478, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div .menu-products a.last,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div .menu-products a.last {
  border-right: 0;
}
/* line 482, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div .menu-products a span,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div .menu-products a span {
  text-transform: uppercase;
  background: url("../images/btn-arrow-black.png") no-repeat scroll right center transparent;
  color: #000;
  font-size: 13px;
  float: left;
  width: auto;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  padding-right: 10px;
  display: inline-block;
  margin-bottom: 30px;
}
/* line 495, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div .menu-products a img,
#header-nav .nav-primary > li.level0 > ul.menu-type-1 > li div .menu-products a img {
  clear: both;
}

/* line 504, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul {
  border: 0;
  width: 100%;
  display: none;
  padding: 20px 30px;
  top: 45px;
  background: url("../images/bg-dropdown.png") top center no-repeat white;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}
/* line 513, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul > li {
  padding-top: 20px;
  padding-bottom: 20px;
}
/* line 517, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul > li a:hover {
  color: #55bb51;
}

/* line 523, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div,
.main-container ul.menu-type-6 > li div,
#header-nav .nav-primary li.level0 > ul > li div {
  float: left;
  padding-left: 2%;
  padding-right: 2%;
  width: 50%;
  position: relative;
  padding-bottom: 10px;
}

/* line 534, ../scss/layout/_header-nav.scss */
ul.menu-type-6 > li div.right-menu-block {
  padding-bottom: 30px !important;
}

/* line 538, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0.nav-2 > ul > li div {
  padding-bottom: 0;
}

/* line 542, ../scss/layout/_header-nav.scss */
.main-container ul.menu-type-1 > li div:first-child {
  padding-left: 0;
}

@media only screen and (min-width: 771px) {
  /* line 548, ../scss/layout/_header-nav.scss */
  #header-nav {
    margin-bottom: -20px;
  }
}
/* line 554, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary > li {
  float: left;
  height: 50px;
}
/* line 562, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-2 > li div ul {
  border: 0 none;
  left: 0;
  padding: 0;
  position: relative;
  display: block;
  top: 0;
}
/* line 570, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-2 > li div ul li {
  float: left;
  width: 100%;
}
/* line 574, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-2 > li div ul li h2 {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 7px;
  font-size: 16px;
  color: black;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 10px;
}
/* line 584, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-2 > li div ul li a {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 24px;
  font-size: 14px;
  color: #333333;
  padding-left: 20px;
  margin-bottom: 2px;
}
/* line 596, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-2 > li a:hover {
  color: #55bb51;
}
/* line 605, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-3 > li div {
  width: 48%;
}
/* line 608, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-3 > li div img {
  float: left;
  margin-bottom: 20px;
  width: 100%;
  max-width: 540px;
}
/* line 615, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-3 > li div.left-menu-block.custom-assembly-icons {
  width: 52%;
  margin-bottom: 0;
}
/* line 619, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-3 > li div.left-menu-block.custom-assembly-icons div {
  background-position: center 30px;
  height: 250px;
  margin-top: 0px;
  margin-bottom: 40px;
  padding-top: 100px;
  width: 24%;
  float: none;
}
/* line 628, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-3 > li div.left-menu-block.custom-assembly-icons div h2 {
  color: #555;
  font-family: "Oswald",sans-serif;
  font-size: 16px;
}
/* line 634, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-3 > li div.left-menu-block.custom-assembly-icons div p {
  color: #555;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}
/* line 640, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-3 > li div.left-menu-block.custom-assembly-icons a.btn-highlight {
  display: block;
  margin: 0px auto;
  float: none;
  width: 170px;
}
/* line 646, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-3 > li div.left-menu-block.custom-assembly-icons a.btn-highlight span {
  background-image: url("../images/a-arrow.png");
  background-repeat: no-repeat;
  background-position: right 24px center;
  background-color: #018752;
  border-radius: 2px;
  color: #ffffff;
  float: left;
  font-size: 12px;
  margin: 0 0 25px;
  padding: 7px 45px 7px 40px;
  text-transform: uppercase;
}
/* line 659, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-3 > li div.left-menu-block.custom-assembly-icons a.btn-highlight span:hover {
  text-decoration: none;
  opacity: 0.8;
}
/* line 671, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-4 > li {
  padding-top: 5px;
}
/* line 674, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-4 > li div {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
/* line 679, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-4 > li div a {
  float: left;
  width: 100%;
}
/* line 683, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-4 > li div a:hover {
  opacity: 0.8;
}
/* line 686, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-4 > li div a:hover span {
  background-color: #666666;
  color: white;
  text-decoration: none;
}
/* line 693, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-4 > li div a img {
  float: left;
  margin-right: 4%;
  display: block;
  position: relative;
  padding: 5px;
  box-shadow: 0 2px 3px #eee;
  width: 22%;
}
/* line 702, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-4 > li div a img.last {
  margin-right: 0;
}
/* line 706, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-4 > li div a span {
  background-color: white;
  color: #000;
  font-size: 22px;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  border-radius: 3px;
  bottom: 20px;
  display: block;
  float: left;
  position: absolute;
  right: 0;
  text-align: center;
  left: 2%;
  padding: 7px 0 4px;
  width: 18%;
  margin: 0;
}
/* line 729, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-5 > li > div {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  background-color: transparent;
  position: relative;
  width: 33%;
}
/* line 735, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-5 > li > div h2 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 25px;
  width: 100%;
}
/* line 742, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-5 > li > div > p {
  margin-top: 10px;
  margin-bottom: 20px;
}
/* line 747, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-5 > li > div .btn-alternative {
  display: block;
  float: left;
  width: 170px;
}
/* line 753, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-5 > li > div a:not(.btn-alternative) {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}
/* line 757, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-5 > li > div.middle-menu-block {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding-left: 3%;
  padding-right: 3%;
}
/* line 764, ../scss/layout/_header-nav.scss */
#header-nav .nav-primary li.level0 > ul.menu-type-5 > li > div ul {
  display: block;
  float: left;
  position: relative;
  border: 0;
  background: transparent;
  margin: 0;
  padding: 0;
  top: 0;
}

/* line 780, ../scss/layout/_header-nav.scss */
#menu-services .left-menu-block .btn-alternative {
  display: block;
  float: none;
  margin: 0 auto;
  width: 170px;
}
/* line 786, ../scss/layout/_header-nav.scss */
#menu-services .left-menu-block .btn-alternative:hover {
  text-decoration: none !important;
}
/* line 789, ../scss/layout/_header-nav.scss */
#menu-services .left-menu-block .btn-alternative:hover span {
  color: #FFF;
  text-decoration: none;
}

/* line 797, ../scss/layout/_header-nav.scss */
#menu-company .middle-menu-block .btn-alternative:hover {
  text-decoration: none !important;
}
/* line 800, ../scss/layout/_header-nav.scss */
#menu-company .middle-menu-block .btn-alternative:hover span {
  color: #FFF;
  text-decoration: none;
}

/* line 807, ../scss/layout/_header-nav.scss */
.menu-active > ul {
  display: block !important;
}

/* ============================================ *
 * Small Viewports - Accordion Style Menu
 * ============================================ */
@media only screen and (max-width: 770px) {
  /* line 820, ../scss/layout/_header-nav.scss */
  .nav-primary a.level0,
  .nav-primary a {
    line-height: 35px;
  }
  /* line 826, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 li {
    padding: 0 0 0 25px;
  }
  /* line 830, ../scss/layout/_header-nav.scss */
  .nav-primary li.level1 a {
    padding: 0 15px 0 25px;
  }
  /* line 834, ../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 843, ../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 852, ../scss/layout/_header-nav.scss */
  .nav-primary li.menu-active > a,
  .nav-primary li.sub-menu-active > a {
    color: #67C263;
  }

  /* line 858, ../scss/layout/_header-nav.scss */
  #menu-services .left-menu-block .btn-alternative {
    margin-bottom: 60px;
  }
  /* line 861, ../scss/layout/_header-nav.scss */
  #menu-services .left-menu-block .btn-alternative:hover {
    background-color: #008752;
  }

  /* line 867, ../scss/layout/_header-nav.scss */
  #menu-company .middle-menu-block .btn-alternative:hover {
    background-color: #008752;
  }
}
/* ============================================ *
 * Large Viewports - Dropdown Menu
 * ============================================ */
@media only screen and (min-width: 771px) {
  /* line 880, ../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 882, ../scss/layout/_header-nav.scss */
  .nav-primary > li {
    padding: 0 20px;
  }
  /* line 886, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0,
  .nav-primary a.level0 {
    display: inline-block;
  }
  /* line 891, ../scss/layout/_header-nav.scss */
  .nav-primary li:last-child > a {
    border-bottom: none;
  }
  /* line 895, ../scss/layout/_header-nav.scss */
  .nav-primary a:hover,
  .nav-primary li:hover > a {
    color: #67C263;
  }
  /* line 900, ../scss/layout/_header-nav.scss */
  .nav-primary .menu-active {
    z-index: 200;
  }
  /* line 905, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 ul {
    background: #FBFBFB;
    border: solid 1px #CCCCCC;
    position: absolute;
    left: 0;
    top: 40px;
    /* Height of ".nav-primary a.level0" */
    z-index: 5000;
    width: 250px;
    padding-left: 10px;
    padding-right: 10px;
    display: none;
    /* Hide until displayed. */
  }
  /* line 918, ../scss/layout/_header-nav.scss */
  .nav-primary li.level1 ul {
    left: 60px;
    top: 15px;
  }
  /* line 924, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 ul.level0.position-test {
    display: block;
  }
  /* line 929, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 ul.level0.spill {
    right: 0;
    left: auto;
  }
  /* line 934, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 ul.level0.spill li.level1 ul {
    left: auto;
    right: 50px;
    top: 20px;
  }
  /* line 942, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 li.parent > a {
    position: relative;
  }
  /* line 945, ../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 956, ../scss/layout/_header-nav.scss */
.nav-primary li.menu-active > ul {
  display: block;
}

/* line 961, ../scss/layout/_header-nav.scss */
.nav-primary a {
  font-family: "Oswald", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/* line 966, ../scss/layout/_header-nav.scss */
.top-info-wrapper a:hover {
  color: black;
  text-decoration: none;
}

@media only screen and (max-width: 1199px) {
  /* line 977, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 {
    padding: 0 15px;
  }
  /* line 980, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 > a {
    font-size: 13px;
  }

  /* line 986, ../scss/layout/_header-nav.scss */
  #search {
    font-size: 13px;
  }
}
@media only screen and (max-width: 979px) {
  /* line 996, ../scss/layout/_header-nav.scss */
  .main-container ul.menu-type-1 div.left-menu-block,
  #header-nav .nav-primary li.level0 > ul.menu-type-1 > li div.left-menu-block {
    border-right: 0;
  }

  /* line 1002, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 {
    padding: 0 5px;
  }
  /* line 1005, ../scss/layout/_header-nav.scss */
  .nav-primary li.level0 > a {
    font-size: 13px;
  }

  /* line 1010, ../scss/layout/_header-nav.scss */
  .technical-documents {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 770px) {
  /* line 1020, ../scss/layout/_header-nav.scss */
  .main-container ul.menu-type-1 > li div,
  #header-nav .nav-primary li.level0 > ul > li div {
    float: left;
    width: 100%;
  }
  /* line 1025, ../scss/layout/_header-nav.scss */
  .main-container ul.menu-type-1 > li div.left-menu-block,
  #header-nav .nav-primary li.level0 > ul > li div.left-menu-block {
    border-right: 0;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  /* line 1032, ../scss/layout/_header-nav.scss */
  .main-container ul.menu-type-1,
  #header-nav .nav-primary li.level0 > ul.menu-type-1 {
    padding-top: 0;
    margin-top: 0;
    padding-bottom: 25px;
    margin-bottom: 0;
  }
  /* line 1041, ../scss/layout/_header-nav.scss */
  .main-container ul.menu-type-1 > li div.left-menu-block,
  #header-nav .nav-primary li.level0 > ul.menu-type-1 > li div.left-menu-block {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border: 0px;
  }
  /* line 1046, ../scss/layout/_header-nav.scss */
  .main-container ul.menu-type-1 > li div .menu-products a,
  #header-nav .nav-primary li.level0 > ul.menu-type-1 > li div .menu-products a {
    margin-top: 10px;
    padding-left: 0;
    max-width: 130px;
  }
  /* line 1051, ../scss/layout/_header-nav.scss */
  .main-container ul.menu-type-1 > li div .menu-products a span,
  #header-nav .nav-primary li.level0 > ul.menu-type-1 > li div .menu-products a span {
    line-height: 16px;
    padding-left: 6px;
    min-height: 40px;
    padding-bottom: 0;
    margin-bottom: 10px;
    background-position: right 3px;
  }
  /* line 1061, ../scss/layout/_header-nav.scss */
  .main-container ul.menu-type-1 > li div .menu-products a.first span,
  #header-nav .nav-primary li.level0 > ul.menu-type-1 > li div .menu-products a.first span {
    padding-left: 0;
  }
  /* line 1066, ../scss/layout/_header-nav.scss */
  .main-container ul.menu-type-1 > li div .menu-products a img,
  #header-nav .nav-primary li.level0 > ul.menu-type-1 > li div .menu-products a img {
    clear: both;
    max-width: 110px;
    padding-left: 6px;
    width: 91%;
  }

  /* line 1078, ../scss/layout/_header-nav.scss */
  #header-nav .nav-primary li.level0 {
    float: left;
    width: 100%;
    margin: 0;
    height: auto;
  }
  /* line 1084, ../scss/layout/_header-nav.scss */
  #header-nav .nav-primary li.level0 > a.level0 {
    float: left;
    width: 100%;
    padding: 5px 0 3px 25px;
  }
  /* line 1089, ../scss/layout/_header-nav.scss */
  #header-nav .nav-primary li.level0 > ul {
    float: left;
    background-image: none;
    padding: 25px;
    box-shadow: 0 0 0;
    border-bottom: 1px solid #CCCCCC;
  }
  /* line 1096, ../scss/layout/_header-nav.scss */
  #header-nav .nav-primary li.level0 > ul li {
    padding-left: 0;
  }
  /* line 1099, ../scss/layout/_header-nav.scss */
  #header-nav .nav-primary li.level0 > ul li div {
    padding-left: 0;
    padding-right: 0;
  }
  /* line 1104, ../scss/layout/_header-nav.scss */
  #header-nav .nav-primary li.level0 > ul li div ul li {
    padding: 0;
  }
  /* line 1111, ../scss/layout/_header-nav.scss */
  #header-nav .nav-primary li.level0.last {
    border-bottom: 1px solid #DDD;
  }
  /* line 1114, ../scss/layout/_header-nav.scss */
  #header-nav .nav-primary li.level0 > ul.menu-type-2 {
    margin: 0;
    border-bottom: 0;
  }
  /* line 1118, ../scss/layout/_header-nav.scss */
  #header-nav .nav-primary li.level0 > ul.menu-type-2 li {
    padding-top: 0;
  }
  /* line 1123, ../scss/layout/_header-nav.scss */
  #header-nav .nav-primary li.level0 > ul.menu-type-3 {
    margin: 0;
  }
  /* line 1127, ../scss/layout/_header-nav.scss */
  #header-nav .nav-primary li.level0 > ul.menu-type-3 > li div {
    width: 100% !important;
  }
  /* line 1130, ../scss/layout/_header-nav.scss */
  #header-nav .nav-primary li.level0 > ul.menu-type-3 > li div.left-menu-block {
    width: 100%;
    padding-bottom: 0;
    border: 0;
    margin-bottom: 0;
  }
  /* line 1137, ../scss/layout/_header-nav.scss */
  #header-nav .nav-primary li.level0 > ul.menu-type-3 > li div img {
    max-width: 560px;
    margin: 5px auto;
    float: none;
  }
  /* line 1150, ../scss/layout/_header-nav.scss */
  #header-nav .nav-primary li.level0 > ul.menu-type-4 > li div a img {
    margin-bottom: 20px;
    margin-left: 2%;
    margin-right: 2%;
    width: 46%;
  }
  /* line 1156, ../scss/layout/_header-nav.scss */
  #header-nav .nav-primary li.level0 > ul.menu-type-4 > li div a span {
    font-size: 14px;
    bottom: 40px;
    z-index: 9999;
    left: 5%;
    width: 40%;
  }
  /* line 1168, ../scss/layout/_header-nav.scss */
  #header-nav .nav-primary li.level0 > ul.menu-type-5 > li {
    padding-top: 0;
  }
  /* line 1171, ../scss/layout/_header-nav.scss */
  #header-nav .nav-primary li.level0 > ul.menu-type-5 > li div {
    width: 100%;
    margin-bottom: 25px;
  }
  /* line 1175, ../scss/layout/_header-nav.scss */
  #header-nav .nav-primary li.level0 > ul.menu-type-5 > li div .btn-alternative {
    margin-bottom: 0;
  }
  /* line 1179, ../scss/layout/_header-nav.scss */
  #header-nav .nav-primary li.level0 > ul.menu-type-5 > li div h2 {
    margin-bottom: 15px;
  }
  /* line 1183, ../scss/layout/_header-nav.scss */
  #header-nav .nav-primary li.level0 > ul.menu-type-5 > li div.middle-menu-block {
    border-left: 0;
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  /* line 1194, ../scss/layout/_header-nav.scss */
  #header-nav .nav-primary li.level0 > ul.menu-type-5 > li > div a:not(.btn-alternative) {
    line-height: 27px;
  }

  /* line 1202, ../scss/layout/_header-nav.scss */
  #nav .nav-primary {
    margin: 0 !important;
  }
  /* line 1205, ../scss/layout/_header-nav.scss */
  #nav .nav-primary li.menu-active > a {
    color: black;
  }
  /* line 1209, ../scss/layout/_header-nav.scss */
  #nav .nav-primary > li.level0.last > a.level0 {
    border-bottom: 1px solid #CCCCCC;
  }

  /* line 1213, ../scss/layout/_header-nav.scss */
  #featured-products ul li.first img {
    padding-right: 20px;
    width: 100%;
  }

  /* line 1218, ../scss/layout/_header-nav.scss */
  .technical-documents > div ul {
    margin-left: 0;
  }
  /* line 1221, ../scss/layout/_header-nav.scss */
  .technical-documents > div ul li {
    font-size: 17px;
  }
  /* line 1225, ../scss/layout/_header-nav.scss */
  .technical-documents > div h2 {
    font-size: 30px;
    line-height: 32px;
  }
  /* line 1229, ../scss/layout/_header-nav.scss */
  .technical-documents > div a {
    margin-left: 0;
  }
}
/* ============================================ *
 * Search - Skip Link
 * ============================================ */
/* line 33, ../scss/layout/_header-search.scss */
.skip-search:not(.skip-active):hover .icon {
  background-position: -46px -146px;
}
/* line 38, ../scss/layout/_header-search.scss */
.skip-search .icon {
  background-position: 4px -146px;
}

@media only screen and (min-width: 771px) {
  /* line 48, ../scss/layout/_header-search.scss */
  .skip-search {
    display: none;
  }
}
/* ============================================ *
 * Search - Skip Content
 * ============================================ */
/* line 58, ../scss/layout/_header-search.scss */
#header-search {
  padding: 20px;
}

@media only screen and (min-width: 771px) {
  /* line 66, ../scss/layout/_header-search.scss */
  #header-search {
    display: block;
    float: right;
    height: auto;
    margin-top: 17px;
    padding: 0;
    position: relative;
    width: 24%;
  }
}
@media only screen and (max-width: 979px) {
  /* line 82, ../scss/layout/_header-search.scss */
  #header-search {
    width: 20%;
  }
}
@media only screen and (max-width: 770px) {
  /* line 92, ../scss/layout/_header-search.scss */
  #header-search {
    width: 100%;
  }
}
/* ============================================ *
 * Search Input
 * ============================================ */
/* line 102, ../scss/layout/_header-search.scss */
#search_mini_form .input-box {
  position: relative;
  padding-top: 0;
}

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

/* line 111, ../scss/layout/_header-search.scss */
#search {
  border-radius: 4px;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #000;
  font-size: 14px;
  font-style: italic;
  height: 26px;
  padding-right: 40px;
  width: 100%;
  padding-top: 0;
}

/* line 123, ../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 134, ../scss/layout/_header-search.scss */
#search_mini_form .search-button:before {
  background: url("../images/icon-search.png") repeat scroll 0 0 transparent;
  content: "";
  height: 15px;
  left: 50%;
  margin-left: -2px;
  margin-top: -14px;
  position: absolute;
  top: 50%;
  width: 15px;
}

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

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

/* ============================================ *
 * Header - Account
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Account
 */
/* line 37, ../scss/layout/_header-account.scss */
.skip-account:not(.skip-active):hover .icon {
  background-position: -46px -44px;
}
/* line 42, ../scss/layout/_header-account.scss */
.skip-account .icon {
  background-position: 4px -44px;
}

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

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

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

  /* line 81, ../scss/layout/_header-account.scss */
  #header-account a:hover {
    color: #67C263;
  }
}
/* -------------------------------------------- *
 * Account Links
 */
/* line 91, ../scss/layout/_header-account.scss */
#header-account {
  padding: 5px 0;
}

/* line 95, ../scss/layout/_header-account.scss */
#header-account a {
  position: relative;
  display: block;
  padding: 5px 10px;
  line-height: 23px;
  text-align: center;
}

/* line 103, ../scss/layout/_header-account.scss */
#header-account a:hover {
  color: #67C263;
}

/* ============================================ *
 * Header - Cart
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Cart
 */
/* line 36, ../scss/layout/_header-cart.scss */
.skip-cart:not(.skip-active):hover .icon {
  background-position: -50px -95px;
}
/* line 41, ../scss/layout/_header-cart.scss */
.skip-cart .icon {
  background-position: 0px -95px;
}

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

  /* line 59, ../scss/layout/_header-cart.scss */
  #header-cart.skip-active {
    background: #FBFBFB;
    border: solid 1px #CCCCCC;
    display: block;
    position: absolute;
    z-index: 200;
    top: 40px;
    right: 0;
    width: 320px;
    background: white;
  }
}
/* -------------------------------------------- *
 * Skip Cart Notifier
 */
/* line 76, ../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(103, 194, 99, 0.9);
  color: #FFFFFF;
  font-size: 11px;
  line-height: 22px;
  text-align: center;
}

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

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

@media only screen and (max-width: 499px) {
  /* line 103, ../scss/layout/_header-cart.scss */
  .skip-cart .count {
    margin-left: -12px;
  }
}
@media only screen and (min-width: 771px) {
  /* line 109, ../scss/layout/_header-cart.scss */
  .skip-cart {
    color: #67C263;
    text-transform: uppercase;
  }
  /* line 113, ../scss/layout/_header-cart.scss */
  .skip-cart:hover {
    text-decoration: none;
  }
  /* line 117, ../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: 14px;
    width: auto;
  }
  /* line 125, ../scss/layout/_header-cart.scss */
  .skip-cart .count:before {
    content: '(';
  }
  /* line 128, ../scss/layout/_header-cart.scss */
  .skip-cart .count:after {
    content: ')';
  }

  /* line 133, ../scss/layout/_header-cart.scss */
  .skip-cart .count,
  .skip-link.skip-active .count {
    color: #67C263;
  }
}
/* line 139, ../scss/layout/_header-cart.scss */
.skip-cart .count.empty {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

/* line 213, ../scss/layout/_header-cart.scss */
.mini-cart-list .has-options {
  margin-bottom: 0;
  color: #666666;
  font-size: 12px;
}

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

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

/* line 40, ../scss/layout/_footer.scss */
.footer h2,
.footer a {
  color: #666666;
}
/* line 44, ../scss/layout/_footer.scss */
.footer a:hover {
  text-decoration: underline;
}

/* line 50, ../scss/layout/_footer.scss */
#footer-actions {
  background: #EDEDED;
  color: #666666;
  float: left;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}
/* line 58, ../scss/layout/_footer.scss */
#footer-actions p {
  display: block;
  font-size: 16px;
  margin: 0 auto;
  width: 80%;
}
/* line 65, ../scss/layout/_footer.scss */
#footer-actions > div > ul {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
  display: table;
}
/* line 72, ../scss/layout/_footer.scss */
#footer-actions > div > ul > li {
  float: none;
  width: 23%;
  text-align: center;
  list-style: none;
  padding: 0;
  margin: 0 5%;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  display: table-cell;
  position: relative;
}
/* line 83, ../scss/layout/_footer.scss */
#footer-actions > div > ul > li h2 {
  font-family: "Oswald", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #666666;
  letter-spacing: 2px;
  font-size: 18px;
}
/* line 90, ../scss/layout/_footer.scss */
#footer-actions > div > ul > li > div {
  float: left;
  width: 100%;
}
/* line 94, ../scss/layout/_footer.scss */
#footer-actions > div > ul > li > div > div {
  float: none;
  margin: 0 auto;
}
/* line 99, ../scss/layout/_footer.scss */
#footer-actions > div > ul > li > div a {
  font-family: "Oswald", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  background-color: #FFFFFF;
  letter-spacing: 5px;
  display: inline-block;
  width: auto;
  font-size: 15px;
  margin: 28px auto 0;
  padding: 12px 15px 12px 16px;
  border-radius: 2px;
  position: relative;
  color: #666666;
  float: none;
  bottom: 0;
}
/* line 115, ../scss/layout/_footer.scss */
#footer-actions > div > ul > li > div a span {
  background: url("../images/btn-arrow.png") center right no-repeat;
  padding-right: 10px;
}
/* line 120, ../scss/layout/_footer.scss */
#footer-actions > div > ul > li > div a:hover {
  background-color: #E6E6E6;
  text-decoration: none;
}
/* line 127, ../scss/layout/_footer.scss */
#footer-actions > div > ul > li ul {
  float: left;
  width: 100%;
}
/* line 131, ../scss/layout/_footer.scss */
#footer-actions > div > ul > li ul li {
  float: left;
  font-size: 16px;
  line-height: 26px;
  list-style: inside none disc;
  margin: 0;
  width: 100%;
}

/* line 144, ../scss/layout/_footer.scss */
#footer-actions > ul > li {
  width: 100%;
  float: left;
  margin: 70px 0 0 0;
}

/* line 150, ../scss/layout/_footer.scss */
.footer-container .footer-links > ul {
  float: left;
  text-align: center;
  width: 100%;
}
/* line 155, ../scss/layout/_footer.scss */
.footer-container .footer-links > ul.products-links {
  width: 100%;
}

/* line 161, ../scss/layout/_footer.scss */
#footer-banners ul {
  float: left;
  width: 100%;
  display: table;
  margin-top: 60px;
  margin-bottom: 50px;
  height: 400px;
}
/* line 169, ../scss/layout/_footer.scss */
#footer-banners ul li {
  float: none;
  width: 23%;
  list-style: none;
  padding-right: 20px;
  vertical-align: top;
  display: table-cell;
  height: 100%;
}
/* line 178, ../scss/layout/_footer.scss */
#footer-banners ul li.main-banner {
  width: 26%;
}
/* line 183, ../scss/layout/_footer.scss */
#footer-banners ul li a:hover {
  opacity: 0.8;
}
/* line 187, ../scss/layout/_footer.scss */
#footer-banners ul li a span {
  color: black;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}
/* line 193, ../scss/layout/_footer.scss */
#footer-banners ul li > * {
  position: relative;
  float: left;
  width: 100%;
}
/* line 199, ../scss/layout/_footer.scss */
#footer-banners ul li img {
  width: 100%;
}
/* line 203, ../scss/layout/_footer.scss */
#footer-banners ul li.first {
  padding-left: 0;
}
/* line 206, ../scss/layout/_footer.scss */
#footer-banners ul li.first img {
  padding-right: 20px;
}
/* line 210, ../scss/layout/_footer.scss */
#footer-banners ul li.last {
  padding-right: 0;
  border-right: 0;
}
/* line 214, ../scss/layout/_footer.scss */
#footer-banners ul li.last img {
  padding-left: 0;
  padding-right: 20px;
}
/* line 219, ../scss/layout/_footer.scss */
#footer-banners ul li iframe {
  width: 100%;
  height: 100%;
}
/* line 223, ../scss/layout/_footer.scss */
#footer-banners ul li > a.non-dynamic-height {
  color: white;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  display: inline-block;
  overflow: hidden;
  float: left;
  width: 100%;
}
/* line 233, ../scss/layout/_footer.scss */
#footer-banners ul li > a.non-dynamic-height > img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
}
/* line 241, ../scss/layout/_footer.scss */
#footer-banners ul li > a.non-dynamic-height.full-height {
  height: 100%;
  margin-bottom: 0;
}
/* line 246, ../scss/layout/_footer.scss */
#footer-banners ul li > a.non-dynamic-height h2, #footer-banners ul li > a.non-dynamic-height h3, #footer-banners ul li > a.non-dynamic-height h4 {
  width: 100%;
  color: white;
}
/* line 251, ../scss/layout/_footer.scss */
#footer-banners ul li > a.non-dynamic-height h2 {
  position: absolute;
  background: url("../images/bg-shadow.png") repeat scroll left top transparent;
  bottom: -9px;
  left: 0;
  font-size: 18px;
  height: 38px;
  padding-top: 9px;
}
/* line 261, ../scss/layout/_footer.scss */
#footer-banners ul li > a.non-dynamic-height > div {
  bottom: 0;
  height: 90px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}
/* line 271, ../scss/layout/_footer.scss */
#footer-banners ul li > a.non-dynamic-height.dual-main-top, #footer-banners ul li > a.non-dynamic-height.dual-main-bottom {
  height: 70%;
  margin-bottom: 5%;
}
/* line 276, ../scss/layout/_footer.scss */
#footer-banners ul li > a.non-dynamic-height.dual-secondary-top, #footer-banners ul li > a.non-dynamic-height.dual-secondary-bottom {
  height: 25%;
}
/* line 280, ../scss/layout/_footer.scss */
#footer-banners ul li > a.non-dynamic-height.dual-main-bottom, #footer-banners ul li > a.non-dynamic-height.dual-secondary-bottom {
  margin-bottom: 0;
  padding: 0;
}
/* line 285, ../scss/layout/_footer.scss */
#footer-banners ul li > a.non-dynamic-height.dual-secondary-bottom {
  padding-bottom: 3px;
  box-sizing: unset;
}
/* line 290, ../scss/layout/_footer.scss */
#footer-banners ul li > a.non-dynamic-height h3 {
  font-size: 29px;
  line-height: 29px;
  margin-top: 5px;
  margin-bottom: 5px;
}
/* line 297, ../scss/layout/_footer.scss */
#footer-banners ul li > a.non-dynamic-height h4 {
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 5px;
  margin-top: 5px;
}
/* line 304, ../scss/layout/_footer.scss */
#footer-banners ul li > a.dynamic-height {
  color: white;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  display: inline-block;
  overflow: hidden;
  height: 26%;
}
/* line 313, ../scss/layout/_footer.scss */
#footer-banners ul li > a.dynamic-height span {
  font-family: "Oswald", "Helvetica Neue", Verdana, Arial, sans-serif;
  width: 100%;
  color: white;
  float: left;
}
/* line 320, ../scss/layout/_footer.scss */
#footer-banners ul li > a.dynamic-height span.h3 {
  font-size: 29px;
  line-height: 29px;
  margin-top: 5px;
  margin-bottom: 5px;
}
/* line 327, ../scss/layout/_footer.scss */
#footer-banners ul li > a.dynamic-height span.h4 {
  font-weight: normal;
  font-size: 14px;
  margin-bottom: 5px;
  margin-top: 5px;
}
/* line 334, ../scss/layout/_footer.scss */
#footer-banners ul li > a.dynamic-height > span {
  bottom: 0;
  height: 70px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}

/* line 348, ../scss/layout/_footer.scss */
.footer-container {
  padding-top: 0;
  background: #e3e3e3;
  float: left;
  width: 100%;
}
/* line 354, ../scss/layout/_footer.scss */
.footer-container address {
  padding-right: 15px;
}
/* line 358, ../scss/layout/_footer.scss */
.footer-container > .footer {
  float: left;
  position: relative;
  width: 100%;
  /* -------------------------------------------- *
   * Social icons
   */
}
/* line 363, ../scss/layout/_footer.scss */
.footer-container > .footer > div,
.footer-container > .footer #footer-actions > div,
.footer-container > .footer .footer-links,
.footer-container > .footer address {
  max-width: 1200px;
  margin: 0 auto;
  clear: both;
  position: relative;
  padding: 15px;
}
/* line 375, ../scss/layout/_footer.scss */
.footer-container > .footer #footer-actions {
  max-width: 10000px;
}
/* line 379, ../scss/layout/_footer.scss */
.footer-container > .footer .social-links {
  margin-bottom: 15px;
  margin-top: 20px;
  position: absolute;
  right: 15px;
  top: 0;
}
@media only screen and (max-width: 479px) {
  /* line 358, ../scss/layout/_footer.scss */
  .footer-container > .footer {
    padding-top: 15px;
  }
}
/* line 391, ../scss/layout/_footer.scss */
.footer-container > .footer .block-title {
  border-bottom: 0;
  padding: 3px 0;
}
/* line 396, ../scss/layout/_footer.scss */
.footer-container > .footer .block-title strong {
  font-weight: normal;
}
/* line 400, ../scss/layout/_footer.scss */
.footer-container > .footer .block-title {
  color: #11B400;
}
/* line 404, ../scss/layout/_footer.scss */
.footer-container > .footer .links {
  float: left;
  width: 17%;
  padding: 0 30px 0 0;
  margin-bottom: 30px;
}
/* line 410, ../scss/layout/_footer.scss */
.footer-container > .footer .links li {
  word-break: break-all;
  line-height: 1.4;
  padding: 4px 0;
}
/* line 416, ../scss/layout/_footer.scss */
.footer-container > .footer .links a {
  color: #666666;
}
/* line 418, ../scss/layout/_footer.scss */
.footer-container > .footer .links a:hover {
  color: #67C263;
}
/* line 424, ../scss/layout/_footer.scss */
.footer-container > .footer .block-subscribe {
  float: right;
  width: 320px;
  margin-bottom: 30px;
}
/* line 430, ../scss/layout/_footer.scss */
.footer-container > .footer .links,
.footer-container > .footer .block-subscribe {
  text-transform: uppercase;
  font-size: 12px;
}
/* line 436, ../scss/layout/_footer.scss */
.footer-container > .footer .form-subscribe-header {
  display: none;
}
/* line 444, ../scss/layout/_footer.scss */
.footer-container > .footer .links.social-media em {
  background-image: url(../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 454, ../scss/layout/_footer.scss */
  .footer-container > .footer .links.social-media em {
    background-image: url(../images/social_icons@2x.png);
    background-size: 50px 125px;
  }
}
/* line 461, ../scss/layout/_footer.scss */
.footer-container > .footer .links.social-media em.facebook {
  background-position: 0 -0px;
  height: 13px;
}
/* line 466, ../scss/layout/_footer.scss */
.footer-container > .footer .links.social-media a:hover em.facebook {
  background-position: -25px -0px;
}
/* line 461, ../scss/layout/_footer.scss */
.footer-container > .footer .links.social-media em.twitter {
  background-position: 0 -24px;
  height: 13px;
}
/* line 466, ../scss/layout/_footer.scss */
.footer-container > .footer .links.social-media a:hover em.twitter {
  background-position: -25px -24px;
}
/* line 461, ../scss/layout/_footer.scss */
.footer-container > .footer .links.social-media em.youtube {
  background-position: 0 -49px;
  height: 13px;
}
/* line 466, ../scss/layout/_footer.scss */
.footer-container > .footer .links.social-media a:hover em.youtube {
  background-position: -25px -49px;
}
/* line 461, ../scss/layout/_footer.scss */
.footer-container > .footer .links.social-media em.pinterest {
  background-position: 0 -74px;
  height: 15px;
}
/* line 466, ../scss/layout/_footer.scss */
.footer-container > .footer .links.social-media a:hover em.pinterest {
  background-position: -25px -74px;
}
/* line 461, ../scss/layout/_footer.scss */
.footer-container > .footer .links.social-media em.rss {
  background-position: 0 -99px;
  height: 13px;
}
/* line 466, ../scss/layout/_footer.scss */
.footer-container > .footer .links.social-media a:hover em.rss {
  background-position: -25px -99px;
}
/* line 479, ../scss/layout/_footer.scss */
.footer-container > .footer .block-subscribe .input-box {
  float: left;
  width: 65.625%;
  padding-top: 0;
}
/* line 485, ../scss/layout/_footer.scss */
.footer-container > .footer .block-subscribe .input-text {
  width: 100%;
  border-right: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
/* line 491, ../scss/layout/_footer.scss */
.footer-container > .footer .block-subscribe .block-content {
  padding-top: 7px;
}
/* line 494, ../scss/layout/_footer.scss */
.footer-container > .footer .block-subscribe .block-content:after {
  content: '';
  display: table;
  clear: both;
}
/* line 499, ../scss/layout/_footer.scss */
.footer-container > .footer .block-subscribe .actions {
  float: left;
  width: 34.375%;
  margin: 0;
}
/* line 505, ../scss/layout/_footer.scss */
.footer-container > .footer .block-subscribe .actions .button {
  height: 30px;
  line-height: 17px;
  float: left;
}
/* line 511, ../scss/layout/_footer.scss */
.footer-container > .footer .bugs,
.footer-container > .footer address {
  clear: both;
}
/* line 516, ../scss/layout/_footer.scss */
.footer-container > .footer .bugs {
  display: none;
}
/* line 520, ../scss/layout/_footer.scss */
.footer-container > .footer .form-language,
.footer-container > .footer .currency-switcher,
.footer-container > .footer .store-switcher {
  clear: both;
  margin-bottom: 10px;
}
/* line 527, ../scss/layout/_footer.scss */
.footer-container > .footer .form-language,
.footer-container > .footer .currency-switcher {
  display: none;
}
/* line 532, ../scss/layout/_footer.scss */
.footer-container > .footer address {
  font-size: 11px;
  color: #666666;
  margin: 40px auto 45px;
  padding: 0 15px 0 0;
  text-align: right;
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  /* line 545, ../scss/layout/_footer.scss */
  .footer-container > .footer .links {
    width: 22.65625%;
    padding-right: 0;
    margin-right: 3.125%;
  }
  /* line 551, ../scss/layout/_footer.scss */
  .footer-container > .footer .links:nth-child(4) {
    margin-right: 0;
  }
  /* line 555, ../scss/layout/_footer.scss */
  .footer-container > .footer .block-subscribe {
    clear: both;
    float: none;
    margin: 0 auto 30px auto;
  }
}
@media only screen and (max-width: 599px) {
  /* line 566, ../scss/layout/_footer.scss */
  .footer-container > .footer .links {
    width: 48.4375%;
    margin-right: 0;
  }
  /* line 571, ../scss/layout/_footer.scss */
  .footer-container > .footer .links:nth-child(odd) {
    margin-right: 3.125%;
    clear: both;
  }
  /* line 576, ../scss/layout/_footer.scss */
  .footer-container > .footer .block-subscribe {
    clear: both;
    float: left;
    width: 100%;
  }
}
/* line 586, ../scss/layout/_footer.scss */
.footer-container .footer-links > div {
  float: left;
  width: 100%;
  padding-top: 25px;
}
/* line 592, ../scss/layout/_footer.scss */
.footer-container .footer-links h2 {
  font-family: "Oswald", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  float: left;
  width: 100%;
  line-height: 20px;
}
/* line 599, ../scss/layout/_footer.scss */
.footer-container .footer-links > ul {
  float: left;
  margin-bottom: 0;
  margin-top: 40px;
  width: 18%;
  border-right: 1px solid #CCCCCC;
  margin-right: 2%;
  min-height: 190px;
}
/* line 608, ../scss/layout/_footer.scss */
.footer-container .footer-links > ul:last-child {
  border-right: 0;
}
/* line 612, ../scss/layout/_footer.scss */
.footer-container .footer-links > ul li {
  width: 100%;
  font-size: 12px;
}
/* line 617, ../scss/layout/_footer.scss */
.footer-container .footer-links > ul li a span {
  font-family: "Oswald", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #666666;
  font-size: 14px;
  font-weight: normal;
  float: left;
  width: 100%;
  text-transform: uppercase;
  margin-bottom: 20px;
}
/* line 630, ../scss/layout/_footer.scss */
.footer-container .footer-links > ul.products-links {
  border-right: 1px solid #CCCCCC;
  margin-right: 2%;
  width: 38%;
}
/* line 636, ../scss/layout/_footer.scss */
.footer-container .footer-links > ul.products-links > li h2 {
  text-align: center;
  margin-bottom: 20px;
  font-family: "Oswald", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 20px;
}
/* line 644, ../scss/layout/_footer.scss */
.footer-container .footer-links > ul.products-links ul {
  float: left;
  width: 50%;
}
/* line 648, ../scss/layout/_footer.scss */
.footer-container .footer-links > ul.products-links ul h2 {
  font-size: 12px;
  font-family: "Oswald", "Helvetica Neue", Verdana, Arial, sans-serif;
}
/* line 652, ../scss/layout/_footer.scss */
.footer-container .footer-links > ul.products-links ul h2 li {
  text-align: left;
}
/* line 658, ../scss/layout/_footer.scss */
.footer-container .footer-links > ul.products-links a {
  font-weight: normal;
  color: #666666;
}
/* line 665, ../scss/layout/_footer.scss */
.footer-container .social-links {
  margin-bottom: 15px;
  margin-top: 20px;
}
/* line 669, ../scss/layout/_footer.scss */
.footer-container .social-links li {
  float: left;
  margin-left: 10px;
}
/* line 673, ../scss/layout/_footer.scss */
.footer-container .social-links li a {
  display: block;
  height: 40px;
  width: 20px;
  text-indent: -5555px;
  float: left;
}
/* line 680, ../scss/layout/_footer.scss */
.footer-container .social-links li a:hover {
  opacity: 0.8;
}
/* line 684, ../scss/layout/_footer.scss */
.footer-container .social-links li a.youtube-button {
  background-position: 0px -672px;
}
/* line 689, ../scss/layout/_footer.scss */
.footer-container .social-links li a.linkedin-button {
  background-position: 0 -705px;
}

@media only screen and (max-width: 979px) {
  /* line 702, ../scss/layout/_footer.scss */
  #footer-banners ul li > a > div {
    height: 80px;
  }
  /* line 706, ../scss/layout/_footer.scss */
  #footer-banners ul li > a h2 {
    font-size: 14px;
    padding-top: 11px;
  }
  /* line 710, ../scss/layout/_footer.scss */
  #footer-banners ul li > a h3 {
    font-size: 18px;
    line-height: 16px;
  }
  /* line 714, ../scss/layout/_footer.scss */
  #footer-banners ul li > a h4 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 770px) {
  /* line 724, ../scss/layout/_footer.scss */
  .std #footer-actions > ul > li {
    margin: 60px 0 0;
    width: 100%;
    float: left;
  }

  /* line 733, ../scss/layout/_footer.scss */
  .footer-container .footer-links > ul {
    float: left;
    width: 100%;
    border-right: 0;
    min-height: 0;
  }
  /* line 739, ../scss/layout/_footer.scss */
  .footer-container .footer-links > ul.products-links {
    width: 100%;
    border-right: 0;
  }

  /* line 747, ../scss/layout/_footer.scss */
  #footer-actions > div > ul > li {
    display: block;
    float: left;
    margin: 30px 0;
    padding: 0;
    width: 100%;
  }
  /* line 754, ../scss/layout/_footer.scss */
  #footer-actions > div > ul > li a {
    font-size: 12px;
  }

  /* line 760, ../scss/layout/_footer.scss */
  #footer-banners ul {
    display: block;
    float: left;
    height: auto;
    margin-bottom: 25px;
    margin-top: 0;
    width: 100%;
  }
  /* line 768, ../scss/layout/_footer.scss */
  #footer-banners ul li {
    display: block;
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  /* line 775, ../scss/layout/_footer.scss */
  #footer-banners ul li.main-banner {
    width: 100%;
  }
  /* line 779, ../scss/layout/_footer.scss */
  #footer-banners ul li > a {
    margin-bottom: 20px !important;
  }
  /* line 782, ../scss/layout/_footer.scss */
  #footer-banners ul li > a.full-height {
    height: 100%;
    margin-bottom: 20px;
  }
  /* line 787, ../scss/layout/_footer.scss */
  #footer-banners ul li > a.dual-secondary-bottom {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  /* line 792, ../scss/layout/_footer.scss */
  #footer-banners ul li > a > div {
    height: 72px;
  }
  /* line 795, ../scss/layout/_footer.scss */
  #footer-banners ul li > a h2 {
    font-size: 12px;
    padding-top: 11px;
  }
  /* line 799, ../scss/layout/_footer.scss */
  #footer-banners ul li > a h3 {
    font-size: 13px;
    line-height: 13px;
  }
  /* line 803, ../scss/layout/_footer.scss */
  #footer-banners ul li > a h4 {
    font-size: 12px;
  }
  /* line 807, ../scss/layout/_footer.scss */
  #footer-banners ul li > a > img {
    width: 100%;
    height: auto;
    position: relative;
  }
  /* line 813, ../scss/layout/_footer.scss */
  #footer-banners ul li a.non-dynamic-height {
    height: 150px;
  }
  /* line 816, ../scss/layout/_footer.scss */
  #footer-banners ul li a.non-dynamic-height.dual-main-top, #footer-banners ul li a.non-dynamic-height.full-height {
    height: 80px;
    margin-bottom: 0;
    background: #333 none;
  }
  /* line 822, ../scss/layout/_footer.scss */
  #footer-banners ul li a.non-dynamic-height.dual-main-bottom {
    display: none;
  }
  /* line 826, ../scss/layout/_footer.scss */
  #footer-banners ul li a.non-dynamic-height > img {
    display: none;
  }
  /* line 830, ../scss/layout/_footer.scss */
  #footer-banners ul li a.non-dynamic-height h2 {
    background: transparent;
    bottom: 0;
    font-size: 21px;
    font-family: "Oswald", "Helvetica Neue", Verdana, Arial, sans-serif;
    left: 0;
    margin: auto;
    height: 23px;
    padding-top: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
  /* line 844, ../scss/layout/_footer.scss */
  #footer-banners ul li a.dynamic-height {
    height: 80px;
  }
}
@media only screen and (max-width: 599px) {
  /* line 855, ../scss/layout/_footer.scss */
  #featured-products ul li img {
    width: 100%;
  }
}
/* ============================================ *
 * Checkout - Layout
 * ============================================ */
/* line 30, ../scss/module/_checkout-cart.scss */
.checkout-cart-index .dashboard .shipping {
  float: left;
  margin-bottom: 20px;
  width: 100%;
}

/* line 36, ../scss/module/_checkout-cart.scss */
.cart-table,
.cart-need-help {
  float: left;
  width: 60%;
}

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

/* line 46, ../scss/module/_checkout-cart.scss */
.cart-about,
.cart-forms,
.cart-totals-wrapper,
.crosssell {
  float: right;
  clear: right;
  width: 40%;
  padding-left: 20px;
}

/* line 56, ../scss/module/_checkout-cart.scss */
.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping,
.cart-forms .box-info,
#save_shopping_list,
body .col-main .cart-forms .box-shopping-list,
body .col-main .cart-forms .box-order-form {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  float: left;
  width: 100%;
}
/* line 69, ../scss/module/_checkout-cart.scss */
.cart-totals h2,
.cart-forms .discount h2,
.cart-forms .giftcard h2,
.cart-forms .shipping h2,
.cart-forms .box-info h2,
#save_shopping_list h2,
body .col-main .cart-forms .box-shopping-list h2,
body .col-main .cart-forms .box-order-form h2 {
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 5px;
}
/* line 75, ../scss/module/_checkout-cart.scss */
.cart-totals .box-head,
.cart-forms .discount .box-head,
.cart-forms .giftcard .box-head,
.cart-forms .shipping .box-head,
.cart-forms .box-info .box-head,
#save_shopping_list .box-head,
body .col-main .cart-forms .box-shopping-list .box-head,
body .col-main .cart-forms .box-order-form .box-head {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

/* line 82, ../scss/module/_checkout-cart.scss */
.box-shopping-list h2 {
  padding-top: 0;
}

/* line 86, ../scss/module/_checkout-cart.scss */
h2 .question-mark {
  margin-top: -3px !important;
  margin-bottom: -3px !important;
  position: relative;
  top: 1px;
}

/* line 100, ../scss/module/_checkout-cart.scss */
.cart-forms .discount .button,
.cart-forms .giftcard .button,
.cart-forms .shipping .button,
.cart-forms .box-info .button,
#save_shopping_list .button,
body .col-main .cart-forms .box-shopping-list .button,
body .col-main .cart-forms .box-order-form .button {
  margin-top: 10px;
}

/* line 105, ../scss/module/_checkout-cart.scss */
.cart-table,
.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping,
.cart-forms .box-info,
.cart-forms .box-shopping-list,
.cart-forms .box-order-form,
.cart-forms .btn-proceed-checkout,
#save_shopping_list {
  margin-bottom: 20px;
}

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

/* line 125, ../scss/module/_checkout-cart.scss */
.cart-totals-wrapper {
  margin-top: 30px;
}

/* line 129, ../scss/module/_checkout-cart.scss */
#shopping-cart-table + .cart-totals-wrapper {
  margin-top: 0;
}

/* line 134, ../scss/module/_checkout-cart.scss */
.display-both-prices .cart-table {
  float: none;
  width: 100%;
}
/* line 139, ../scss/module/_checkout-cart.scss */
.display-both-prices .cart-forms {
  float: left;
  padding-right: 10px;
  padding-left: 0;
}
/* line 145, ../scss/module/_checkout-cart.scss */
.display-both-prices .cart-totals-wrapper,
.display-both-prices .crosssell {
  padding-left: 10px;
}
/* line 150, ../scss/module/_checkout-cart.scss */
.display-both-prices .cart-forms,
.display-both-prices .cart-totals-wrapper,
.display-both-prices .crosssell {
  width: 50%;
  clear: left;
}
/* line 157, ../scss/module/_checkout-cart.scss */
.display-both-prices .crosssell {
  clear: right;
  float: right;
}

@media only screen and (max-width: 979px) {
  /* line 134, ../scss/module/_checkout-cart.scss */
  .display-single-price .cart-table {
    float: none;
    width: 100%;
  }
  /* line 139, ../scss/module/_checkout-cart.scss */
  .display-single-price .cart-forms {
    float: left;
    padding-right: 10px;
    padding-left: 0;
  }
  /* line 145, ../scss/module/_checkout-cart.scss */
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    padding-left: 10px;
  }
  /* line 150, ../scss/module/_checkout-cart.scss */
  .display-single-price .cart-forms,
  .display-single-price .cart-totals-wrapper,
  .display-single-price .crosssell {
    width: 50%;
    clear: left;
  }
  /* line 157, ../scss/module/_checkout-cart.scss */
  .display-single-price .crosssell {
    clear: right;
    float: right;
  }
}
@media only screen and (max-width: 599px) {
  /* line 174, ../scss/module/_checkout-cart.scss */
  .product-cart-sku {
    display: none;
  }

  /* line 180, ../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 193, ../scss/module/_checkout-cart.scss */
.display-single-price:after {
  content: '';
  display: table;
  clear: both;
}

/* line 199, ../scss/module/_checkout-cart.scss */
.cart .products-grid .product-info {
  min-height: auto !important;
  padding-bottom: 0 !important;
}
/* line 204, ../scss/module/_checkout-cart.scss */
.cart .products-grid .actions {
  display: none;
}

/* ============================================ *
 * Checkout - Cart
 * ============================================ */
/* line 213, ../scss/module/_checkout-cart.scss */
.cart .page-title {
  margin-bottom: 15px;
  border-bottom: 1px solid #EDEDED;
}
/* line 217, ../scss/module/_checkout-cart.scss */
.cart .page-title:after {
  content: '';
  display: table;
  clear: both;
}
/* line 220, ../scss/module/_checkout-cart.scss */
.cart .page-title h1 {
  float: left;
  border-bottom: none;
  margin-bottom: 1px;
  margin-right: 10px;
}
/* line 226, ../scss/module/_checkout-cart.scss */
.cart .page-title > p {
  float: left;
  font-size: 14px;
  margin-bottom: 4px;
  width: 100%;
}

/* line 234, ../scss/module/_checkout-cart.scss */
.checkout-types {
  float: right;
  text-align: right;
  max-width: 100%;
  /* We always want this shipping method to display on its own line */
}
/* line 239, ../scss/module/_checkout-cart.scss */
.checkout-types li {
  vertical-align: top;
  margin: 0 0 5px 5px;
}
/* line 240, ../scss/module/_checkout-cart.scss */
.checkout-types li:after {
  content: '';
  display: table;
  clear: both;
}
/* line 246, ../scss/module/_checkout-cart.scss */
.checkout-types li img {
  display: inline;
  vertical-align: top;
}
/* line 251, ../scss/module/_checkout-cart.scss */
.checkout-types li:first-child {
  margin-left: 0;
}
/* line 255, ../scss/module/_checkout-cart.scss */
.checkout-types .method-checkout-cart-methods-multishipping {
  display: block;
}
/* line 260, ../scss/module/_checkout-cart.scss */
.checkout-types.top li {
  display: inline-block;
}
/* line 264, ../scss/module/_checkout-cart.scss */
.checkout-types.top .bml_button {
  display: inline-block;
  vertical-align: top;
}
/* line 268, ../scss/module/_checkout-cart.scss */
.checkout-types.top .bml_button img {
  display: block;
}
/* line 273, ../scss/module/_checkout-cart.scss */
.checkout-types.top .paypal-logo .paypal-or {
  margin-top: 5px;
}
/* line 281, ../scss/module/_checkout-cart.scss */
.checkout-types.bottom .paypal-logo a, .checkout-types.minicart .paypal-logo a {
  display: block;
}
/* line 285, ../scss/module/_checkout-cart.scss */
.checkout-types.bottom .paypal-or, .checkout-types.minicart .paypal-or {
  margin: 0px;
  display: block;
  text-align: center;
}

@media only screen and (min-width: 741px) {
  /* line 295, ../scss/module/_checkout-cart.scss */
  .checkout-types.bottom .paypal-or {
    text-align: right;
    padding-right: 70px;
  }
}
/* line 302, ../scss/module/_checkout-cart.scss */
.cart-totals .checkout-types .btn-checkout {
  margin-bottom: 7px;
}

@media only screen and (max-width: 740px) {
  /* line 307, ../scss/module/_checkout-cart.scss */
  .checkout-types {
    float: none;
    text-align: center;
  }
  /* line 313, ../scss/module/_checkout-cart.scss */
  .checkout-types.bottom .paypal-or, .checkout-types.minicart .paypal-or {
    width: auto;
    float: none;
  }

  /* line 320, ../scss/module/_checkout-cart.scss */
  .checkout-types li {
    float: none;
    width: 100%;
    margin-left: 0;
  }
}
/* line 327, ../scss/module/_checkout-cart.scss */
#save_shopping_list {
  padding: 10px 10px 0;
}
/* line 330, ../scss/module/_checkout-cart.scss */
#save_shopping_list p {
  margin-bottom: 10px;
  width: 100%;
  float: left;
  font-size: 13px;
}
/* line 337, ../scss/module/_checkout-cart.scss */
#save_shopping_list > div {
  float: left;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
}
/* line 343, ../scss/module/_checkout-cart.scss */
#save_shopping_list > div p {
  margin-bottom: 5px;
  margin-top: 5px;
}
/* line 348, ../scss/module/_checkout-cart.scss */
#save_shopping_list > div label:not(.checkbox) {
  float: left;
  width: 35%;
}
/* line 353, ../scss/module/_checkout-cart.scss */
#save_shopping_list > div input {
  float: right;
  width: 65%;
  font-size: 13px;
  color: #777777;
}
/* line 360, ../scss/module/_checkout-cart.scss */
#save_shopping_list > div textarea {
  border: 1px solid #CCCCCC;
  float: left;
  font-size: 13px;
  margin-top: 5px;
  color: #777777;
}
/* line 367, ../scss/module/_checkout-cart.scss */
#save_shopping_list > div input[type=checkbox] {
  float: left;
  width: auto;
  margin-top: 5px;
  margin-right: 4px;
}

/* line 376, ../scss/module/_checkout-cart.scss */
.shopping-list-save-action {
  text-align: center;
}
/* line 379, ../scss/module/_checkout-cart.scss */
.shopping-list-save-action .button {
  margin-top: 5px;
}

/* line 385, ../scss/module/_checkout-cart.scss */
#save_shopping_list + .shipping.find-dealer {
  margin-top: 0;
}

/* line 389, ../scss/module/_checkout-cart.scss */
.shipping.find-dealer {
  margin-top: 20px;
}
/* line 392, ../scss/module/_checkout-cart.scss */
.shipping.find-dealer > p {
  float: left;
  font-size: 13px;
  margin-bottom: 5px;
  width: 100%;
}
/* line 399, ../scss/module/_checkout-cart.scss */
.shipping.find-dealer input {
  float: left;
  width: 65%;
  font-size: 13px;
  color: #777777;
}

/* line 407, ../scss/module/_checkout-cart.scss */
.cart-need-help,
.cart-about > div {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  background-color: #ECECEC;
  border: 1px solid #CCCCCC;
  padding: 10px 10px 0;
  float: left;
}
/* line 415, ../scss/module/_checkout-cart.scss */
.cart-need-help p,
.cart-about > div p {
  margin-bottom: 10px;
  width: 100%;
  float: left;
  font-size: 13px;
}

@media only screen and (max-width: 599px) {
  /* line 424, ../scss/module/_checkout-cart.scss */
  .btn-checkout {
    width: 100%;
  }
}
/* line 429, ../scss/module/_checkout-cart.scss */
.shopping-list-intro {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

/* line 435, ../scss/module/_checkout-cart.scss */
.cart-table {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}
/* line 438, ../scss/module/_checkout-cart.scss */
.cart-table th,
.cart-table td,
.cart-table tbody td {
  border-bottom: none;
  vertical-align: top;
}
/* line 446, ../scss/module/_checkout-cart.scss */
.cart-table h2 {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}
/* line 453, ../scss/module/_checkout-cart.scss */
.cart-table thead th,
.cart-table tbody td {
  background-color: transparent;
  padding: 10px 5px;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}
/* line 460, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-info,
.cart-table .product-cart-actions {
  padding-left: 15px;
}
/* line 465, ../scss/module/_checkout-cart.scss */
.cart-table tr {
  border-bottom: 1px solid #C0C0C0;
}
/* line 470, ../scss/module/_checkout-cart.scss */
.cart-table tfoot tr {
  background: none;
}
/* line 474, ../scss/module/_checkout-cart.scss */
.cart-table tfoot tr > td:after {
  content: '';
  display: table;
  clear: both;
}
/* line 479, ../scss/module/_checkout-cart.scss */
.cart-table span.or {
  font-size: 9px;
  padding: 0 5px;
  text-transform: uppercase;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}
/* line 486, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-image .cart-links,
.cart-table .product-cart-info .btn-remove,
.cart-table .product-cart-actions .button {
  display: none;
}
/* line 492, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-image {
  min-width: 50px;
  max-width: 70px;
  padding-left: 0;
  padding-right: 0;
}
/* line 498, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-image img {
  max-width: 100%;
  width: 100%;
}
/* line 503, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-image a.cart-edit {
  display: none;
}
/* line 508, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-sku {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  margin: 5px 0 12px;
}
/* line 513, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-sku .label {
  font-weight: 600;
}
/* line 518, ../scss/module/_checkout-cart.scss */
.cart-table .btn-empty {
  float: left;
}
/* line 522, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-total,
.cart-table .product-cart-price {
  text-align: center;
}
/* line 527, ../scss/module/_checkout-cart.scss */
.cart-table .cart-tax-total {
  position: relative;
  cursor: pointer;
}
/* line 531, ../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 #11B400;
  border-left: none;
  position: absolute;
  top: 3px;
  right: -11px;
}
/* line 539, ../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 #11B400;
  border-bottom: none;
  right: -15px;
  top: 6px;
}
/* line 547, ../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: 13px;
}
/* line 554, ../scss/module/_checkout-cart.scss */
.cart-table .cart-links > li > a {
  display: block;
}
/* line 558, ../scss/module/_checkout-cart.scss */
.cart-table .cart-links > li:last-child {
  margin-bottom: 0;
}
/* line 563, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-actions {
  min-width: 60px;
  text-align: center;
}
/* line 567, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-actions .qty {
  height: 30px;
  border-color: #C0C0C0;
  border-radius: 0;
  margin-bottom: 10px;
  text-align: center;
  width: 3.2em;
}
/* line 576, ../scss/module/_checkout-cart.scss */
.cart-table .product-cart-actions .button {
  margin-bottom: 5px;
}
/* line 581, ../scss/module/_checkout-cart.scss */
.cart-table .item-options {
  padding-left: 15px;
}

@media only screen and (max-width: 770px) {
  /* line 587, ../scss/module/_checkout-cart.scss */
  .cart-need-help {
    width: 100%;
    margin-bottom: 20px;
  }

  /* line 591, ../scss/module/_checkout-cart.scss */
  .cart-table {
    width: 100%;
  }
  /* line 594, ../scss/module/_checkout-cart.scss */
  .cart-table th {
    font-size: 12px;
  }
  /* line 598, ../scss/module/_checkout-cart.scss */
  .cart-table th,
  .cart-table td {
    padding: 7px 6px;
  }
  /* line 603, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-actions > li {
    white-space: inherit;
  }

  /* line 607, ../scss/module/_checkout-cart.scss */
  #shopping-cart-table tfoot button {
    float: left;
    margin: 5px 0;
    width: 100%;
  }

  /* line 612, ../scss/module/_checkout-cart.scss */
  .cart-forms {
    padding-left: 0;
    width: 100%;
    margin-top: 20px;
  }

  /* line 617, ../scss/module/_checkout-cart.scss */
  .cart-about {
    padding-left: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 699px) {
  /* line 626, ../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;
  }
}
@media only screen and (max-width: 599px) {
  /* line 637, ../scss/module/_checkout-cart.scss */
  .cart-table colgroup, .cart-table thead {
    display: none;
  }
  /* line 641, ../scss/module/_checkout-cart.scss */
  .cart-table tr {
    display: block;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
    width: 100%;
  }
  /* line 648, ../scss/module/_checkout-cart.scss */
  .cart-table tr:after {
    content: '';
    display: table;
    clear: both;
  }
  /* line 652, ../scss/module/_checkout-cart.scss */
  .cart-table tr:last-child {
    margin-bottom: 0;
  }
  /* line 657, ../scss/module/_checkout-cart.scss */
  .cart-table tfoot tr {
    padding-bottom: 0;
  }
  /* line 661, ../scss/module/_checkout-cart.scss */
  .cart-table td {
    border: none;
    display: block;
  }
  /* line 665, ../scss/module/_checkout-cart.scss */
  .cart-table td[data-rwd-label] {
    padding-left: 15px;
    margin-bottom: 6px;
  }
  /* line 669, ../scss/module/_checkout-cart.scss */
  .cart-table td[data-rwd-label] .price {
    font-weight: normal;
  }
  /* line 673, ../scss/module/_checkout-cart.scss */
  .cart-table td[data-rwd-label]:before {
    content: attr(data-rwd-label) ":";
    font-size: 12px;
    font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
    padding-right: 5px;
    text-transform: uppercase;
  }
  /* line 682, ../scss/module/_checkout-cart.scss */
  .cart-table td.product-cart-price {
    text-align: left;
  }
  /* line 687, ../scss/module/_checkout-cart.scss */
  .cart-table h2 {
    font-size: 12px;
  }
  /* line 691, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-links {
    padding-top: 5px;
    padding-right: 5px;
  }
  /* line 695, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-links > li {
    white-space: normal;
    text-align: center;
  }
  /* line 699, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-links > li > a {
    padding: 2px 0px;
  }
  /* line 705, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-tax-info {
    font-style: italic;
    padding-left: 15px;
    font-size: 13px;
  }
  /* line 710, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-tax-info .price {
    font-size: 13px;
  }
  /* line 715, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-image {
    width: 25%;
    float: left;
    padding-bottom: 0;
  }
  /* line 720, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-image a.cart-edit {
    display: block;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
  }
  /* line 728, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-info,
  .cart-table td[data-rwd-label] {
    float: right;
    width: 75%;
  }
  /* line 734, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-actions,
  .cart-table .product-cart-price {
    padding-bottom: 0;
    padding-top: 0;
    float: right;
  }
  /* line 741, ../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 747, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-image .cart-links,
  .cart-table .product-cart-info .btn-remove {
    display: block;
  }
  /* line 753, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-actions .button {
    display: none;
  }
  /* line 759, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-info .btn-remove {
    float: right;
    margin: -4px 0px 2px 7px;
  }
  /* line 764, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-info .product-cart-sku {
    margin-bottom: 5px;
  }
  /* line 769, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-actions {
    text-align: left;
  }
  /* line 772, ../scss/module/_checkout-cart.scss */
  .cart-table .product-cart-actions .qty {
    margin-right: 7px;
    margin-bottom: 7px;
  }
  /* line 778, ../scss/module/_checkout-cart.scss */
  .cart-table .price,
  .cart-table .product-cart-price:before {
    font-weight: 500;
    font-size: 15px;
  }
  /* line 784, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-footer-actions {
    text-align: center;
    width: 100%;
  }
  /* line 788, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-footer-actions #empty_cart_button {
    float: right;
  }
  /* line 792, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-footer-actions .btn-continue {
    float: left;
  }
  /* line 796, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-footer-actions .btn-update,
  .cart-table .cart-footer-actions span.or {
    display: none;
  }

  /* line 808, ../scss/module/_checkout-cart.scss */
  .display-both-prices .cart-table td[data-rwd-tax-label]:before {
    content: attr(data-rwd-tax-label) ":";
  }
}
/* ============================================ *
 * Checkout - Estimate Shipping and Tax
 * ============================================ */
/* line 823, ../scss/module/_checkout-cart.scss */
.shipping select {
  max-width: 100%;
  height: 30px;
  display: block;
  border: 1px solid #C0C0C0;
}
/* line 830, ../scss/module/_checkout-cart.scss */
.shipping select.validation-failed {
  border-color: #DF280A;
}
/* line 834, ../scss/module/_checkout-cart.scss */
.shipping .shipping-desc {
  display: none;
}
/* line 838, ../scss/module/_checkout-cart.scss */
.shipping .buttons-set {
  border: none;
  margin: 0;
  padding: 0;
}
/* line 845, ../scss/module/_checkout-cart.scss */
.shipping .form-list:after {
  content: '';
  display: table;
  clear: both;
}
/* line 848, ../scss/module/_checkout-cart.scss */
.shipping .form-list li {
  float: left;
  margin: 5px 2% 10px 0;
}
/* line 853, ../scss/module/_checkout-cart.scss */
.shipping .form-list .shipping-country {
  width: 37%;
}
/* line 857, ../scss/module/_checkout-cart.scss */
.shipping .form-list .shipping-region {
  width: 41%;
}
/* line 861, ../scss/module/_checkout-cart.scss */
.shipping .form-list .shipping-postcode {
  margin-right: 0;
  width: 18%;
}
/* line 865, ../scss/module/_checkout-cart.scss */
.shipping .form-list .shipping-postcode input {
  margin-top: 4px;
}
/* line 870, ../scss/module/_checkout-cart.scss */
.shipping .form-list .input-box {
  padding-top: 0;
}
/* line 874, ../scss/module/_checkout-cart.scss */
.shipping .form-list input {
  height: 30px;
  margin-top: 4px;
}
/* line 879, ../scss/module/_checkout-cart.scss */
.shipping .form-list label {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}
/* line 888, ../scss/module/_checkout-cart.scss */
.shipping .sp-methods {
  padding: 10px 0 0;
  text-align: left;
}
/* line 892, ../scss/module/_checkout-cart.scss */
.shipping .sp-methods dd {
  margin-bottom: 10px;
}
/* line 896, ../scss/module/_checkout-cart.scss */
.shipping .sp-methods label {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-style: italic;
  min-width: 100px;
}
/* line 902, ../scss/module/_checkout-cart.scss */
.shipping .sp-methods label span {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
}
/* line 910, ../scss/module/_checkout-cart.scss */
.shipping #co-shipping-method-form .buttons-set .button {
  float: left;
  margin-left: 0;
}
/* line 914, ../scss/module/_checkout-cart.scss */
.shipping #co-shipping-method-form .sp-methods dd label {
  border: 1px solid #CCCCCC;
  background-color: #e5e5e5;
  min-width: 220px;
}
/* line 919, ../scss/module/_checkout-cart.scss */
.shipping #co-shipping-method-form .sp-methods dd label:hover {
  background-color: #d4d4d4;
}

@media only screen and (max-width: 770px) {
  /* line 927, ../scss/module/_checkout-cart.scss */
  .shipping .shipping-form .form-list > li {
    width: 100%;
    float: none;
  }
  /* line 931, ../scss/module/_checkout-cart.scss */
  .shipping .shipping-form .form-list > li label {
    display: block;
  }
  /* line 935, ../scss/module/_checkout-cart.scss */
  .shipping .shipping-form .form-list > li input,
  .shipping .shipping-form .form-list > li select {
    width: 100%;
  }
}
/* line 946, ../scss/module/_checkout-cart.scss */
.cart .cart-totals {
  text-align: right;
}
/* line 949, ../scss/module/_checkout-cart.scss */
.cart .cart-totals:after {
  content: '';
  display: table;
  clear: both;
}
/* line 953, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
  width: 100%;
}
/* line 960, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table td {
  padding: 2px 0px;
}
/* line 963, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table td:first-child {
  padding-right: 10px;
  min-width: 120px;
}
/* line 968, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table tbody tr:last-child td,
.cart .cart-totals table tbody tr:last-child th {
  padding-bottom: 10px;
}
/* line 973, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table tfoot {
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
}
/* line 976, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table tfoot td {
  font-size: 24px;
  padding: 2px 5px;
  vertical-align: top;
}
/* line 982, ../scss/module/_checkout-cart.scss */
.cart .cart-totals table tfoot strong {
  font-weight: 400;
}

@media only screen and (max-width: 600px) {
  /* line 991, ../scss/module/_checkout-cart.scss */
  .cart-totals {
    text-align: right;
  }
}
@media only screen and (max-width: 770px) {
  /* line 998, ../scss/module/_checkout-cart.scss */
  .cart .cart-totals table tfoot td {
    font-size: 18px;
  }
}
/* line 1007, ../scss/module/_checkout-cart.scss */
.discount-form:after,
#giftcard-form:after {
  content: '';
  display: table;
  clear: both;
}

/* line 1012, ../scss/module/_checkout-cart.scss */
#discount-coupon-form,
.cart .giftcard {
  width: 100%;
}
/* line 1016, ../scss/module/_checkout-cart.scss */
#discount-coupon-form h2,
.cart .giftcard h2 {
  display: none;
}
/* line 1020, ../scss/module/_checkout-cart.scss */
#discount-coupon-form label,
.cart .giftcard label {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
  min-width: 105px;
  display: inline-block;
  margin-right: 10px;
}
/* line 1031, ../scss/module/_checkout-cart.scss */
#discount-coupon-form .field-wrapper,
.cart .giftcard .field-wrapper {
  display: inline-block;
}
/* line 1035, ../scss/module/_checkout-cart.scss */
#discount-coupon-form .validation-advice,
.cart .giftcard .validation-advice {
  display: inline;
}
/* line 1039, ../scss/module/_checkout-cart.scss */
#discount-coupon-form .button-wrapper,
.cart .giftcard .button-wrapper {
  display: inline-block;
  vertical-align: bottom;
}
/* line 1043, ../scss/module/_checkout-cart.scss */
#discount-coupon-form .button-wrapper > button,
.cart .giftcard .button-wrapper > button {
  float: left;
}
/* line 1048, ../scss/module/_checkout-cart.scss */
#discount-coupon-form .input-text,
.cart .giftcard .input-text {
  border-radius: 0;
  height: 30px;
  margin: 4px 10px 0 0;
  width: 190px;
}

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

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

/* ============================================ *
 * Checkout - Cart Cross sell
 * ============================================ */
/* line 1075, ../scss/module/_checkout-cart.scss */
.crosssell h2 {
  color: #11B400;
}
/* line 1079, ../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 1087, ../scss/module/_checkout-cart.scss */
  .cart-totals-wrapper {
    margin-top: 0;
  }

  /* line 1090, ../scss/module/_checkout-cart.scss */
  .crosssell {
    /* Undo three-column config */
  }
  /* line 1091, ../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 1098, ../scss/module/_checkout-cart.scss */
  .crosssell .products-grid > li:nth-child(odd) {
    clear: left;
  }
  /* line 1102, ../scss/module/_checkout-cart.scss */
  .crosssell .products-grid > li:nth-child(even) {
    margin-right: 0;
  }
  /* line 1107, ../scss/module/_checkout-cart.scss */
  .crosssell .products-grid > li:nth-child(3n+1) {
    clear: none;
  }
}
@media only screen and (max-width: 599px) {
  /* line 1116, ../scss/module/_checkout-cart.scss */
  .cart-table .cart-tax-total:after {
    right: -9px;
  }
  /* line 1120, ../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 1131, ../scss/module/_checkout-cart.scss */
  .crosssell ul .item {
    padding: 0 0px 40px;
  }
  /* line 1135, ../scss/module/_checkout-cart.scss */
  .crosssell ul .product-details .crosssell-actions {
    padding: 0 5px;
  }
}
/* ============================================ *
 * Checkout - One Page
 * ============================================ */
/* line 30, ../scss/module/_checkout-onepage.scss */
.checkout-onepage-index .col-right,
.checkout-onepage-index .col-left {
  display: none;
}

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

@media only screen and (min-width: 980px) {
  /* line 42, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index .col-main {
    float: left;
    width: 68.75%;
    padding-right: 20px;
  }
  /* line 48, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index .col-right,
  .checkout-onepage-index .col-left {
    width: 31.25%;
    display: block;
  }
  /* line 54, ../scss/module/_checkout-onepage.scss */
  .checkout-onepage-index .col-right {
    padding-left: 0;
  }
}
/* line 61, ../scss/module/_checkout-onepage.scss */
.opc select {
  width: 365px;
}

/* -------------------------------------------- *
 * Section Styling - Default
 */
/* line 70, ../scss/module/_checkout-onepage.scss */
.opc .section .step-title {
  width: 100%;
  border-top: 1px solid #ECECEC;
  position: relative;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
/* line 76, ../scss/module/_checkout-onepage.scss */
.opc .section .step-title:after {
  content: '';
  display: table;
  clear: both;
}

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

/* Using .no-touch since touch devices emulate hover, thereby making steps look active that are not */
/* line 86, ../scss/module/_checkout-onepage.scss */
.no-touch .opc .section.allow:not(.active) .step-title:hover {
  background-color: #ECECEC;
}

/* line 90, ../scss/module/_checkout-onepage.scss */
.opc .section.active .step-title {
  border-bottom: 1px solid #ECECEC;
}

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

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

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

/* line 110, ../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;
  color: #FFFFFF;
  line-height: 26px;
  background-color: #67C263;
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -13px;
}

/* line 126, ../scss/module/_checkout-onepage.scss */
.opc .section.allow .step-title .number {
  background-color: #b3e1b1;
}

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

/* line 134, ../scss/module/_checkout-onepage.scss */
.opc .section.allow .step-title:hover h2,
.opc .section.active .step-title h2 {
  color: #11B400;
}

/* line 139, ../scss/module/_checkout-onepage.scss */
.opc .section .step-title h2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  height: 40px;
  float: left;
  margin: 0px 4px 0px 45px;
}

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

/* line 160, ../scss/module/_checkout-onepage.scss */
.opc select {
  max-width: 365px;
  width: 100%;
}

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

/* line 169, ../scss/module/_checkout-onepage.scss */
.opc .buttons-set {
  text-align: left;
}
/* line 172, ../scss/module/_checkout-onepage.scss */
.opc .buttons-set button.button {
  float: left;
  margin-left: 0;
  margin-right: 10px;
  margin-bottom: 0;
}
/* line 178, ../scss/module/_checkout-onepage.scss */
.opc .buttons-set p.required {
  float: right;
  margin-left: 5px;
  margin-bottom: 0;
}
/* line 183, ../scss/module/_checkout-onepage.scss */
.opc .buttons-set .back-link {
  float: right;
  margin: 0;
}
/* line 187, ../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: 479px) {
  /* line 197, ../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 204, ../scss/module/_checkout-onepage.scss */
.opc #opc-login .step {
  padding: 0px;
}
/* line 208, ../scss/module/_checkout-onepage.scss */
.opc #opc-login .buttons-set {
  border-top: 0;
  padding-top: 5px;
}

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

/* -------------------------------------------- *
 * This section hides everything but the "Checkout Method" step of the checkout process and fades in the content
 * once the customer progresses to the next step. The purpose of this is to simplify what the customer has to focus on.
 * It is limited to larger viewports since smaller devices are inherently going to be focused solely on the
 * "Checkout Method" step.
 */
/* line 232, ../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 237, ../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 241, ../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 248, ../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 253, ../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 258, ../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 266, ../scss/module/_checkout-onepage.scss */
.sp-methods {
  margin: 0 0 8px;
}
/* line 269, ../scss/module/_checkout-onepage.scss */
.sp-methods dt {
  margin: 13px 0 5px;
  font-weight: bold;
}
/* line 273, ../scss/module/_checkout-onepage.scss */
.sp-methods dt:first-child {
  margin: 0 0 5px;
}
/* line 277, ../scss/module/_checkout-onepage.scss */
.sp-methods dd li {
  margin: 5px 0;
}
/* line 280, ../scss/module/_checkout-onepage.scss */
.sp-methods label img {
  float: left;
}
/* line 283, ../scss/module/_checkout-onepage.scss */
.sp-methods label a {
  margin-top: 6px;
  float: right;
  margin-left: 10px;
}
/* line 288, ../scss/module/_checkout-onepage.scss */
.sp-methods .price {
  font-weight: bold;
}
/* line 291, ../scss/module/_checkout-onepage.scss */
.sp-methods .form-list {
  padding-left: 20px;
}
/* line 294, ../scss/module/_checkout-onepage.scss */
.sp-methods .form-list li {
  margin: 0 0 8px;
}
/* line 298, ../scss/module/_checkout-onepage.scss */
.sp-methods select.month {
  width: 120px;
  margin-right: 10px;
}
/* line 302, ../scss/module/_checkout-onepage.scss */
.sp-methods select.year {
  width: 96px;
}
/* line 305, ../scss/module/_checkout-onepage.scss */
.sp-methods input.cvv {
  width: 4em !important;
}
/* line 308, ../scss/module/_checkout-onepage.scss */
.sp-methods #advice-validate-cc-exp-ccsave_expiration {
  max-width: 130px;
}
/* line 313, ../scss/module/_checkout-onepage.scss */
.sp-methods .checkmo-list li {
  margin: 0 0 5px;
  content: '';
  display: table;
  clear: both;
}
/* line 317, ../scss/module/_checkout-onepage.scss */
.sp-methods .checkmo-list label {
  width: 165px;
  padding-right: 15px;
  text-align: right;
  float: left;
}
/* line 323, ../scss/module/_checkout-onepage.scss */
.sp-methods .checkmo-list address {
  float: left;
}
@media only screen and (max-width: 479px) {
  /* line 312, ../scss/module/_checkout-onepage.scss */
  .sp-methods .checkmo-list {
    padding-left: 0;
  }
  /* line 330, ../scss/module/_checkout-onepage.scss */
  .sp-methods .checkmo-list label {
    width: 135px;
  }
}
/* line 336, ../scss/module/_checkout-onepage.scss */
.sp-methods .release-amounts {
  margin: 0.5em 0;
}
/* line 339, ../scss/module/_checkout-onepage.scss */
.sp-methods .release-amounts button {
  float: left;
  margin: 5px 10px 0 0;
}
/* line 344, ../scss/module/_checkout-onepage.scss */
.sp-methods .credit-balance ul {
  padding-left: 20px;
  margin-bottom: 10px;
}
/* line 349, ../scss/module/_checkout-onepage.scss */
.sp-methods .credit-balance ul.messages,
.sp-methods .credit-balance ul.messages ul {
  padding-left: 0;
  list-style: none;
}
/* line 355, ../scss/module/_checkout-onepage.scss */
.sp-methods #checkmo-additional {
  margin-top: 20px;
}

/* One Page Checkout */
/* line 361, ../scss/module/_checkout-onepage.scss */
.block-progress {
  border: 0;
  margin: 0;
  border-left: 1px solid #CCCCCC;
  padding-left: 20px;
}
/* line 367, ../scss/module/_checkout-onepage.scss */
.block-progress .block-content {
  font-size: 13px;
}
/* line 370, ../scss/module/_checkout-onepage.scss */
.block-progress dt {
  padding-top: 6px;
  margin: 0;
  margin-bottom: 10px;
  color: #000;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: normal;
  color: #666666;
}
/* line 379, ../scss/module/_checkout-onepage.scss */
.block-progress dt.complete {
  color: #000;
}
/* line 382, ../scss/module/_checkout-onepage.scss */
.block-progress dd {
  padding-left: 15px;
  margin-bottom: 10px;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-style: italic;
}
/* line 388, ../scss/module/_checkout-onepage.scss */
.block-progress dd address {
  font-style: italic;
}
/* line 393, ../scss/module/_checkout-onepage.scss */
.block-progress #payment-progress-opcheckout .subtitle {
  margin-bottom: 3px;
}
/* line 399, ../scss/module/_checkout-onepage.scss */
.block-progress .payment-info dt {
  padding: 0;
  margin: 0 0 3px 0;
  color: #000;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: none;
  font-style: italic;
  float: left;
  clear: both;
  font-size: 13px;
}
/* line 410, ../scss/module/_checkout-onepage.scss */
.block-progress .payment-info dt:after {
  content: ': ';
}
/* line 415, ../scss/module/_checkout-onepage.scss */
.block-progress .payment-info dd {
  float: left;
  margin-bottom: 3px;
  font-size: 13px;
}
/* line 421, ../scss/module/_checkout-onepage.scss */
.block-progress .payment-info:after {
  content: '';
  display: table;
  clear: both;
}

/* review step */
/* line 431, ../scss/module/_checkout-onepage.scss */
#checkout-review-table .btn-remove img {
  display: none;
}

/* line 438, ../scss/module/_checkout-onepage.scss */
#opc-review .box-highlight, #opc-review .cart-totals,
#opc-review .cart-forms .discount,
.cart-forms #opc-review .discount,
#opc-review .cart-forms .giftcard,
.cart-forms #opc-review .giftcard,
#opc-review .cart-forms .shipping,
.cart-forms #opc-review .shipping,
#opc-review .cart-forms .box-info,
.cart-forms #opc-review .box-info,
#opc-review #save_shopping_list,
#opc-review body .col-main .cart-forms .box-shopping-list,
body .col-main .cart-forms #opc-review .box-shopping-list,
#opc-review body .col-main .cart-forms .box-order-form,
body .col-main .cart-forms #opc-review .box-order-form,
#opc-review .messages {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* line 445, ../scss/module/_checkout-onepage.scss */
body.checkout-onepage-success .box-highlight, body.checkout-onepage-success .cart-totals,
body.checkout-onepage-success .cart-forms .discount,
.cart-forms body.checkout-onepage-success .discount,
body.checkout-onepage-success .cart-forms .giftcard,
.cart-forms body.checkout-onepage-success .giftcard,
body.checkout-onepage-success .cart-forms .shipping,
.cart-forms body.checkout-onepage-success .shipping,
body.checkout-onepage-success .cart-forms .box-info,
.cart-forms body.checkout-onepage-success .box-info,
body.checkout-onepage-success #save_shopping_list,
body.checkout-onepage-success .col-main .cart-forms .box-shopping-list,
body.checkout-onepage-success .col-main .cart-forms .box-order-form {
  margin: 20px auto;
  max-width: 370px;
}

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

/* line 454, ../scss/module/_checkout-onepage.scss */
#review-buttons-container {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}
/* line 459, ../scss/module/_checkout-onepage.scss */
#review-buttons-container .btn-checkout {
  min-width: 220px;
}
/* line 462, ../scss/module/_checkout-onepage.scss */
#review-buttons-container .please-wait {
  float: left;
  margin-right: 10px;
}
/* line 466, ../scss/module/_checkout-onepage.scss */
#review-buttons-container .f-left {
  float: right;
}

@media only screen and (max-width: 599px) {
  /* line 473, ../scss/module/_checkout-onepage.scss */
  .linearize-table-large.checkout-review-table thead tr:nth-child(1n+2) {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  /* line 480, ../scss/module/_checkout-onepage.scss */
  .linearize-table.checkout-review-table thead tr:nth-child(1n+2) {
    display: none;
  }
}
/* show/hide "change" link for progress step depend on complete status
 * should be placed in .css file */
/* line 487, ../scss/module/_checkout-onepage.scss */
.opc-block-progress dt.complete a,
.opc-block-progress dt.complete .separator {
  display: inline;
}

/* line 492, ../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 498, ../scss/module/_checkout-onepage.scss */
#checkout-step-review .opc-block-progress {
  border-left: none;
  padding-left: 0;
}
/* line 502, ../scss/module/_checkout-onepage.scss */
#checkout-step-review .opc-block-progress .block-title {
  display: none;
}
/* line 505, ../scss/module/_checkout-onepage.scss */
#checkout-step-review .opc-block-progress .block-content {
  display: block !important;
  padding: 0;
}
/* line 510, ../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: 479px) {
  /* line 516, ../scss/module/_checkout-onepage.scss */
  #checkout-step-review .opc-block-progress .block-content > dl > div {
    float: none;
    width: auto;
  }
}
/* line 522, ../scss/module/_checkout-onepage.scss */
#checkout-step-review .opc-block-progress .block-content .changelink {
  display: none;
}

@media only screen and (max-width: 479px) {
  /* line 529, ../scss/module/_checkout-onepage.scss */
  #checkout-review-table thead > tr > th {
    display: none;
  }
  /* line 532, ../scss/module/_checkout-onepage.scss */
  #checkout-review-table thead > tr > th:first-child {
    display: block;
  }

  /* line 536, ../scss/module/_checkout-onepage.scss */
  #checkout-review-table thead > tr > th:first-child {
    display: block;
  }
}
/* line 542, ../scss/module/_checkout-onepage.scss */
#checkout-step-review .centinel > p {
  margin-bottom: 10px;
}
/* line 546, ../scss/module/_checkout-onepage.scss */
#checkout-step-review .centinel iframe {
  width: 100%;
  min-height: 400px;
}

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

/* line 576, ../scss/module/_checkout-onepage.scss */
.gift-message-form .inner-box > div {
  content: '';
  display: table;
  clear: both;
  width: 100%;
  margin-top: 15px;
  display: block;
}
/* line 583, ../scss/module/_checkout-onepage.scss */
.gift-message-form .inner-box > div.extra-options-container p {
  margin-bottom: 15px;
}
/* line 591, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-wrapping-form label {
  margin-right: 10px;
}
/* line 595, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-wrapping-form img {
  float: left;
}
/* line 599, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-wrapping-form .gift-wrapping-design {
  height: 75px;
}
/* line 602, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-wrapping-form .gift-wrapping-design:after {
  content: '';
  display: table;
  clear: both;
}
/* line 606, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-wrapping-form .gift-wrapping-design .image-box {
  margin-right: 5px;
}
/* line 612, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px #ECECEC;
}
/* line 617, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-item:after {
  content: '';
  display: table;
  clear: both;
}
/* line 621, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-item .product-img-box {
  width: 200px;
}
/* line 624, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-item .product-img-box .product-image {
  width: 75px;
  margin-left: auto;
  margin-right: auto;
}
/* line 630, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-item .product-img-box .product-name {
  display: block;
}
/* line 635, ../scss/module/_checkout-onepage.scss */
.gift-message-form .gift-item .fieldset {
  margin-left: 200px;
}

@media only screen and (max-width: 770px) {
  /* line 644, ../scss/module/_checkout-onepage.scss */
  .gift-message-form .giftmessage-area {
    max-width: 100%;
  }
  /* line 649, ../scss/module/_checkout-onepage.scss */
  .gift-message-form .gift-item .product-img-box {
    width: 100%;
    float: none;
  }
  /* line 654, ../scss/module/_checkout-onepage.scss */
  .gift-message-form .gift-item .fieldset {
    margin-left: 0px;
  }
  /* line 657, ../scss/module/_checkout-onepage.scss */
  .gift-message-form .gift-item .fieldset textarea {
    width: 100%;
  }
}
/* ============================================ *
 * 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 .buttons-set {
  margin: 10px 0;
  text-align: center;
}
/* line 40, ../scss/module/_checkout-success.scss */
.checkout-onepage-success .buttons-set button {
  float: none;
}

/* ============================================ *
 * 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: inline-block;
  border-radius: 3px;
  font-size: 14px;
  text-align: center;
  color: #000;
  text-decoration: none;
  box-sizing: content-box;
}

/* line 51, ../scss/module/_configurableswatches.scss */
.swatch-link {
  border: 1px solid #ddd;
  margin: 0 2px 2px 0;
  padding: 5px;
}
/* line 56, ../scss/module/_configurableswatches.scss */
.swatch-link img {
  border-radius: 2px;
}
/* line 60, ../scss/module/_configurableswatches.scss */
.swatch-link:hover {
  cursor: pointer;
  text-decoration: none;
}
/* line 65, ../scss/module/_configurableswatches.scss */
.swatch-link .x {
  display: none;
  text-indent: -999em;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../images/bg_x.png) center no-repeat transparent;
  z-index: 10;
}
/* line 78, ../scss/module/_configurableswatches.scss */
.swatch-link.has-image .swatch-label {
  position: relative;
}
/* line 82, ../scss/module/_configurableswatches.scss */
.swatch-link.has-image img {
  position: absolute;
  top: 0;
  left: 0;
}

/* line 90, ../scss/module/_configurableswatches.scss */
.swatch-label {
  color: #777;
  margin: 0;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  white-space: nowrap;
  font-size: 17px;
}

/* line 98, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list {
  margin-left: 13px;
  zoom: 1;
  clear: both;
  -webkit-transform: translateZ(0px);
}
/* line 104, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list li {
  float: left;
  zoom: 1;
  margin: 0 0 3px 3px;
}
/* line 110, ../scss/module/_configurableswatches.scss */
.products-grid .configurable-swatch-list li {
  display: inline-block;
  float: none;
  margin: 0;
  vertical-align: top;
}
/* line 118, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list .not-available .x {
  display: block;
}
/* line 122, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list .not-available .swatch-link {
  border-color: #EDEDED;
  position: relative;
}
/* line 126, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list .not-available .swatch-link.has-image img {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
/* line 132, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list .not-available .swatch-label {
  color: #aaa;
  background: #fff;
}
/* line 138, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list .wide-swatch .swatch-label {
  padding: 0 6px;
}
/* line 142, ../scss/module/_configurableswatches.scss */
.configurable-swatch-list .not-available a:focus {
  outline: 0;
}

/* line 148, ../scss/module/_configurableswatches.scss */
#narrow-by-list ul .configurable-swatch-list li {
  margin: 0 0 0 3px;
  width: 47%;
}
/* line 153, ../scss/module/_configurableswatches.scss */
#narrow-by-list ul .swatch-link {
  border: none;
  line-height: 25px;
  margin-right: 2px;
  text-align: left;
}
/* line 159, ../scss/module/_configurableswatches.scss */
#narrow-by-list ul .swatch-link.has-image {
  line-height: inherit;
}
/* line 163, ../scss/module/_configurableswatches.scss */
#narrow-by-list ul .swatch-link:hover .swatch-label {
  border-color: #11B400;
}
/* line 168, ../scss/module/_configurableswatches.scss */
#narrow-by-list ul .swatch-label {
  background: #ECECEC;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  display: block;
  float: left;
  line-height: 1.5em;
  margin: 0 5px 0 0;
  padding: 1px 5px;
  white-space: nowrap;
}
/* line 179, ../scss/module/_configurableswatches.scss */
#narrow-by-list ul .swatch-label img {
  border: 1px solid #fff;
  border-radius: 3px;
  box-sizing: content-box;
}
/* line 186, ../scss/module/_configurableswatches.scss */
#narrow-by-list ul .has-image .swatch-label {
  padding: 0;
}

@media only screen and (max-width: 770px) {
  /* line 193, ../scss/module/_configurableswatches.scss */
  #narrow-by-list ul .configurable-swatch-list li:nth-child(odd) {
    clear: left;
  }
}
/* line 199, ../scss/module/_configurableswatches.scss */
.currently .swatch-current {
  position: relative;
}
/* line 202, ../scss/module/_configurableswatches.scss */
.currently .swatch-current .btn-remove {
  margin-top: -10px;
  position: absolute;
  right: 0;
  top: 50%;
}
/* line 209, ../scss/module/_configurableswatches.scss */
.currently .swatch-current span {
  display: block;
  float: left;
}
/* line 215, ../scss/module/_configurableswatches.scss */
.currently .swatch-link {
  display: inline-block;
  margin: 0 0 0 3px;
}
/* line 219, ../scss/module/_configurableswatches.scss */
.currently .swatch-link:hover {
  border-color: #CCCCCC;
  cursor: default;
}

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

/* line 233, ../scss/module/_configurableswatches.scss */
.configurable-swatch-box {
  background: none !important;
}
/* line 236, ../scss/module/_configurableswatches.scss */
.configurable-swatch-box select.swatch-select {
  display: none;
}
/* line 240, ../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 253, ../scss/module/_configurableswatches.scss */
.availability.out-of-stock span {
  color: #666666;
}

/* line 258, ../scss/module/_configurableswatches.scss */
.product-view .product-options dd .input-box,
.product-view .product-options ul .input-box ul {
  margin: 10px 0 20px !important;
}
/* line 264, ../scss/module/_configurableswatches.scss */
.product-view .product-options .swatch-attr, .product-view .product-options .custom-option-dt {
  float: none;
  display: block;
  clear: both;
  border: 0;
}
/* line 270, ../scss/module/_configurableswatches.scss */
.product-view .product-options .swatch-attr label,
.product-view .product-options .swatch-attr .select-label, .product-view .product-options .custom-option-dt label,
.product-view .product-options .custom-option-dt .select-label {
  font-size: 12px;
}
/* line 275, ../scss/module/_configurableswatches.scss */
.product-view .product-options .swatch-attr label, .product-view .product-options .custom-option-dt label {
  display: block;
  line-height: 1.3;
}
/* line 279, ../scss/module/_configurableswatches.scss */
.product-view .product-options .swatch-attr label > p,
.product-view .product-options .swatch-attr label > em,
.product-view .product-options .swatch-attr label > span, .product-view .product-options .custom-option-dt label > p,
.product-view .product-options .custom-option-dt label > em,
.product-view .product-options .custom-option-dt label > span {
  float: left;
}
/* line 286, ../scss/module/_configurableswatches.scss */
.product-view .product-options .swatch-attr .select-label, .product-view .product-options .custom-option-dt .select-label {
  display: inline;
  font-weight: normal;
  color: #11B400;
  line-height: 26px;
  padding-left: 0px;
}
/* line 295, ../scss/module/_configurableswatches.scss */
.product-view .product-options ul .input-box {
  width: auto;
  height: auto;
}
/* line 300, ../scss/module/_configurableswatches.scss */
.product-view .product-options .select-label {
  display: none !important;
}
/* line 305, ../scss/module/_configurableswatches.scss */
.product-view .add-to-cart button.out-of-stock {
  background-position: -80px -362px;
  cursor: default;
}
/* line 309, ../scss/module/_configurableswatches.scss */
.product-view .option-custom .swatch-label {
  background: url("../images/question-mark.png") no-repeat right 4px top/contain;
  padding-right: 32px;
}
/* line 315, ../scss/module/_configurableswatches.scss */
.product-view #product-options-wrapper > ul > li:nth-child(1n+1) .not-available a, .product-view #product-options-wrapper > ul > li:nth-child(1n+1) .not-available:hover a {
  cursor: default;
  border: 1px solid #EDEDED !important;
}

/* line 323, ../scss/module/_configurableswatches.scss */
.question-mark {
  background: url("../images/question-mark.png") no-repeat right top/contain;
  display: inline-block;
  height: 20px;
  margin-left: 3px;
  width: 20px;
  position: relative;
  top: -2px;
  margin-bottom: -6px;
}

/* ============================================ *
 * 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: 60px;
    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: 30px;
  }
  /* line 97, ../scss/module/_customer.scss */
  .customer-account-login .col2-set .col-2 {
    padding-top: 30px;
    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: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  color: #666666;
}

/* 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: 13px;
  padding-left: 10px;
}

/* line 136, ../scss/module/_customer.scss */
.remember-me-popup {
  display: none;
  border: 1px solid #CCCCCC;
  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 .remember-me-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  font-size: 12px;
}
/* line 154, ../scss/module/_customer.scss */
.remember-me-popup .remember-me-popup-close-button {
  display: none;
}

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

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

/* ============================================ *
 * My Account Global Styles
 * ============================================ */
/* line 204, ../scss/module/_customer.scss */
body.customer-account .my-account .page-title h1 {
  border: 0;
  text-align: left;
}
/* line 210, ../scss/module/_customer.scss */
body.customer-account .my-account .title-buttons {
  position: relative;
  text-align: right;
}
/* line 214, ../scss/module/_customer.scss */
body.customer-account .my-account .title-buttons h1 {
  text-align: left;
}
/* line 218, ../scss/module/_customer.scss */
body.customer-account .my-account .title-buttons .button {
  position: absolute;
  right: 0;
  top: 0;
}
/* line 224, ../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 231, ../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 238, ../scss/module/_customer.scss */
body.customer-account .my-account .addresses-list h3 {
  font-size: 14px;
  font-weight: 600;
}
/* line 243, ../scss/module/_customer.scss */
body.customer-account .my-account .fieldset {
  margin-top: 30px;
  margin-bottom: 30px;
}
/* line 249, ../scss/module/_customer.scss */
body.customer-account .data-table {
  margin-top: 5px;
}
/* line 253, ../scss/module/_customer.scss */
body.customer-account .data-table td a {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  font-style: normal;
  font-size: 13px;
}
/* line 261, ../scss/module/_customer.scss */
body.customer-account .data-table span.nobr {
  white-space: normal;
}
/* line 264, ../scss/module/_customer.scss */
body.customer-account .data-table span.nobr a {
  white-space: nowrap;
}
/* line 270, ../scss/module/_customer.scss */
body.customer-account .data-table td.view a {
  display: block;
}
/* line 275, ../scss/module/_customer.scss */
body.customer-account .data-table .separator {
  display: none;
}
/* line 283, ../scss/module/_customer.scss */
body.customer-account .sidebar .block ol#compare-items li {
  margin: 10px 0;
}
/* line 289, ../scss/module/_customer.scss */
body.customer-account .sidebar .block .block-content p.block-subtitle {
  margin-bottom: 15px;
}
/* line 293, ../scss/module/_customer.scss */
body.customer-account .sidebar .block .block-content .actions {
  margin-top: 30px;
}
/* line 300, ../scss/module/_customer.scss */
body.customer-account .sidebar ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
/* line 305, ../scss/module/_customer.scss */
body.customer-account .sidebar ol#cart-sidebar-reorder p.product-name {
  display: inline-block;
  margin-bottom: 0;
}
/* line 312, ../scss/module/_customer.scss */
body.customer-account .sidebar .block-cart .summary {
  margin-bottom: 15px;
}
/* line 319, ../scss/module/_customer.scss */
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
/* line 323, ../scss/module/_customer.scss */
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li input {
  margin-right: 10px;
}
/* line 328, ../scss/module/_customer.scss */
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder p.product-name {
  display: inline;
  margin-bottom: 0;
}

/* line 339, ../scss/module/_customer.scss */
.form-list .customer-dob .dob-month,
.form-list .customer-dob .dob-day {
  width: 40px;
  float: left;
  margin-right: 10px;
}
/* line 346, ../scss/module/_customer.scss */
.form-list .customer-dob .dob-year {
  width: 80px;
  float: left;
}

/* ============================================ *
 * Dashboard
 * ============================================ */
/* line 359, ../scss/module/_customer.scss */
.col-wrapper .box-head,
.dashboard .box-head {
  margin-top: 15px;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 7px;
}
/* line 364, ../scss/module/_customer.scss */
.col-wrapper .box-head h2,
.dashboard .box-head h2 {
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0;
}
/* line 371, ../scss/module/_customer.scss */
.col-wrapper .box-head a,
.dashboard .box-head a {
  padding: 10px;
}
/* line 378, ../scss/module/_customer.scss */
.col-wrapper .box-title a,
.col-wrapper .box-head a,
.dashboard .box-title a,
.dashboard .box-head a {
  text-transform: uppercase;
  font-size: 12px;
}
/* line 384, ../scss/module/_customer.scss */
.col-wrapper .box-account,
.dashboard .box-account {
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 0;
}
/* line 389, ../scss/module/_customer.scss */
.col-wrapper .box-account.shipping,
.dashboard .box-account.shipping {
  margin-top: 0px;
  margin-bottom: 10px;
}
/* line 394, ../scss/module/_customer.scss */
.col-wrapper .box-account p,
.col-wrapper .box-account address,
.dashboard .box-account p,
.dashboard .box-account address {
  font-size: 13px;
}
/* line 400, ../scss/module/_customer.scss */
.col-wrapper .box-recent .box-head,
.dashboard .box-recent .box-head {
  margin-top: 15px;
}
/* line 406, ../scss/module/_customer.scss */
.col-wrapper .box-account.box-info.box-files,
.dashboard .box-account.box-info.box-files {
  margin-top: 30px;
}
/* line 409, ../scss/module/_customer.scss */
.col-wrapper .box-account.box-info.box-files .data-table td a,
.dashboard .box-account.box-info.box-files .data-table td a {
  text-transform: none;
}
/* line 414, ../scss/module/_customer.scss */
.col-wrapper .box-account.box-info .box-head,
.dashboard .box-account.box-info .box-head {
  margin-top: 15px;
}
/* line 420, ../scss/module/_customer.scss */
.col-wrapper .col2-set .col-1,
.col-wrapper .col2-set .col-2,
.dashboard .col2-set .col-1,
.dashboard .col2-set .col-2 {
  padding-bottom: 0;
  padding-top: 0;
}
/* line 425, ../scss/module/_customer.scss */
.col-wrapper .col2-set .col-1 .box-title,
.col-wrapper .col2-set .col-2 .box-title,
.dashboard .col2-set .col-1 .box-title,
.dashboard .col2-set .col-2 .box-title {
  position: relative;
  padding-bottom: 10px;
}
/* line 429, ../scss/module/_customer.scss */
.col-wrapper .col2-set .col-1 .box-title h2,
.col-wrapper .col2-set .col-1 .box-title h3,
.col-wrapper .col2-set .col-2 .box-title h2,
.col-wrapper .col2-set .col-2 .box-title h3,
.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: 14px;
  margin-bottom: 0;
}
/* line 436, ../scss/module/_customer.scss */
.col-wrapper .col2-set .col-1 .box-title a,
.col-wrapper .col2-set .col-2 .box-title a,
.dashboard .col2-set .col-1 .box-title a,
.dashboard .col2-set .col-2 .box-title a {
  line-height: 19.6px;
}
/* line 444, ../scss/module/_customer.scss */
.col-wrapper .box-reviews.box-account,
.dashboard .box-reviews.box-account {
  padding-bottom: 0;
}
/* line 448, ../scss/module/_customer.scss */
.col-wrapper .box-reviews li,
.dashboard .box-reviews li {
  padding: 10px 0;
  border-top: 1px solid #EDEDED;
}
/* line 452, ../scss/module/_customer.scss */
.col-wrapper .box-reviews li:first-child,
.dashboard .box-reviews li:first-child {
  border-top: 0;
}
/* line 456, ../scss/module/_customer.scss */
.col-wrapper .box-reviews li .number,
.dashboard .box-reviews li .number {
  margin-right: -20px;
  float: left;
  line-height: 1.4;
  font-size: 13px;
}
/* line 463, ../scss/module/_customer.scss */
.col-wrapper .box-reviews li .details,
.dashboard .box-reviews li .details {
  margin-left: 20px;
}
/* line 466, ../scss/module/_customer.scss */
.col-wrapper .box-reviews li .details .ratings,
.dashboard .box-reviews li .details .ratings {
  content: '';
  display: table;
  clear: both;
  margin-bottom: 0;
}
/* line 470, ../scss/module/_customer.scss */
.col-wrapper .box-reviews li .details .ratings strong,
.dashboard .box-reviews li .details .ratings strong {
  float: left;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  margin-right: 5px;
}
/* line 477, ../scss/module/_customer.scss */
.col-wrapper .box-reviews li .details .ratings .rating-box,
.dashboard .box-reviews li .details .ratings .rating-box {
  float: left;
  margin: 3px 0 0 0;
}

/* line 487, ../scss/module/_customer.scss */
#my-orders-table {
  margin-bottom: 15px;
}

/* ============================================ *
 * Address Book
 * ============================================ */
/* line 496, ../scss/module/_customer.scss */
.my-account .addresses-list {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}
/* line 499, ../scss/module/_customer.scss */
.my-account .addresses-list .col-1,
.my-account .addresses-list .col-2 {
  padding-bottom: 0;
}
/* line 504, ../scss/module/_customer.scss */
.my-account .addresses-list .item {
  margin: 0 0 30px 0;
}
/* line 507, ../scss/module/_customer.scss */
.my-account .addresses-list .item p {
  margin-top: 10px;
}
@media only screen and (max-width: 770px) {
  /* line 513, ../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 519, ../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 528, ../scss/module/_customer.scss */
  .my-account .addresses-list .addresses-additional p a {
    white-space: nowrap;
  }
}

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

/* line 571, ../scss/module/_customer.scss */
.order-date {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: uppercase;
}

/* line 576, ../scss/module/_customer.scss */
.order-info-box {
  margin-bottom: 40px;
  margin-top: 20px;
}
/* line 580, ../scss/module/_customer.scss */
.order-info-box + .order-info-box {
  padding-bottom: 40px;
  border-bottom: 1px solid #EDEDED;
}
/* line 585, ../scss/module/_customer.scss */
.order-info-box .col-1 {
  padding-right: 0;
  width: 48%;
}
/* line 590, ../scss/module/_customer.scss */
.order-info-box .col-2 {
  width: 52%;
}
/* line 594, ../scss/module/_customer.scss */
.order-info-box .col-1,
.order-info-box .col-2 {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
/* line 601, ../scss/module/_customer.scss */
.order-info-box .box-title {
  width: 150px;
  padding-right: 10px;
  float: left;
}
/* line 606, ../scss/module/_customer.scss */
.order-info-box .box-title h2 {
  font-size: 14px;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: bold;
  line-height: 1.5;
}
/* line 612, ../scss/module/_customer.scss */
.order-info-box .box-title h2:after {
  content: ':';
}
/* line 618, ../scss/module/_customer.scss */
.order-info-box .box-content {
  float: left;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}
/* line 622, ../scss/module/_customer.scss */
.order-info-box .box-content td,
.order-info-box .box-content th {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 1.3;
}
/* line 628, ../scss/module/_customer.scss */
.order-info-box .box-content th {
  padding-top: 10px;
}
/* line 632, ../scss/module/_customer.scss */
.order-info-box .box-content td {
  padding-left: 15px;
}
/* line 636, ../scss/module/_customer.scss */
.order-info-box .box-content strong {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
}

/* line 645, ../scss/module/_customer.scss */
#my-orders-table .option-label {
  margin-left: 10px;
  font-weight: 600;
  font-style: italic;
}
/* line 651, ../scss/module/_customer.scss */
#my-orders-table .option-value {
  margin-left: 20px;
}
/* line 655, ../scss/module/_customer.scss */
#my-orders-table tr.bundle:not(:last-child) td {
  border-bottom: none;
  border-top: none;
}

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

@media only screen and (max-width: 599px) {
  /* line 678, ../scss/module/_customer.scss */
  #my-orders-table .option-label {
    margin-left: 20px;
  }
  /* line 682, ../scss/module/_customer.scss */
  #my-orders-table .option-value {
    margin-left: 35px;
  }
  /* line 687, ../scss/module/_customer.scss */
  #my-orders-table td[data-rwd-label=Qty] .nobr br {
    display: none;
  }
  /* line 691, ../scss/module/_customer.scss */
  #my-orders-table td[data-rwd-label=Qty] .nobr strong {
    margin-right: 10px;
  }
  /* line 696, ../scss/module/_customer.scss */
  #my-orders-table tr.bundle {
    border-color: #EDEDED;
  }
  /* line 701, ../scss/module/_customer.scss */
  #my-orders-table tr.bundle.child td[data-rwd-label] {
    padding-left: 60px;
  }
  /* line 707, ../scss/module/_customer.scss */
  #my-orders-table tbody:last-child tr:last-child td {
    padding-bottom: 10px;
    border-bottom: 0;
  }
  /* line 711, ../scss/module/_customer.scss */
  #my-orders-table tbody:last-child tr:last-child td:last-child {
    padding-bottom: 15px;
  }
  /* line 717, ../scss/module/_customer.scss */
  #my-orders-table tfoot tr.shipping {
    margin-top: 0;
  }
}
/* line 723, ../scss/module/_customer.scss */
.order-additional {
  margin: 40px 0;
}

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

@media only screen and (max-width: 1199px) {
  /* line 737, ../scss/module/_customer.scss */
  .col-wrapper .col2-set .col-1,
  .col-wrapper .col2-set .col-2,
  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    padding-right: 30px;
    padding-bottom: 0;
  }

  /* line 747, ../scss/module/_customer.scss */
  body.customer-account .data-table td.view a {
    white-space: normal;
  }
}
@media only screen and (max-width: 979px) {
  /* line 757, ../scss/module/_customer.scss */
  body.customer-account .my-account .title-buttons {
    text-align: left;
  }
  /* line 760, ../scss/module/_customer.scss */
  body.customer-account .my-account .title-buttons span.separator,
  body.customer-account .my-account .title-buttons a {
    top: -12px;
  }
}
@media only screen and (max-width: 770px) {
  /* line 773, ../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,
  body.customer-account .data-table.orders th.status {
    display: none;
  }

  /* line 784, ../scss/module/_customer.scss */
  .order-info-box .box-content {
    clear: left;
  }

  /* line 790, ../scss/module/_customer.scss */
  .addresses-list .item {
    float: left;
    width: 50%;
    padding-right: 30px;
  }

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

  /* line 805, ../scss/module/_customer.scss */
  .col-wrapper .page-title,
  .dashboard .page-title {
    margin-top: 20px;
  }
  /* line 808, ../scss/module/_customer.scss */
  .col-wrapper .page-title h1,
  .dashboard .page-title h1 {
    margin-top: 0;
  }
  /* line 813, ../scss/module/_customer.scss */
  .col-wrapper .welcome-msg,
  .dashboard .welcome-msg {
    font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  }
  /* line 816, ../scss/module/_customer.scss */
  .col-wrapper .welcome-msg .hello,
  .dashboard .welcome-msg .hello {
    font-style: italic;
  }
  /* line 821, ../scss/module/_customer.scss */
  .col-wrapper .box-account,
  .dashboard .box-account {
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
  /* line 827, ../scss/module/_customer.scss */
  .col-wrapper .col2-set .col-1,
  .col-wrapper .col2-set .col-2,
  .dashboard .col2-set .col-1,
  .dashboard .col2-set .col-2 {
    width: 48%;
    padding-right: 0;
    padding-left: 0;
  }
  /* line 834, ../scss/module/_customer.scss */
  .col-wrapper .col2-set .col-1,
  .dashboard .col2-set .col-1 {
    float: left;
    margin-right: 4%;
  }
  /* line 839, ../scss/module/_customer.scss */
  .col-wrapper .col2-set .col-2,
  .dashboard .col2-set .col-2 {
    float: right;
  }
}
@media only screen and (max-width: 599px) {
  /* line 850, ../scss/module/_customer.scss */
  body.customer-account .my-account .form-list .control {
    padding-left: 0;
  }
}
@media only screen and (max-width: 479px) {
  /* line 862, ../scss/module/_customer.scss */
  body.customer-account .my-account .page-title h1 {
    text-align: center;
  }
  /* line 867, ../scss/module/_customer.scss */
  body.customer-account .my-account .title-buttons {
    text-align: center;
  }
  /* line 870, ../scss/module/_customer.scss */
  body.customer-account .my-account .title-buttons .button {
    width: 100%;
    position: static;
    margin-bottom: 15px;
  }
  /* line 875, ../scss/module/_customer.scss */
  body.customer-account .my-account .title-buttons .button + .button {
    margin-left: 0px;
  }
  /* line 882, ../scss/module/_customer.scss */
  body.customer-account .my-account .fieldset h2 {
    margin-bottom: 15px;
  }
  /* line 887, ../scss/module/_customer.scss */
  body.customer-account .my-account .order-details h2 {
    margin-bottom: 15px;
  }
  /* line 891, ../scss/module/_customer.scss */
  body.customer-account .my-account .buttons-set {
    border-top: 0;
  }
  /* line 896, ../scss/module/_customer.scss */
  body.customer-account .my-account .addresses-list .item {
    margin-bottom: 15px;
    padding-right: 0;
    float: none;
    width: auto;
  }
  /* line 903, ../scss/module/_customer.scss */
  body.customer-account .my-account .addresses-list h2 {
    margin-bottom: 15px;
  }

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

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

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

  /* line 938, ../scss/module/_customer.scss */
  .order-info-box {
    margin: 0;
  }
  /* line 941, ../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 948, ../scss/module/_customer.scss */
  .order-info-box + .order-info-box {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 30px;
  }

  /* line 956, ../scss/module/_customer.scss */
  #my-reviews-table .nobr {
    white-space: normal;
  }
}
/* ============================================ *
 * Newsletter Subscriptions
 * ============================================ */
/* line 967, ../scss/module/_customer.scss */
body.newsletter-manage-index .my-account .fieldset {
  margin-bottom: 20px;
}
/* line 971, ../scss/module/_customer.scss */
body.newsletter-manage-index .my-account .fieldset h2 {
  display: none;
}
/* line 975, ../scss/module/_customer.scss */
body.newsletter-manage-index .my-account .form-list {
  border-top: 1px solid #EDEDED;
  padding-top: 10px;
}

/* line 981, ../scss/module/_customer.scss */
.my-account .welcome-msg {
  margin-bottom: 20px;
}

/* line 989, ../scss/module/_customer.scss */
.col-wrapper .col2-set .col-1 .box-head,
.col-wrapper .col2-set .col-2 .box-head,
.dashboard .col2-set .col-1 .box-head,
.dashboard .col2-set .col-2 .box-head {
  margin-top: 0;
}
/* line 994, ../scss/module/_customer.scss */
.col-wrapper .box-recent,
.dashboard .box-recent {
  border: 0;
  margin-bottom: 10px;
}
/* line 998, ../scss/module/_customer.scss */
.col-wrapper .box-recent p,
.dashboard .box-recent p {
  margin-top: 10px;
}
/* line 1003, ../scss/module/_customer.scss */
.col-wrapper .col2-set .box-content,
.dashboard .col2-set .box-content {
  margin-top: 10px;
}
/* line 1006, ../scss/module/_customer.scss */
.col-wrapper .col2-set .box-content:after,
.dashboard .col2-set .box-content:after {
  content: '';
  display: table;
  clear: both;
}
/* line 1010, ../scss/module/_customer.scss */
.col-wrapper .col2-set .box-content .button,
.dashboard .col2-set .box-content .button {
  margin-top: 10px;
}
/* line 1016, ../scss/module/_customer.scss */
.col-wrapper .credit-balance ul,
.dashboard .credit-balance ul {
  margin-bottom: 0;
}

@media only screen and (min-width: 480px) {
  /* line 1026, ../scss/module/_customer.scss */
  .col-wrapper .col2-set .col-1 > .box-highlight, .col-wrapper .col2-set .col-1 > .cart-totals,
  .col-wrapper .col2-set .cart-forms .col-1 > .discount,
  .cart-forms .col-wrapper .col2-set .col-1 > .discount,
  .col-wrapper .col2-set .cart-forms .col-1 > .giftcard,
  .cart-forms .col-wrapper .col2-set .col-1 > .giftcard,
  .col-wrapper .col2-set .cart-forms .col-1 > .shipping,
  .cart-forms .col-wrapper .col2-set .col-1 > .shipping,
  .col-wrapper .col2-set .cart-forms .col-1 > .box-info,
  .cart-forms .col-wrapper .col2-set .col-1 > .box-info,
  .col-wrapper .col2-set .col-1 > #save_shopping_list,
  .col-wrapper .col2-set body .col-main .cart-forms .col-1 > .box-shopping-list,
  body .col-main .cart-forms .col-wrapper .col2-set .col-1 > .box-shopping-list,
  .col-wrapper .col2-set body .col-main .cart-forms .col-1 > .box-order-form,
  body .col-main .cart-forms .col-wrapper .col2-set .col-1 > .box-order-form,
  .col-wrapper .col2-set .col-2 > .box-highlight,
  .col-wrapper .col2-set .col-2 > .cart-totals,
  .col-wrapper .col2-set .cart-forms .col-2 > .discount,
  .cart-forms .col-wrapper .col2-set .col-2 > .discount,
  .col-wrapper .col2-set .cart-forms .col-2 > .giftcard,
  .cart-forms .col-wrapper .col2-set .col-2 > .giftcard,
  .col-wrapper .col2-set .cart-forms .col-2 > .shipping,
  .cart-forms .col-wrapper .col2-set .col-2 > .shipping,
  .col-wrapper .col2-set .cart-forms .col-2 > .box-info,
  .cart-forms .col-wrapper .col2-set .col-2 > .box-info,
  .col-wrapper .col2-set .col-2 > #save_shopping_list,
  .col-wrapper .col2-set body .col-main .cart-forms .col-2 > .box-shopping-list,
  body .col-main .cart-forms .col-wrapper .col2-set .col-2 > .box-shopping-list,
  .col-wrapper .col2-set body .col-main .cart-forms .col-2 > .box-order-form,
  body .col-main .cart-forms .col-wrapper .col2-set .col-2 > .box-order-form,
  .dashboard .col2-set .col-1 > .box-highlight,
  .dashboard .col2-set .col-1 > .cart-totals,
  .dashboard .col2-set .cart-forms .col-1 > .discount,
  .cart-forms .dashboard .col2-set .col-1 > .discount,
  .dashboard .col2-set .cart-forms .col-1 > .giftcard,
  .cart-forms .dashboard .col2-set .col-1 > .giftcard,
  .dashboard .col2-set .cart-forms .col-1 > .shipping,
  .cart-forms .dashboard .col2-set .col-1 > .shipping,
  .dashboard .col2-set .cart-forms .col-1 > .box-info,
  .cart-forms .dashboard .col2-set .col-1 > .box-info,
  .dashboard .col2-set .col-1 > #save_shopping_list,
  .dashboard .col2-set body .col-main .cart-forms .col-1 > .box-shopping-list,
  body .col-main .cart-forms .dashboard .col2-set .col-1 > .box-shopping-list,
  .dashboard .col2-set body .col-main .cart-forms .col-1 > .box-order-form,
  body .col-main .cart-forms .dashboard .col2-set .col-1 > .box-order-form,
  .dashboard .col2-set .col-2 > .box-highlight,
  .dashboard .col2-set .col-2 > .cart-totals,
  .dashboard .col2-set .cart-forms .col-2 > .discount,
  .cart-forms .dashboard .col2-set .col-2 > .discount,
  .dashboard .col2-set .cart-forms .col-2 > .giftcard,
  .cart-forms .dashboard .col2-set .col-2 > .giftcard,
  .dashboard .col2-set .cart-forms .col-2 > .shipping,
  .cart-forms .dashboard .col2-set .col-2 > .shipping,
  .dashboard .col2-set .cart-forms .col-2 > .box-info,
  .cart-forms .dashboard .col2-set .col-2 > .box-info,
  .dashboard .col2-set .col-2 > #save_shopping_list,
  .dashboard .col2-set body .col-main .cart-forms .col-2 > .box-shopping-list,
  body .col-main .cart-forms .dashboard .col2-set .col-2 > .box-shopping-list,
  .dashboard .col2-set body .col-main .cart-forms .col-2 > .box-order-form,
  body .col-main .cart-forms .dashboard .col2-set .col-2 > .box-order-form {
    margin-top: 25px;
  }
}
/* line 1033, ../scss/module/_customer.scss */
.my-files {
  margin-bottom: 10px;
}

/* ============================================ *
 * Contacts
 * ============================================ */
/* line 31, ../scss/module/_contacts.scss */
.contacts-index-index .buttons-set {
  margin-left: 30px;
  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: 12px;
  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 .review-heading {
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  padding: 10px 0 5px;
}
/* line 39, ../scss/module/_review.scss */
#customer-reviews .review-heading:after {
  content: '';
  display: table;
  clear: both;
}
/* line 43, ../scss/module/_review.scss */
#customer-reviews .review-heading h2 {
  float: left;
  display: block;
}
/* line 48, ../scss/module/_review.scss */
#customer-reviews .review-heading .pager {
  clear: none;
  float: right;
  width: auto;
}
/* line 54, ../scss/module/_review.scss */
#customer-reviews .review-heading .pager .count-container .limiter {
  margin-bottom: 0;
}
/* line 57, ../scss/module/_review.scss */
#customer-reviews .review-heading .pager .count-container .limiter label {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
}
/* line 65, ../scss/module/_review.scss */
#customer-reviews .review-heading .pager .amount {
  display: none;
}
/* line 71, ../scss/module/_review.scss */
#customer-reviews h2 {
  color: #11B400;
  font-size: 12px;
  text-transform: uppercase;
}
/* line 76, ../scss/module/_review.scss */
#customer-reviews h2 span {
  color: #000;
}
/* line 81, ../scss/module/_review.scss */
#customer-reviews h3 {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
}
/* line 87, ../scss/module/_review.scss */
#customer-reviews h3 span {
  color: #11B400;
}
/* line 92, ../scss/module/_review.scss */
#customer-reviews .fieldset {
  padding-top: 25px;
  width: 470px;
}
/* line 96, ../scss/module/_review.scss */
#customer-reviews .fieldset h4 {
  border-bottom: 1px solid #CCCCCC;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  padding-bottom: 5px;
  text-transform: uppercase;
}
/* line 104, ../scss/module/_review.scss */
#customer-reviews .fieldset h4 em {
  display: none;
}
/* line 109, ../scss/module/_review.scss */
#customer-reviews .fieldset .form-list {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  margin: 10px 0;
  text-transform: uppercase;
  width: 470px;
}
/* line 124, ../scss/module/_review.scss */
#customer-reviews .fieldset .form-list .inline-label:after {
  content: '';
  display: table;
  clear: both;
}
/* line 129, ../scss/module/_review.scss */
#customer-reviews .fieldset .form-list label {
  font-size: 12px;
  font-weight: normal;
}
/* line 134, ../scss/module/_review.scss */
#customer-reviews .fieldset .form-list textarea {
  border: 1px solid #CCCCCC;
  border-radius: 0;
  min-width: 100%;
  -webkit-appearance: none;
}
/* line 141, ../scss/module/_review.scss */
#customer-reviews .fieldset .form-list input {
  border: 1px solid #CCCCCC;
  border-radius: 0;
}
/* line 145, ../scss/module/_review.scss */
#customer-reviews .fieldset .form-list input[type="text"] {
  width: 100%;
}
/* line 152, ../scss/module/_review.scss */
#customer-reviews .buttons-set {
  border: none;
  margin: 0;
  width: 470px;
}
/* line 158, ../scss/module/_review.scss */
#customer-reviews dl {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 10px;
}
/* line 164, ../scss/module/_review.scss */
#customer-reviews dl dt {
  margin: 10px 0;
  text-transform: uppercase;
}
/* line 169, ../scss/module/_review.scss */
#customer-reviews dl dd {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  margin: 10px 0;
}
/* line 174, ../scss/module/_review.scss */
#customer-reviews dl dd .ratings-table {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  width: 100%;
}
/* line 179, ../scss/module/_review.scss */
#customer-reviews dl dd .ratings-table tr {
  margin-right: 15px;
}
/* line 183, ../scss/module/_review.scss */
#customer-reviews dl dd .ratings-table .review-label {
  width: 300px;
  max-width: 70%;
}
/* line 189, ../scss/module/_review.scss */
#customer-reviews dl dd table {
  margin: 15px 0;
}
/* line 193, ../scss/module/_review.scss */
#customer-reviews dl dd .review-meta {
  color: #11B400;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase;
}

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

/* ============================================ *
 * Ratings - Global
 * ============================================ */
/* line 260, ../scss/module/_review.scss */
.ratings-table {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
/* line 265, ../scss/module/_review.scss */
.ratings-table th {
  padding-right: 10px;
}
/* line 269, ../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 278, ../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 295, ../scss/module/_review.scss */
  body.review-product-list .product-view .product-shop .price-info {
    padding-left: 0;
  }
  /* line 299, ../scss/module/_review.scss */
  body.review-product-list .product-view .product-shop .extra-info {
    padding: 0;
    min-width: 84%;
  }
  /* line 303, ../scss/module/_review.scss */
  body.review-product-list .product-view .product-shop .extra-info .ratings-table {
    margin: 10px 0;
    width: 100%;
  }
  /* line 307, ../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 323, ../scss/module/_review.scss */
  body.review-product-list .product-view .product-shop .extra-info {
    min-width: 0;
  }
  /* line 327, ../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 342, ../scss/module/_review.scss */
  #customer-reviews .fieldset {
    width: 100%;
  }
  /* line 345, ../scss/module/_review.scss */
  #customer-reviews .fieldset .form-list {
    width: 100%;
  }
  /* line 349, ../scss/module/_review.scss */
  #customer-reviews .fieldset .form-list .inline-label label,
  #customer-reviews .fieldset .form-list .inline-label .input-box {
    float: none;
  }
  /* line 357, ../scss/module/_review.scss */
  #customer-reviews .buttons-set {
    width: 100%;
  }
  /* line 364, ../scss/module/_review.scss */
  #customer-reviews .review-summary-table thead th {
    padding-left: 0px;
    padding-right: 0px;
  }
  /* line 371, ../scss/module/_review.scss */
  #customer-reviews .review-summary-table tbody th {
    padding-left: 0px;
    padding-right: 0px;
  }
  /* line 376, ../scss/module/_review.scss */
  #customer-reviews .review-summary-table tbody td {
    width: 20%;
    padding: 0px;
  }
  /* line 382, ../scss/module/_review.scss */
  #customer-reviews .review-summary-table .rating-box {
    text-indent: 0px;
    text-align: center;
    background: none;
    height: 19.6px;
    width: 100%;
  }
  /* line 389, ../scss/module/_review.scss */
  #customer-reviews .review-summary-table .rating-box .rating {
    display: none;
  }
  /* line 392, ../scss/module/_review.scss */
  #customer-reviews .review-summary-table .rating-box .rating-number {
    display: inline-block;
  }
}
@media only screen and (max-width: 450px) {
  /* line 404, ../scss/module/_review.scss */
  #customer-reviews dl dd .ratings-table tr {
    float: none;
  }
}
/* ============================================ *
 * Review View Page
 * ============================================ */
/* line 415, ../scss/module/_review.scss */
.review-product-view .product-review .product-details h2 {
  border-bottom: none;
}
/* line 420, ../scss/module/_review.scss */
.review-product-view .product-review .product-img-box {
  width: auto;
  max-width: 50%;
}
/* line 424, ../scss/module/_review.scss */
.review-product-view .product-review .product-img-box > a {
  width: 100%;
}
/* line 428, ../scss/module/_review.scss */
.review-product-view .product-review .product-img-box .product-image {
  width: 100%;
}

@media only screen and (max-width: 770px) {
  /* line 438, ../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: #cf5903;
}
/* line 103, ../scss/module/_slideshow.scss */
.slideshow-pager span.cycle-pager-active:before {
  background-color: #b64e02;
}
/* 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 #cf5903 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 #cf5903;
}

/* 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: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  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: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
/* line 57, ../scss/module/_wishlist.scss */
#wishlist-table .product-name {
  font-size: 16px;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin-bottom: 0;
  text-transform: uppercase;
}
/* line 63, ../scss/module/_wishlist.scss */
#wishlist-table .product-name a {
  color: #67C263;
}
/* line 68, ../scss/module/_wishlist.scss */
#wishlist-table .wishlist-sku {
  font-size: 11px;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin: 5px 0;
}
/* line 74, ../scss/module/_wishlist.scss */
#wishlist-table textarea {
  border: 1px solid #C0C0C0;
  width: 100%;
  height: 45px;
  font-size: 11px;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}
/* line 81, ../scss/module/_wishlist.scss */
#wishlist-table textarea::-webkit-input-placeholder {
  text-transform: uppercase;
}
/* line 84, ../scss/module/_wishlist.scss */
#wishlist-table textarea:-moz-placeholder {
  text-transform: uppercase;
}
/* line 87, ../scss/module/_wishlist.scss */
#wishlist-table textarea::-moz-placeholder {
  text-transform: uppercase;
}
/* line 90, ../scss/module/_wishlist.scss */
#wishlist-table textarea:-ms-input-placeholder {
  text-transform: uppercase;
}
/* line 94, ../scss/module/_wishlist.scss */
#wishlist-table textarea:focus {
  border: 1px solid #11B400;
}
/* line 99, ../scss/module/_wishlist.scss */
#wishlist-table .item-manage {
  text-align: right;
  max-width: 450px;
  padding-top: 5px;
}
/* line 104, ../scss/module/_wishlist.scss */
#wishlist-table .item-manage .button {
  font-size: 11px;
  padding: 3px 5px;
}
/* line 110, ../scss/module/_wishlist.scss */
#wishlist-table .cart-cell {
  text-align: center;
}
/* line 115, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-image {
  width: 113px;
}
/* line 119, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-quantity {
  width: 3em;
}
/* line 123, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-price {
  width: 120px;
  text-align: center;
}
/* line 128, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-cart {
  width: 150px;
}
/* line 131, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-cart .button {
  font-size: 12px;
  margin-bottom: 10px;
  padding: 3px 5px;
  width: 100%;
}
/* line 138, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-cart .truncated {
  margin-bottom: 10px;
}
/* line 142, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-cart > p {
  margin-bottom: 0;
}
/* line 146, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-cart .remove-whishlist-item {
  text-align: center;
}
/* line 150, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-cart .btn-remove {
  vertical-align: top;
}
/* line 155, ../scss/module/_wishlist.scss */
#wishlist-table td.customer-wishlist-item-remove {
  width: 20px;
}
/* line 159, ../scss/module/_wishlist.scss */
#wishlist-table td .button,
#wishlist-table td button {
  white-space: normal;
}
/* line 166, ../scss/module/_wishlist.scss */
#wishlist-table .price-box {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
}
/* line 170, ../scss/module/_wishlist.scss */
#wishlist-table .price-box .price {
  color: #000;
}
/* line 175, ../scss/module/_wishlist.scss */
#wishlist-table .giftregisty-add {
  margin-top: 5px;
}
/* line 178, ../scss/module/_wishlist.scss */
#wishlist-table .giftregisty-add .change {
  display: none;
}
/* line 182, ../scss/module/_wishlist.scss */
#wishlist-table .giftregisty-add li {
  cursor: pointer;
  color: #67C263;
  margin-bottom: 3px;
}
/* line 190, ../scss/module/_wishlist.scss */
#wishlist-table .truncated .details {
  background: none;
  color: #67C263;
}
/* line 196, ../scss/module/_wishlist.scss */
#wishlist-table td[data-rwd-label]:before {
  font-weight: 600;
}

@media only screen and (max-width: 1199px) {
  /* line 206, ../scss/module/_wishlist.scss */
  #wishlist-table.clean-table td {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 979px) {
  /* line 218, ../scss/module/_wishlist.scss */
  #wishlist-table.clean-table td {
    padding-left: 5px;
    padding-right: 5px;
  }
  /* line 222, ../scss/module/_wishlist.scss */
  #wishlist-table.clean-table td textarea {
    height: 100px;
  }
  /* line 226, ../scss/module/_wishlist.scss */
  #wishlist-table.clean-table td.customer-wishlist-item-cart {
    width: 110px;
  }
  /* line 231, ../scss/module/_wishlist.scss */
  #wishlist-table .product-name {
    font-size: 13px;
  }
}
@media only screen and (max-width: 770px) {
  /* line 241, ../scss/module/_wishlist.scss */
  #wishlist-table:after {
    content: '';
    display: table;
    clear: both;
  }
  /* line 245, ../scss/module/_wishlist.scss */
  #wishlist-table .product-name {
    font-size: 16px;
  }
  /* line 249, ../scss/module/_wishlist.scss */
  #wishlist-table textarea {
    height: 68px;
    max-width: 100%;
  }
  /* line 254, ../scss/module/_wishlist.scss */
  #wishlist-table .item-manage {
    max-width: 100%;
  }
  /* line 258, ../scss/module/_wishlist.scss */
  #wishlist-table tr {
    position: relative;
  }
  /* line 261, ../scss/module/_wishlist.scss */
  #wishlist-table tr:after {
    content: '';
    display: table;
    clear: both;
  }
  /* line 266, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-image {
    width: 70px;
  }
  /* line 269, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-image img {
    width: 70px;
    height: 70px;
  }
  /* line 276, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-cart p {
    margin-bottom: 0;
  }
  /* line 280, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-cart .remove-whishlist-item {
    margin-right: 0;
    padding-top: 4px;
  }
  /* line 286, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-cart {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 599px) {
  /* line 296, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-quantity {
    padding-left: 0;
  }
  /* line 300, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-image,
  #wishlist-table th.customer-wishlist-item-image {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  /* line 311, ../scss/module/_wishlist.scss */
  #wishlist-table tr {
    position: relative;
  }
  /* line 315, ../scss/module/_wishlist.scss */
  #wishlist-table th.customer-wishlist-item-image {
    display: block;
  }
  /* line 320, ../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 331, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-image {
    display: block;
    overflow: hidden;
  }
  /* line 335, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-image a {
    float: left;
  }
  /* line 338, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-image a img {
    width: 113px;
    height: 113px;
  }
  /* line 345, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-quantity, #wishlist-table td.customer-wishlist-item-price {
    text-align: left;
  }
  /* line 349, ../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 354, ../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 358, ../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 364, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-cart .cart-cell {
    float: left;
    width: 48%;
  }
  /* line 369, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-cart > p {
    float: right;
    width: 48%;
  }
  /* line 375, ../scss/module/_wishlist.scss */
  #wishlist-table td.customer-wishlist-item-remove {
    position: absolute;
    top: 15px;
    right: 0px;
    display: block;
    padding: 0px;
    height: 20px;
  }
  /* line 386, ../scss/module/_wishlist.scss */
  #wishlist-table.clean-table td.customer-wishlist-item-cart {
    width: 100%;
  }
}
/* ============================================ *
 * Wishlist Sidebar
 * ============================================ */
/* line 399, ../scss/module/_wishlist.scss */
.block-wishlist .mini-products-list > li:not(:last-child) {
  padding-bottom: 5px;
}
/* line 403, ../scss/module/_wishlist.scss */
.block-wishlist .product-details .product-name {
  padding-top: 0;
  margin-bottom: 5px;
}
/* line 408, ../scss/module/_wishlist.scss */
.block-wishlist .price-box {
  float: left;
  margin: 0;
}
/* line 413, ../scss/module/_wishlist.scss */
.block-wishlist .price-box,
.block-wishlist .price-box .price,
.block-wishlist .link-cart {
  font-size: 12px;
}
/* line 419, ../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("../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: "Source Sans Pro", "Helvetica Neue", Verdana, 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: #000;
  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: #67C263;
}
/* 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: #11B400;
  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: #11B400;
}
/* 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: 13px;
}
/* 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: #000;
  }
  /* 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 #11B400;
  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 #ECECEC;
  color: #67C263;
  cursor: pointer;
  font-size: 12px;
  padding: 4px 6px;
  text-align: left;
}
/* line 56, ../scss/module/_search.scss */
.search-autocomplete ul li:hover {
  color: #55bb51;
}
/* line 60, ../scss/module/_search.scss */
.search-autocomplete ul li.selected {
  background-color: #67C263;
  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 #67C263;
  border-top: none;
  left: 50%;
  top: -7px;
}

/* ============================================ *
 * Search - Advanced
 * ============================================ */
/* line 87, ../scss/module/_search.scss */
.advanced-search {
  background: #ECECEC;
  border: 1px solid #EDEDED;
  padding: 30px;
}
/* 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 #CCCCCC;
  font-size: 16px;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, 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 #CCCCCC;
  color: #3399CC;
  font-size: 16px;
  font-weight: 600;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  padding-bottom: 10px;
}
/* line 57, ../scss/module/_account-reviews.scss */
.product-review .ratings-table {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, 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: 12px;
  margin-right: 10px;
  text-transform: uppercase;
}
/* line 73, ../scss/module/_account-reviews.scss */
.product-review .ratings-description dt {
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  font-weight: 400;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, 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: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
}

@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: #000;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-style: italic;
  line-height: 24px;
}
/* line 57, ../scss/module/_cms.scss */
.cms-page-view .std h1,
.cms-no-route .std h1 {
  color: #11B400;
}
/* line 61, ../scss/module/_cms.scss */
.cms-page-view .std h2,
.cms-no-route .std h2 {
  color: #11B400;
}
/* line 65, ../scss/module/_cms.scss */
.cms-page-view .std li,
.cms-no-route .std li {
  color: #000;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-style: italic;
  line-height: 24px;
}
/* line 75, ../scss/module/_cms.scss */
.cms-page-view .col-left:after,
.cms-no-route .col-left:after {
  content: '';
  display: table;
  clear: both;
}

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

/* line 93, ../scss/module/_cms.scss */
.cms-page-view .std .messages,
.cms-home .std .messages,
.cms-no-route .std .messages {
  margin-bottom: 10px;
}
/* line 96, ../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 100, ../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;
}

/* line 109, ../scss/module/_cms.scss */
body.cms-home .main {
  width: 100%;
  float: left;
  max-width: 10000px;
  padding-top: 20px;
}
/* line 115, ../scss/module/_cms.scss */
body.cms-home .main-container {
  max-width: 10000px;
  padding: 20px 0 0;
}
/* line 119, ../scss/module/_cms.scss */
body.cms-home #main-banner {
  position: relative;
}
/* line 122, ../scss/module/_cms.scss */
body.cms-home #main-banner img {
  float: left;
  width: 100%;
}
/* line 127, ../scss/module/_cms.scss */
body.cms-home #main-banner > div {
  bottom: 0;
  color: white;
  height: 220px;
  left: 0;
  margin: auto;
  max-width: 1200px;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  text-shadow: 1px 2px 2px #000;
}
/* line 140, ../scss/module/_cms.scss */
body.cms-home #main-banner > div h2 {
  color: white;
  font-size: 90px;
  font-weight: normal;
  margin-left: -7px;
  margin-bottom: 0;
}
/* line 148, ../scss/module/_cms.scss */
body.cms-home #main-banner > div h3 {
  color: white;
  font-size: 21px;
  text-transform: none;
  margin-bottom: 60px;
  line-height: 150%;
}
/* line 156, ../scss/module/_cms.scss */
body.cms-home #main-banner > div a {
  background: url("../images/bg-right-arrow.png") right 6px no-repeat;
  color: white;
  display: block;
  float: left;
  padding-right: 12px;
  text-transform: uppercase;
  width: auto;
}
/* line 167, ../scss/module/_cms.scss */
body.cms-home #main-banner p {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  bottom: 20px;
  color: white;
  font-size: 16px;
  left: 0;
  margin: auto;
  max-width: 1200px;
  position: absolute;
  right: 0;
  text-align: right;
  width: 100%;
}

/* line 138, ../scss/mixin/_toggle-content.scss */
#accordion .toggle-tabs {
  display: none;
}
/* line 143, ../scss/mixin/_toggle-content.scss */
#accordion > dl > dt {
  background: url("../images/layered-nav-icon-i.png") no-repeat scroll 0px 14px transparent;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 0 10px 25px;
  text-transform: none;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  cursor: pointer;
  border-top: 1px solid #CCCCCC;
}
/* line 153, ../scss/mixin/_toggle-content.scss */
#accordion > dl > dt.first {
  border-top: 0;
}
/* line 157, ../scss/mixin/_toggle-content.scss */
#accordion > dl > dt.active {
  background: url("../images/layered-nav-icon.png") no-repeat scroll 0px 19px transparent;
}
/* line 162, ../scss/mixin/_toggle-content.scss */
#accordion > dl > dd {
  padding: 0 10px 10px 10px;
  margin: -5px 0 0 0;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  display: none;
}
/* line 168, ../scss/mixin/_toggle-content.scss */
#accordion > dl > dd:last-child {
  border-width: 0 1px 1px 1px;
}
/* line 189, ../scss/module/_cms.scss */
#accordion li {
  position: relative;
  overflow: hidden;
}
/* line 193, ../scss/module/_cms.scss */
#accordion li .plusimage h2 {
  margin-right: 10px;
}

/* line 203, ../scss/module/_cms.scss */
.page-sitemap .links {
  display: block;
  text-align: right;
  margin: 0 20px 0 0;
}
/* line 208, ../scss/module/_cms.scss */
.page-sitemap .links a {
  position: relative;
}
/* line 211, ../scss/module/_cms.scss */
.page-sitemap .sitemap {
  padding: 0 20px;
  margin: 15px 0;
  font-size: 12px;
}
/* line 216, ../scss/module/_cms.scss */
.page-sitemap .sitemap li {
  margin: 3px 0;
}

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

/* line 231, ../scss/module/_cms.scss */
#contactForm {
  padding-left: 40px;
}
/* line 234, ../scss/module/_cms.scss */
#contactForm h2 {
  display: none;
}
/* line 238, ../scss/module/_cms.scss */
#contactForm:after {
  content: '';
  display: table;
  clear: both;
}
/* line 242, ../scss/module/_cms.scss */
#contactForm .fieldset .legend + .required {
  margin: 0;
}

/**** CMS HOME ****/
/* line 249, ../scss/module/_cms.scss */
#main-banner {
  float: left;
  width: 100%;
}
/* line 253, ../scss/module/_cms.scss */
#main-banner > img {
  float: left;
  width: 100%;
}

/* line 259, ../scss/module/_cms.scss */
.home-content-block,
#dual-banner,
#featured-products,
#footer-banners {
  float: left;
  width: 100%;
  max-width: 10000px;
}
/* line 267, ../scss/module/_cms.scss */
.home-content-block div,
#dual-banner div,
#featured-products div,
#footer-banners div {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
}

/* line 275, ../scss/module/_cms.scss */
.home-content-block {
  text-align: center;
}
/* line 278, ../scss/module/_cms.scss */
.home-content-block div {
  padding-bottom: 0;
  padding-top: 40px;
}
/* line 282, ../scss/module/_cms.scss */
.home-content-block div p {
  margin-bottom: 0;
}

/* line 289, ../scss/module/_cms.scss */
#dual-banner img {
  float: left;
  width: 49.5%;
  margin-top: 35px;
}
/* line 294, ../scss/module/_cms.scss */
#dual-banner img.first {
  margin-right: 1%;
}

/* line 301, ../scss/module/_cms.scss */
#featured-products h2 {
  float: left;
  margin-top: 45px;
  text-align: center;
  width: 100%;
  color: #333333;
  margin-bottom: 35px;
}
/* line 309, ../scss/module/_cms.scss */
#featured-products ul {
  float: left;
  width: 100%;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 0;
  display: table;
}
/* line 316, ../scss/module/_cms.scss */
#featured-products ul li {
  float: none;
  width: 25.99%;
  border-right: 1px solid #CCCCCC;
  list-style: none;
  padding: 20px;
  vertical-align: top;
  display: table-cell;
}
/* line 325, ../scss/module/_cms.scss */
#featured-products ul li h3 {
  color: #666666;
  margin-bottom: 5px;
  margin-top: 30px;
  line-height: 26px;
  float: left;
  width: 100%;
}
/* line 335, ../scss/module/_cms.scss */
#featured-products ul li a span {
  background: url("../images/btn-arrow.png") no-repeat scroll right 7px transparent;
  color: #333333;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  padding-right: 11px;
  width: auto;
}
/* line 343, ../scss/module/_cms.scss */
#featured-products ul li a.img-link {
  background: none;
}
/* line 346, ../scss/module/_cms.scss */
#featured-products ul li a.img-link span {
  background: none;
  padding-right: 0;
}
/* line 353, ../scss/module/_cms.scss */
#featured-products ul li a:hover h3, #featured-products ul li a:hover span {
  color: #55bb51;
}
/* line 356, ../scss/module/_cms.scss */
#featured-products ul li a:hover span {
  background-image: url("../images/btn-arrow-green.png");
}
/* line 362, ../scss/module/_cms.scss */
#featured-products ul li img,
#featured-products ul li span {
  float: left;
  width: 100%;
}
/* line 368, ../scss/module/_cms.scss */
#featured-products ul li img {
  width: 100%;
}
/* line 372, ../scss/module/_cms.scss */
#featured-products ul li.first {
  padding-left: 0;
}
/* line 375, ../scss/module/_cms.scss */
#featured-products ul li.first img {
  padding-right: 20px;
}
/* line 380, ../scss/module/_cms.scss */
#featured-products ul li.last {
  border-right: 0;
}
/* line 384, ../scss/module/_cms.scss */
#featured-products ul li.featured {
  width: 52%;
}
/* line 389, ../scss/module/_cms.scss */
#featured-products ul.last {
  border-bottom: 0px;
}

@media only screen and (max-width: 1200px) {
  /* line 397, ../scss/module/_cms.scss */
  body.cms-home #main-banner > div {
    padding-left: 25px;
    padding-right: 25px;
    height: 160px;
  }
  /* line 402, ../scss/module/_cms.scss */
  body.cms-home #main-banner > div h2 {
    font-size: 60px;
    margin-left: -4px;
  }
  /* line 407, ../scss/module/_cms.scss */
  body.cms-home #main-banner > div h3 {
    font-size: 17px;
    margin-bottom: 40px;
  }
  /* line 411, ../scss/module/_cms.scss */
  body.cms-home #main-banner > div a {
    background-position: right 6px;
    font-size: 12px;
  }
  /* line 416, ../scss/module/_cms.scss */
  body.cms-home #main-banner > p {
    padding-left: 25px;
    padding-right: 25px;
    font-size: 13px;
  }
}
@media only screen and (max-width: 770px) {
  /* line 427, ../scss/module/_cms.scss */
  body.cms-home #main-banner > div {
    padding-left: 30px;
    padding-right: 30px;
    height: 110px;
  }
  /* line 432, ../scss/module/_cms.scss */
  body.cms-home #main-banner > div h2 {
    font-size: 40px;
    margin-left: -3px;
  }
  /* line 437, ../scss/module/_cms.scss */
  body.cms-home #main-banner > div h3 {
    font-size: 14px;
    margin-bottom: 20px;
  }
  /* line 442, ../scss/module/_cms.scss */
  body.cms-home #main-banner > p {
    display: none;
  }

  /* line 447, ../scss/module/_cms.scss */
  #contactForm {
    padding-left: 0;
  }

  /* line 451, ../scss/module/_cms.scss */
  #featured-products ul {
    display: block;
    border-bottom: 0;
  }
  /* line 455, ../scss/module/_cms.scss */
  #featured-products ul li {
    width: 100% !important;
    display: block;
    border-right: 0;
    border-bottom: 1px solid #EDEDED;
    float: left;
    margin: 0;
    padding: 20px 0;
  }
  /* line 465, ../scss/module/_cms.scss */
  #featured-products ul li.last img {
    padding-left: 0;
  }
  /* line 470, ../scss/module/_cms.scss */
  #featured-products ul li > span {
    float: left;
    width: 55%;
  }
  /* line 474, ../scss/module/_cms.scss */
  #featured-products ul li > span.img-link {
    width: 40%;
    height: 0;
    padding-bottom: 40%;
    margin-right: 5%;
    overflow: hidden;
  }
  /* line 481, ../scss/module/_cms.scss */
  #featured-products ul li > span.img-link span {
    display: inline-block;
    right: -50%;
    position: relative;
  }
  /* line 486, ../scss/module/_cms.scss */
  #featured-products ul li > span.img-link span img {
    left: -50%;
    position: relative;
  }
  /* line 493, ../scss/module/_cms.scss */
  #featured-products ul li > span img {
    padding-left: 0;
  }
  /* line 497, ../scss/module/_cms.scss */
  #featured-products ul li img {
    width: auto;
    padding: 0;
  }
}
@media only screen and (max-width: 599px) {
  /* line 509, ../scss/module/_cms.scss */
  #featured-products ul li img {
    width: 100%;
  }

  /* line 514, ../scss/module/_cms.scss */
  body.cms-home #main-banner > div h2 {
    font-size: 30px;
    margin-top: 7px;
  }
  /* line 519, ../scss/module/_cms.scss */
  body.cms-home #main-banner > div h3 {
    font-size: 12px;
    margin-bottom: 20px;
  }

  /* line 525, ../scss/module/_cms.scss */
  #dual-banner img {
    width: 100%;
    margin-top: 25px;
  }
}
/* ============================================ *
 * Pricing Conditions
 * ============================================ */
/* line 32, ../scss/module/_pricing_conditions.scss */
.price-box .minimal-price-link .label {
  color: #CF5050;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  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: 14.5px;
  line-height: 1.3;
}
/* line 51, ../scss/module/_cookies.scss */
.notice-cookie .actions {
  float: left;
  text-align: right;
  padding-bottom: 14.5px;
}

@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: #ECECEC;
  border: 1px solid #CCCCCC;
  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 {
  float: left;
  margin: 0 0 5px;
  width: 100%;
}

/* ============================================ *
 * Account - Orders, Invoices, Credit Memos.
 * ============================================ */
@media only screen and (max-width: 479px) {
  /* line 34, ../scss/module/_account-orders.scss */
  .sales-order-invoice .sub-title,
  .sales-order-creditmemo .sub-title,
  .sales-order-shipment .sub-title {
    float: left;
    font-size: 15px;
    text-align: center;
    width: 100%;
  }
  /* line 40, ../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: 12px;
  }
  /* 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-bottom: 30px;
}
@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;
}

/* ============================================ *
 * Billing Agreements
 * ============================================ */
/* line 31, ../scss/module/_billing-agreements.scss */
.billing-agreements .info-box {
  margin-bottom: 30px;
}
/* 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;
}

/* ============================================ *
 * 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: #ECECEC;
  text-transform: uppercase;
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  margin-bottom: 10px;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
}
/* line 46, ../scss/module/_checkout-multi-address.scss */
body[class*="checkout-multishipping-"] .checkout-progress > li.active {
  background-color: #DDDDDD;
}
/* 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: 16px;
  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: #ECECEC;
  border-bottom: 1px solid #CCCCCC;
  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: #ECECEC;
  border-bottom: 1px solid #CCCCCC;
  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;
  }
}
/* ============================================ *
 * Gallery Listing
 * ============================================ */
/* line 32, ../scss/module/_gallery-listing.scss */
body.gallery-listing .main-container {
  max-width: 10000px;
  padding-right: 0;
  padding-left: 0;
}
/* line 38, ../scss/module/_gallery-listing.scss */
body.gallery-listing .breadcrumbs {
  display: none;
}
/* line 42, ../scss/module/_gallery-listing.scss */
body.gallery-listing .page-title h1 {
  border: 0 none;
  font-size: 40px;
  font-weight: normal;
  margin-bottom: 10px;
  text-align: center;
  text-transform: none;
}
/* line 51, ../scss/module/_gallery-listing.scss */
body.gallery-listing .breadcrumbs > ul,
body.gallery-listing .col-main .page-title,
body.gallery-listing #filters {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3%;
}
/* line 60, ../scss/module/_gallery-listing.scss */
body.gallery-listing .post-list-container {
  padding: 0 20px;
}
/* line 64, ../scss/module/_gallery-listing.scss */
body.gallery-listing #filters {
  margin-bottom: 20px;
}
/* line 67, ../scss/module/_gallery-listing.scss */
body.gallery-listing #filters span {
  font-weight: bold;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin-right: 10px;
  line-height: 34px;
  float: left;
}
/* line 74, ../scss/module/_gallery-listing.scss */
body.gallery-listing #filters button {
  background-color: white;
  border: 1px solid #EDEDED;
  color: #000;
  text-transform: none;
  border-radius: 3px;
  padding: 8px 30px;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 5px;
}
/* line 85, ../scss/module/_gallery-listing.scss */
body.gallery-listing #filters button:hover {
  color: #FFFFFF;
  border-color: transparent;
  background-color: #419c3d;
}
/* line 91, ../scss/module/_gallery-listing.scss */
body.gallery-listing #filters button.is-checked {
  color: #FFFFFF;
  border-color: transparent;
  background: url("../images/remove-btn.png") no-repeat scroll right 17px center #419c3d;
}
/* line 97, ../scss/module/_gallery-listing.scss */
body.gallery-listing #filters button:focus {
  outline: none;
  border-color: #32772f;
}
/* line 104, ../scss/module/_gallery-listing.scss */
body.gallery-listing .post-list {
  float: left;
  width: 100%;
  background-color: #f6f6f6;
  padding-top: 20px;
  padding-bottom: 20px;
}
/* line 111, ../scss/module/_gallery-listing.scss */
body.gallery-listing .post-list #post-list {
  width: 100%;
  float: left;
}
/* line 115, ../scss/module/_gallery-listing.scss */
body.gallery-listing .post-list #post-list:after {
  content: '';
  display: block;
  clear: both;
}
/* line 121, ../scss/module/_gallery-listing.scss */
body.gallery-listing .post-list #post-list .item {
  float: left;
  padding-right: 8px;
  padding-left: 8px;
  padding-bottom: 10px;
  width: 33%;
  /* iPad rendering fix  */
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
}
/* line 132, ../scss/module/_gallery-listing.scss */
body.gallery-listing .post-list #post-list .item .gallery-list-item {
  float: left;
  widows: 100%;
  padding: 5px;
  -moz-box-shadow: 0px 0px 5px 0px #DDD;
  -webkit-box-shadow: 0px 0px 5px 0px #DDD;
  box-shadow: 0px 0px 5px 0px #DDD;
  background-color: #FFF;
}
/* line 139, ../scss/module/_gallery-listing.scss */
body.gallery-listing .post-list #post-list .item .gallery-list-item:hover {
  -moz-box-shadow: 0px 0px 10px 2px #AAA;
  -webkit-box-shadow: 0px 0px 10px 2px #AAA;
  box-shadow: 0px 0px 10px 2px #AAA;
}
/* line 143, ../scss/module/_gallery-listing.scss */
body.gallery-listing .post-list #post-list .item .gallery-list-item > h2 {
  float: left;
  margin: 12px 0 8px;
  padding-left: 3px;
  color: #333333;
  font-size: 19px;
  text-transform: none;
}
/* line 152, ../scss/module/_gallery-listing.scss */
body.gallery-listing .post-list #post-list .item .gallery-list-item img {
  width: 100%;
}

/* line 162, ../scss/module/_gallery-listing.scss */
body.gallery-detail .owl-buttons .owl-next {
  right: 5px;
}
/* line 165, ../scss/module/_gallery-listing.scss */
body.gallery-detail .images-block {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
/* line 170, ../scss/module/_gallery-listing.scss */
body.gallery-detail .images-block .owl-item > li {
  margin-right: 20px;
  overflow: hidden;
}
/* line 175, ../scss/module/_gallery-listing.scss */
body.gallery-detail .images-block img {
  height: 500px;
}
/* line 179, ../scss/module/_gallery-listing.scss */
body.gallery-detail .post-entry {
  float: left;
  padding-right: 100px;
  width: 80%;
}
/* line 184, ../scss/module/_gallery-listing.scss */
body.gallery-detail .post-entry h1.post-title {
  color: black;
  text-transform: none;
  margin-bottom: 15px;
  font-size: 23px;
}
/* line 191, ../scss/module/_gallery-listing.scss */
body.gallery-detail .post-entry p {
  margin-bottom: 10px;
}
/* line 194, ../scss/module/_gallery-listing.scss */
body.gallery-detail .post-entry p strong {
  font-size: 19px;
}
/* line 199, ../scss/module/_gallery-listing.scss */
body.gallery-detail .block-related {
  float: right;
  width: 20%;
}
/* line 203, ../scss/module/_gallery-listing.scss */
body.gallery-detail .block-related .block-title {
  border: 0;
}
/* line 206, ../scss/module/_gallery-listing.scss */
body.gallery-detail .block-related .block-title strong span {
  text-transform: none;
  color: black;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 19px;
}
/* line 214, ../scss/module/_gallery-listing.scss */
body.gallery-detail .block-related .block-content {
  border: 1px solid #CCCCCC;
  padding: 20px;
  width: 100%;
  float: right;
}
/* line 220, ../scss/module/_gallery-listing.scss */
body.gallery-detail .block-related .block-content .product {
  margin-left: 0;
}
/* line 223, ../scss/module/_gallery-listing.scss */
body.gallery-detail .block-related .block-content .product .product-details,
body.gallery-detail .block-related .block-content .product a.product-image {
  float: left;
  width: 100%;
}
/* line 232, ../scss/module/_gallery-listing.scss */
body.gallery-detail #block-blog-related li.item {
  margin: 0 0 20px;
  padding: 0;
}
/* line 236, ../scss/module/_gallery-listing.scss */
body.gallery-detail #block-blog-related li.item img {
  width: 100%;
  height: 100%;
  max-width: 175px;
  max-height: 175px;
}
/* line 243, ../scss/module/_gallery-listing.scss */
body.gallery-detail #block-blog-related .product-details {
  padding: 0;
  margin: 0;
}
/* line 247, ../scss/module/_gallery-listing.scss */
body.gallery-detail #block-blog-related .product-details .product-name {
  text-transform: none;
  font-size: 13px;
}

@media only screen and (max-width: 1199px) {
  /* line 255, ../scss/module/_gallery-listing.scss */
  body.gallery-detail .post-entry {
    padding: 0 15px;
  }

  /* line 258, ../scss/module/_gallery-listing.scss */
  body.gallery-detail .images-block img {
    height: 350px;
  }
}
@media only screen and (max-width: 770px) {
  /* line 265, ../scss/module/_gallery-listing.scss */
  body.gallery-detail .post-entry {
    float: left;
    padding-right: 30px;
    width: 70%;
  }
  /* line 270, ../scss/module/_gallery-listing.scss */
  body.gallery-detail .block-related {
    float: right;
    width: 30%;
  }
  /* line 274, ../scss/module/_gallery-listing.scss */
  body.gallery-detail .owl-carousel {
    margin-top: 10px;
  }

  /* line 281, ../scss/module/_gallery-listing.scss */
  body.gallery-listing .post-list #post-list .item {
    width: 50%;
  }
}
@media only screen and (max-width: 599px) {
  /* line 292, ../scss/module/_gallery-listing.scss */
  body.gallery-detail .images-block .owl-item {
    padding: 0 5px;
  }
  /* line 295, ../scss/module/_gallery-listing.scss */
  body.gallery-detail .images-block .owl-item > li {
    margin-right: 0;
    overflow: hidden;
  }
  /* line 300, ../scss/module/_gallery-listing.scss */
  body.gallery-detail .images-block img {
    height: auto;
    width: 100%;
  }
}
@media only screen and (max-width: 479px) {
  /* line 313, ../scss/module/_gallery-listing.scss */
  body.gallery-listing .post-list #post-list .item {
    width: 100%;
  }

  /* line 321, ../scss/module/_gallery-listing.scss */
  body.gallery-detail .post-entry {
    float: left;
    padding-right: 0;
    width: 100%;
  }
  /* line 326, ../scss/module/_gallery-listing.scss */
  body.gallery-detail .block-related {
    float: right;
    width: 100%;
  }
  /* line 330, ../scss/module/_gallery-listing.scss */
  body.gallery-detail .block-related img {
    margin: 0 auto;
  }
  /* line 334, ../scss/module/_gallery-listing.scss */
  body.gallery-detail .block-related .product-details {
    text-align: center;
  }
}
/* ============================================ *
 * Catalog - Restricted Category
 * ============================================ */
/* line 30, ../scss/module/_diode-restricted-category.scss */
.std .technical-documents-page ul li,
.std .technical-documents-page ul {
  list-style: none;
  margin: 0;
}

/* line 37, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .subcategories-grid-special:after, .technical-documents-page:after {
  content: '';
  display: table;
  clear: both;
}
/* line 42, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .subcategories-grid-special {
  margin-bottom: 20px !important;
}
/* line 46, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .product-downloads ul {
  padding-bottom: 0;
}
/* line 50, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .product-downloads ul ul {
  margin-left: 30px;
}
/* line 56, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .product-downloads .toggle-item p {
  display: none;
}
/* line 60, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page h2 {
  margin-bottom: 0.25em;
}
/* line 64, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .category-link {
  margin-bottom: 20px;
}
/* line 67, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .category-link a {
  text-decoration: none !important;
}
/* line 72, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .files-download {
  width: auto;
}
/* line 77, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page li > a {
  line-height: 27px;
  text-decoration: none !important;
}

/* line 84, ../scss/module/_diode-restricted-category.scss */
.diode-restricted-category .hide-on-diode-led-page {
  display: none;
}

/* line 90, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .category-landing-banner,
.diode-restricted-category .category-landing-banner {
  float: left;
  width: 100%;
  position: relative;
}
/* line 95, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .category-landing-banner img,
.diode-restricted-category .category-landing-banner img {
  float: left;
  width: 100%;
}
/* line 100, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .category-landing-banner h2,
.diode-restricted-category .category-landing-banner h2 {
  bottom: 0;
  color: white;
  font-size: 31px;
  font-weight: bold;
  height: 37px;
  left: 0;
  margin: auto;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}
/* line 114, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .category-landing-top,
.diode-restricted-category .category-landing-top {
  background-image: url("../images/bg-dropdown.png");
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: contain;
  float: left;
  margin-top: 35px;
  padding-bottom: 70px;
  width: 100%;
  margin-bottom: 0px;
}
/* line 125, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .category-landing-top > div,
.diode-restricted-category .category-landing-top > div {
  float: left;
  width: 25%;
  padding-right: 40px;
}
/* line 130, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .category-landing-top > div img,
.diode-restricted-category .category-landing-top > div img {
  margin-bottom: 30px;
}
/* line 134, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .category-landing-top > div a img,
.diode-restricted-category .category-landing-top > div a img {
  max-width: 100%;
}
/* line 138, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .category-landing-top > div.last,
.diode-restricted-category .category-landing-top > div.last {
  width: 75%;
}
/* line 141, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .category-landing-top > div.last p,
.diode-restricted-category .category-landing-top > div.last p {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 18px;
}
/* line 146, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .category-landing-top > div.last ul,
.diode-restricted-category .category-landing-top > div.last ul {
  float: left;
  width: 100%;
  margin-top: 20px;
}
/* line 151, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .category-landing-top > div.last ul li,
.diode-restricted-category .category-landing-top > div.last ul li {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  float: left;
  list-style: inside disc;
  width: 50%;
  margin-bottom: 10px;
  padding-right: 20px;
}
/* line 159, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .category-landing-top > div.last ul li:nth-child(2n+1),
.diode-restricted-category .category-landing-top > div.last ul li:nth-child(2n+1) {
  clear: left;
}
/* line 169, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .main > .col-left,
.diode-restricted-category .main > .col-left {
  display: none;
}
/* line 172, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .main > .col-main,
.diode-restricted-category .main > .col-main {
  width: 100%;
  padding: 0;
}
/* line 178, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .subcategories-grid-special .item,
.diode-restricted-category .subcategories-grid-special .item {
  border-bottom: 1px solid #CCCCCC;
  float: left;
  padding-top: 20px;
  width: 100%;
}
/* line 184, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .subcategories-grid-special .item .left,
.diode-restricted-category .subcategories-grid-special .item .left {
  width: 20%;
  float: left;
  padding-right: 20px;
}
/* line 189, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .subcategories-grid-special .item .left img,
.diode-restricted-category .subcategories-grid-special .item .left img {
  width: 100%;
}
/* line 194, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .subcategories-grid-special .item .right,
.diode-restricted-category .subcategories-grid-special .item .right {
  float: left;
  width: 80%;
  padding-left: 15px;
  border-left: 1px solid #CCCCCC;
  min-height: 245px;
}
/* line 201, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .subcategories-grid-special .item .right p,
.diode-restricted-category .subcategories-grid-special .item .right p {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin-bottom: 10px;
}
/* line 206, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .subcategories-grid-special .item .right ul.products,
.diode-restricted-category .subcategories-grid-special .item .right ul.products {
  float: left;
  width: 50%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 770px) {
  /* line 206, ../scss/module/_diode-restricted-category.scss */
  .technical-documents-page .subcategories-grid-special .item .right ul.products,
  .diode-restricted-category .subcategories-grid-special .item .right ul.products {
    margin-bottom: 0;
  }
}
/* line 215, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .subcategories-grid-special .item .right ul.products li,
.diode-restricted-category .subcategories-grid-special .item .right ul.products li {
  float: left;
  width: 100%;
  padding-right: 20px;
  line-height: 21px;
  margin-bottom: 12px;
}
/* line 224, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .subcategories-grid-special .item .right a:not(.view-all-link),
.diode-restricted-category .subcategories-grid-special .item .right a:not(.view-all-link) {
  text-decoration: underline;
}
/* line 227, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .subcategories-grid-special .item .right a:not(.view-all-link):hover,
.diode-restricted-category .subcategories-grid-special .item .right a:not(.view-all-link):hover {
  text-decoration: none;
}
/* line 232, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .subcategories-grid-special .item .right a.view-all-link,
.diode-restricted-category .subcategories-grid-special .item .right a.view-all-link {
  background: url("../images/a-arrow.png") right 20px center no-repeat #008752;
  text-align: center;
  color: white;
  text-transform: uppercase;
  padding: 10px 30px;
  float: left;
  width: 100%;
  margin-top: 0px;
  border-radius: 3px;
  font-size: 12px;
  max-width: 275px;
  margin-bottom: 20px;
  clear: both;
}
/* line 247, ../scss/module/_diode-restricted-category.scss */
.technical-documents-page .subcategories-grid-special .item .right a.view-all-link:hover,
.diode-restricted-category .subcategories-grid-special .item .right a.view-all-link:hover {
  text-decoration: none;
  opacity: 0.9;
}
@media only screen and (max-width: 770px) {
  /* line 255, ../scss/module/_diode-restricted-category.scss */
  .technical-documents-page .category-landing-banner h2,
  .diode-restricted-category .category-landing-banner h2 {
    font-size: 24px;
    height: 48px;
    padding: 0 10%;
  }
  /* line 260, ../scss/module/_diode-restricted-category.scss */
  .technical-documents-page .category-landing-top,
  .diode-restricted-category .category-landing-top {
    padding-bottom: 20px;
  }
  /* line 263, ../scss/module/_diode-restricted-category.scss */
  .technical-documents-page .category-landing-top > div,
  .diode-restricted-category .category-landing-top > div {
    padding-right: 0px;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  /* line 269, ../scss/module/_diode-restricted-category.scss */
  .technical-documents-page .category-landing-top > div img,
  .diode-restricted-category .category-landing-top > div img {
    margin: 0 auto 20px;
  }
  /* line 273, ../scss/module/_diode-restricted-category.scss */
  .technical-documents-page .category-landing-top > div a,
  .diode-restricted-category .category-landing-top > div a {
    float: none;
    margin: 0 auto;
    line-height: 60px;
  }
  /* line 279, ../scss/module/_diode-restricted-category.scss */
  .technical-documents-page .category-landing-top > div.last,
  .diode-restricted-category .category-landing-top > div.last {
    width: 100%;
    margin-top: 20px;
  }
  /* line 283, ../scss/module/_diode-restricted-category.scss */
  .technical-documents-page .category-landing-top > div.last ul li,
  .diode-restricted-category .category-landing-top > div.last ul li {
    text-align: left;
  }
  /* line 290, ../scss/module/_diode-restricted-category.scss */
  .technical-documents-page .subcategories-grid-special .item .right ul.products,
  .diode-restricted-category .subcategories-grid-special .item .right ul.products {
    width: 100%;
  }
  /* line 293, ../scss/module/_diode-restricted-category.scss */
  .technical-documents-page .subcategories-grid-special .item .right a.view-all-link,
  .diode-restricted-category .subcategories-grid-special .item .right a.view-all-link {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 599px) {
  /* line 300, ../scss/module/_diode-restricted-category.scss */
  .technical-documents-page .subcategories-grid-special .item .left,
  .diode-restricted-category .subcategories-grid-special .item .left {
    display: none;
  }
  /* line 303, ../scss/module/_diode-restricted-category.scss */
  .technical-documents-page .subcategories-grid-special .item .right,
  .diode-restricted-category .subcategories-grid-special .item .right {
    float: none;
    width: auto;
    min-height: initial;
    border: none;
    padding-left: 0;
  }
  /* line 311, ../scss/module/_diode-restricted-category.scss */
  .technical-documents-page .subcategories-grid-special .item h2,
  .diode-restricted-category .subcategories-grid-special .item h2 {
    margin-bottom: 0;
  }
  /* line 315, ../scss/module/_diode-restricted-category.scss */
  .technical-documents-page .category-landing-banner h2,
  .diode-restricted-category .category-landing-banner h2 {
    font-size: 18px;
    height: 38px;
  }
}
@media only screen and (max-width: 479px) {
  /* line 321, ../scss/module/_diode-restricted-category.scss */
  .technical-documents-page .category-landing-banner h2,
  .diode-restricted-category .category-landing-banner h2 {
    font-size: 14px;
    height: 32px;
    letter-spacing: 4px;
  }
}

/* ============================================ *
 * Order Form
 * ============================================ */
/* line 31, ../scss/module/_orderform.scss */
.orderform table {
  margin-right: 20px;
}
/* line 40, ../scss/module/_orderform.scss */
.orderform tr.tr-not-available td.icon-number-box, .orderform tr.tr-backordered td.icon-number-box, .orderform tr.tr-available td.icon-number-box, .orderform tr.tr-edit td.icon-number-box, .orderform tr.tr-edit-success td.icon-number-box {
  background-position: 5px 7px;
}
/* line 45, ../scss/module/_orderform.scss */
.orderform td.input-sku input {
  width: 180px;
}
/* line 48, ../scss/module/_orderform.scss */
.orderform td.icon-number-box {
  background-position: 5px 7px;
  width: 26px;
}

/* line 53, ../scss/module/_orderform.scss */
#orderform {
  float: left;
  width: 100%;
  margin-top: 20px;
}

/* line 58, ../scss/module/_orderform.scss */
.order-qty .qty-number-box {
  float: left;
  margin-left: 10px;
  width: 40px;
}

/* ============================================ *
 * Merged Search
 * ============================================ */
/* line 30, ../scss/module/_merged-search.scss */
.tab-content-wrapper {
  float: left;
  width: 100%;
}

/* line 35, ../scss/module/_merged-search.scss */
.products-results {
  float: left;
  width: 100%;
  margin: 20px 0;
}

/* line 44, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .col-main > .block-layered-nav {
  clear: left;
  float: left;
  padding: 0;
  width: 24%;
}
/* line 51, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .col-main > .all-products {
  float: right;
  padding-right: 0;
  width: 100%;
}
/* line 56, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .col-main > .all-products .products-title {
  margin-top: 0;
}
/* line 62, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index #content-search-list .relevance,
.awadvancedsearch-result-index #content-search-list .filterids,
.awadvancedsearch-result-index #content-search-list .category {
  display: none;
}
/* line 67, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index #content-search-list .filter-list li {
  display: none;
}
/* line 71, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .pagination {
  float: right;
  margin-top: 20px;
}
/* line 75, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .pagination > li {
  float: left;
  margin-right: 10px;
}
/* line 79, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .pagination > li.disabled {
  background-color: transparent;
  border: 0;
}
/* line 83, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .pagination > li.disabled a {
  border: 0;
  outline: 0;
  line-height: 28px;
  cursor: default;
}
/* line 89, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .pagination > li.disabled a:hover {
  background-color: transparent;
  color: #aaa;
}
/* line 97, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .pagination > li.active a {
  border-color: #7EAB6A;
  background-color: #7EAB6A;
  color: white;
  text-decoration: none;
}
/* line 106, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .pagination .page {
  border: 1px solid #aaa;
  color: #aaa;
  display: block;
  width: 20px;
  height: 20px;
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 10px;
  font-size: 11px;
  padding-top: 1px;
}
/* line 118, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .pagination .page:hover {
  border-color: #7EAB6A;
  background-color: #7EAB6A;
  color: white;
  text-decoration: none;
}
/* line 128, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index #narrow-by-list li {
  color: #67C263;
  cursor: pointer;
  margin-bottom: 5px;
  margin-left: 15px;
  margin-top: 5px;
}
/* line 135, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index #narrow-by-list li:hover {
  text-decoration: underline;
}
/* line 140, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index #narrow-by-list li.sort span {
  display: none;
  float: left;
  font-size: 10px;
  line-height: 15px;
  margin-left: 0;
  padding: 2px 4px 2px 0;
}
/* line 148, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index #narrow-by-list li.sort.asc span {
  display: block;
}
/* line 151, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index #narrow-by-list li.sort.asc span:before {
  content: "\2191";
}
/* line 156, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index #narrow-by-list li.sort.desc span {
  display: block;
}
/* line 159, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index #narrow-by-list li.sort.desc span:before {
  content: "\2193";
}
/* line 167, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .tab-content-wrapper > .block-layered-nav {
  float: left;
  padding-left: 0;
  padding-bottom: 5px;
  width: 24%;
}
/* line 173, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .tab-content-wrapper > .tab-content {
  float: right;
  width: 74%;
}
/* line 178, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .products-title {
  margin-top: 30px;
}
/* line 181, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .category-products.product-listing a.product-image {
  margin-bottom: 20px;
  max-width: 180px;
  width: 100%;
}
/* line 186, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .products-grid .product-info {
  padding-bottom: 0;
}
/* line 189, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .aw-no-results {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
/* line 194, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .post-list-item {
  font-size: 14px;
  line-height: 14px;
  width: 100%;
  float: left;
  margin-top: 0px;
  margin-bottom: 20px;
}
/* line 203, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .post-list-item h2 a {
  color: black;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: none;
}
/* line 212, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .post-list-item div, .awadvancedsearch-result-index .post-list-item p {
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 15px;
  line-height: 22px;
}
/* line 220, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .post-list-item .post-entry p {
  float: left;
  margin-right: 3px;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 15px;
  line-height: 22px;
}
/* line 230, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .post-list-item > div > img {
  float: left;
  margin-bottom: 10px;
  margin-right: 20px;
  max-width: 200px;
  width: 22%;
}
/* line 237, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .post-list-item > div > div {
  float: right;
  width: 100%;
}
/* line 242, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .post-list-item > .include-image > div {
  width: 72%;
}
/* line 245, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .post-list-item > .include-image > div.read-more-button {
  width: 100%;
}
/* line 249, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .post-list-item .read-more-button {
  margin-top: 10px;
  margin-bottom: 20px;
  width: 100%;
  float: left;
}
/* line 258, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .filter-list li span {
  display: none;
  float: left;
  font-size: 13px;
  line-height: 17px;
  margin-left: 0;
  padding: 2px 4px 2px 0;
}
/* line 268, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .filter-list #active {
  font-weight: bold;
}
/* line 271, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .filter-list #active span {
  display: block;
}
/* line 274, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .filter-list #active span:before {
  content: "\2713";
}

/* line 285, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .category-products.product-listing,
.cls-mergedsearch-result-index .category-products.product-listing {
  padding: 0;
  border-top: 0;
  margin-top: 0px;
}
/* line 290, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .products-list li,
.cls-mergedsearch-result-index .products-list li {
  padding: 10px;
}
/* line 293, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .toolbar,
.cls-mergedsearch-result-index .toolbar {
  float: left;
  width: 100%;
}
/* line 297, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .toolbar .pager,
.cls-mergedsearch-result-index .toolbar .pager {
  width: 100%;
}
/* line 301, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .toolbar .options-container,
.cls-mergedsearch-result-index .toolbar .options-container {
  display: none;
}
/* line 305, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .col-main,
.cls-mergedsearch-result-index .col-main {
  position: relative;
}
/* line 308, ../scss/module/_merged-search.scss */
.awadvancedsearch-result-index .col-main .search-tabs,
.cls-mergedsearch-result-index .col-main .search-tabs {
  position: absolute;
  top: 53px;
  z-index: 1000;
}

/* line 317, ../scss/module/_merged-search.scss */
.cls-mergedsearch-result-index .page-title > h1 {
  border: 0 none;
}
/* line 320, ../scss/module/_merged-search.scss */
.cls-mergedsearch-result-index .tab-content-wrapper {
  padding: 0;
  border-top: 0;
  border-left: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  margin-top: 55px;
}
/* line 328, ../scss/module/_merged-search.scss */
.cls-mergedsearch-result-index .tab-content-wrapper .item {
  padding: 10px;
  border-bottom: 1px solid #CCCCCC;
}
/* line 333, ../scss/module/_merged-search.scss */
.cls-mergedsearch-result-index .pager {
  background-color: #ECECEC;
  border-bottom: 1px solid #CCCCCC;
  border-top: 1px solid #CCCCCC;
  margin-bottom: 15px;
  padding: 5px 10px 0;
  float: left;
  width: 100%;
}

/* line 344, ../scss/module/_merged-search.scss */
.view-more-products {
  background-color: #E86403;
  border: 0;
  color: #FFF;
  display: inline-block;
  font-family: "Source Sans Pro", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 17px;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  border-radius: 3px;
  font-weight: bold;
  white-space: normal;
  padding: 10px 40px;
  margin-bottom: 40px;
}
/* line 361, ../scss/module/_merged-search.scss */
.view-more-products:hover, .view-more-products:focus {
  background-color: #CF5903;
  color: #FFF;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (min-width: 770px) {
  /* line 371, ../scss/module/_merged-search.scss */
  .awadvancedsearch-result-index h2.product-name a:hover {
    text-decoration: underline;
  }
}
@media only screen and (max-width: 770px) {
  /* line 379, ../scss/module/_merged-search.scss */
  .awadvancedsearch-result-index .block-layered-nav {
    border: 0;
    width: 100% !important;
  }
  /* line 383, ../scss/module/_merged-search.scss */
  .awadvancedsearch-result-index .tab-content-wrapper .tab-content {
    width: 100%;
  }
  /* line 386, ../scss/module/_merged-search.scss */
  .awadvancedsearch-result-index #narrow-by-list {
    display: none;
  }
  /* line 389, ../scss/module/_merged-search.scss */
  .awadvancedsearch-result-index #narrow-by-list.active-list {
    display: block;
  }
  /* line 393, ../scss/module/_merged-search.scss */
  .awadvancedsearch-result-index .col-main > .all-products {
    width: 100%;
  }
  /* line 398, ../scss/module/_merged-search.scss */
  .awadvancedsearch-result-index .block-layered-nav .block-content > dl > dt {
    border: 0;
  }
  /* line 401, ../scss/module/_merged-search.scss */
  .awadvancedsearch-result-index .block-layered-nav .block-content > dl > dt:after {
    border: 0;
  }
  /* line 405, ../scss/module/_merged-search.scss */
  .awadvancedsearch-result-index .block-layered-nav .block-content dl ol > li > a:hover {
    background-color: transparent;
  }
  /* line 410, ../scss/module/_merged-search.scss */
  .awadvancedsearch-result-index .filter-list li span {
    margin: 0px 2px 0 0;
  }
  /* line 414, ../scss/module/_merged-search.scss */
  .awadvancedsearch-result-index #narrow-by-list li:hover {
    text-decoration: none;
  }
  /* line 418, ../scss/module/_merged-search.scss */
  .awadvancedsearch-result-index #narrow-by-list li.sort span {
    margin: 0px 5px 0 0;
  }
  /* line 424, ../scss/module/_merged-search.scss */
  .awadvancedsearch-result-index .post-list-item > div > div {
    float: right;
    width: 100%;
    margin-top: -5px;
  }
  /* line 430, ../scss/module/_merged-search.scss */
  .awadvancedsearch-result-index .post-list-item > div.include-image > div {
    width: 70%;
  }
}
/* ============================================ *
 * 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;
}

/*# sourceMappingURL=styles-2.css.map */
