@charset "UTF-8";
/***** Gotham Weight Subscription ****/
/**

book : 400
medium: 500
bold: 700

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

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

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

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

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

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

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

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

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

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

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

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

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

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

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

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

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

address {
  font-style: normal;
}

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

img {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

a:focus {
  outline: none;
}

input:focus,
input[type="search"]:focus {
  outline: none;
  border: 1px solid #d4d2d2;
}

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

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

body,
button,
input,
select,
table,
textarea {
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #231f20;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
body:focus,
button:focus,
input:focus,
select:focus,
table:focus,
textarea:focus {
  outline: none;
}

/* Change the white to any color ;) */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}

a {
  color: #848a9c;
  text-decoration: none;
  transition: color .25s ease;
}

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

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

.strong-copy {
  font-weight: 700;
}

/* ============================================ *
 * Typography
 * ============================================ */
h1, .h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #231f20;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}

h2, .h2 {
  margin: 0;
  margin-bottom: 0.35em;
  color: #231f20;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  font-size: 20px;
  font-size: 36px;
}

h3, .h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #231f20;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeSpeed;
}

h4, .h4 {
  margin: 0;
  margin-bottom: 10px;
  color: #231f20;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  text-rendering: optimizeSpeed;
}

h5, .h5 {
  margin: 0;
  margin-bottom: 10px;
  color: #231f20;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}

h6, .h6 {
  margin: 0;
  margin-bottom: 5px;
  color: #231f20;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}

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

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

.availability .label {
  display: none;
}

.availability.in-stock {
  color: #39b54a;
}

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

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

/* -------------------------------------------- *
 * Page Titles
 */
.page-title h1,
.page-title h2,
.product-name h1,
.product-name .h1 {
  font-size: 36px;
  font-weight: 700;
  color: #231f20;
}

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

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

.block-title {
  position: relative;
  padding: 10px 0 0;
  margin-bottom: 5px;
  border-top: 1px solid #b1b1b1;
}
.block-title h2,
.block-title h3,
.block-title strong {
  margin: 0;
  margin-bottom: 10px;
  color: #231f20;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  color: #231f20;
  margin-bottom: 0;
  font-weight: 600;
}
.block-title small {
  font-size: 100%;
  font-weight: normal;
  color: #636466;
}

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

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

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

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

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

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

.block .actions {
  margin: 10px 0 0;
}
.block .actions:after {
  content: '';
  display: table;
  clear: both;
}
.block .actions a {
  float: left;
  color: #231f20;
  text-decoration: underline;
}
.block .actions .button {
  float: right;
}

.customer-account .block .actions a {
  color: #848a9c;
}

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

/* -------------------------------------------- *
 * Secondary Navigation
 */
.block-account .block-title,
.block-cms-menu .block-title {
  padding-top: 0;
  border-top: none;
}
.block-account li,
.block-cms-menu li {
  text-transform: uppercase;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin: 10px 0;
  font-size: 14px;
  font-weight: 500;
}
.block-account li strong,
.block-cms-menu li strong {
  color: #b1b1b1;
}
.block-account li.current a:hover,
.block-cms-menu li.current a:hover {
  text-decoration: none;
}
.block-account li a,
.block-cms-menu li a {
  color: #231f20;
}
.block-account li a:hover,
.block-cms-menu li a:hover {
  color: #b1b1b1;
  text-decoration: underline;
}

/* ============================================ *
 * Buttons
 * ============================================ */
/* Secondary Buttons */
.button.btn-cart {
  background: #e52f32;
}
.button.btn-cart:hover {
  background: #d61b1e;
}
.button.btn-cart:focus, .button.btn-cart:active {
  background: #c8191c;
}

.cart .buttons-set .button,
.cart-table .button,
.button.button-secondary {
  background: #e52f32;
  color: #f5f5f5;
  padding: 7px 15px;
}
.cart .buttons-set .button:hover,
.cart-table .button:hover,
.button.button-secondary:hover {
  background: #d61b1e;
  cursor: pointer;
}
.cart .buttons-set .button:active,
.cart-table .button:active,
.button.button-secondary:active {
  background: #c8191c;
  color: #231f20;
}
.cart .buttons-set .button:focus,
.cart-table .button:focus,
.button.button-secondary:focus {
  color: #231f20;
  background: #c8191c;
  outline: none;
}

.sidebar .actions .button {
  padding: 12px 15px;
  font-size: 13px;
}

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

/* Primary Buttons */
.button,
.cart-table .product-cart-actions .button,
#co-shipping-method-form .buttons-set .button,
.footer .button {
  background: #231f20;
  display: inline-block;
  padding: 15px 25px;
  border: 0;
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 700;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  transition: all .25s ease;
}
.button:hover,
.cart-table .product-cart-actions .button:hover,
#co-shipping-method-form .buttons-set .button:hover,
.footer .button:hover {
  background: #312b2c;
  cursor: pointer;
}
.button:active,
.cart-table .product-cart-actions .button:active,
#co-shipping-method-form .buttons-set .button:active,
.footer .button:active {
  background: #3e3739;
  color: #f5f5f5;
}
.button:focus,
.cart-table .product-cart-actions .button:focus,
#co-shipping-method-form .buttons-set .button:focus,
.footer .button:focus {
  background-color: #3e3739;
  outline: none;
  color: #f5f5f5;
}
.button.large,
.cart-table .product-cart-actions .button.large,
#co-shipping-method-form .buttons-set .button.large,
.footer .button.large {
  padding: 25px 50px;
  font-size: 16px;
}
.button.wide,
.cart-table .product-cart-actions .button.wide,
#co-shipping-method-form .buttons-set .button.wide,
.footer .button.wide {
  padding: 16px 50px;
  font-size: 14px;
}
.button.secondary,
.cart-table .product-cart-actions .button.secondary,
#co-shipping-method-form .buttons-set .button.secondary,
.footer .button.secondary {
  background: #e52f32;
}
.button.secondary:hover,
.cart-table .product-cart-actions .button.secondary:hover,
#co-shipping-method-form .buttons-set .button.secondary:hover,
.footer .button.secondary:hover {
  background: #d61b1e;
  cursor: pointer;
}
.button.secondary:focus,
.cart-table .product-cart-actions .button.secondary:focus,
#co-shipping-method-form .buttons-set .button.secondary:focus,
.footer .button.secondary:focus {
  background-color: #c8191c;
  outline: none;
}

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

.margin-top {
  margin-top: 20px;
}

a.button {
  text-decoration: none;
}

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

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

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

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

.button2:focus {
  outline: none;
}

.button2 span,
.button2 span span {
  line-height: 30px;
  height: 30px;
  text-decoration: underline;
  text-transform: uppercase;
  display: inline-block;
  color: #e52f32;
  font-weight: 500;
}
.button2 span:hover,
.button2 span span:hover {
  text-decoration: none;
  color: #b11619;
}

.buttons-set a.back-link {
  color: #e52f32;
}
.buttons-set a.back-link:before {
  content: "";
  padding-right: 5px;
  color: #e52f32;
  font-family: "icomoon";
  float: left;
  font-size: 16px;
}
.buttons-set a.back-link small {
  display: none;
}

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

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

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

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

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

.paypal-button img {
  display: inline;
}

.paypal-or {
  line-height: 20px;
}

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

/* -------------------------------------------- *
 * Icons
 */
.icon-sprite, .ratings .rating-box, .ratings .rating-box .rating, .review-summary-table .rating-box .rating-number:after, .ratings-table .rating-box, .ratings-table .rating-box .rating {
  background-image: url(https://www.deserres.ca/skin/frontend/deserres/default/images/icon_sprite.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 4 / 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .icon-sprite, .ratings .rating-box, .ratings .rating-box .rating, .review-summary-table .rating-box .rating-number:after, .ratings-table .rating-box, .ratings-table .rating-box .rating {
    background-image: url(https://www.deserres.ca/skin/frontend/deserres/default/images/icon_sprite@2x.png);
    background-size: 100px 1000px;
  }
}
/* -------------------------------------------- *
 * Breadcrumbs
 */
.catalog-product-view .breadcrumbs,
.catalog-category-view .breadcrumbs {
  padding: 20px 16px 0;
  padding: 20px 16px 0;
  padding: 20px 32px 0;
}
.catalog-product-view ul.messages,
.catalog-category-view ul.messages {
  padding: 0 16px;
  padding: 0 32px;
}

ul.messages,
.breadcrumbs {
  overflow: hidden;
  max-width: 1084px;
  margin: 0 auto 20px;
}

.breadcrumbs li {
  float: left;
  font-size: 11px;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
}

.breadcrumbs a {
  float: left;
  color: #636466;
}

.breadcrumbs a:hover {
  color: #231f20;
}

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

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

/* -------------------------------------------- *
 * Button - Remove / Previous
 */
.btn-remove,
.btn-previous {
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  /* Hide text */
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  position: relative;
}

.btn-remove:after,
.btn-remove2:after {
  content: 'X';
  color: #231f20;
  height: 20px;
  line-height: 20px;
  width: 100%;
  font-size: 10px;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 600;
}
.btn-remove:hover:after,
.btn-remove2:hover:after {
  color: #e52f32;
  text-decoration: none;
}

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

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

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

.checkout-agreements .agreement-content {
  overflow-y: auto;
  max-width: 670px;
  max-height: 125px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #b1b1b1;
  background: #F4F4F4;
}

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

/* -------------------------------------------- *
 * Container
 */
.main-container {
  clear: both;
  position: relative;
  max-width: 1084px;
  margin: 0 auto;
  padding: 16px;
  padding: 20px 32px;
}
.main-container:after {
  content: '';
  display: table;
  clear: both;
}

.footer-container {
  padding-top: 0px;
  background: #f5f5f5;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* -------------------------------------------- *
 * Messages
 */
.success {
  color: #39b54a;
}

.error {
  color: #e52f32;
  font-weight: 700;
}

.notice {
  color: #fa770c;
  font-weight: 700;
}

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

.messages li li {
  position: relative;
  margin-bottom: 5px;
  padding: 7px 10px 7px 20px;
  background: #F4F4F4;
  font-size: 15px;
}

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

.messages .error-msg li {
  color: #000000;
  border-left: 5px solid #e52f32;
  background-color: #FAEBE7;
}

.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 #e52f32;
  border-right: none;
}

.messages .notice-msg li {
  color: #000000;
  border-left: 5px solid #fa770c;
  background-color: #F9EBE6;
}

.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 #fa770c;
  border-right: none;
}

.messages .success-msg li {
  color: #000000;
  border-left: 5px solid #39b54a;
  background-color: #EFF5EA;
}

.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 #39b54a;
  border-right: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.price-notice {
  color: #636466;
}

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

.price-box .price,
.price {
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
}

.price-box .price-label {
  color: #000000;
  font-size: 12px;
  white-space: nowrap;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
}

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

.zone-label {
  display: inline-block;
  color: #f77300;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

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

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

.price-box .special-price {
  color: #e52f32;
  padding-right: .25em;
}
.price-box .special-price .price,
.price-box .special-price .price-label {
  color: #e52f32;
}

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

span.weee {
  display: block;
}

/* -------------------------------------------- *
 * Tier Prices
 */
.product-pricing,
.tier-prices,
.tier-prices-grouped {
  display: inline-block;
  color: #636466;
}
.product-pricing li,
.tier-prices li,
.tier-prices-grouped li {
  font-size: 11px;
  margin-bottom: 3px;
}
.product-pricing li:before,
.tier-prices li:before,
.tier-prices-grouped li:before {
  content: '+';
  color: #fa770c;
  margin-left: -5px;
}
.product-pricing .benefit,
.tier-prices .benefit,
.tier-prices-grouped .benefit {
  font-weight: 400;
}
.product-pricing .price,
.tier-prices .price,
.tier-prices-grouped .price {
  color: #636466;
}

/* -------------------------------------------- *
 * Custom Deserres Zone Pricing
 */
.special-price.zone-price .price {
  color: #231f20;
}

.zone-price-msg {
  color: #636466;
  font-size: 11px;
}
.zone-price-msg:before {
  content: '+';
  color: #fa770c;
  padding-right: 3px;
}

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

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

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

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

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

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

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

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

/* -------------------------------------------- *
 * Add to links
 */
.add-to-links {
  margin: 7px 0;
}
.add-to-links a {
  color: #e52f32;
  display: inline-block;
  padding: 0px 3px 3px;
  font-weight: 500;
}

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

/* -------------------------------------------- *
 * Product Image
 */
.product-image,
.no-touch body:not(.catalog-product-view) .product-img-box .product-image:not(.zoom-available):hover {
  position: relative;
  display: block;
  border: 1px solid #eeeeee;
}

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

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

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

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

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

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

.std ul.form-list {
  list-style-type: none;
}
.std ul.form-list li {
  margin-left: 0;
}

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

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

/* -------------------------------------------- *
 * Toolbar
 */
.toolbar {
  margin-bottom: 10px;
  position: relative;
}
.toolbar:after {
  content: '';
  display: table;
  clear: both;
}
.toolbar .view-mode > label {
  display: none;
}

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

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

.toolbar,
.pager {
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #231f20;
  line-height: 30px;
  font-size: 12px;
}

.toolbar label,
.pager-no-toolbar label {
  font-weight: normal;
  font-size: 12px;
  color: #636466;
}

.toolbar-bottom .sorter {
  display: none;
}
.toolbar-bottom .toolbar .pager {
  width: 100%;
}
.toolbar-bottom .toolbar .pager .pages {
  float: right;
  width: auto;
  position: static;
  float: left;
  width: 40%;
}
.toolbar-bottom .toolbar .pager .count-container {
  width: auto;
}

.sorter {
  float: right;
  margin-bottom: 5px;
}
.sorter label {
  float: left;
  margin-right: 5px;
}

.sorter > .sort-by {
  float: left;
  height: 30px;
}
.sorter > .sort-by .sort-by-switcher {
  display: none;
}
.sorter > .sort-by select {
  width: 100%;
  width: 140px;
}

.sorter > .view-mode {
  display: none;
}

.pager {
  float: left;
  overflow: hidden;
  padding: 15px 0 10px;
  padding: 0;
  width: 50%;
  padding-bottom: 40px;
  width: 68%;
  padding-bottom: 0;
}
.pager > .count-container {
  float: left;
}
.pager .amount {
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  white-space: nowrap;
  margin-left: 8px;
  display: inline-block;
  float: left;
}
.pager .amount strong {
  font-weight: 400;
}
.pager .limiter {
  float: left;
  display: inline-block;
  height: 30px;
  line-height: 30px;
}
.pager .limiter > label {
  padding-right: 5px;
}
.pager .amount,
.pager .limiter,
.pager .pages {
  margin-bottom: 5px;
  color: #636466;
}

.pages {
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  position: static;
}
.pages strong {
  display: none;
}

.pages li {
  display: inline-block;
}

.pages a,
.pages .current {
  display: inline-block;
  border: 0;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  width: 30px;
  height: 30px;
  padding: 0;
  color: #b1b1b1;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  width: 20px;
}

.pages .current,
.pages .current:hover {
  color: #231f20;
  width: 30px;
  cursor: default;
  text-decoration: none;
}

.pages .next,
.pages .previous {
  width: auto;
  color: #231f20;
  height: 14px;
  line-height: 1.1;
}

.pages .next {
  margin-left: 5px;
  padding-left: 5px;
  border-left: 1px solid black;
}
.pages .next:after {
  content: '>';
}

.pages .previous {
  padding-right: 10px;
  margin-right: 5px;
  padding-right: 5px;
  border-right: 1px solid black;
}
.pages .previous:before {
  content: '<';
  padding-left: 5px;
}

/* ============================================ *
 * Tax - Full Tax Summary
 * ============================================ */
#checkout-review-table .summary-collapse,
#shopping-cart-totals-table .summary-collapse,
body.customer-account .data-table .summary-collapse {
  position: relative;
  cursor: pointer;
}
#checkout-review-table .summary-collapse:after,
#shopping-cart-totals-table .summary-collapse:after,
body.customer-account .data-table .summary-collapse:after {
  content: "";
  font-family: "icomoon";
  margin-left: 5px;
}
#checkout-review-table .show-details .summary-collapse:after,
#shopping-cart-totals-table .show-details .summary-collapse:after,
body.customer-account .data-table .show-details .summary-collapse:after {
  content: "";
  margin-left: 5px;
}

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

.to-top {
  opacity: 0;
  font-weight: 700;
  position: fixed;
  background-color: #231f20;
  color: #FFFFFF;
  bottom: 100px;
  right: 0;
  padding: 13px 19px;
  text-transform: uppercase;
  font-size: 12px;
  transition: all .25s ease;
  letter-spacing: 1px;
}
.to-top.active {
  opacity: 1;
  z-index: 1;
}
.to-top:hover {
  color: #b1b1b1;
  text-decoration: none;
}
.to-top span {
  display: block;
  text-align: center;
  font-size: 36px;
  line-height: 0;
  padding: 5px 0 16px;
}

a.shop-arrow {
  color: #e52f32;
  display: block;
  font-weight: 700;
  font-size: 16px;
}
a.shop-arrow:after {
  font-size: 18px;
  font-family: "icomoon";
  content: "";
  margin-top: -2px;
  padding-left: 10px;
  display: inline-block;
  vertical-align: middle;
}

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

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

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

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

.width-full {
  width: 100%;
}

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

.hide-desktop {
  display: none;
}

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

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

/* ============================================ *

 * Deserres Custom Common Styles:
 * Used on homepage and Product Page artist videos

* ============================================ */
.cms-third-wrapper {
  margin: 0 0 16px;
}
.cms-third-wrapper .cms-block-third {
  background: #eeeeee;
}

.cms-block-third-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.cms-block-third-wrapper .cms-block-third {
  position: relative;
  margin: 0;
  padding: 0 8px;
  background: #eeeeee;
  background-clip: content-box;
}

.block-point-title {
  background: #eeeeee;
  padding: 20px;
  text-align: center;
  position: relative;
  padding: 20px 50px;
}
.block-point-title:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 18px solid transparent;
  border-left: 18px solid transparent;
  border-bottom: 18px solid #eeeeee;
  border-top: none;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}
.block-point-title h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #231f20;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  text-rendering: optimizeSpeed;
  line-height: 1.1;
  margin: 0 auto 5px;
}

.box-collateral .block-description,
.box-collateral .shop-arrow {
  text-align: center;
}
.box-collateral .block-description {
  color: #636466;
  font-size: 16px;
  font-weight: normal;
  padding: 0 20px;
}

.content-wrap {
  max-width: 1084px;
  margin: 0 auto;
  padding: 0 16px;
  padding: 0 32px;
}
.content-wrap:after {
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------------------- *
 * Demac Product Badges
 */
.product-badges {
  position: absolute;
  z-index: 1;
}
.product-badges > li {
  position: relative;
  height: 57px;
  width: 57px;
  list-style-type: none;
  margin: 0;
}
.product-badges span {
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  display: block;
  line-height: 1;
  -ms-transform: rotate(-23deg) translate(-50%, -50%);
  /* IE 9 */
  -webkit-transform: rotate(-23deg) translate(-50%, -50%);
  /* Chrome, Safari, Opera */
  transform: rotate(-23deg) translate(-50%, -50%);
  -ms-transform-origin: -10% 4% 0;
  /* IE 9 */
  -webkit-transform-origin: -10% 4% 0;
  /* Chrome, Safari, Opera */
  transform-origin: -10% 4% 0;
}
.product-badges .badge-new {
  color: #0207fa;
}
.product-badges .badge-last-one {
  color: #01a9ad;
}
.product-badges .badge-top-sellers {
  color: #fa770c;
}
.product-badges .badge-sale {
  color: #ff3333;
}

.inner-product-wrap .product-badges {
  left: 8px;
  top: 8px;
}

.product-info .product-badges {
  right: 10px;
  top: -50px;
}

.dark-bg {
  background: #231f20;
}

.light-bg {
  background-color: #eeeeee;
}

/* ============================================ *
 * FORMS - COMMON
 * ============================================ */
/* -------------------------------------------- *
 * Fieldsets
 */
.fieldset p {
  margin-bottom: 7px;
}
.fieldset p.required {
  margin-bottom: 5px;
  float: right;
  font-size: 12px;
  margin-top: 0px;
}

form .legend {
  margin: 0;
  margin-bottom: 10px;
  color: #231f20;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeSpeed;
  margin-bottom: 15px;
  padding-bottom: 7px;
  border-bottom: 1px solid #eeeeee;
}

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

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

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

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

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

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

label span.detail {
  font-style: italic;
  text-transform: none;
  padding-left: 10px;
}

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

/* -------------------------------------------- *
 * Select
 */
.select-wrapper {
  position: relative;
}
.select-wrapper:after {
  content: "";
  font-family: "icomoon";
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 26px;
  pointer-events: none;
}

select {
  font-size: 14px;
}

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

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

/* -------------------------------------------- *
 * Textarea
 */
textarea {
  box-sizing: border-box;
  width: 100%;
  max-width: 450px;
  padding: 5px;
  resize: none;
}
textarea.input-text {
  height: auto;
}

/* -------------------------------------------- *
 * Inputs
 */
.input-text {
  height: 48px;
  background: #eeeeee;
  border-radius: 0;
  border: 1px solid #eeeeee;
}
.input-text:focus {
  border: 1px solid #b1b1b1;
}

.validation-error select.validation-failed,
.input-text.validation-failed {
  border-color: #e52f32;
}

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

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

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

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

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

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

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

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

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

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

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

/* Turn the label of controls (radio/checkbox) into a button style that wraps the input */
.form-list .control,
.sp-methods dt,
#checkout-shipping-method-load .sp-methods dd,
#co-shipping-method-form .sp-methods dd,
.product-options ul.options-list {
  /* When a label is next to an input that is set to not display, we should style the label in a non-clickable state */
}
.form-list .control div.input-box,
.sp-methods dt div.input-box,
#checkout-shipping-method-load .sp-methods dd div.input-box,
#co-shipping-method-form .sp-methods dd div.input-box,
.product-options ul.options-list div.input-box {
  display: inline;
  float: left;
}
.form-list .control div.input-box:after,
.sp-methods dt div.input-box:after,
#checkout-shipping-method-load .sp-methods dd div.input-box:after,
#co-shipping-method-form .sp-methods dd div.input-box:after,
.product-options ul.options-list div.input-box:after {
  display: none;
}
.form-list .control input.radio,
.form-list .control input.checkbox,
.sp-methods dt input.radio,
.sp-methods dt input.checkbox,
#checkout-shipping-method-load .sp-methods dd input.radio,
#checkout-shipping-method-load .sp-methods dd input.checkbox,
#co-shipping-method-form .sp-methods dd input.radio,
#co-shipping-method-form .sp-methods dd input.checkbox,
.product-options ul.options-list input.radio,
.product-options ul.options-list input.checkbox {
  float: left;
  margin-right: -30px;
  margin-top: 10px;
}
.form-list .control label,
.sp-methods dt label,
#checkout-shipping-method-load .sp-methods dd label,
#co-shipping-method-form .sp-methods dd label,
.product-options ul.options-list label {
  display: inline-block;
  width: auto;
  max-width: none;
  min-width: 250px;
  float: none;
  padding: 6px 10px 6px 30px;
  font-size: 14px;
  color: #636466;
  font-weight: 400;
  text-transform: none;
}
.form-list .control label .price,
.sp-methods dt label .price,
#checkout-shipping-method-load .sp-methods dd label .price,
#co-shipping-method-form .sp-methods dd label .price,
.product-options ul.options-list label .price {
  font-weight: 700;
}
.form-list .control .no-display + label,
.sp-methods dt .no-display + label,
#checkout-shipping-method-load .sp-methods dd .no-display + label,
#co-shipping-method-form .sp-methods dd .no-display + label,
.product-options ul.options-list .no-display + label {
  padding-left: 0;
}

.product-options ul.options-list label,
.col2-set .form-list .control label {
  min-width: inherit;
}

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

.form-list .input-box-password {
  position: relative;
}
.form-list .input-box-password input {
  padding-right: 30px;
}
.form-list .input-box-password img.eye-password {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  cursor: pointer;
  transition: opacity .1s ease-in-out;
}
.form-list .input-box-password img.eye-password:hover, .form-list .input-box-password img.eye-password-open {
  opacity: .5;
}

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

form .form-instructions {
  font-size: 16px;
  color: #636466;
}
form .form-instructions.alt {
  color: #231f20;
  font-weight: 500;
  margin-top: 20px;
}

#form-validate #email_address ~ .validation-advice,
#form-validate #email_address_confirm ~ .validation-advice {
  display: none;
}
#form-validate #email_address ~ .validation-advice.email-not-matching,
#form-validate #email_address_confirm ~ .validation-advice.email-not-matching {
  display: block;
}

#register-form #email_address ~ .validation-advice,
#register-form #email_address_confirm ~ .validation-advice {
  display: none;
}
#register-form #email_address ~ .validation-advice.email-not-matching,
#register-form #email_address_confirm ~ .validation-advice.email-not-matching {
  display: block;
}

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

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

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

.data-table th {
  text-transform: uppercase;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 1.4;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
}

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

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

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

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

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

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

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

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

/* ============================================ *
 * Linearize Table
 * ============================================ */
.linearize-table .linearize-collapse {
  display: none;
}

@font-face {
  font-family: 'icomoon';
  src: url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/icomoon.eot?dh2hbr");
  src: url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/icomoon.eot?dh2hbr#iefix") format("embedded-opentype"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/icomoon.ttf?dh2hbr") format("truetype"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/icomoon.woff?dh2hbr") format("woff"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/icomoon.svg?dh2hbr#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-play:before {
  content: "\e921";
}

.icon-download:before {
  content: "\e922";
}

.icon-heart:before {
  content: "\e90a";
}

.icon-truck:before {
  content: "\e915";
}

.icon-plus-circle:before {
  content: "\e916";
}

.icon-envelope:before {
  content: "\e917";
}

.icon-print:before {
  content: "\e918";
}

.icon-image:before {
  content: "\e90f";
}

.icon-twitter:before {
  content: "\e910";
}

.icon-instagram:before {
  content: "\e911";
}

.icon-pinterest-p:before {
  content: "\e912";
}

.icon-youtube:before {
  content: "\e913";
}

.icon-facebook:before {
  content: "\e914";
}

.icon-minus:before {
  content: "\e90e";
}

.icon-bars:before {
  content: "\e90d";
}

.icon-shopping-cart:before {
  content: "\e900";
}

.icon-user:before {
  content: "\e901";
}

.icon-chevron-right:before {
  content: "\e902";
}

.icon-chevron-left:before {
  content: "\e903";
}

.icon-chevron-down:before {
  content: "\e904";
}

.icon-chevron-up:before {
  content: "\e905";
}

.icon-question-circle:before {
  content: "\e906";
}

.icon-map-marker:before {
  content: "\e907";
}

.icon-search:before {
  content: "\e908";
}

.icon-heart-o:before {
  content: "\e909";
}

.icon-info-circle:before {
  content: "\e90b";
}

.icon-plus:before {
  content: "\e90c";
}

.icon-clock-o:before {
  content: "\e923";
}

.icon-calendar:before {
  content: "\e924";
}

.icon-lightbulb-o:before {
  content: "\e920";
}

.icon-phone:before {
  content: "\e91f";
}

.icon-lock:before {
  content: "\e91e";
}

.icon-check:before {
  content: "\e91d";
}

.icon-angle-down:before {
  content: "\e919";
}

.icon-angle-up:before {
  content: "\e91a";
}

.icon-angle-right:before {
  content: "\e91b";
}

.icon-angle-left:before {
  content: "\e91c";
}

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

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

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

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

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

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

/* Slider */
.slick-loading .slick-list {
  background: #fff url('https://www.deserres.ca/skin/frontend/deserres/default/images/ajax-loader.gif?1531930193') center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/slick.eot");
  src: url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/slick.eot?#iefix") format("embedded-opentype"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/slick.woff") format("woff"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/slick.ttf") format("truetype"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before, .slick-next:before {
  font-family: "icomoon";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "";
}
[dir="rtl"] .slick-prev:before {
  content: "";
}

.slick-next {
  right: -25px;
}
[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "";
}
[dir="rtl"] .slick-next:before {
  content: "";
}

/* Dots */
.slick-dots {
  position: absolute;
  bottom: -45px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  height: 5px;
  width: 5px;
  border: 1px solid grey;
  border-radius: 50%;
  font-family: "slick";
  font-size: 24px;
  line-height: 20px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  content: '';
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: black;
}

/**
 * @category    Mana
 * @package     ManaPro_FilterShowMore
 * @copyright   Copyright (c) http://www.manadev.com
 * @license     http://www.manadev.com/license  Proprietary License
 */
/* css/manapro_filtershowmore.css */
.m-more-less {
  text-decoration: underline;
  padding-bottom: 10px;
}
.m-more-less a {
  color: #000000;
}
.m-more-less .m-show-more-action:after,
.m-more-less .m-show-less-action:after {
  padding-left: 5px;
  display: inline-block;
}

.m-show-less-action:after {
  content: '-';
}

.m-show-more-action:after {
  content: '+';
}

.m-expandable-filter {
  overflow: hidden;
}

/*.sidebar .m-scrollable-filter-container { padding: 0 !important; }*/
.m-scrollable-filter-container ol {
  border: none;
}

.m-scrollable-filter {
  overflow-x: hidden !important;
  overflow-y: scroll !important;
  border: 1px solid #ccc;
  /*padding: 0 10px; margin: 0 5px; */
  background: rgba(255, 255, 255, 0.5);
}

.m-scrollable-filter li {
  white-space: nowrap;
}

.m-filter-popup {
  padding: 10px;
  box-sizing: content-box;
}

.m-filter-popup .m-columns {
  overflow: hidden;
}

.m-filter-popup .m-columns > li {
  float: left;
  width: 200px;
  text-align: left;
}

.m-filter-popup .m-columns.m-filter-colors.horizontal {
  width: 600px;
}

.m-filter-popup .m-columns.m-filter-colors.horizontal > li {
  width: auto;
}

.m-filter-popup .buttons-set {
  margin: 8px 0 0;
}

.m-filter-popup .m-filter-colors {
  margin: 0;
}

.m-showmore-popup-container {
  box-shadow: 15px 15px 25px 5px rgba(0, 0, 0, 0.4);
}

.m-option-search {
  padding: 0 0 10px;
}

/*.sidebar .m-scrollable-filter-container .m-option-search { padding: 10px; }*/
.m-option-search input {
  width: 100%;
}

.m-option-search input.m-empty {
  color: #c0c0c0;
}

.m-no-match {
  display: none;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/* TEEVEE */
.youtube-video-teevee {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .youtube-video-teevee {
    display: none;
  }
}
.youtube-video-teevee > img {
  display: none;
  position: absolute;
  top: -16.75%;
  left: 0;
  right: 0;
  bottom: 10;
  z-index: 10;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .youtube-video-teevee > img {
    display: block;
  }
}
.youtube-video-teevee:after {
  content: '';
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 100%;
  height: 100%;
  max-width: 150px;
  max-height: 150px;
}
@media screen and (max-width: 1024px) {
  .youtube-video-teevee:after {
    display: block;
    max-width: 60px;
    max-height: 60px;
  }
}
.youtube-video-teevee.btn-play--red:after {
  background-image: url("https://www.deserres.ca/skin/frontend/deserres/default/images/btn_play_plein.png");
}
.youtube-video-teevee.btn-play--transparent:after {
  background-image: url("https://www.deserres.ca/skin/frontend/deserres/default/images/btn_play_transparent.png");
}
.youtube-video-teevee.play-btn-clicked > img {
  visibility: hidden;
}
.youtube-video-teevee.play-btn-clicked:after {
  visibility: hidden;
}

.teevee {
  height: 0 !important;
  padding-top: 56.25%;
}
.teevee .teevee-player,
.teevee .teevee-poster {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.teevee .teevee-mask {
  background: #000;
  opacity: 0;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  transition: opacity 0.4s;
  width: 100%;
  z-index: 6;
}
.teevee .teevee-mask .loader {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.teevee .teevee-mask.loading {
  opacity: 1;
}
.teevee .teevee-player {
  display: none;
  overflow-x: hidden;
  overflow-y: hidden;
  position: absolute;
  z-index: 1;
  height: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
}
.teevee .teevee-volume {
  bottom: 20px;
  display: none;
  height: 40px;
  padding: 12px;
  position: absolute;
  right: 20px;
  width: 40px;
  z-index: 7;
  background-color: #000;
  border-radius: 50%;
}
.teevee .teevee-volume i {
  color: #FFF;
  display: none;
}
.teevee .teevee-volume i.fa-times {
  font-size: 8px;
  position: absolute;
  right: 12px;
  top: 15px;
}
.teevee .teevee-volume.mute i.fa-volume-off,
.teevee .teevee-volume.mute i.fa-times {
  display: block;
}
.teevee .teevee-volume.unmute i.fa-volume-up {
  display: block;
}
.teevee .teevee-poster {
  background-size: cover;
  height: 130%;
  margin-top: -10%;
  width: 130%;
  z-index: 2;
}
.teevee.teevee-on .teevee-player,
.teevee.teevee-on .teevee-volume {
  display: block;
}
@media screen and (max-width: 1024px) {
  .teevee.teevee-on .teevee-volume {
    display: none;
  }
}

.youtube-video-mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .youtube-video-mobile {
    display: block;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    width: 100%;
    height: 0;
    overflow: hidden;
  }
  .youtube-video-mobile object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.cms-index-index .main-container {
  max-width: 100%;
  width: 100%;
  padding: 0;
}
.cms-index-index .main-container img {
  max-width: 100%;
}
.cms-index-index .main {
  -webkit-transition: margin-top .24s ease-in-out;
  -o-transition: margin-top .24s ease-in-out;
  transition: margin-top .24s ease-in-out;
}
.cms-index-index .main.sticky-promobar--disabled {
  margin-top: 0 !important;
}
.cms-index-index .block-half-top,
.cms-index-index .hero {
  position: relative;
}
.cms-index-index .cms-home-full {
  margin: 0 !important;
}
.cms-index-index .cms-home-full .white-text {
  color: #fff;
}
.cms-index-index .cms-home-full .black-text {
  color: #000;
}
.cms-index-index .cms-home-full .center-text {
  text-align: center;
}
.cms-index-index .cms-home-full .left-text {
  text-align: left;
}
.cms-index-index .cms-home-full .right-text {
  text-align: right;
}
.cms-index-index .cms-home-full [content-position="center-center"] {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cms-index-index .cms-home-full [content-position="center-top"] {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cms-index-index .cms-home-full [content-position="center-bottom"] {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cms-index-index .cms-home-full [content-position="right-center"] {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.cms-index-index .cms-home-full [content-position="right-top"] {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.cms-index-index .cms-home-full [content-position="right-bottom"] {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.cms-index-index .cms-home-full [content-position="left-center"] {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.cms-index-index .cms-home-full [content-position="left-top"] {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.cms-index-index .cms-home-full [content-position="left-bottom"] {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.cms-index-index .cms-home-full [content-position] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.cms-index-index .sticky-promobar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  color: #FFFFFF;
  overflow: hidden;
}
.cms-index-index .sticky-promobar--loaded {
  display: block;
}
.cms-index-index .sticky-promobar__container {
  position: relative;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  background-color: #e52f32;
  max-width: 1440px;
  margin: 0 auto;
}
.cms-index-index .sticky-promobar__name {
  margin: 0;
}
@media screen and (max-width: 599px) {
  .cms-index-index .sticky-promobar__name {
    font-size: 12px;
  }
}
.cms-index-index .sticky-promobar__description {
  font-size: 18px;
  margin: 4px 0 12px;
}
@media screen and (max-width: 599px) {
  .cms-index-index .sticky-promobar__description {
    font-size: 16px;
  }
}
.cms-index-index .sticky-promobar__cta {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  .cms-index-index .sticky-promobar__cta {
    font-size: 14px;
  }
}
.cms-index-index .sticky-promobar__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.cms-index-index .sticky-promobar__close:before, .cms-index-index .sticky-promobar__close:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: #FFFFFF;
  -webkit-transition: -webkit-transform .24s ease-in-out;
  transition: -webkit-transform .24s ease-in-out;
  -o-transition: transform .24s ease-in-out;
  transition: transform .24s ease-in-out;
  transition: transform .24s ease-in-out, -webkit-transform .24s ease-in-out;
}
.cms-index-index .sticky-promobar__close:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.cms-index-index .sticky-promobar__close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.cms-index-index .sticky-promobar__close:hover:before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.cms-index-index .sticky-promobar__close:hover:after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  -ms-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
}
.cms-index-index .sticky-promobar--closed {
  height: 0 !important;
  -webkit-transition: height .24s ease-in-out;
  -o-transition: height .24s ease-in-out;
  transition: height .24s ease-in-out;
}
.cms-index-index .sticky-promobar--closed .stick-promobar__close:before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.cms-index-index .sticky-promobar--closed .stick-promobar__close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  -ms-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
}
.cms-index-index .hero {
  margin-bottom: 8px;
}
.cms-index-index .hero .cms-home-full {
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 !important;
}
.cms-index-index .hero .cms-home-full > img {
  display: block;
}
.cms-index-index .hero .cms-home-full > img.mobile {
  display: none;
}
@media screen and (max-width: 599px) {
  .cms-index-index .hero .cms-home-full > img {
    display: none;
  }
  .cms-index-index .hero .cms-home-full > img.mobile {
    display: block;
  }
}
.cms-index-index .hero .cms-home-full [content-position] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 120px;
}
.cms-index-index .hero .cms-home-full [content-position] p {
  max-width: 420px;
}
@media screen and (max-width: 1083px) {
  .cms-index-index .hero .cms-home-full [content-position] {
    padding: 120px 60px;
  }
}
@media screen and (max-width: 599px) {
  .cms-index-index .hero .cms-home-full [content-position] {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 30px 15px;
  }
}
.cms-index-index .hero .home-block-title--teal {
  color: #1B8D79;
  font-size: 48px;
  margin-bottom: .25em;
}
@media screen and (max-width: 599px) {
  .cms-index-index .hero .home-block-title--teal {
    font-size: 24px;
  }
}
.cms-index-index .hero .products-grid {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cms-index-index .hero .hero-bluue .item {
  background: #0207fa;
}
.cms-index-index .hero .hero-bluue .item:before {
  border-bottom-color: #0207fa;
}
.cms-index-index .hero li.item {
  margin: 0;
  text-align: center;
  background-color: #e52f32;
  padding: 10px;
  padding: 30px 20px 10px !important;
  position: absolute;
  bottom: 0;
  left: 10%;
  float: left;
  text-align: right;
  max-width: 195px;
  max-height: 195px;
  padding: 70px 20px 20px !important;
}
.cms-index-index .hero .product-name,
.cms-index-index .hero .price-box {
  padding: 0;
}
.cms-index-index .hero .minimal-price .price-label {
  font-size: 12px;
  color: #FFFFFF;
}
.cms-index-index .hero .brand {
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
.cms-index-index .hero .brand,
.cms-index-index .hero .product-name a {
  font-size: 14px;
  color: #FFFFFF;
  margin: 0;
}
.cms-index-index .hero .brand,
.cms-index-index .hero .price-box .price,
.cms-index-index .hero .price-box .special-price,
.cms-index-index .hero .price-box .old-price .price,
.cms-index-index .hero .product-name a {
  text-align: right;
  color: #FFFFFF;
  font-weight: 400;
}
.cms-index-index .hero .price-box .price {
  font-size: 12px;
  font-size: 22px;
}
.cms-index-index .hero p.special-price {
  float: none;
}
.cms-index-index .hero .price-box {
  margin: 0;
}
.cms-index-index .hero .price-box p {
  margin-bottom: 0;
  float: right;
}
.cms-index-index .hero .product-price span {
  font-size: 30px;
  font-size: 36px;
}
.cms-index-index .theme-duo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  margin: 0 0 8px;
}
.cms-index-index .theme-duo .button {
  color: #fff;
}
.cms-index-index .theme-duo .button:after {
  padding-left: 0;
}
.cms-index-index .theme-duo__banner, .cms-index-index .theme-duo__products {
  width: 50%;
}
.cms-index-index .theme-duo__banner:after, .cms-index-index .theme-duo__products:after {
  content: '';
  display: table;
  clear: both;
}
@media screen and (max-width: 599px) {
  .cms-index-index .theme-duo__banner, .cms-index-index .theme-duo__products {
    width: 100%;
  }
}
.cms-index-index .theme-duo__banner {
  position: relative;
  padding: 0 4px;
}
.cms-index-index .theme-duo__banner__img {
  padding-top: 71%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cms-index-index .theme-duo__banner__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cms-index-index .theme-duo__banner__content {
  padding: 24px;
}
.cms-index-index .theme-duo__banner__content__title,
.cms-index-index .theme-duo__banner__content .button {
  max-width: 540px;
}
.cms-index-index .theme-duo__banner__content .button {
  position: absolute;
  bottom: 20px;
  right: calc(20px + 4px);
}
.cms-index-index .theme-duo__banner__content__title {
  font-size: 42px;
  margin-bottom: 46px;
}
@media screen and (max-width: 979px) {
  .cms-index-index .theme-duo__banner__content__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .cms-index-index .theme-duo__banner__content {
    padding: 12px;
  }
  .cms-index-index .theme-duo__banner__content__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 599px) {
  .cms-index-index .theme-duo__banner__content {
    padding: 40px 15px;
  }
  .cms-index-index .theme-duo__banner__content__title {
    margin-bottom: 24px;
    max-width: 300px;
  }
}
@media screen and (max-width: 599px) {
  .cms-index-index .theme-duo__banner {
    margin-bottom: 12px;
  }
}
.cms-index-index .theme-duo__products {
  position: relative;
  padding-top: 35%;
}
.cms-index-index .theme-duo__products__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cms-index-index .theme-duo__products__product {
  position: relative;
  width: 50%;
  margin: 0 4px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cms-index-index .theme-duo__products__product__image {
  position: absolute;
  display: block;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  .cms-index-index .theme-duo__products__product__image {
    height: auto;
    padding-top: 138%;
  }
}
.cms-index-index .theme-duo__products__product__image .button.btn-cart {
  position: absolute;
  bottom: 20px;
  right: calc(20px + 4px);
}
.cms-index-index .theme-duo__products__product .products-grid {
  margin-bottom: 0;
  list-style-type: none;
}
.cms-index-index .theme-duo__products__product .products-grid .item {
  width: 100%;
  margin-left: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .cms-index-index .theme-duo__products__product .products-grid {
    padding: 0;
  }
  .cms-index-index .theme-duo__products__product .products-grid .item {
    margin-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .cms-index-index .theme-duo__products {
    margin-left: 0;
    margin-top: 12px;
    padding-top: 70%;
  }
}
@media screen and (max-width: 599px) {
  .cms-index-index .theme-duo[content-direction="left"] .theme-duo__products, .cms-index-index .theme-duo[content-direction="left"] .theme-duo__banner {
    margin-left: 0;
    margin-right: 0;
  }
}
.cms-index-index .theme-duo[content-direction="right"] .theme-duo__products {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.cms-index-index .theme-duo[content-direction="right"] .theme-duo__banner {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
@media screen and (max-width: 599px) {
  .cms-index-index .theme-duo[content-direction="right"] .theme-duo__products, .cms-index-index .theme-duo[content-direction="right"] .theme-duo__banner {
    margin-left: 0;
    margin-right: 0;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
}
@media screen and (max-width: 599px) {
  .cms-index-index .theme-duo {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 12px;
  }
}
.cms-index-index .instagram-feed-catalog {
  padding: 70px 12px;
  text-align: center;
}
.cms-index-index .instagram-feed-catalog .button {
  margin-top: 42px;
}
@media screen and (max-width: 599px) {
  .cms-index-index .instagram-feed-catalog {
    padding: 70px 0;
  }
}
.cms-index-index .join-creative-club {
  padding: 90px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.cms-index-index .join-creative-club__content {
  max-width: 840px;
  padding: 0 30px;
  text-align: center;
}
.cms-index-index .join-creative-club__content p {
  margin: 40px 0;
}
@media screen and (max-width: 599px) {
  .cms-index-index .join-creative-club {
    padding: 60px 0;
  }
}
.cms-index-index .cms-block-wrapper {
  position: relative;
  max-width: 1084px;
  margin: 0 auto;
  padding: 0 32px;
}
.cms-index-index .custom-store-back {
  float: right;
}
.cms-index-index .skinny-banner {
  padding: 10px 0;
}
.cms-index-index .skinny-banner .cms-block-wrapper img {
  width: auto;
  padding-right: 20px;
}
.cms-index-index .skinny-banner h3 {
  font-size: 14px;
  color: #FFFFFF;
}
.cms-index-index .skinny-banner h3 a {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  padding-left: 20px;
  text-decoration: underline;
}
.cms-index-index .skinny-banner h3 a:hover {
  text-decoration: none;
}
.cms-index-index .skinny-banner h3,
.cms-index-index .skinny-banner img,
.cms-index-index .skinny-banner a {
  vertical-align: middle;
  display: inline-block;
  margin: 0;
}

ul.mobile-link-list {
  text-align: center;
  overflow: hidden;
  border-top: 1px solid #d4d2d2;
  margin-bottom: 0;
  list-style: none;
}
ul.mobile-link-list li {
  float: left;
  width: 50%;
  border-bottom: 1px solid #d4d2d2;
  margin: 0;
}
ul.mobile-link-list li:nth-child(odd) {
  border-right: 1px solid #d4d2d2;
}
ul.mobile-link-list a {
  display: block;
  padding: 10px;
  color: #636466;
}
ul.mobile-link-list a.highlight {
  color: #e52f32;
}
ul.mobile-link-list a:hover {
  text-decoration: none;
  background-color: #eeeeee;
  cursor: pointer;
}

.home-block-info {
  position: absolute;
  left: 50%;
  top: 47%;
  -ms-transform: translate(-50%, -47%);
  -webkit-transform: translate(-50%, -47%);
  transform: translate(-50%, -47%);
}
.home-block-info.left-text {
  left: 17%;
  -webkit-transform: translate(-17%, -50%);
  -ms-transform: translate(-17%, -50%);
  transform: translate(-17%, -50%);
  width: 50%;
  width: 40%;
}
.home-block-info h1, .home-block-info h2 {
  margin-bottom: .25em;
  font-size: 40px;
  font-size: 48px;
}
.home-block-info p {
  font-size: 16px;
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .home-block-info p {
    margin-bottom: 24px;
  }
}
.home-block-info .button {
  margin-top: 16px;
  margin-top: 32px;
}

.cms-page-view .std .light-text h1, .cms-page-view .std .light-text h2, .cms-page-view .std .light-text p, .cms-page-view .std .light-text li,
.cms-index-index .std .light-text h1,
.cms-index-index .std .light-text h2,
.cms-index-index .std .light-text p,
.cms-index-index .std .light-text li {
  color: #FFFFFF;
}
.cms-page-view .std .light-text h1,
.cms-index-index .std .light-text h1 {
  text-shadow: 1px 1px 1px #848a9c;
}

.cms-block-half {
  float: left;
  width: 50%;
  position: relative;
}
.cms-block-half:first-child {
  padding-right: 8px;
}
.cms-block-half:last-child {
  padding-left: 8px;
}
.cms-block-half.full-mobile .home-block-info {
  width: 85%;
}
.cms-block-half.custom-store-back {
  padding: 0 0 0 8px;
}
.cms-block-half.custom-store-front {
  padding: 0 8px 0 0;
}
.cms-block-half .block-bottom-title {
  padding: 20px;
  text-align: center;
  color: #636466;
}
.cms-block-half .block-bottom-title p {
  font-size: 16px;
  max-width: 280px;
  margin: 0 auto 10px;
}

.cms-block.cms-home-full {
  clear: both;
  position: relative;
  margin-bottom: 5px;
  margin: 16px 0 0;
  overflow: hidden;
}
.cms-block.cms-home-full.last {
  margin-bottom: 16px;
}
.cms-block.cms-home-full img {
  width: 100%;
}

.cms-block.cms-home-full ul.dash-list {
  list-style: none;
  margin-bottom: 10px;
  margin-bottom: 0;
}
.cms-block.cms-home-full ul.dash-list li {
  margin: 0;
  font-size: 12px;
  margin-bottom: 0;
  font-size: 16px;
  margin: 0 0 16px;
}
.cms-block.cms-home-full ul.dash-list li:last-child {
  margin-bottom: 0;
}

.cms-product-list {
  clear: both;
  background: #f7f7f7;
  padding: 32px 0;
  margin-top: 16px;
  padding: 80px 0 60px;
}
.cms-product-list > h2,
.cms-product-list > p {
  text-align: center;
}
.cms-product-list .add-to-links,
.cms-product-list .toolbar,
.cms-product-list .toolbar-bottom {
  display: none;
}
.cms-product-list .category-products {
  padding-top: 35px;
}
.cms-product-list .products-grid {
  list-style: none;
  clear: both;
  margin: 0 auto 80px;
  padding: 0 32px;
}
@media screen and (max-width: 1083px) {
  .cms-product-list .products-grid.products-grid--max-4-col .slick-arrow {
    display: none;
  }
}
.cms-product-list .products-grid.products-grid--max-4-col .slick-dots {
  left: 0;
}
.cms-product-list .products-grid.products-grid--max-4-col .slick-dots li + li {
  margin-left: 16px;
}
.cms-product-list .products-grid.products-grid--max-4-col .slick-dots li {
  width: 14px;
  height: 14px;
}
.cms-product-list .products-grid.products-grid--max-4-col .slick-dots li button {
  width: 14px;
  height: 14px;
}
.cms-product-list .products-grid.products-grid--max-4-col .slick-dots li button:before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #D8D8D8;
  width: 14px;
  height: 14px;
  border: none;
  border-radius: 50%;
}
.cms-product-list .products-grid.products-grid--max-4-col .slick-dots li.slick-active button:before {
  background-color: #8A8A8A;
  width: 14px;
  height: 14px;
}
.cms-product-list .products-grid.products-grid--max-4-col > li {
  margin: 0;
}
.cms-product-list .slick-slider li.item {
  margin: 0;
  float: left;
  padding: 0 3px;
  padding: 0 7px;
}
.cms-product-list h3 {
  margin: 0;
  margin-bottom: 0.35em;
  color: #231f20;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  font-size: 20px;
  font-size: 36px;
  margin: 0 10px 0.5em;
}
.cms-product-list > h3,
.cms-product-list > p,
.cms-product-list > a.shop-arrow {
  text-align: center;
}
.cms-product-list > p.description {
  color: #636466;
  font-size: 16px;
  margin-bottom: .5em;
}
.cms-product-list .slick-arrow {
  top: 43%;
  width: 30px;
  height: 60px;
  width: 38px;
  height: 68px;
}
.cms-product-list .slick-arrow:before {
  display: block;
  content: "";
  right: 0;
  height: 1.75em;
  width: 1.75em;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-radius: 2px;
  border-color: #000000;
}
.cms-product-list .slick-arrow.slick-prev {
  left: -36px;
}
.cms-product-list .slick-arrow.slick-prev:before {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.cms-product-list .slick-arrow.slick-next {
  right: -36px;
}
.cms-product-list .slick-arrow.slick-next:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cms-product-list .slick-prev {
  left: 0px;
  left: -10px;
}
.cms-product-list .slick-next {
  right: 0px;
  right: -10px;
}
.cms-product-list .slick-dots {
  bottom: -60px;
  margin: 0;
}
.cms-product-list .slick-dots li {
  margin: 0;
}
.cms-product-list .slick-dots li:first-child button:before {
  border-radius: 5px 0 0 5px;
}
.cms-product-list .slick-dots li:last-child button:before {
  border-radius: 0 5px 5px 0;
}
.cms-product-list li.slick-active button:before {
  background-color: #636466;
}

.category-view-landing .filter-by {
  display: none;
}
.category-view-landing .category-grid {
  margin-bottom: 100px;
}
.category-view-landing .category-grid .item {
  text-align: center;
}
.category-view-landing .category-grid .item .category-name {
  font-size: 18px;
}
.category-view-landing .category-grid .item .product-info {
  min-height: 125px !important;
  padding: 30px 10px 40px;
  position: relative;
}
.category-view-landing .category-grid .item .product-info:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 13px solid transparent;
  border-left: 13px solid transparent;
  border-bottom: 13px solid #ededed;
  border-top: none;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.category-view-landing .category-grid .shop-arrow {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  font-size: 14px;
}
.category-view-landing .category-grid .category-item-image {
  display: block;
  border-width: 1px 1px 0;
  border: 1px solid #ededed;
}
.category-view-landing .category-grid .category-item-image img {
  max-width: 100%;
  height: auto;
}

.catalog-category-view .col1-layout .col-main {
  padding: 16px;
  padding: 0 32px;
}

.block-layered-nav .block-content {
  margin: 0;
}
.block-layered-nav .block-content > dl > dt {
  text-transform: uppercase;
  font-size: 14px;
  padding-top: 0;
  font-weight: 600;
}
.block-layered-nav dd {
  margin-bottom: 20px;
}

.colour-picker-list {
  text-align: center;
  width: 100%;
}
.colour-picker-list h3 {
  margin: 0;
  margin-bottom: 5px;
  color: #231f20;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}
.colour-picker-list ul {
  margin: 20px 0 8px;
  position: relative;
  margin: 25px auto 30px;
}
.colour-picker-list li {
  display: inline-block;
  margin: 5px .35%;
  position: relative;
  height: 55px;
  width: 15%;
  width: 10%;
  width: 55px;
  margin: 5px 0.5%;
  margin: 5px 0.15%;
}
.colour-picker-list li:first-child {
  margin-left: 0;
}
.colour-picker-list li:last-child {
  margin-right: 0;
  margin-top: 25px;
  margin-top: 0;
}
.colour-picker-list li.selected {
  margin: 5px 20px;
}
.colour-picker-list a {
  display: block;
  border-radius: 50%;
  border: 3px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  background: #eeeeee;
  transition: all .25s ease;
}
.colour-picker-list a:hover {
  border: 3px solid rgba(255, 255, 255, 0.5);
}
.colour-picker-list a.selected {
  border-color: #e1e1e1;
  width: 85px;
  height: 85px;
}
.colour-picker-list a.selected:before {
  content: '';
  border: 5px solid #FFFFFF;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}
.colour-picker-list .view-all {
  border-left: 1px solid #e1e1e1;
}
.colour-picker-list .view-all a {
  background: none;
  color: #848a9c;
  font-size: 16px;
  text-decoration: underline;
  left: 58%;
  top: 58%;
  line-height: 1.25;
}
.colour-picker-list .view-all a:hover {
  text-decoration: none;
}
.colour-picker-list .view-all a:hover {
  border: 3px solid transparent;
}

/*** Color Family List ***/
td.image .colour-family-products-with-many-colors,
td.image .colour-family-metal,
td.image .colour-family-phosphorescent,
.colour-picker-list .colour-family-products-with-many-colors,
.colour-picker-list .colour-family-metal,
.colour-picker-list .colour-family-phosphorescent {
  background-repeat: no-repeat;
  background-size: 125%;
  background-position: center;
}
td.image .colour-family-no-color,
.colour-picker-list .colour-family-no-color {
  background-image: url("https://www.deserres.ca/skin/frontend/deserres/default/images/swatch-transparent.png");
}
td.image .colour-family-products-with-many-colors,
.colour-picker-list .colour-family-products-with-many-colors {
  background-image: url("https://www.deserres.ca/skin/frontend/deserres/default/images/swatch-multi.png");
}
td.image .colour-family-metal,
.colour-picker-list .colour-family-metal {
  background-image: url("https://www.deserres.ca/skin/frontend/deserres/default/images/swatch-metallic.jpg");
}
td.image .colour-family-phosphorescent,
.colour-picker-list .colour-family-phosphorescent {
  background-image: url("https://www.deserres.ca/skin/frontend/deserres/default/images/swatch-phos.jpg");
}
td.image .colour-family-blue,
.colour-picker-list .colour-family-blue {
  background: #2984ec;
}
td.image .colour-family-brown,
.colour-picker-list .colour-family-brown {
  background: #754b21;
}
td.image .colour-family-green,
.colour-picker-list .colour-family-green {
  background: #5ed019;
}
td.image .colour-family-red,
.colour-picker-list .colour-family-red {
  background: #ed0000;
}
td.image .colour-family-violet,
.colour-picker-list .colour-family-violet {
  background: #7a4ae3;
}
td.image .colour-family-pink,
.colour-picker-list .colour-family-pink {
  background: #e97bb3;
}
td.image .colour-family-yellow,
.colour-picker-list .colour-family-yellow {
  background: #f0d101;
}
td.image .colour-family-grey,
.colour-picker-list .colour-family-grey {
  background: #b8b8b8;
}
td.image .colour-family-orange,
.colour-picker-list .colour-family-orange {
  background: #f77300;
}
td.image .colour-family-white,
.colour-picker-list .colour-family-white {
  background: #FFFFFF;
  border: 1px solid #e1e1e1;
}
td.image .colour-family-white:hover,
.colour-picker-list .colour-family-white:hover {
  border: 3px solid #e1e1e1;
}
td.image .colour-family-black,
.colour-picker-list .colour-family-black {
  background: #000000;
}

a.view-all-link.select-all {
  color: #000000;
}

tr.item-select-colour.item-selector {
  background-color: #f7f7f7;
}

/* Colour swatch list inside of grouped products table */
.grouped-items-table tr.item-select-colour {
  display: table-row;
  border-bottom: none;
}
.grouped-items-table td.child-group-table tbody td.colour-picker-list {
  text-align: center;
}
.grouped-items-table td.child-group-table tr.item-select-colour {
  display: block;
}
.grouped-items-table td.child-group-table td.colour-picker-list {
  display: block;
}
.grouped-items-table tr.load-icon {
  display: block;
}
.grouped-items-table tr.load-icon td {
  display: block;
  margin-top: -30px;
}
.grouped-items-table tr.load-icon td img {
  position: relative;
  margin: auto;
}

.attributenav-index-index .main-container.col1-layout {
  max-width: 100%;
  padding: 20px;
  padding: 20px 0;
}
.attributenav-index-index .brand-banner-image {
  padding-bottom: 20px;
}
.attributenav-index-index .brand-wrapper {
  max-width: 1084px;
  margin: 0 auto;
  padding: 0 16px;
  padding: 0 32px;
}
.attributenav-index-index .brand-list {
  list-style-type: none;
  margin-bottom: 0;
  margin: 30px 0;
}
.attributenav-index-index .brand-list:after {
  content: '';
  display: table;
  clear: both;
}
.attributenav-index-index .brand-list li {
  margin-left: 0;
}
.attributenav-index-index .brand-list li img {
  max-width: 100%;
  margin: 0 auto;
}
.attributenav-index-index .description-wrapper {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  margin: 30px 0 60px;
}
.attributenav-index-index .brand-list li,
.attributenav-index-index .col-wrapper {
  float: left;
  width: 50%;
  width: 25%;
}
.attributenav-index-index .brand-list li:nth-child(odd),
.attributenav-index-index .col-wrapper:nth-child(odd) {
  clear: left;
}
.attributenav-index-index .brand-list li:nth-child(odd),
.attributenav-index-index .col-wrapper:nth-child(odd) {
  clear: none;
}
.attributenav-index-index .brand-list li:nth-child(4n+5),
.attributenav-index-index .col-wrapper:nth-child(4n+5) {
  clear: left;
}
.attributenav-index-index .col-wrapper ul {
  padding-bottom: 1.25em;
}
.attributenav-index-index .col-wrapper img {
  margin: 0 auto;
  padding: 10px;
}
.attributenav-index-index .col-wrapper a {
  color: #848a9c;
  font-size: 16px;
  text-decoration: underline;
}
.attributenav-index-index .col-wrapper a:hover {
  text-decoration: none;
}

.attributenav-index-view .col-left-first {
  margin-bottom: 0;
}
.attributenav-index-view .category-banner:not(.has-banner) {
  margin-bottom: 0;
}

.block-subtitle--filter .wide-title {
  display: none;
}

.cms-zone-account-create #initial-selection button,
.cms-creation-compte-zone #initial-selection button {
  width: 100%;
  margin-bottom: 10px;
}
.cms-zone-account-create #parent-zone-search,
.cms-creation-compte-zone #parent-zone-search {
  clear: left;
  max-width: 47%;
  padding-right: 20px;
}
.cms-zone-account-create .new-business,
.cms-creation-compte-zone .new-business {
  clear: left;
}

.customer-account-edit .control.newsletter_preference {
  margin-bottom: 35px;
}
.customer-account-edit .control.newsletter_preference label {
  position: relative;
  bottom: 50%;
  transform: translateY(35%);
}

.demac-mlilite-index-index .store-list .btn-cart {
  margin-bottom: 10px;
  padding: 10px 20px;
}

.block-banner-content {
  margin-bottom: 15px;
}
.block-banner-content .banner {
  margin-bottom: 10px;
}
.block-banner-content .banner img {
  width: 100%;
}
.block-banner-content .banner img.mobile {
  display: none;
}

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

body {
  background-color: #ededed;
}
body.popin-open {
  overflow: hidden;
}

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

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

.top-banner-message {
  background-color: #eb212e;
  color: #fff;
  margin: 20px auto;
  padding: 15px;
  text-align: center;
}
.top-banner-message > div {
  color: #fff;
  margin: 20px auto;
  padding: 15px;
  text-align: center;
  max-width: 1020px;
  margin: 0 auto;
}

/* ============================================ *
 * Legal prefooter block
 * ============================================ */
.cms-legal-block {
  display: block;
  max-width: 1024px;
  margin: 0 auto;
  padding: 20px 0;
}
.cms-legal-block:before {
  content: "";
  display: inline-block;
  width: 100%;
}
.cms-legal-block .legal-block-title {
  font-weight: bold;
  margin-bottom: 10px;
  cursor: pointer;
}
.cms-legal-block .legal-block-title:after {
  content: "+";
  color: #e52f32;
  padding-left: 10px;
}
.cms-legal-block .legal-block-content {
  display: none;
}
.cms-legal-block .legal-block-content p:last-of-type {
  margin-bottom: 0;
}
.cms-legal-block--open .legal-block-title:after {
  content: "-";
}
.cms-legal-block--open .legal-block-content {
  display: block;
}

/* ============================================ *
 * Youtube videos
 * ============================================ */
.content-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.content-video .teevee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-right: 0;
}
.content-video .teevee iframe {
  width: 100%;
  height: 100%;
}
.content-video .teevee .teevee-play-btn {
  position: absolute;
  left: 49%;
  top: 52%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 105px;
  height: 94px;
  background-image: url("https://www.deserres.ca/skin/frontend/deserres/default/images/icon-play.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}
.content-video .teevee .teevee-play-btn.visible {
  opacity: 1;
  visibility: visible;
}
.content-video.dual-video {
  position: relative;
  padding-bottom: 28.125%;
}
.content-video.dual-video .teevee {
  width: 50%;
  height: 100%;
  padding-right: 4px;
}
.content-video.dual-video .teevee iframe {
  width: 100%;
  height: 100%;
}
.content-video.dual-video .teevee.video-right {
  left: inherit;
  right: 0;
  padding-right: 0;
  padding-left: 4px;
}

/* ============================================ *
 * Header
 * ============================================ */
.page-header {
  margin: 0 auto;
  width: 100%;
}
.page-header .header-top,
.page-header #nav {
  margin: 0 auto;
  max-width: 1084px;
  padding: 0 16px;
  padding: 0 32px;
}
.page-header .header-top {
  position: relative;
}

.page-header-container:after {
  content: '';
  display: table;
  clear: both;
}

.before-header-message {
  background: #fddd1b;
  text-align: center;
  padding: 3px 15px;
  font-size: 13px;
}
.before-header-message a {
  color: #231f20;
  text-decoration: underline;
}

.no-touch .page-header-container.sticky-nav {
  position: fixed;
  width: 100%;
  z-index: 10;
  background: #FFFFFF;
  top: 0;
  border-top: 17px solid #231f20;
  box-shadow: 3px 2px 7px #ededed;
  padding: 0 0 8px;
  -webkit-transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1);
  -moz-transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1);
  -ms-transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1);
  -o-transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1);
  transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1);
}
.no-touch .page-header-container.sticky-nav .logo {
  padding-top: 8px;
  max-width: 54px;
  min-width: 50px;
  min-height: 50px;
  -webkit-transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1);
  -moz-transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1);
  -ms-transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1);
  -o-transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1);
  transition: all 0.35s cubic-bezier(0.33, 0.59, 0.14, 1);
}
.no-touch .page-header-container.sticky-nav #header-search {
  top: 10px;
}
.no-touch .page-header-container.sticky-nav .logo-tagline,
.no-touch .page-header-container.sticky-nav #header-nav {
  display: none;
}
.no-touch .page-header-container.sticky-nav .header-minicart a.skip-cart.skip-active {
  padding-bottom: 7px;
}
.no-touch .page-header-container.sticky-nav #header-cart.skip-active {
  top: 48px;
}

.page-header-container.sticky-nav .to-top {
  position: initial;
  float: left;
  opacity: 1;
  background: #FFFFFF;
  color: #231f20;
  padding: 12px 32px 0 0;
}
.page-header-container.sticky-nav .to-top:hover {
  color: #636466;
}
.page-header-container.sticky-nav .breadcrumbs {
  margin: 0;
  padding: 19px 0 0 16px;
  display: block;
  max-width: 40%;
}
.page-header-container.sticky-nav .breadcrumbs li {
  font-size: 18px;
}
.page-header-container.sticky-nav .breadcrumbs a,
.page-header-container.sticky-nav .breadcrumbs strong {
  color: #231f20;
}
.page-header-container.sticky-nav .breadcrumbs strong {
  font-weight: 700;
}
.page-header-container.sticky-nav .breadcrumbs .home {
  display: none;
}
.page-header-container.sticky-nav .breadcrumbs a + span {
  font-size: 0;
}
.page-header-container.sticky-nav .breadcrumbs a + span:after {
  content: '>';
  font-size: 18px;
}
.page-header-container:not(.sticky-nav) .to-top {
  opacity: 0;
  position: initial;
  display: none;
}

.page-header-container {
  position: relative;
  padding-top: 0;
}
.page-header-container .breadcrumbs {
  display: none;
}

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

/* ============================================ *
 * Language switcher + welcome message
 * ============================================ */
.header-language-background {
  background-color: #231f20;
  text-transform: uppercase;
  padding: 8px 16px;
  padding: 8px;
}
.header-language-background .header-language-container {
  max-width: 1084px;
  margin-left: auto;
  margin-right: auto;
  font-size: 12px;
  padding: 0 32px;
}
.header-language-background:after {
  content: '';
  display: table;
  clear: both;
}
.header-language-background .currency-switcher {
  float: left;
  margin-right: 10px;
}
.header-language-background .welcome-msg {
  float: right;
}

.store-language-container {
  float: right;
  margin-left: 10px;
}
.store-language-container:before {
  content: "|";
  float: left;
  padding-right: 8px;
}

.form-language {
  float: left;
}
.form-language .selected {
  display: none;
}
.form-language a {
  font-size: 12px;
  color: #f5f5f5;
}
.form-language span.code {
  text-transform: uppercase;
}
.form-language span.full {
  text-decoration: underline;
  display: none;
}

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

#header-nav .store-language-container {
  clear: both;
  width: 100%;
  max-width: 100%;
  display: none;
}

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

.header-language-background a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.header-language-background .shipping-msg {
  font-weight: 500;
  float: left;
  width: 40%;
}
.header-language-background .shipping-msg p {
  margin-bottom: 0;
}

.cart-help {
  display: none;
}

/* ============================================ *
 * Logo
 * ============================================ */
.logo {
  float: left;
  display: block;
  width: auto;
  max-width: 108px;
  min-height: 88px;
  padding: 0;
}
.logo img {
  max-width: 100%;
}

.logo-tagline {
  font-size: 14px;
  color: #b1b1b1;
  padding: 30px 0 0 15px;
  float: left;
  font-weight: 500;
}

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

.skip-stores {
  display: none;
}

/* -------------------------------------------- *
 * Skip - Link
 */
.mobile-link,
.skip-link {
  position: relative;
  float: left;
  background: #FFFFFF;
  color: #231f20;
  text-align: center;
  padding-top: 10px;
  width: 17%;
  width: 10%;
  width: 12%;
}

a.mobile-link,
a.skip-link {
  text-decoration: none;
}

a.mobile-link:hover,
.skip-link:not(.skip-active):hover {
  opacity: 0.8;
}

/* -------------------------------------------- *
 * Skip Link - Active
 */
/* -------------------------------------------- *
 * Skip Link - Icon
 */
.skip-link .icon,
.mobile-link .icon {
  display: block;
  font-size: 24px;
}

.mobile-link .label,
.skip-link .label {
  display: block;
  text-transform: uppercase;
  line-height: 1;
  padding-top: 10px;
  font-weight: 700;
}

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

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

/* ============================================ *
 * CMS Top Links
 * ============================================ */
.cms-block.top-links {
  float: right;
}
.cms-block.top-links ul {
  float: right;
}
.cms-block.top-links li {
  display: inline-block;
}
.cms-block.top-links li:after {
  content: "|";
  padding: 0 5px 0 10px;
}

/* ============================================ *
 * Global Header Navigation
 * ============================================ */
#header-account li:nth-last-child(2) a {
  border-bottom: 0;
}

.account-cart-wrapper {
  position: absolute;
  top: 17px;
  right: 35px;
}
.account-cart-wrapper .skip-account {
  display: none;
}

.sticky-nav .account-cart-wrapper {
  top: 14px;
}

/* ============================================ *
 * Nav - Skip Link
 * ============================================ */
.skip-nav:not(.skip-active):hover {
  text-decoration: none;
  color: #636466;
}
.skip-nav:focus {
  color: #636466;
}
.skip-nav .close {
  display: none;
}
.skip-nav.skip-active {
  padding-bottom: 10px;
}
.skip-nav.skip-active:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 6px solid #231f20;
  border-top: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.skip-nav.skip-active .open {
  display: none;
}
.skip-nav.skip-active .close {
  display: block;
  line-height: 1;
}

.skip-nav {
  display: none;
}

/* ============================================ *
 * Nav - Skip Content
 * ============================================ */
#header-nav {
  clear: both;
  float: left;
  width: 100%;
}
#header-nav.skip-active {
  top: 69px;
}

#header-nav {
  display: block;
  /* Force visibility */
  border-bottom: 1px solid #eeeeee;
  border-top: 1px solid #eeeeee;
  margin-top: 0;
}
#header-nav:after {
  content: '';
  display: table;
  clear: both;
}

/* ============================================ *
 * General Navigation Styles
 * ============================================ */
.nav-primary {
  display: flex;
}
.nav-primary a {
  position: relative;
  display: block;
  color: #636466;
  font-size: 11px;
  text-transform: uppercase;
}
.nav-primary li {
  position: relative;
}
.nav-primary li.level0 {
  flex-grow: 1;
}
.nav-primary li.level1 a {
  border-bottom: 1px solid #636466;
}

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

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

/* ============================================ *
 * Small Viewports - Accordion Style Menu
 * ============================================ */
.cms-mobile-nav {
  display: none;
}
.cms-mobile-nav li.level0 > a {
  text-transform: none;
}

/* ============================================ *
 * Large Viewports - Dropdown Menu
 * ============================================ */
.nav-primary {
  /* Default styles for 1+ drop-down menus */
  /* Level 2+ */
  /* Class for js to add briefly to evaluate element positioning. */
  /* Correct menus that will hang off the page (class added by js) */
  /* Level 1+ */
}
.nav-primary li.level0 .drop-list > ul {
  display: block;
}
.nav-primary .column-container {
  float: left;
  width: 50%;
  padding-right: 20px;
}
.nav-primary .drop-list {
  max-width: 1084px;
  margin: 0 auto;
  padding-left: 32px;
  overflow: hidden;
}
.nav-primary .drop-list > ul {
  width: 50%;
  float: left;
  padding: 32px 0;
}
.nav-primary .drop-list .cat-nav-cms {
  background-color: #eeeeee;
  float: right;
  width: 23%;
  margin-left: 2%;
  position: relative;
}
.nav-primary .drop-list .cat-nav-cms:after {
  content: '';
  display: block;
  background-color: #eeeeee;
  padding-bottom: 300%;
  z-index: -1;
  width: 100%;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 599px) {
  .nav-primary .drop-list .cat-nav-cms:after {
    content: none;
  }
}
.nav-primary .drop-list .cat-nav-cms img {
  max-width: 100%;
}
@media screen and (max-width: 599px) {
  .nav-primary .drop-list .cat-nav-cms {
    display: block;
    order: -1;
    float: none;
    width: 100%;
    margin-left: 0;
  }
}
.nav-primary .drop-list .cat-nav-cms-links {
  float: left;
  width: 25%;
  padding: 32px 10px;
}
.nav-primary .drop-list .cat-nav-cms-links li {
  text-align: left;
}
.nav-primary .drop-list .cat-nav-cms-links a {
  color: #e52f32;
  padding: 10px 0;
  font-weight: 700;
}
.nav-primary .drop-list .cms-wrap {
  text-align: left;
  padding: 16px;
}
.nav-primary .drop-list .cms-wrap h6, .nav-primary .drop-list .cms-wrap p {
  color: #363636;
}
.nav-primary .drop-list .cms-wrap h6 {
  font-size: 14px;
  font-weight: 700;
}
.nav-primary .drop-list .cms-wrap p {
  font-size: 12px;
}
@media screen and (max-width: 599px) {
  .nav-primary .drop-list .cms-nav-promo__desktop {
    display: none;
  }
}
.nav-primary .drop-list .cms-nav-promo__mobile {
  display: none;
}
.nav-primary .drop-list .cms-nav-promo__mobile a {
  display: block;
  background-color: #e1e1e1;
  color: #e52f32;
  text-decoration: none;
  padding: 0 0 0 37px;
  text-transform: none;
  border-bottom: 1px solid #b1b1b1;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .nav-primary .drop-list .cms-nav-promo__mobile {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .nav-primary .drop-list {
    display: flex;
    flex-direction: column;
  }
  .nav-primary .drop-list .cms-nav-promo {
    order: -1;
  }
}
.nav-primary li {
  text-align: center;
}
.nav-primary li.view-all {
  display: none;
}
.nav-primary a.level0 {
  font-weight: 500;
  display: block;
  padding: 0 6px;
  position: relative;
  font-size: 10px;
}
.nav-primary a.level0:focus {
  background: transparent;
}
.nav-primary li.level1 a {
  border-bottom: 0;
  color: #FFFFFF;
  text-transform: none;
  text-align: left;
  padding: 10px 0;
}
.nav-primary li.level1 a:focus {
  background: transparent;
}
.nav-primary > li.level0 {
  position: static;
}
.nav-primary > li.level0.parent.menu-active > a:after {
  left: 50%;
  transform: translateX(-50%);
}
.nav-primary > li.level0.first.parent.menu-active > a:after {
  left: calc(50% - 15px);
  transform: translateX(-50%);
}
.nav-primary > li.level0.last.parent.menu-active > a:after {
  left: calc(50% + 15px);
  transform: translateX(-50%);
}
.nav-primary li.parent.menu-active > a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 6px solid #231f20;
  border-top: none;
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
}
.nav-primary li.level0 {
  text-align: center;
  float: left;
}
.nav-primary li.level0 > a {
  padding: 17px 0;
}
.nav-primary li.level0.left-pipe:before {
  content: "|";
  float: left;
  line-height: 49px;
}
.nav-primary li.level0:first-child {
  padding-left: 0;
}
.nav-primary li.level0:last-child {
  padding-right: 0;
}
.nav-primary a.level0.promotions {
  color: #e52f32;
}
.nav-primary li:last-child > a {
  border-bottom: none;
}
.nav-primary.cms-block li:hover > a,
.nav-primary li.level0:hover > a,
.nav-primary li.level0:hover > a.level0.promotions {
  color: #231f20;
  text-decoration: none;
}
.nav-primary .menu-active {
  z-index: 200;
}
.nav-primary .menu-active ul.level0 ul {
  display: block;
}
.nav-primary li.level0 > ul {
  background: rgba(0, 0, 0, 0.9);
  position: absolute;
  left: 0;
  z-index: 10;
  width: 100%;
  top: 138px;
  display: none;
  /* Hide until displayed. */
}
.nav-primary li.level1 ul {
  left: 60px;
  top: 15px;
}
.nav-primary li.level0 ul.level0.position-test {
  display: block;
}
.nav-primary li.level0 ul.level0.spill {
  right: 0;
  left: auto;
}
.nav-primary li.level0 ul.level0.spill li.level1 ul {
  left: auto;
  right: 50px;
  top: 20px;
}
.nav-primary li.level0 li.parent > a {
  position: relative;
}
.nav-primary li.level0 li.parent > a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #ccc;
  border-right: none;
  right: 5px;
  top: 50%;
  margin-top: -3px;
}

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

.drop-list .column1,
.drop-list .column2 {
  float: left;
  width: 50%;
}

/* ============================================ *
 * Search - Skip Link
 * ============================================ */
.skip-search {
  display: none;
}

/* ============================================ *
 * Search - Skip Content
 * ============================================ */
#header-search {
  display: block;
  padding: 0 5px 5px;
  position: absolute;
  top: 15px;
  right: 110px;
  width: 44.3%;
  height: 50px;
}

/* ============================================ *
 * Search Input
 * ============================================ */
#search_mini_form .input-box {
  position: relative;
  padding-top: 0;
}
#search_mini_form label {
  display: none;
}
#search_mini_form .icon-search {
  text-indent: -9999px;
  position: absolute;
  top: 0;
  right: 0;
  width: 43px;
  height: 40px;
  border: 0;
  background: none;
}
#search_mini_form .icon-search:before {
  color: #231f20;
  display: block;
  text-indent: 0;
  font-size: 23px;
  margin: -8px 0 0 -10px;
  transition: color .25s ease;
}
#search_mini_form .icon-search span {
  font-size: 0;
}
#search_mini_form .icon-search:hover:before {
  color: #e52f32;
}
#search_mini_form .icon-search:active:before {
  color: #e52f32;
}

#search {
  width: 100%;
  height: 40px;
  padding: 0 50px 0 20px;
  background-color: #FFFFFF;
  border: solid 1px #eeeeee;
  padding: 0 35px 0 25px;
}
#search:focus {
  border: solid 1px #cccccc;
  outline: none;
}
#search:focus + button:before {
  color: #e52f32;
}

.sbs_search_autocomplete_box_bottom, .sbs_autocomplete_message, .suggest_divider, .sbs_search_suggest_item_subtitle {
  display: none;
}

#sbs_search_keyword_index_0 {
  border-top: 1px solid #DEE5E8;
}

#sbs_search_autocomplete_box {
  left: 10px;
}
#sbs_search_autocomplete_box .suggested-item {
  font-size: 14px;
  font-weight: 400;
  color: #323232;
}
#sbs_search_autocomplete_box .suggested-item.selected {
  background-color: #f5f5f5;
  font-weight: 500;
}

.search-autocomplete::before {
  display: none !important;
}

@media (min-width: 980px) and (max-width: 1080px) {
  #anonymous_element_1 {
    width: calc( 44.3% - 11px ) !important;
    right: 125px !important;
    left: auto !important;
  }

  #sbs_search_autocomplete_box {
    width: 100% !important;
  }
}
/* ============================================ *
 * Header - Account
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Account
 */
.skip-account {
  margin-left: 30%;
  margin-left: 60%;
  float: right;
  width: auto;
  vertical-align: top;
  display: inline-block;
  padding: 0 0 0 5px;
  text-transform: uppercase;
  background: none;
  height: auto;
  line-height: 1.5;
  margin: 0;
}
.skip-account.skip-active:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 6px solid #eeeeee;
  border-top: none;
  position: absolute;
  bottom: 0;
  left: 4px;
  bottom: -8px;
}
.skip-account .label {
  padding: 0 0 0 5px;
  display: inline-block;
  font-weight: 400;
}

/* -------------------------------------------- *
 * Account Links
 */
#header-account {
  border: 1px solid #eee;
  border-top: none;
}
#header-account.skip-active {
  background: #FFFFFF;
  display: block;
  position: absolute;
  z-index: 200;
  top: -8px;
  right: 32px;
  width: 336px;
}
#header-account a {
  position: relative;
  display: block;
  padding: 5px 10px;
  line-height: 23px;
  text-align: center;
  display: block;
  padding: 5px 10px;
  color: #231f20;
  line-height: 2;
}
#header-account a:hover {
  color: #e52f32;
  color: #e52f32;
}
#header-account h5,
#header-account .welcome-msg {
  text-align: center;
  background-color: #eeeeee;
}
#header-account h5 {
  padding-top: 12px;
  margin-bottom: 0;
}
#header-account .login {
  padding: 21px 10px;
}
#header-account .login + .welcome-msg {
  padding: 0;
}
#header-account .welcome-msg {
  padding: 2px 0 7px;
  color: #636466;
}
#header-account .links a {
  color: #636466;
  padding: 0 10px;
}
#header-account .links .first a {
  padding: 0 10px;
}
#header-account .links li {
  text-align: center;
  color: #636466;
}
#header-account .links a.new-users {
  text-decoration: underline;
  width: 100%;
  text-align: center;
}
#header-account .links a.new-users:hover {
  text-decoration: none;
}
#header-account .links .first a {
  margin-top: 15px;
}
#header-account .links .last {
  padding: 12px;
}
#header-account .links .button {
  display: block;
  text-align: center;
  background: #e52f32;
  color: #FFFFFF;
  margin-top: 15px;
  padding: 8px;
}
#header-account .links .button:hover {
  background: #d61b1e;
}

/* ============================================ *
 * Header - Cart
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Cart
 */
.skip-cart {
  width: auto;
  padding: 0;
}
.skip-cart .icon {
  display: block;
  color: #231f20;
}
.skip-cart .label {
  color: #231f20;
  font-size: 12px;
  line-height: initial;
  padding-top: 3px;
}

#header-cart.skip-active {
  background: #FBFBFB;
  border: solid 1px #b1b1b1;
  display: block;
  position: absolute;
  z-index: 200;
  top: 70px;
  right: -3px;
  width: 320px;
  background: white;
  border: 0;
}

/* -------------------------------------------- *
 * Skip Cart Notifier
 */
.skip-cart:hover {
  text-decoration: none;
}
.skip-cart .count {
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  z-index: 5;
  background: #e52f32;
  color: #FFFFFF;
  text-align: center;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  right: 10px;
  right: 20px;
  width: 18px;
  height: 18px;
  font-size: 11px;
  line-height: 1.75;
  top: -8px;
  right: -5px;
}
.skip-cart .count.empty {
  display: none;
}
.skip-cart.no-count .count {
  display: none;
}

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

.skip-cart .count,
.skip-link.skip-active .count {
  color: #f5f5f5;
}

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

/* -------------------------------------------- *
 * Mini Cart - Full
 */
.cart-menu {
  /* Actions */
  /* Subtotal */
  /* Too full - additional items will be shown in cart */
}
.cart-menu .actions {
  overflow: hidden;
  padding: 15px;
}
.cart-menu .actions .button {
  float: left;
  width: 48%;
}
.cart-menu .actions .button + .button {
  margin-left: 4%;
}
.cart-menu .subtotal {
  padding: 0 15px 15px;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}
.cart-menu .last-added {
  padding: 10px 15px 15px;
  border-top: 1px solid #b1b1b1;
  font-size: 13px;
}

/* List */
.mini-cart-list {
  margin-bottom: 5px;
}
.mini-cart-list li {
  position: relative;
  min-height: 90px;
  padding: 15px 15px 15px 90px;
  border-top: 1px solid #b1b1b1;
  font-size: 13px;
  line-height: 1.35;
}
.mini-cart-list .product-name {
  display: inline-block;
}
.mini-cart-list .product-image {
  position: absolute;
  left: 15px;
  top: 15px;
}
.mini-cart-list .product-image img {
  width: 60px;
  height: 60px;
}
.mini-cart-list .has-options {
  margin-bottom: 0;
  color: #636466;
  font-size: 12px;
}

.header-help-wrapper {
  border-top: 1px solid #ededed;
  padding: 7px 16px;
  text-align: center;
  padding: 16px;
  border: 0;
  float: right;
  padding: 27px 0px;
  text-align: right;
}
.header-help-wrapper .links {
  display: inline-block;
}
.header-help-wrapper .links a {
  color: #848a9c;
  font-size: 16px;
  text-decoration: underline;
}
.header-help-wrapper .links a:hover {
  text-decoration: none;
}
.header-help-wrapper li.last:after {
  content: '|';
  padding-left: 12px;
  margin-right: 10px;
  color: #848a9c;
}
.header-help-wrapper .header-help,
.header-help-wrapper .links li a {
  font-size: 16px;
}
.header-help-wrapper .header-help {
  color: #636466;
  display: inline-block;
}

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

.no-touch .footer .cms-mobile-nav ul.level0 a:hover {
  text-decoration: underline;
}

.footer {
  clear: both;
  max-width: 1084px;
  margin: 0 auto;
  padding: 25px 32px 35px;
  padding: 25px 32px 50px;
  /* -------------------------------------------- *
   * Social icons
   */
}
.footer:after {
  content: '';
  display: table;
  clear: both;
}
.footer .cms-mobile-nav {
  display: block;
  float: left;
  width: 25%;
  margin-bottom: 32px;
  width: 16.5%;
}
.footer .cms-mobile-nav:first-of-type {
  border-color: #FFFFFF;
}
.footer .cms-mobile-nav a {
  font-size: 12px;
  text-decoration: none;
}
.footer .cms-mobile-nav li.level0 {
  text-align: left;
  width: 100%;
}
.footer .cms-mobile-nav li.level0.menu-active a:after {
  content: none;
}
.footer .cms-mobile-nav li.level0 > a {
  text-transform: uppercase;
  color: #231f20;
  font-weight: 600;
  padding: 0 0 7px;
  display: block;
}
.footer .cms-mobile-nav li.level0 > a:hover {
  cursor: default;
}
.footer .cms-mobile-nav li.level0 > ul {
  display: block;
  position: static;
  background: none;
  padding-right: 20px;
  min-height: 0;
}
.footer .cms-mobile-nav li.level0 > ul li {
  text-align: left;
  padding: 7px 0;
}
.footer .cms-mobile-nav li.level0 > ul a {
  text-transform: none;
  color: #636466;
}
.footer .block-title {
  border-bottom: 0;
  padding: 3px 0;
}
.footer .block-title strong {
  font-weight: 700;
  font-size: 12px;
}
.footer .block-title,
.footer address {
  color: #231f20;
}
.footer .links {
  float: left;
  width: 17%;
  padding: 0 32px 0 0;
  margin-bottom: 32px;
}
.footer .links li {
  word-break: break-all;
  line-height: 1.4;
  padding: 4px 0;
}
.footer .links a {
  color: #231f20;
}
.footer .links a:hover {
  color: #e52f32;
}
.footer .block-subscribe {
  margin: 20px auto;
  width: 100%;
  max-width: 330px;
  clear: both;
  width: 32.5%;
  border: 3px solid #d4d2d2;
  padding: 16px 25px 20px;
  margin: 0 auto;
  clear: none;
  margin: 0;
  float: right;
}
.footer .block-subscribe .block-title {
  text-transform: uppercase;
  border: 0;
}
.footer .block-subscribe h6 {
  text-transform: none;
  font-weight: 700;
}
.footer .links,
.footer .block-subscribe {
  font-size: 12px;
}
.footer .form-subscribe-header {
  display: none;
}
.footer .footer-social-cms {
  float: right;
  width: 32%;
  padding-top: 20px;
}
.footer .footer-social-cms h6 {
  font-weight: 700;
  margin-bottom: 20px;
}
.footer .footer-social-cms li {
  display: inline-block;
}
.footer .footer-social-cms li:last-child a {
  margin-right: 0;
}
.footer .footer-social-cms li a {
  font-size: 0;
  display: block;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  color: #FFFFFF;
  padding: 20px 12px;
  background: #e52f32;
  line-height: 0;
  margin-right: 20px;
  transition: background .25s ease;
}
.footer .footer-social-cms li a:before {
  font-size: 20px;
}
.footer .footer-social-cms li a:hover {
  text-decoration: none;
  background: #231f20;
}
.footer .block-subscribe .input-box {
  float: left;
  width: 62%;
  padding-top: 0;
}
.footer .block-subscribe .input-text {
  width: 100%;
  height: 45px;
  border: 1px solid #FFFFFF;
  background: #FFFFFF;
  color: #000000;
}
.footer .block-subscribe .input-text:focus {
  border-color: transparent;
}
.footer .block-subscribe .block-content {
  padding-top: 7px;
}
.footer .block-subscribe .block-content:after {
  content: '';
  display: table;
  clear: both;
}
.footer .block-subscribe .actions {
  float: left;
  width: 38%;
  margin: 0;
}
.footer .block-subscribe .actions .button {
  height: 45px;
  padding: 0;
  background: #FFFFFF;
  color: #e52f32;
  width: 100%;
}
.footer .block-subscribe .actions .button > span {
  padding-right: 7px;
}
.footer .block-subscribe .actions .button:after {
  content: "";
  font-family: "icomoon";
  position: relative;
  top: 1px;
  right: 0px;
  font-size: 11px;
}
.footer .block-subscribe .actions .button:hover {
  background: #e52f32;
  color: #FFFFFF;
}
.footer .bugs,
.footer address {
  clear: both;
}
.footer .bugs {
  display: none;
}
.footer .form-language,
.footer .currency-switcher,
.footer .store-switcher {
  clear: both;
  margin-bottom: 10px;
}
.footer .form-language,
.footer .currency-switcher {
  display: none;
}

.footer-top {
  background: #FFFFFF;
  border-top: 1px solid #ededed;
  padding: 16px 0;
  border-bottom: 1px solid #ededed;
}
.footer-top:after {
  content: '';
  display: table;
  clear: both;
}
.footer-top ul > li {
  border-bottom: 1px solid #ededed;
  position: relative;
  padding: 13px 20px;
  padding: 16px;
  float: left;
  border-right: 1px solid #ededed;
  border-bottom: 0;
  text-align: center;
  width: 20%;
  min-height: 130px;
  padding: 16px 0 16px 10px;
  width: 18%;
  min-height: auto;
}
.footer-top ul > li:last-child {
  border-right: 0;
}
.footer-top ul > li:first-child {
  padding-left: 0;
}
.footer-top ul > li:last-child {
  padding-left: 20px;
}
.footer-top ul > li.events-icon {
  width: 16%;
}
.footer-top ul > li.demos-icon {
  width: 19%;
}
.footer-top ul > li.club-icon, .footer-top ul > li.gift-card-icon {
  width: 22%;
}
.footer-top ul > li.zone-icon {
  width: 21%;
}
.footer-top ul > li.zone-icon span {
  width: 50%;
}
.footer-top ul > li img {
  display: inline-block;
  vertical-align: middle;
  height: 50px;
  margin: 0 auto 20px;
  margin: 0;
}
.footer-top ul > li span {
  font-weight: 500;
  text-align: left;
  line-height: 1.25;
  display: inline-block;
  padding-left: 0;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  padding-left: 7px;
  text-align: left;
  vertical-align: middle;
  width: 60%;
  margin: 0;
}
.footer-top ul > li span > span {
  display: block;
  width: 100%;
  padding: 0;
}
.footer-top ul > li a {
  display: block;
  color: #636466;
  font-size: 16px;
}
.footer-top ul > li a:hover {
  text-decoration: none;
  color: #b1b1b1;
}

.footer-bottom {
  background-color: #231f20;
  font-size: 12px;
  padding: 32px 0;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
}
.footer-bottom a:hover {
  text-decoration: none;
}
.footer-bottom address {
  clear: both;
  color: rgba(255, 255, 255, 0.65);
  padding-bottom: 20px;
  width: 50%;
  margin: 0 auto;
  float: left;
  padding-bottom: 0;
}

.cms-terms-container {
  float: right;
}
.cms-terms-container li {
  display: inline-block;
  padding-left: 5px;
  color: rgba(255, 255, 255, 0.65);
}
.cms-terms-container li:before {
  content: '|';
  padding-right: 8px;
}
.cms-terms-container li:first-child:before {
  content: none;
}

.footer > .footer-top-container,
.footer > .cms-terms-container {
  display: none;
}

/* ================================================= *
 * General Product List Styles (not module-specific)
 * ================================================= */
/* -------------------------------------------- *
 * Product List General
 */
.category-title h1,
body.catalogsearch-result-index .page-title h1 {
  border-bottom: none;
}

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

.category-promo-image img.mobile {
  display: none;
}
@media screen and (max-width: 599px) {
  .category-promo-image img.mobile {
    display: block;
  }
  .category-promo-image img:not(.mobile) {
    display: none;
  }
}

.catalog-category-view .col2-left-layout .col-main {
  margin-bottom: 100px;
}
.catalog-category-view .category-banner-bottom .mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .catalog-category-view .category-banner-bottom img:not(.mobile) {
    display: none;
  }
  .catalog-category-view .category-banner-bottom .mobile {
    display: block;
  }
}
.catalog-category-view .main-container {
  padding: 0;
}
.catalog-category-view .main-container.sticky-nav {
  padding-top: 80px;
}
.catalog-category-view .category-products {
  position: static !important;
}
.catalog-category-view .category-left-banner {
  margin-bottom: 30px;
}
.catalog-category-view .category-banner-bottom {
  width: 100%;
}
.catalog-category-view .category-banner-bottom img {
  width: 100%;
  height: auto;
}

.attributenav-index-view .col2-left-layout .content-wrapper,
.catalog-category-view .col2-left-layout .content-wrapper {
  max-width: 1084px;
  margin: 0 auto;
  padding: 0 16px;
  padding: 0 32px;
}
.attributenav-index-view .col2-left-layout.main-container,
.catalog-category-view .col2-left-layout.main-container {
  max-width: 100%;
}
.attributenav-index-view .category-title,
.catalog-category-view .category-title {
  padding: 0 32px;
  margin: 0 auto;
  max-width: 1084px;
}

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

/* -------------------------------------------- *
 * Product Name
 */
h2.product-name,
h3.product-name,
h4.product-name,
h5.product-name,
p.product-name {
  font-size: 16px;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.4;
}
h2.product-name a,
h3.product-name a,
h4.product-name a,
h5.product-name a,
p.product-name a {
  color: #231f20;
}
h2.product-name a:hover,
h3.product-name a:hover,
h4.product-name a:hover,
h5.product-name a:hover,
p.product-name a:hover {
  text-decoration: underline;
}

.products-grid .product-name,
.products-list .product-name {
  margin-bottom: 5px;
}
.products-grid .product-name a,
.products-list .product-name a {
  font-weight: 700;
  display: block;
  line-height: 1.25;
}

.products-grid h3.brand,
.products-grid .product-name,
.products-grid .price-box {
  padding: 0 10px 0 16px;
}
.products-grid h3.brand {
  margin: 0;
  font-size: 12px;
}

.creative-project-name {
  text-align: center;
}

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

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

.products-grid > li {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}
.products-grid > li:after {
  content: '';
  display: table;
  clear: both;
}
.products-grid > li.wide-ad {
  width: 100%;
  margin-right: 0;
}
.products-grid > li.standard-ad {
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-position: center center;
  background-size: cover;
}
.products-grid > li.standard-ad img {
  position: absolute;
  z-index: 1;
  max-width: 100%;
}
.products-grid > li .ad-image {
  max-width: 100%;
}

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

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

.widget-new-products .products-grid .product-image {
  width: 75%;
  margin-bottom: 15px;
  margin-left: 10%;
}

.products-grid .product-info {
  position: relative;
  background: #ededed;
  padding-bottom: 125px;
}
.products-grid .product-info.creative-list {
  padding-bottom: 80px;
}

.products-grid .actions {
  padding-top: 10px;
  position: absolute;
  bottom: 0px;
  min-height: 115px;
  width: 100%;
}
.products-grid .actions .shop-arrow {
  font-size: 14px;
  position: absolute;
  bottom: 8px;
  right: 10px;
}
.products-grid .actions.creative {
  min-height: 60px;
}
.products-grid .actions .shop-arrow.creative {
  position: static;
  text-align: center;
}

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

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

.products-grid .price-box {
  color: #636466;
  font-size: 13px;
  margin: 10px 0 0;
}
.products-grid .price-box .special-price .price {
  font-size: 18px;
}
.products-grid .price-box .old-price {
  padding-top: 6px;
}
.products-grid .price-box .old-price .price {
  font-size: 12px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================ *
 * Mini Product List
 * ============================================ */
.mini-products-list .product-image {
  float: left;
  min-width: 60px;
  width: 70px;
}
.mini-products-list .color-name {
  font-weight: normal;
}
.mini-products-list .product-details {
  margin-left: 80px;
  margin-left: 90px;
}
.mini-products-list .product-details .product-name {
  line-height: 1.2;
  display: block;
  font-size: 12px;
}
.mini-products-list .product-details .product-name a {
  display: block;
  font-size: 12px;
}
.mini-products-list .details-left {
  float: left;
  width: 65%;
}
.mini-products-list li {
  margin-bottom: 10px;
  clear: both;
}
.mini-products-list li:after {
  content: '';
  display: table;
  clear: both;
}

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

/* ============================================ *
 * Catalog - List
 * ============================================ */
.cms-page-banner,
.category-banner {
  background-color: #ededed;
  position: relative;
  margin-bottom: 20px;
  float: left;
  width: 100%;
  margin-bottom: 60px;
}

.category-banner-image {
  max-width: 1084px;
  margin: 0 auto;
  padding: 16px 32px 0;
}
.category-banner-image img {
  max-width: 100%;
}

.cms-banner-image,
.category-image {
  margin-bottom: 0;
  width: 51%;
  display: inline-block;
  vertical-align: middle;
}
.cms-banner-image img,
.category-image img {
  width: 100%;
  max-width: 100%;
}
.cms-banner-image img:hidden,
.category-image img:hidden {
  display: none;
}

.catalog-category-view:not(.category-view-landing) .category-banner {
  display: none;
}

.cms-banner-description,
.category-description {
  padding: 20px 16px;
  background: #ededed;
  text-align: center;
  color: #636466;
  font-size: 16px;
  width: 48%;
  display: inline-block;
  vertical-align: middle;
  padding: 0 70px;
}
.cms-banner-description h3,
.category-description h3 {
  font-size: 24px;
}
.cms-banner-description p,
.category-description p {
  color: #636466;
  font-size: 16px;
  margin-bottom: 0;
}

.category-cms-block {
  padding: 0;
  margin: 0 auto;
  max-width: 1084px;
  padding: 16px 32px 0;
}
.category-cms-block img {
  max-width: 100%;
}
.category-cms-block img.mobile {
  display: none;
}
.category-cms-block img + .banner-multi,
.category-cms-block a + .banner-multi,
.category-cms-block .banner-multi + .banner-multi {
  margin-top: 8px;
}
.category-cms-block .banner-multi {
  display: flex;
  justify-content: space-between;
}
.category-cms-block .banner-multi img {
  width: 100%;
}
.category-cms-block .banner-multi__half {
  width: 50%;
}
.category-cms-block .banner-multi__half:first-of-type {
  margin-right: 4px;
}
.category-cms-block .banner-multi__half:last-of-type {
  margin-left: 4px;
}

/* ============================================ *
 * Layered Navigation
 * ============================================ */
.block-layered-nav .block-subtitle--filter {
  display: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  margin-bottom: 0px;
  padding: 11px 0;
  position: relative;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.block-layered-nav .block-subtitle--filter span {
  position: relative;
}
.block-layered-nav .block-subtitle--filter:hover {
  background-color: #ededed;
}

.block-layered-nav .block-content {
  position: relative;
}
.block-layered-nav .block-content .toggle-tabs {
  display: none;
}
.block-layered-nav .block-content dl > dt {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  margin-bottom: 0px;
  padding: 11px 0;
  position: relative;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  display: block;
}
.block-layered-nav .block-content dl > dt span {
  position: relative;
}
.block-layered-nav .block-content dl > dt:hover {
  background-color: #ededed;
}
.block-layered-nav .block-content dl > dd:last-child {
  border-width: 0 1px 1px 1px;
}

.block-layered-nav dl dd {
  margin-bottom: 10px;
}
.block-layered-nav dl dd ol > li {
  display: block;
  font-size: 12px;
  color: #636466;
  margin-bottom: 20px;
}
.block-layered-nav dl dd ol > li > a,
.block-layered-nav dl dd ol > li > span {
  color: #636466;
}

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

.block-layered-nav .block-subtitle--filter.has-filter.active {
  background-color: #231f20;
}
.block-layered-nav .block-subtitle--filter.has-filter.active:before {
  color: #231f20;
}
.block-layered-nav .block-subtitle--filter span:after {
  content: '+';
  font-size: 24px;
  padding-left: 5px;
  line-height: 0;
  position: relative;
  top: 3px;
}
.block-layered-nav .block-subtitle--filter.active span:after {
  content: '_';
  top: -8px;
}

.narrow-by-list {
  clear: left;
  background-color: #FFFFFF;
}

.block-layered-nav .state-container {
  background-color: #ededed;
  padding: 24px 24px;
  margin: 20px 0;
}

.block-layered-nav .currently:after {
  content: '';
  display: table;
  clear: both;
}
.block-layered-nav .currently .block-subtitle {
  margin-bottom: 20px;
}
.block-layered-nav .currently ol li {
  color: #636466;
  border: 0;
  margin-bottom: 20px;
}
.block-layered-nav .currently ol li:last-child {
  margin-bottom: 0;
}
.block-layered-nav .currently ol li .label {
  font-weight: bold;
}
.block-layered-nav .currently ol li:after {
  content: '';
  display: table;
  clear: both;
}

.block-layered-nav .actions {
  text-align: right;
  clear: both;
  margin-top: 15px;
}
.block-layered-nav .actions .button {
  background: none;
}

li.item .product-attributes {
  padding: 0 16px;
  margin-bottom: 0;
  min-height: 24px;
}
li.item .product-attributes li {
  display: inline-block;
  margin: 0;
  font-size: 11px;
  color: #363636;
}
li.item .product-attributes li:first-child:before {
  font-size: 11px;
  content: "+";
  position: relative;
  left: 0px;
  padding-right: 5px;
}
li.item .product-attributes li:nth-child(2):before {
  content: '|';
  padding: 0 5px;
}

/* ============================================ *
 * Catalog - Product
 * ============================================ */
.catalog-product-view .main-container {
  max-width: 100%;
  padding: 0;
}
.catalog-product-view .main-container #messages_product_view {
  max-width: 1084px;
  margin: 0 auto;
  padding: 0 16px;
  padding: 0 32px;
}

.inner-product-wrap {
  max-width: 1084px;
  padding: 0 16px;
  margin: 0 auto;
  padding: 0 32px;
}
.inner-product-wrap .std p {
  margin-bottom: 1em;
}

.product-view {
  margin-bottom: 0;
}
.product-view .product-essential .extra-info .ratings .rating-box,
.product-view .product-essential .extra-info .ratings .amount {
  float: left;
}
.product-view .product-essential .extra-info .ratings .rating-box {
  margin-top: 8px;
  margin-right: 10px;
}
.product-view .product-essential .extra-info .ratings:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .product-essential:after {
  content: '';
  display: table;
  clear: both;
}
.product-view div.product-name {
  padding-top: 15px;
  float: right;
  width: 55%;
  padding-left: 16px;
}
.product-view .product-name h1 {
  font-size: 24px;
  border: 0;
  display: block;
  margin-bottom: 15px;
  font-size: 30px;
  margin-bottom: 5px;
}
.product-view h2.brand,
.product-view .shipping-info {
  margin: 0;
  margin-bottom: 5px;
  color: #231f20;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}
.product-view .shipping-info {
  font-weight: 600;
  margin-top: 6px;
  float: right;
}
.product-view .shipping-info .icon-truck {
  padding-right: 5px;
}
.product-view .product-wrap {
  width: 100%;
  float: left;
  width: 55%;
  width: 500px;
}
.product-view .online-availability {
  color: #FFFFFF;
  background: #b1b1b1;
  padding: 25px;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 10px;
}
.product-view .online-availability-txt {
  color: #000000;
  margin-top: 10px;
  text-transform: none;
}
.product-view .grouped-items-table .online-availability {
  padding: 15px;
  margin: 0;
}
.product-view .grouped-items-table .online-availability-txt {
  font-size: 11px;
}
.product-view .product-shop {
  padding-top: 10px;
  margin-bottom: 25px;
}
.product-view .product-shop:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .product-shop .more-info {
  text-align: center;
  margin-bottom: 10px;
  display: block;
  clear: left;
  text-align: left;
}
.product-view .product-shop .price-info {
  float: left;
  clear: both;
  width: 100%;
  margin-bottom: 15px;
}
.product-view .product-shop .price-info .tier-prices {
  clear: left;
  float: left;
  width: 100%;
  margin-top: 10px;
}
.product-view .product-shop .price-info .tier-prices li {
  font-size: 16px;
}
.product-view .product-shop .short-description {
  clear: both;
  color: #636466;
  padding: 20px 0;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  font-size: 16px;
}
.product-view .product-shop .learn-more {
  color: #848a9c;
  font-size: 16px;
  text-decoration: underline;
  padding-left: 3px;
}
.product-view .product-shop .learn-more:hover {
  text-decoration: none;
}
.product-view .product-shop .ratings {
  margin-bottom: 8px;
}
.product-view .product-shop .range-label {
  font-size: 18px;
  font-weight: 700;
}
.product-view .product-shop .price-box {
  margin-top: 0;
  display: inline-block;
  margin-bottom: 0;
}
.product-view .product-shop .price-box .old-price,
.product-view .product-shop .price-box .special-price,
.product-view .product-shop .price-box .regular-price {
  padding-right: 0;
  line-height: 1.2;
}
.product-view .product-shop .price-box .regular-price .price,
.product-view .product-shop .price-box .special-price .price,
.product-view .product-shop .price-box .full-product-price .price {
  font-size: 24px;
}
.product-view .product-shop .price-box .special-price .price {
  color: #e52f32;
}
.product-view .product-shop .price-box .special-price .price-label {
  font-size: 16px;
  text-transform: uppercase;
}
.product-view .product-shop .price-box .special-price span.weee {
  color: #231f20;
}
.product-view .product-shop .price-box .special-price span.weee span.price {
  font-size: 16px;
}
.product-view .product-shop .price-box .price-excluding-tax,
.product-view .product-shop .price-box .price-including-tax {
  display: block;
  line-height: 1.2;
  color: #231f20;
}
.product-view .product-shop .price-box .price-excluding-tax .label,
.product-view .product-shop .price-box .price-including-tax .label {
  font-size: 16px;
  font-weight: 300;
}
.product-view .product-shop .price-box .price-excluding-tax .price,
.product-view .product-shop .price-box .price-including-tax .price {
  font-size: 20px;
}
.product-view .availability {
  width: 100%;
  font-size: 16px;
  text-align: center;
}
.product-view .availability span {
  display: block;
}
.product-view .availability .value {
  text-transform: uppercase;
  font-size: 15px;
}
.product-view .availability .label {
  display: none;
}
.product-view .availability .description {
  font-size: 12px;
  text-transform: none;
}
.product-view .availability.out-of-stock {
  display: block;
  background: #b1b1b1;
}
.product-view .availability.out-of-stock span {
  line-height: 1.5;
  color: #FFFFFF;
}
.product-view .availability.out-of-stock + .btn-cart {
  display: none;
}
.product-view .price-box.map-info a {
  display: inherit;
}
.product-view .old-price .price-label {
  display: none;
}

p.link-stock-alert {
  white-space: normal;
  margin-bottom: 20px;
  background-color: #b1b1b1;
  display: inline-block;
  text-align: center;
  margin: 0 0 25px 0;
  padding: 15px 35px;
  margin: 0 0 25px 0;
  padding: 15px 50px;
}
p.link-stock-alert:hover {
  background: #8b8b8b;
}
p.link-stock-alert a {
  color: #FFFFFF;
  text-transform: uppercase;
}
p.link-stock-alert a span {
  font-size: 12px;
  line-height: 1.5;
  text-transform: none;
  display: block;
}

.color-name {
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
}

.color-swatch {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  background-color: #eeeeee;
  display: inline-block;
  width: 60px;
  height: 60px;
  width: 75px;
  height: 75px;
}

.colour-details {
  border-bottom: 1px solid #eeeeee;
  border-top: 1px solid #eeeeee;
  clear: both;
  padding: 10px 0;
  margin-top: 20px;
  margin: 0;
  border-top: 0;
}
.colour-details .color-swatch,
.colour-details .color-info,
.colour-details .attributes {
  display: inline-block;
  vertical-align: middle;
  color: #231f20;
  margin-right: 3%;
}
.colour-details .attributes {
  font-size: 12px;
  padding: 20px 0;
}
.colour-details .attributes li {
  list-style-type: none;
  display: block;
}
.colour-details .color-info {
  max-width: 50%;
  padding: 10px 5% 10px 0;
}
.colour-details .color-info li {
  margin-bottom: 0;
}
.colour-details .color-info li.colour-name {
  font-size: 18px;
  font-weight: 700;
  color: #231f20;
  line-height: 1;
}

.product-view .add-to-cart-wrapper {
  float: left;
  width: 100%;
}
.product-view .atc-button.success-atc span:not(.atc-ajax-icon) {
  position: relative;
}
.product-view .atc-button.success-atc span:not(.atc-ajax-icon) span:before {
  content: "";
  font-family: "icomoon";
  padding-right: 5px;
}

.no-touch .product-image.zoom-available:after {
  content: "";
  font-family: "icomoon";
  font-size: 20px;
  position: absolute;
  bottom: 13px;
  right: 20px;
}

.product-img-box {
  float: left;
  width: 45%;
  margin-bottom: 20px;
  padding-right: 16px;
}
.product-img-box .product-image {
  margin-bottom: 20px;
}
.product-img-box .product-image-gallery img {
  max-width: 100%;
  max-height: 750px;
  margin: 0 auto;
}

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

.product-image-thumbs {
  text-align: center;
  padding: 0 40px;
}
.product-image-thumbs li {
  display: inline-block;
}
.product-image-thumbs a {
  display: block;
  border: 1px solid #ededed;
  display: inline-block;
}
.product-image-thumbs .active-thumb {
  border: 3px solid #ededed;
}
.product-image-thumbs .thumb-link:not(.active-thumb) {
  margin-top: 2px;
}
.product-image-thumbs img {
  max-width: 100%;
  max-width: 65px;
  height: auto;
}
.product-image-thumbs .slick-prev:before,
.product-image-thumbs .slick-next:before {
  color: #231f20;
}
.product-image-thumbs .slick-next,
.product-image-thumbs .slick-prev {
  z-index: 1;
}
.product-image-thumbs .slick-prev {
  left: 10px;
}
.product-image-thumbs .slick-next {
  right: 10px;
}

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

.product-view .product-shop,
.product-view .add-to-cart-wrapper,
.product-view .block-related {
  padding-left: 16px;
}

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

.product-view {
  /* for all btn carts so ajax loader is relative*/
  /* Set a min-height so that the floated elements break appropriately */
}
.product-view .add-to-box:after,
.product-view .add-to-cart:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .add-to-cart {
  margin-bottom: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 25px;
}
.product-view .btn-cart {
  position: relative;
}
.product-view .add-to-cart .qty-wrapper,
.product-view .product-options-bottom .price-box,
.product-view .add-to-cart-buttons {
  min-height: 40px;
}
.product-view .product-options-bottom .price-box,
.product-view .add-to-cart-buttons .paypal-logo {
  margin-bottom: 10px;
}
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart .qty-wrapper label {
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
}
.product-view .add-to-cart .qty-wrapper label {
  line-height: 48px;
  font-size: 14px;
  padding-right: 5px;
}
.product-view .qty-wrapper .qty {
  display: inline-block;
  height: 48px;
  background: #eeeeee;
  border-radius: 0;
  width: 60px;
}
.product-view .add-to-cart-buttons {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  margin: 0 20px;
  margin-right: 0;
}
.product-view .add-to-cart-buttons .paypal-logo {
  clear: left;
  text-align: center;
}
.product-view .add-to-cart-buttons .paypal-logo .paypal-button {
  margin: 0 auto;
  display: block;
  width: 170px;
}
.product-view .add-to-cart-buttons .paypal-logo .bml_button {
  display: block;
  width: 174px;
  margin: 0 auto;
}
.product-view .add-to-cart-buttons .paypal-logo .bml_button a {
  text-align: center;
}
.product-view .add-to-cart-buttons .paypal-logo .paypal-or {
  display: block;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
  line-height: 1;
  text-align: center;
}
.product-view .add-to-cart-buttons .button {
  min-height: 66px;
  line-height: 40px;
  font-size: 16px;
  float: left;
  width: 100%;
  white-space: nowrap;
  min-width: 265px;
}
.product-view .btn-cart {
  background-color: #e52f32;
}
.product-view .btn-cart:hover {
  background-color: #d61b1e;
}
.product-view .alert-price,
.product-view .alert-stock {
  clear: both;
}

/* This is the "or" that separates the "Add to Cart" and "Add to X" links */
.add-to-box {
  margin-bottom: 25px;
  border-bottom: 1px solid #eeeeee;
}
.add-to-box .or {
  display: none;
}
.add-to-box a:hover {
  text-decoration: none;
}
.add-to-box .select-items {
  margin: 0 0 30px 0;
}

.available-options {
  margin-top: 20px;
}

.available-in {
  color: #636466;
  font-weight: 700;
  font-size: 16px;
}

.add-to-box .available-in {
  margin-bottom: 15px;
  margin-bottom: 25px;
}

.view-group {
  color: #848a9c;
  font-size: 16px;
  text-decoration: underline;
  display: inline-block;
}
.view-group:hover {
  text-decoration: none;
}

.product-view .add-to-links {
  display: inline-block;
  margin: 0 0 20px 0;
  vertical-align: middle;
  text-align: center;
  padding-left: 15px;
}
.product-view .add-to-links:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .add-to-links .heart {
  font-size: 14px;
  margin: 0 5px 0 0;
  display: block;
  margin: 0 auto 5px;
  width: 15px;
}
.product-view .add-to-links .heart:before {
  content: "";
  font-family: "icomoon";
}
.product-view .add-to-links a {
  margin-left: 7px;
  border-right: 1px solid #b1b1b1;
}
.product-view .add-to-links a:hover {
  color: #d61b1e;
}
.product-view .add-to-links a:hover .heart:before {
  content: "";
}
.product-view .add-to-links li {
  margin-bottom: 0;
}
.product-view .add-to-links li:first-child a {
  margin-left: 0;
}
.product-view .add-to-links li:last-child a {
  border-right: 0;
}

.catalog-product-view #header-cart.skip-active:after {
  content: none;
}

.add-to-cart-wrapper .video-modal {
  color: #e52f32;
  display: block;
  text-align: center;
  text-align: left;
}
.add-to-cart-wrapper .video-modal .icon-play {
  padding-right: 5px;
  font-size: 18px;
  float: left;
}

.catalog-product-view .sharing-links {
  margin-bottom: 10px;
  clear: both;
  float: left;
  width: 100%;
}
.catalog-product-view .sharing-links:after {
  content: '';
  display: table;
  clear: both;
}
.catalog-product-view .sharing-links li {
  color: #000000;
  padding: 0 10px 10px;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}
.catalog-product-view .sharing-links li a {
  display: block;
  font-size: 0;
}
.catalog-product-view .sharing-links li a:before {
  font-size: 16px;
  color: #231f20;
}
.catalog-product-view .sharing-links li a:hover {
  text-decoration: none;
}
.catalog-product-view .sharing-links li a:hover:before {
  color: #312b2c;
}
.catalog-product-view .sharing-links .share-title {
  font-size: 16px;
  padding-left: 0;
  font-weight: 500;
}

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

.catalog-product-view .box-collateral {
  clear: both;
  float: left;
  width: 100%;
  margin-bottom: 40px;
  padding-bottom: 30px;
  padding-bottom: 50px;
  margin-bottom: 15px;
}
.catalog-product-view .box-collateral:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.catalog-product-view .box-collateral .box-title {
  padding-top: 50px;
  text-align: center;
}
.catalog-product-view .box-collateral li img {
  max-width: 100%;
}
.catalog-product-view .box-collateral:after {
  content: '';
  display: table;
  clear: both;
}
.catalog-product-view .box-collateral .cms-third-wrapper {
  margin-top: 35px;
}
.catalog-product-view .box-collateral .mini-products-list,
.catalog-product-view .box-collateral .products-grid {
  max-width: 1084px;
  padding: 0 32px;
  margin: 0 auto;
}

.product-collateral.tabs {
  margin: 0;
}

.custom-product-details {
  clear: both;
  margin-top: 16px;
  background: #f7f7f7;
}
.custom-product-details:after {
  content: '';
  display: table;
  clear: both;
}
.custom-product-details .max-width-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}
.custom-product-details .max-width-wrapper:after {
  content: '';
  display: table;
  clear: both;
}
.custom-product-details .product-details-small,
.custom-product-details .product-details-large {
  float: left;
}
.custom-product-details .product-details-full-width {
  color: #636466;
  padding: 55px 50px;
}
.custom-product-details .product-details-full-width img {
  max-width: 100%;
  margin: 0 auto;
}
.custom-product-details .product-details-small {
  display: none;
  position: relative;
  display: block;
  width: 43%;
}
.custom-product-details .product-details-small img {
  width: 100%;
}
.custom-product-details .product-details-small.right {
  float: right;
}
.custom-product-details .product-details-large {
  position: relative;
  padding: 25px;
  padding: 0 50px 42%;
  width: 57%;
}
.custom-product-details .product-details-large.expanded {
  padding: 50px;
}
.custom-product-details .product-details-large p, .custom-product-details .product-details-large li, .custom-product-details .product-details-large a, .custom-product-details .product-details-large a.show,
.custom-product-details .product-details-full-width p,
.custom-product-details .product-details-full-width li,
.custom-product-details .product-details-full-width a,
.custom-product-details .product-details-full-width a.show {
  font-size: 13px;
  font-size: 16px;
}
.custom-product-details .product-details-large h2,
.custom-product-details .product-details-full-width h2 {
  font-size: 24px;
  text-transform: none;
  font-size: 36px;
}
.custom-product-details .details-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.custom-product-details .details-wrapper.expanded {
  position: relative;
}
.custom-product-details .details-card {
  color: #636466;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  font-size: 16px;
}
.custom-product-details .details-card.expanded {
  position: relative;
  top: 0;
  left: 0;
  transform: translate(0, 0);
}
.custom-product-details .details-card p,
.custom-product-details .details-card li {
  margin-bottom: 1em;
}
.custom-product-details a.show {
  color: #848a9c;
  font-size: 16px;
  text-decoration: underline;
  margin-top: 20px;
  display: block;
}
.custom-product-details a.show:hover {
  text-decoration: none;
}
.custom-product-details .show-less {
  display: none;
}
.custom-product-details .show-less.active {
  display: block;
}
.custom-product-details .show-more.hidden {
  display: none;
}
.custom-product-details.mobile-description {
  display: none;
}

.artist-videos {
  max-width: 1400px;
  margin: 0 auto;
}
.artist-videos:after {
  content: '';
  display: table;
  clear: both;
}

a.video-image {
  position: relative;
  display: block;
}
a.video-image:before {
  color: #FFFFFF;
  content: "";
  font-family: "icomoon";
  font-size: 130px;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: opacity .25s ease;
}
a.video-image:hover:before {
  opacity: .5;
}

.product-view .product-shop .cms-third-wrapper,
.product-view .add-to-cart-wrapper .cms-third-wrapper,
.product-view .block-related .cms-third-wrapper,
.product-img-box .cms-third-wrapper {
  margin-top: 35px;
}

/* Mobile Product Detail Toggles */
/* ----------- Custom Artist Video Block  ----------- */
.artist-videos {
  max-width: 1400px;
  margin: 0 auto;
}
.artist-videos:after {
  content: '';
  display: table;
  clear: both;
}

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

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

.product-view-clear {
  clear: both;
  margin-bottom: 10px;
  margin-bottom: 30px;
}

/* -------------------------------------------- *
 * Ajax atc button
 */
.button .atc-ajax-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(200, 25, 28, 0.25);
}
.button .atc-ajax-icon img {
  max-width: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: .75;
}

/* -------------------------------------------- *
 * Catalog - Product Options
 */
.product-options {
  width: 100%;
  margin: 20px 0 0;
  clear: both;
  position: relative;
}
.product-options textarea {
  width: 100%;
  max-width: 100%;
}
.product-options select {
  height: 48px;
  background: #eeeeee;
  border-radius: 0;
  border: 1px solid #eeeeee;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-color: #d4d2d2;
  padding: 0 34px 0 14px;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.product-options-bottom {
  border-top: 1px solid #eeeeee;
  padding-top: 20px;
  margin: 20px 0;
}
.product-options-bottom .sharing-links {
  border-top: 1px solid #eeeeee;
  padding-top: 20px;
}

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

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

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

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

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

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

/* -------------------------------------------- *
 * Related Products
 */
/* Block: Related - Demac is using Related blocks for Creative projects */
.block-related ol > li,
.block-related ul > li {
  float: left;
  width: 32.33%;
  position: relative;
  margin-right: 1.5%;
}
.block-related ol > li:last-child,
.block-related ul > li:last-child {
  margin-right: 0;
}
.block-related ol > li .item-info,
.block-related ul > li .item-info {
  background: #eeeeee;
  padding: 20px;
  text-align: center;
  position: relative;
  padding: 20px 50px;
}
.block-related ol > li .item-info:before,
.block-related ul > li .item-info:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 18px solid transparent;
  border-left: 18px solid transparent;
  border-bottom: 18px solid #eeeeee;
  border-top: none;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}
.block-related ol > li .item-info h3,
.block-related ul > li .item-info h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #231f20;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  text-rendering: optimizeSpeed;
  line-height: 1.1;
  margin: 0 auto 5px;
}
.block-related .box-content {
  clear: both;
  max-width: 1400px;
  overflow: hidden;
  margin: 40px auto 0;
}
.block-related .item-info {
  padding: 20px;
}
.block-related .item {
  background: #eeeeee;
}
.block-related .item:nth-child(3n+4) {
  clear: both;
}

/* -------------------------------------------- *
 * Upsell Products
 */
.box-up-sell {
  border-top: 1px solid #f7f7f7;
}
.box-up-sell .ratings {
  display: none;
}
.box-up-sell .products-grid > li:nth-child(3) {
  display: block;
}
.box-up-sell .products-grid > li:nth-child(4) {
  display: block;
}
.box-up-sell .box-title h2 {
  margin-bottom: 1.2em;
  text-align: center;
}

.block-related .box-title h2,
.box-up-sell .box-title h2 {
  margin-bottom: 1.2em;
}

.zone-message {
  background: #eeeeee;
  text-align: center;
  font-size: 12px;
  padding: 12px;
  color: #636466;
  clear: both;
  margin-top: 10px;
  float: left;
  width: 100%;
}
.zone-message .icon-info-circle {
  color: #f77300;
  font-size: 14px;
  vertical-align: middle;
  padding-right: 5px;
}

.product-view.deserres-creative .creative-project-type .mobile-description,
.product-view.deserres-creative .creative-project-type #product-details,
.product-view.deserres-creative .creative-project-type .brand,
.product-view.deserres-creative .creative-project-type .colour-details,
.product-view.deserres-creative .creative-project-type .add-to-cart-wrapper,
.product-view.deserres-creative .creative-project-type .product-shop .learn-more {
  display: none;
}
.product-view.deserres-creative .product-shop .product-name .h1 {
  margin: 0;
  margin-bottom: 0.35em;
  color: #231f20;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  font-size: 20px;
  font-size: 36px;
}
.product-view.deserres-creative .inner-product-wrap,
.product-view.deserres-creative .max-width-wrapper {
  max-width: 1084px;
}
.product-view.deserres-creative .max-width-wrapper {
  padding: 0 16px;
  padding: 0 32px;
}
.product-view.deserres-creative .grouped-products-grid {
  margin-top: 25px;
}
.product-view.deserres-creative .creative-project-links {
  padding: 20px 0;
  padding: 30px 0 0;
}
.product-view.deserres-creative .creative-project-links .button {
  margin-bottom: 20px;
  padding: 15px 30px;
}
.product-view.deserres-creative .product-shop .short-description {
  border-bottom: 0;
  padding-bottom: 0;
}
.product-view.deserres-creative .add-to-cart {
  width: 100%;
}
.product-view.deserres-creative .add-to-cart a.button {
  padding: 15px 35px;
}
.product-view.deserres-creative .shop-arrow {
  margin-top: 20px;
  display: inline-block;
  vertical-align: middle;
  padding-left: 30px;
  margin-top: 0;
}
.product-view.deserres-creative .custom-product-details.creative-projects {
  height: inherit;
  color: #636466;
  font-size: 16px;
  padding: 32px 16px 40px;
  background-color: #f7f7f7;
  padding-bottom: 80px;
}
.product-view.deserres-creative .custom-product-details .col-left {
  width: 60%;
  float: left;
  padding-top: 20px;
}
.product-view.deserres-creative .custom-product-details .col-left h2 {
  float: left;
  margin-bottom: 1em;
}
.product-view.deserres-creative .alt-links {
  float: left;
  clear: left;
  margin-bottom: 20px;
  text-align: right;
  float: right;
  clear: none;
  margin: 17px 0 0 0;
}
.product-view.deserres-creative .alt-links a {
  display: inline-block;
  color: #e52f32;
  font-weight: 600;
  padding-right: 10px;
  font-size: 14px;
}
.product-view.deserres-creative .alt-links a:last-child {
  padding-right: 0;
}
.product-view.deserres-creative .alt-links span {
  padding-right: 8px;
  float: left;
}
.product-view.deserres-creative .alt-links .icon-download {
  padding-top: 2px;
}
.product-view.deserres-creative .alt-links .icon-play:before {
  font-size: 20px;
}
.product-view.deserres-creative .instructions {
  clear: left;
}
.product-view.deserres-creative .custom-product-details .col-right {
  background: #FFFFFF;
  padding: 30px;
  width: 35%;
  float: right;
}
.product-view.deserres-creative .custom-product-details .col-right h3 {
  font-size: 24px;
}
.product-view.deserres-creative .custom-product-details .col-right ol,
.product-view.deserres-creative .custom-product-details .col-right ul {
  list-style-type: disc;
  list-style-position: inside;
}
.product-view.deserres-creative .custom-product-details .col-right ol li,
.product-view.deserres-creative .custom-product-details .col-right ul li {
  margin-bottom: 0.5em;
}
.product-view.deserres-creative .custom-product-details .col-right + .col-right {
  margin-top: 16px;
  clear: right;
}
.product-view.deserres-creative .custom-product-details .col-right .icon-lightbulb-o {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50%;
  background: #d92b26;
  color: #FFFFFF;
  font-size: 28px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.box-title-creative {
  text-align: center;
  padding: 50px 20px 0;
}

.button.choose.open {
  background: #636466;
}

/* -------------------------------------------- *
 * Catalog - Grouped Product List
 */
.grouped-products-grid {
  clear: both;
  background: #f7f7f7;
  overflow: hidden;
}

.grouped-items-table-wrapper {
  width: 100%;
  padding: 35px 0 80px;
}
.grouped-items-table-wrapper tbody tr td {
  padding: 10px;
  border-bottom: 4px solid #f7f7f7;
}
.grouped-items-table-wrapper tbody > tr:last-child > td {
  border-bottom: none;
}

/* -------------------------------------------- *
/* Always show table rows if its a creative project
*/
.grouped-items-table {
  /* ------- Only show tr if they are not filterd by colour -------- */
}
.grouped-items-table .name-wrapper {
  color: #231f20;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0;
  width: 100%;
}
.grouped-items-table .badge {
  font-size: 12px;
}
.grouped-items-table .badge.new {
  color: #0207fa;
}
.grouped-items-table .badge.sale {
  color: #e52f32;
}
.grouped-items-table .sku {
  font-size: 12px;
  font-weight: 400;
  margin: 0;
}
.grouped-items-table .qty-wrapper {
  text-transform: uppercase;
}
.grouped-items-table .qty-label {
  margin-right: 5px;
  font-size: 14px;
}
.grouped-items-table .shipping-info {
  border-bottom: 1px solid #eeeeee;
  float: none;
  font-size: 13px;
  padding-bottom: 10px;
  margin: 0 0 10px 0;
}
.grouped-items-table .add-to-links {
  float: none;
  width: 100%;
  font-size: 12px;
  margin: 0;
}
.grouped-items-table .add-to-links a {
  line-height: 0;
  padding: 0;
}
.grouped-items-table .add-to-links .heart {
  display: inline-block;
  margin-right: 5px;
}
.grouped-items-table.creative-project-table tr {
  display: block;
}
.grouped-items-table .child-group-table {
  display: none;
  padding: 0;
}
.grouped-items-table .child-group-table.active {
  display: block;
  margin-top: -4px;
}
.grouped-items-table .child-group-table.active table,
.grouped-items-table .child-group-table.active tbody {
  width: 100%;
  display: block;
}
.grouped-items-table .child-group-table tr {
  display: table-row;
}
.grouped-items-table.no.color tr.colour-family-no-color {
  display: table-row;
}
.grouped-items-table tr {
  background: #FFFFFF;
}
.grouped-items-table tr.color-group-active:not(.item-select-colour) {
  display: block;
}
.grouped-items-table .swatch-img img {
  display: block;
  border-radius: 50%;
  margin: 0 auto;
}
.grouped-items-table tbody td {
  border-bottom: 4px solid #f7f7f7;
  text-align: center;
  vertical-align: middle;
  padding: 10px 5px;
  padding: 10px 15px;
}
.grouped-items-table tbody td.image {
  width: 10%;
  padding: 10px 0 10px 10px;
  width: 8.5%;
}
.grouped-items-table tbody td.image img {
  width: 75px;
  max-width: 100%;
}
.grouped-items-table tbody td.image .color-swatch {
  vertical-align: middle;
  border: 1px solid #eeeeee;
}
.grouped-items-table tbody td.name, .grouped-items-table tbody td:last-child {
  text-align: left;
}
.grouped-items-table tbody td.name {
  position: relative;
  width: 18%;
}
.grouped-items-table tbody td .product-badges {
  position: static;
}
.grouped-items-table tbody td .product-badges > li {
  height: auto;
  width: auto;
  margin-bottom: 5px;
}
.grouped-items-table tbody td .product-badges img {
  display: none;
}
.grouped-items-table tbody td .product-badges span {
  position: static;
  transform: none;
  text-align: left;
}
.grouped-items-table tbody td.details {
  width: 20%;
  width: 15%;
}
.grouped-items-table tbody td.prices {
  padding: 10px 0;
  width: 13%;
  width: 13%;
}
.grouped-items-table tbody td.prices:after {
  content: '';
  padding-bottom: 100%;
}
.grouped-items-table tbody td .price-box {
  line-height: 1;
}
.grouped-items-table tbody td .price-box .price {
  font-weight: 500;
}
.grouped-items-table tbody td .special-price {
  padding-right: 0;
}
.grouped-items-table tbody td .old-price {
  padding-left: .25em;
}
.grouped-items-table tbody td .old-price .price {
  font-size: 12px;
}
.grouped-items-table tbody td.shipping {
  width: 15%;
  text-align: center;
}
.grouped-items-table tbody td .add-to-links {
  padding-left: 0;
}
.grouped-items-table tbody td.details li {
  margin-bottom: 0;
  font-size: 12px;
  text-transform: lowercase;
}
.grouped-items-table tbody td.details span {
  text-transform: capitalize;
}
.grouped-items-table tbody td.last {
  min-width: 285px;
  text-align: right;
}
.grouped-items-table tbody td.available {
  width: 50%;
}
.grouped-items-table tbody td.available p {
  color: #636466;
  font-size: 16px;
  min-width: 320px;
  min-width: 390px;
}
.grouped-items-table tbody td.choose-group-child {
  float: none;
  width: 300px;
}
.grouped-items-table tbody td .choose {
  float: right;
  width: 100%;
  width: 260px;
}
.grouped-items-table tbody td .choose.active {
  background: #636466;
}
.grouped-items-table tbody td .alert-stock {
  text-align: right;
  color: #636466;
  text-transform: uppercase;
  font-size: 12px;
}
.grouped-items-table .btn-cart {
  padding: 15px 20px;
  position: relative;
  margin-left: 5px;
}
.grouped-items-table .success-atc {
  padding: 15px 28px;
}
.grouped-items-table .success-atc:before {
  content: "";
  font-family: "icomoon";
  padding-right: 5px;
}
.grouped-items-table .success-atc.add-again {
  opacity: .5;
}

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

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

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

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

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

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

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

/* ============================================ *
 * Checkout - Layout
 * ============================================ */
.cart-form {
  width: 100%;
  display: block;
  float: left;
  width: 67%;
}

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

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

.cart-continue-shopping {
  display: none;
}

.checkout-cart-index .validation-advice {
  clear: left;
}
.checkout-cart-index .header-help {
  display: block;
  display: inline-block;
}
.checkout-cart-index .skip-nav .icon,
.checkout-cart-index .skip-nav .label {
  display: none;
}
.checkout-cart-index #header-nav {
  border-bottom: 0;
}
.checkout-cart-index .header-minicart,
.checkout-cart-index #header-search,
.checkout-cart-index #nav {
  display: none;
}
.checkout-cart-index .skip-links {
  clear: none;
}
.checkout-cart-index .cart-continue-shopping {
  display: inline-block;
}
.checkout-cart-index .main-container {
  padding-bottom: 150px;
}
.checkout-cart-index #postcode {
  float: left;
  height: 49px;
  width: 50%;
  padding: 0 10px;
  margin: 3px  0 5px;
}

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

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

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

.icons-cc {
  float: right;
  padding-top: 10px;
}

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

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

.cart-totals .checkout-types .btn-checkout {
  margin-bottom: 7px;
}
.cart-totals .checkout-types .btn-checkout:focus {
  background-color: #c8191c;
}

.checkout-types li select {
  height: 48px;
  background: #eeeeee;
  border-radius: 0;
  border: 1px solid #eeeeee;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-color: #d4d2d2;
  padding: 0 34px 0 14px;
}
.checkout-types li select,
.checkout-types li .button,
.checkout-types li .btn-gift-registry {
  width: 100%;
}
.checkout-types li .btn-gift-registry {
  margin-top: 30px;
  border-top: 1px solid #ededed;
  padding-top: 20px;
}
.checkout-types li .btn-gift-registry .button {
  margin-top: 10px;
}

.btn-checkout {
  width: 100%;
  padding: 25px;
  background-color: #e52f32;
  font-size: 16px;
}
.btn-checkout:hover {
  background-color: #d61b1e;
}

.cart-table {
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  border-top: 1px solid #000000;
}
.cart-table th,
.cart-table td,
.cart-table tbody td {
  border-bottom: none;
  vertical-align: top;
}
.cart-table h2 {
  color: #231f20;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
}
.cart-table h3 {
  font-size: 12px;
  margin-bottom: 0;
}
.cart-table thead th,
.cart-table tbody td {
  background-color: transparent;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.cart-table thead th {
  padding: 16px 15px;
  font-size: 11px;
  font-weight: 700;
}
.cart-table thead th:last-child {
  padding: 16px 0;
}
.cart-table thead th:first-child {
  padding-left: 0;
}
.cart-table tbody td {
  padding: 20px 0px 10px;
  padding: 32px 0px 25px;
}
.cart-table .product-cart-info,
.cart-table .product-cart-actions {
  padding-left: 15px;
}
.cart-table tr {
  border-bottom: 1px solid #ededed;
}
.cart-table tfoot tr {
  background: none;
}
.cart-table tfoot tr > td:after {
  content: '';
  display: table;
  clear: both;
}
.cart-table span.or {
  font-size: 9px;
  padding: 0 5px;
  text-transform: uppercase;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.cart-table .product-cart-remove .button2,
.cart-table .product-cart-image .cart-links,
.cart-table .product-cart-actions .button {
  display: none;
}
.cart-table .product-cart-image {
  padding-left: 0;
  padding-right: 0;
}
.cart-table .product-cart-image .product-image {
  width: 95px;
}
.cart-table .product-cart-image .product-image img {
  max-width: 100%;
  width: 100%;
}
.cart-table .product-cart-image a.cart-edit {
  display: none;
}
.cart-table .product-cart-sku {
  font-style: italic;
  font-size: 12px;
  margin: 5px 0 12px;
}
.cart-table .product-cart-sku .label {
  font-weight: 700;
}
.cart-table .btn-empty {
  float: left;
}
.cart-table .cart-price .price {
  font-weight: 700;
}
.cart-table .cart-tax-total {
  position: relative;
  cursor: pointer;
}
.cart-table .cart-tax-total:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #231f20;
  border-left: none;
  position: absolute;
  top: 3px;
  right: -11px;
}
.cart-table .cart-tax-total.cart-tax-total-expanded:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #231f20;
  border-bottom: none;
  right: -15px;
  top: 6px;
}
.cart-table .cart-links > li {
  white-space: nowrap;
  line-height: 1.3;
  margin-bottom: 5px;
  min-width: 65px;
  font-size: 13px;
}
.cart-table .cart-links > li > a {
  display: block;
}
.cart-table .cart-links > li:last-child {
  margin-bottom: 0;
}
.cart-table .link-wishlist {
  margin: 10px auto 0;
  color: #e52f32;
  font-size: 11px;
  white-space: normal;
}
.cart-table .link-wishlist:hover:before {
  content: "";
}
.cart-table .link-wishlist:before {
  content: "";
  font-family: "icomoon";
  padding-right: 5px;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
}
.cart-table .link-wishlist span {
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  line-height: 1.2;
}
.cart-table .product-cart-actions {
  min-width: 140px;
  text-align: center;
}
.cart-table .product-cart-actions .qty {
  text-align: center;
  width: 4.2em;
  margin: -15px auto 10px;
}
.cart-table .product-cart-actions .button {
  margin: 0 0 5px 5px;
  padding: 0;
  background: none;
  font-size: 11px;
  color: #e52f32;
}
.cart-table .product-cart-actions .button:hover, .cart-table .product-cart-actions .button:focus, .cart-table .product-cart-actions .button:active {
  background: none;
  text-decoration: underline;
}
.cart-table .product-cart-actions .button:focus, .cart-table .product-cart-actions .button:active {
  color: #231f20;
}
.cart-table .item-options {
  padding-left: 15px;
}
.cart-table .simple-attributes {
  margin-top: 7px;
  font-size: 12px;
}
.cart-table .simple-attributes dt, .cart-table .simple-attributes dd {
  float: left;
  margin-bottom: 2px;
}
.cart-table .simple-attributes dt {
  clear: both;
  padding-right: 5px;
}
.cart-table .simple-attributes dt.shipping {
  font-size: 0;
}
.cart-table .shipping {
  font-size: 12px;
  font-weight: 500;
}
.cart-table .shipping .icon-truck {
  padding-right: 5px;
}

.cart-table td.product-cart-remove:before {
  content: none;
}
.cart-table .product-cart-info {
  width: 35%;
}

/* ============================================ *
 * Checkout - Estimate Shipping and Tax
 * ============================================ */
.shipping h2 {
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 5px;
}
.shipping select.validation-failed {
  border-color: #e52f32;
}
.shipping .shipping-desc {
  display: none;
}
.shipping .buttons-set {
  border: none;
  margin: 0;
  padding: 0;
}
.shipping .form-list:after {
  content: '';
  display: table;
  clear: both;
}
.shipping .form-list li {
  float: left;
  margin: 5px 2% 10px 0;
}
.shipping .form-list select {
  height: 48px;
  background: #eeeeee;
  border-radius: 0;
  border: 1px solid #eeeeee;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-color: #d4d2d2;
  padding: 0 34px 0 14px;
}
.shipping .form-list .shipping-country {
  display: none;
  width: 37%;
}
.shipping .form-list .shipping-region {
  width: 41%;
}
.shipping .form-list .shipping-postcode {
  margin-right: 0;
  width: 57%;
}
.shipping .form-list .shipping-postcode button.button2 {
  text-transform: none;
  height: 49px;
  padding-left: 0;
}
.shipping .form-list .shipping-postcode .button-wrapper {
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
}
.shipping .form-list .input-box {
  padding-top: 0;
  position: relative;
}
.shipping .form-list .button-wrapper {
  margin-top: 3px;
}
.shipping .form-list label {
  display: none;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}
.shipping .sp-methods {
  padding: 5px 0 2px 0;
  text-align: left;
}
.shipping .sp-methods dt {
  display: none;
}
.shipping .sp-methods dd {
  margin-bottom: 10px;
}
.shipping .shipping-details {
  font-size: 12px;
  color: #636466;
  margin-left: 30px;
  display: block;
}
.shipping #co-shipping-method-form .buttons-set .button {
  float: left;
  margin-left: 0;
  width: 100%;
}
.shipping #co-shipping-method-form .buttons-set {
  padding-bottom: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ededed;
}
.shipping #co-shipping-method-form .sp-methods dd label {
  width: 100%;
  font-size: 16px;
  padding-left: 20px;
}

.shipping .shipping-form {
  display: none;
}
.shipping .shipping-form.active {
  display: block;
}

.cart .cart-totals {
  text-align: right;
}
.cart .cart-totals:after {
  content: '';
  display: table;
  clear: both;
}
.cart .cart-totals table {
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  margin-bottom: 20px;
  width: 100%;
}
.cart .cart-totals table th,
.cart .cart-totals table td {
  padding: 5px 0;
  font-size: 14px;
  color: #636466;
  padding: 15px 0;
  font-size: 16px;
}
.cart .cart-totals table th:first-child,
.cart .cart-totals table td:first-child {
  padding-right: 10px;
  text-align: left;
}
.cart .cart-totals table tfoot td {
  font-size: 18px;
  vertical-align: top;
  padding-bottom: 0;
  color: #e52f32;
  text-transform: uppercase;
}
.cart .cart-totals table tfoot strong span,
.cart .cart-totals table tfoot span.price {
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.cart .cart-totals table tfoot strong {
  font-weight: 700;
  font-size: 18px;
}

.cart-shipping-msg,
.cart-zone-savings {
  color: #636466;
  text-align: center;
  margin: 25px 0;
  font-weight: 500;
}
.cart-shipping-msg .icon-truck,
.cart-zone-savings .icon-truck {
  display: block;
  margin-bottom: 15px;
}

.cart-shipping-msg + .cart-zone-savings {
  margin: -25px 0 25px;
}

.cart-forms {
  margin-top: 20px;
}

.cart-forms .discount label,
.cart-forms .giftcard label,
.cart-forms .shipping h2 {
  padding: 14px 20px;
  background-color: #F4F4F4;
  border: 1px solid #b1b1b1;
  text-transform: uppercase;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 1.3;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  margin-right: 10px;
  width: 100%;
  position: relative;
}
.cart-forms .discount label:after,
.cart-forms .giftcard label:after,
.cart-forms .shipping h2:after {
  font-family: "icomoon";
  content: "";
  position: absolute;
  right: 20px;
  top: 15px;
}
.cart-forms .discount label:hover,
.cart-forms .giftcard label:hover,
.cart-forms .shipping h2:hover {
  cursor: pointer;
  background-color: #e7e7e7;
}
.cart-forms .discount label.active:after,
.cart-forms .giftcard label.active:after,
.cart-forms .shipping h2.active:after {
  content: "";
}

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

#discount-coupon-form .button-wrapper {
  position: absolute;
  top: 10px;
  right: 0;
  width: 33%;
  height: 42px;
}

#discount-coupon-form,
.cart .giftcard {
  width: 100%;
}
#discount-coupon-form h2,
.cart .giftcard h2 {
  display: none;
}
#discount-coupon-form .field-wrapper,
.cart .giftcard .field-wrapper {
  display: none;
  width: 100%;
  margin-bottom: 10px;
  position: relative;
}
#discount-coupon-form .field-wrapper.active,
.cart .giftcard .field-wrapper.active {
  display: inline-block;
}

#discount-coupon-form,
.cart-forms .giftcard,
.cart-forms .shipping {
  margin-top: -1px;
}
#discount-coupon-form .button-wrapper,
.cart-forms .giftcard .button-wrapper,
.cart-forms .shipping .button-wrapper {
  background-color: #eeeeee;
}
#discount-coupon-form .button-wrapper > button,
.cart-forms .giftcard .button-wrapper > button,
.cart-forms .shipping .button-wrapper > button {
  float: left;
  padding-left: 15px;
  height: 42px;
}
#discount-coupon-form .button-wrapper > button span,
.cart-forms .giftcard .button-wrapper > button span,
.cart-forms .shipping .button-wrapper > button span {
  text-decoration: none;
}
#discount-coupon-form .button-wrapper > button:after,
.cart-forms .giftcard .button-wrapper > button:after,
.cart-forms .shipping .button-wrapper > button:after {
  content: "";
  font-family: "icomoon";
  color: #e52f32;
  padding-left: 10px;
  font-size: 18px;
  position: relative;
  top: 2px;
}
#discount-coupon-form .cancel-coupon,
.cart-forms .giftcard .cancel-coupon,
.cart-forms .shipping .cancel-coupon {
  float: left;
  background: none;
  clear: left;
  width: 100%;
  text-align: left;
}
#discount-coupon-form .input-text,
.cart-forms .giftcard .input-text,
.cart-forms .shipping .input-text {
  border-radius: 0;
  height: 42px;
  margin-top: 10px;
  width: 67%;
  background-color: #eeeeee;
  padding-left: 20px;
  font-size: 14px;
}
#discount-coupon-form .input-text:active, #discount-coupon-form .input-text:focus,
.cart-forms .giftcard .input-text:active,
.cart-forms .giftcard .input-text:focus,
.cart-forms .shipping .input-text:active,
.cart-forms .shipping .input-text:focus {
  border-color: transparent;
}

/* ============================================ *
 * Gift Card
 * ============================================ */
.cart .giftcard {
  font-size: 14px;
}
.cart .giftcard .non-member-earn {
  margin: 10px 0;
}
.cart .giftcard .non-member-earn a {
  display: inline-block;
  margin-top: 10px;
  text-transform: uppercase;
  color: #e52f32;
}
.cart .giftcard p {
  margin-bottom: 7px;
}
.cart .giftcard .button2 {
  float: right;
}
.cart .giftcard .card,
.cart .giftcard .balance {
  padding: 10px;
}
.cart .giftcard .button-wrapper {
  margin-top: 10px;
  position: absolute;
  top: 0;
  right: 0;
  width: 33%;
}
.cart .giftcard .button-wrapper button {
  height: 42px;
}
.cart .giftcard .gain-points {
  padding: 10px 0px;
}
.cart .giftcard .balance-title {
  padding: 0;
}
.cart .giftcard .balance {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
.cart .giftcard .balance-notice {
  padding: 0px 0 10px;
  font-style: italic;
  font-size: 12px;
}
.cart .giftcard .action .redeem-points {
  display: flex;
  align-items: center;
}
.cart .giftcard .action .redeem-points input {
  max-width: 100px;
  margin: 0 16px 0 0;
}
.cart .giftcard .action > span {
  padding: 0;
  font-size: 13px;
  color: #b1b1b1;
}

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

/* ============================================ *
 * Checkout - Cart Cross sell
 * ============================================ */
.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 */
.crosssell {
  /* Undo three-column config */
}

.cart-price > .regular-price {
  text-decoration: line-through;
  font-size: 12px;
}

.cart-price > .price {
  color: #e52f32;
}

.cart-price :only-child {
  color: black;
}

.product-item-price > .regular-price {
  text-decoration: line-through;
  font-size: 11px;
}

.product-item-price :nth-child(2) {
  color: #e52f32;
}

.info-wrapper > tbody > tr > td > .regular-price {
  text-decoration: line-through;
  font-size: 11px;
}

.info-wrapper > tbody > tr > td :nth-child(1) {
  display: block;
}

.info-wrapper > tbody > tr > td :nth-child(2) {
  color: #e52f32;
}

/* ============================================ *
 * Checkout - One Page
 * ============================================ */
.checkout-onepage-index .col-right,
.checkout-onepage-index .col-left {
  display: none;
}

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

.checkout-onepage-index .header-help {
  display: block;
  display: inline-block;
}
.checkout-onepage-index .skip-nav .icon,
.checkout-onepage-index .skip-nav .label {
  display: none;
}
.checkout-onepage-index #header-nav {
  border-bottom: 0;
}
.checkout-onepage-index .header-minicart,
.checkout-onepage-index #header-search,
.checkout-onepage-index #nav {
  display: none;
}
.checkout-onepage-index .skip-links {
  clear: none;
}
.checkout-onepage-index .col-main {
  float: left;
  width: 68.75%;
  padding-right: 20px;
  margin-bottom: 80px;
}
.checkout-onepage-index .col-right,
.checkout-onepage-index .col-left {
  width: 31.25%;
  display: block;
}
.checkout-onepage-index .col-right {
  padding-left: 0;
  margin-top: 35px;
}
.checkout-onepage-index .page-title:before {
  content: "";
  font-family: "icomoon";
  font-size: 31px;
  padding-right: 16px;
}
.checkout-onepage-index .page-title h1 {
  margin: 30px 0 42px 0;
  font-size: 38px;
  display: inline-block;
  font-size: 38px;
}
.checkout-onepage-index .page-title .payment-icons {
  display: block;
  width: 228px;
  margin: 0 auto 20px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px 20px;
  display: none;
}
.checkout-onepage-index .col-right .payment-icons {
  float: right;
}

.opc input.input-text,
.opc select {
  width: 100%;
}
.opc select {
  height: 48px;
  background: #eeeeee;
  border-radius: 0;
  border: 1px solid #eeeeee;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-color: #d4d2d2;
  padding: 0 34px 0 14px;
  margin-top: 0;
}
.opc .form-list label {
  text-transform: uppercase;
  font-size: 14px;
}
.opc .form-list .fields {
  clear: both;
}
.opc .form-list .fields .field {
  width: 49%;
}
.opc .form-list .fields .field.short {
  width: 23%;
  float: left;
  margin-left: 2.35%;
}
.opc .form-list .wide {
  clear: left;
}
.opc .form-list .field:nth-child(odd) {
  float: left;
}
.opc .form-list .field:nth-child(even) {
  float: right;
}
.opc #guest-password {
  float: left;
  clear: left;
}
.opc .cclub-optin {
  margin-top: 20px;
}
.opc .control {
  clear: both;
}
.opc .step .control label {
  text-transform: none;
}
.opc .remove-em:after {
  content: '';
}
.opc .description {
  color: #636466;
  font-size: 16px;
}

/* -------------------------------------------- *
 * Section Styling - Default
 */
.opc .section {
  position: relative;
}
.opc .section p.required {
  margin-top: 5px;
  margin-top: 0;
  position: absolute;
  top: -30px;
  right: 16px;
}

.opc .section .step-title {
  width: 100%;
  border-top: 1px solid #eeeeee;
  position: relative;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.opc .section .step-title:after {
  content: '';
  display: table;
  clear: both;
}

.opc .section:last-child .step-title {
  border-bottom: 1px solid #eeeeee;
}

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

.opc .section.active .step-title {
  border-top-color: #231f20;
  border-bottom: 1px solid transparent;
}

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

.opc .section.allow:not(.active) .step-title a {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  line-height: 70px;
  height: 70px;
  padding: 0px 16px;
  color: #848a9c;
  text-decoration: underline;
  font-size: 16px;
}

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

.opc .section .step-title .number,
.opc .section.allow.active .step-title .number,
.no-touch .opc .section.allow:hover .step-title .number {
  width: 20px;
  height: 70px;
  line-height: 70px;
  font-size: 21px;
  display: block;
  position: absolute;
  top: 50%;
  left: 16px;
  margin-top: -35px;
  font-weight: 700;
}

.opc .section.allow.active .step-title .number {
  color: #231f20;
}

.opc .section.allow .step-title .number,
.opc .section.allow .step-title h2 {
  color: #b1b1b1;
}

.opc .section.allow:not(.active) .step-title h2:after {
  content: "";
  font-family: "icomoon";
  color: #3696fc;
  padding-left: 18px;
  font-size: 18px;
}

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

.opc .section .step-title h2 {
  font-size: 21px;
  font-weight: 700;
  line-height: 70px;
  height: 70px;
  float: left;
  margin: 0px 4px 0px 40px;
  color: #b1b1b1;
  width: 100%;
}

.opc .section .step-title .number {
  color: #b1b1b1;
}

.opc .section .step {
  position: relative;
  top: -10px;
  padding: 0 16px;
}
.opc .section .step:after {
  content: '';
  display: table;
  clear: both;
}

.opc h3 {
  font-size: 14px;
  text-transform: uppercase;
}

.opc .buttons-set {
  text-align: left;
  border-top: 0;
  margin-bottom: 50px;
}
.opc .buttons-set button.button {
  float: right;
  margin: 0;
}
.opc .buttons-set p.required {
  float: right;
  margin-left: 5px;
  margin-bottom: 0;
}
.opc .buttons-set .back-link {
  display: none;
}
.opc .buttons-set .please-wait {
  margin: 15px 0 0 0;
}

.opc #opc-login .step {
  padding: 0px 10px;
}
.opc #opc-login .buttons-set {
  border-top: 0;
  padding-top: 0px;
}
.opc #opc-login .buttons-set .button {
  float: left;
}
.opc #opc-login .checkout-as-guest {
  display: none;
}
.opc #opc-login .description {
  margin-bottom: 30px;
}

#opc-login h3 {
  margin-top: 10px;
}
#opc-login .form-list a {
  display: block;
  padding: 10px 0 20px;
  color: #848a9c;
  font-size: 16px;
  text-decoration: underline;
}
#opc-login .form-list a:hover {
  text-decoration: none;
}

#opc-shipping .description,
#checkout-step-billing .description {
  margin-bottom: 30px;
  clear: both;
  float: left;
  width: 100%;
}
#opc-shipping .fieldset .description,
#checkout-step-billing .fieldset .description {
  margin: 15px 0 30px;
}
#opc-shipping .ship-yes,
#checkout-step-billing .ship-yes {
  margin-top: 30px;
}

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

#opc-payment .use-points-check {
  margin-top: 50px;
  margin-bottom: 16px;
}
#opc-payment .use-points-check input {
  margin-right: 12px;
}
#opc-payment .redeem-points-container--hidden {
  display: none;
}
#opc-payment .redeem-points {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
#opc-payment .redeem-points input {
  max-width: 100px;
  margin-right: 16px;
}
#opc-payment .redeem-points button {
  text-transform: uppercase;
}
#opc-payment .min-points {
  font-size: 13px;
  color: #b1b1b1;
}
#opc-payment hr {
  margin-top: 16px;
}
#opc-payment #checkout-payment-method-load {
  padding-top: 24px;
}

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

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

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

/* -------------------------------------------- *
 * Shipping and Payment methods
 */
#checkout-payment-method-load,
#checkout-shipping-method-load {
  padding-top: 50px;
}

#checkout-shipping-method-load .sp-methods dt {
  display: none;
}

.sp-payment-icon {
  display: inline-block;
}

.sp-methods {
  margin: 0 0 8px;
}
.sp-methods dt {
  margin: 13px 0 5px;
  font-weight: bold;
  clear: both;
}
.sp-methods dt:first-child {
  margin: 0 0 5px;
}
.sp-methods dd li {
  margin: 5px 0;
}
.sp-methods #optimal-form-combinations {
  margin-bottom: 50px;
}
.sp-methods #optimal-form-combinations:after {
  content: '';
  display: table;
  clear: both;
}
.sp-methods label img {
  vertical-align: middle;
  margin-left: 15px;
}
.sp-methods label a {
  margin-top: 6px;
  float: right;
  margin-left: 10px;
}
.sp-methods .form-list li {
  margin: 0 0 20px;
}
.sp-methods .paypal-what-is-this,
.sp-methods .cvv-what-is-this {
  color: #848a9c;
  font-size: 16px;
  text-decoration: underline;
  display: inline-block;
  vertical-align: middle;
}
.sp-methods .paypal-what-is-this:hover,
.sp-methods .cvv-what-is-this:hover {
  text-decoration: none;
}
.sp-methods .input-box .v-fix {
  width: 48%;
  margin-right: 4%;
}
.sp-methods .input-box .v-fix:nth-child(2) {
  margin-right: 0;
}
.sp-methods #advice-validate-cc-exp-ccsave_expiration {
  max-width: 130px;
}
.sp-methods .checkmo-list li {
  margin: 0 0 5px;
  content: '';
  display: table;
  clear: both;
}
.sp-methods .checkmo-list label {
  width: 165px;
  padding-right: 15px;
  text-align: right;
  float: left;
}
.sp-methods .checkmo-list address {
  float: left;
}
.sp-methods .release-amounts {
  margin: 0.5em 0;
}
.sp-methods .release-amounts button {
  float: left;
  margin: 5px 10px 0 0;
}

#checkout-payment-method-load ul.form-list {
  margin-top: 30px;
}
#checkout-payment-method-load .card-type {
  clear: both;
}
#checkout-payment-method-load .card-type .select-wrapper {
  display: inline-block;
}
#checkout-payment-method-load .card-type select {
  max-width: 150px;
}
#checkout-payment-method-load .card-name,
#checkout-payment-method-load .card-number,
#checkout-payment-method-load .expiry,
#checkout-payment-method-load .cvc {
  width: 50%;
  float: left;
}
#checkout-payment-method-load .card-name {
  clear: left;
}
#checkout-payment-method-load .cvc,
#checkout-payment-method-load .expiry {
  padding-left: 2%;
}

.order-review {
  width: 50%;
  width: 100%;
}
.order-review .block-progress {
  border: 0;
}

/* One Page Checkout */
.block-progress {
  margin: 50px 0 0;
  border: 1px solid #d4d2d2;
}
.block-progress .block-title {
  text-transform: uppercase;
  border: 0;
}
.block-progress .block-content {
  font-size: 13px;
  margin-top: 0;
}
.block-progress dt {
  padding-top: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
}
.block-progress dd {
  font-size: 16px;
  color: #636466;
  line-height: 2;
}
.block-progress #payment-progress-opcheckout .subtitle {
  margin-bottom: 3px;
}
.block-progress .payment-info dt {
  padding: 0;
  margin: 0 0 3px 0;
  color: #231f20;
  text-transform: none;
  font-style: italic;
  float: left;
  clear: both;
  font-size: 13px;
}
.block-progress .payment-info dt:after {
  content: ': ';
}
.block-progress .payment-info dd {
  float: left;
  margin-bottom: 3px;
  font-size: 13px;
}
.block-progress .payment-info:after {
  content: '';
  display: table;
  clear: both;
}

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

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

#checkout-review-submit {
  clear: left;
}
#checkout-review-submit h2 {
  text-align: center;
  padding-top: 20px;
  padding-top: 60px;
  font-size: 24px;
}

#review-buttons-container {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}
#review-buttons-container .btn-checkout {
  width: 100%;
  max-width: 315px;
  float: none;
  margin: 0;
}
#review-buttons-container .please-wait {
  display: block;
  margin: 30px auto 0;
}
#review-buttons-container .f-left {
  float: right;
}

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

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

/* On small screens, the progress review content will be moved to the review step via JS. Styled via this CSS: */
#checkout-progress-wrapper > .opc-block-progress {
  float: right;
  width: 50%;
  clear: right;
  width: 100%;
}

#checkout-step-review .opc-block-progress {
  padding-left: 0;
  margin: 0;
}
#checkout-step-review .opc-block-progress .block-title {
  display: none;
}
#checkout-step-review .opc-block-progress .block-content {
  display: block !important;
  padding: 0;
}
#checkout-step-review .opc-block-progress .block-content > dl > div {
  float: left;
  width: 33.33%;
  padding-right: 25px;
}
#checkout-step-review .opc-block-progress .block-content .changelink {
  color: #848a9c;
  font-size: 16px;
  text-decoration: underline;
  display: block;
  margin-bottom: 30px;
}
#checkout-step-review .opc-block-progress .block-content .changelink:hover {
  text-decoration: none;
}

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

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

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

.ui-dialog {
  position: fixed;
}

/* ============================================ *
 * Checkout - Success
 * ============================================ */
.checkout-onepage-success .col-main {
  text-align: center;
}
.checkout-onepage-success .buttons-set {
  margin: 30px 0 100px;
  text-align: center;
  border-top: 0;
}
.checkout-onepage-success .buttons-set button {
  float: none;
  background: #e52f32;
}
.checkout-onepage-success .buttons-set button:hover {
  background: #d61b1e;
}
.checkout-onepage-success .buttons-set button:focus, .checkout-onepage-success .buttons-set button:active {
  background: #c8191c;
}
.checkout-onepage-success h1 {
  font-size: 38px;
  margin: 1em 0 1.25em;
}
.checkout-onepage-success .sub-title {
  font-size: 24px;
  margin-bottom: 1em;
}
.checkout-onepage-success .col-main p {
  color: #636466;
  font-size: 16px;
}
.checkout-onepage-success .col-main p.order-number {
  margin-bottom: 1.5em;
}
.checkout-onepage-success .col-main p a {
  text-decoration: underline;
}
.checkout-onepage-success .col-main p a:hover {
  text-decoration: none;
}
.checkout-onepage-success .order-details {
  width: 55%;
  margin: 0 auto;
}

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

/* General Swatch Styling */
.swatch-link,
.swatch-label {
  display: block;
  border-radius: 3px;
  font-size: 14px;
  text-align: center;
  color: #231f20;
  text-decoration: none;
  box-sizing: content-box;
}

.swatch-link {
  border: 1px solid #b1b1b1;
  margin: 0 0 3px;
}
.swatch-link img {
  border-radius: 2px;
}
.swatch-link:hover {
  cursor: pointer;
  text-decoration: none;
}
.swatch-link .x {
  display: none;
  text-indent: -999em;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(https://www.deserres.ca/skin/frontend/deserres/default/images/bg_x.png) center no-repeat transparent;
  z-index: 10;
}
.swatch-link.has-image .swatch-label {
  position: relative;
}
.swatch-link.has-image img {
  position: absolute;
  top: 0;
  left: 0;
}

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

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

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

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

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

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

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

.product-view .product-options .swatch-attr {
  float: none;
  display: block;
  clear: both;
  border: 0;
}
.product-view .product-options .swatch-attr label,
.product-view .product-options .swatch-attr .select-label {
  font-size: 12px;
}
.product-view .product-options .swatch-attr label {
  display: block;
  line-height: 1.3;
}
.product-view .product-options .swatch-attr .select-label {
  display: inline;
  font-weight: normal;
  color: #231f20;
  padding-left: 5px;
}
.product-view .product-options dd .input-box {
  width: auto;
  height: auto;
}
.product-view .product-options .select-label {
  display: none;
}
.product-view .add-to-cart button.out-of-stock {
  background-position: -80px -362px;
  cursor: default;
}

.one-column-full-width .breadcrumbs {
  padding: 16px 0;
  padding: 16px 32px 0;
}
.one-column-full-width .page-title {
  max-width: 1084px;
  margin: 0 auto;
  padding: 0 16px;
  padding: 0 32px;
}
.one-column-full-width .main-container {
  max-width: 100%;
  padding: 16px 0 0;
  padding: 0;
}
.one-column-full-width .col1-layout .col-main {
  margin-bottom: 0;
}
.one-column-full-width .content-wrap .col-main {
  float: left;
  width: 72.5%;
}
.one-column-full-width .col-left,
.one-column-full-width .col-left-first {
  clear: left;
  padding-left: 0;
  float: left;
  width: 25%;
}
.one-column-full-width #narrow-by-list ol li {
  margin-left: 0;
}
.one-column-full-width #narrow-by-list ol li:last-child {
  padding-bottom: 0;
}
.one-column-full-width .layered-store-list dt a {
  color: #231f20;
  font-weight: 700;
  display: block;
}
.one-column-full-width .layered-store-list dd a {
  color: #636466;
  text-decoration: none;
}
.one-column-full-width .layered-store-list dd a.active {
  text-decoration: underline;
}
.one-column-full-width .layered-store-list dd a:hover {
  text-decoration: underline;
}

.cms-page-view .province {
  clear: both;
}
.cms-page-view .block-layered-nav .block-subtitle--filter {
  width: 100%;
}
.cms-page-view ol.store-list {
  list-style-type: none;
}
.cms-page-view ol.store-list li {
  margin-left: 0;
  float: left;
  width: 47.5%;
  margin-right: 5%;
  margin-bottom: 20px;
  margin-bottom: 40px;
}
.cms-page-view ol.store-list li:nth-child(odd) {
  clear: left;
}
.cms-page-view ol.store-list li:nth-child(even) {
  margin-right: 0;
}
.cms-page-view li.store {
  background: #ededed;
}
.cms-page-view li.store a {
  text-decoration: none;
}
.cms-page-view .store-details {
  padding: 16px;
  background: #ededed;
  position: relative;
  font-size: 12px;
  padding: 32px;
}
.cms-page-view .store-details:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #ededed;
  border-top: none;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-bottom: 20px solid #ededed;
  border-top: none;
  top: -20px;
}
.cms-page-view .store-details h3 {
  font-size: 18px;
  font-size: 20px;
}
.cms-page-view .store-details h4 {
  font-size: 14px;
}
.cms-page-view .store-details address {
  margin-bottom: 20px;
}
.cms-page-view .store-details address a {
  color: #636466;
  text-decoration: none;
}
.cms-page-view .store-details address a:before {
  content: "";
  font-family: "icomoon";
  padding-right: 5px;
}
.cms-page-view .store-details dt, .cms-page-view .store-details dd {
  float: left;
}
.cms-page-view .store-details dt {
  clear: left;
  padding-right: 10px;
  width: 30%;
}
.cms-page-view .store-details dd {
  margin-bottom: 15px;
  margin-bottom: 0;
  width: 70%;
}
.cms-page-view .store-details dl:after {
  content: '';
  display: table;
  clear: both;
}
.cms-page-view .store-details .shop-arrow {
  margin-top: 20px;
  font-size: 12px;
  text-decoration: none;
  font-size: 14px;
}
.cms-page-view .store-details .shop-arrow:hover {
  text-decoration: underline;
}
.cms-page-view .store-info h4 {
  font-size: 18px;
}
.cms-page-view .store-info .map,
.cms-page-view .store-info .hours {
  padding-left: 16px;
}
.cms-page-view .store-info .location {
  padding-left: 6%;
}
.cms-page-view .store-info .location address {
  color: #636466;
  font-size: 16px;
  line-height: 2;
}
.cms-page-view .store-info .map,
.cms-page-view .store-info .location {
  float: left;
  width: 50%;
  float: left;
  width: 33%;
}
.cms-page-view .store-info .hours {
  padding-top: 30px;
  padding-top: 0;
  float: left;
  width: 33%;
}
.cms-page-view .store-info .hours.holiday h4 {
  color: #e52f32;
}
.cms-page-view .store-info .hours dl {
  color: #636466;
  font-size: 16px;
}
.cms-page-view .store-info .hours dt,
.cms-page-view .store-info .hours dd {
  display: inline-block;
}
.cms-page-view .store-info .hours dt {
  min-width: 105px;
}
.cms-page-view .facebook-link .icon-facebook {
  font-size: 22px;
  color: #e52f32;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.cms-page-view .events {
  margin: 100px  0 90px;
  float: left;
  width: 100%;
  clear: left;
}
.cms-page-view .events a.facebook-link {
  color: #848a9c;
  font-size: 16px;
  text-decoration: underline;
  display: block;
  float: right;
}
.cms-page-view .events a.facebook-link:hover {
  text-decoration: none;
}
.cms-page-view .events ul {
  list-style-type: none;
}
.cms-page-view .events ul li {
  margin-left: 0;
  border-bottom: 1px solid #eeeeee;
  padding-top: 10px;
  margin-bottom: 10px;
}
.cms-page-view .events ul li:after {
  content: '';
  display: table;
  clear: both;
}
.cms-page-view .events h4,
.cms-page-view .events h5 {
  font-size: 16px;
  color: #000000;
}
.cms-page-view .events .section-title {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 30px;
  overflow: hidden;
}
.cms-page-view .events h5 {
  margin-right: 16px;
}
.cms-page-view .events h4,
.cms-page-view .events h5,
.cms-page-view .events .time {
  display: inline-block;
  margin-bottom: 0;
}
.cms-page-view .events .time {
  color: #000000;
  font-size: 12px;
}
.cms-page-view .events .icon-clock-o {
  padding-left: 10px;
}
.cms-page-view div.event-date {
  text-align: center;
  float: left;
  width: 75px;
  height: 75px;
  background: #ededed;
  border-radius: 50%;
  line-height: 1;
  padding: 16px;
  margin-right: 16px;
}
.cms-page-view div.event-date p {
  font-size: 14px;
  text-transform: uppercase;
  color: #e52f32;
  margin-bottom: 0;
}
.cms-page-view div.event-date span {
  display: block;
  font-weight: 600;
  font-size: 26px;
}
.cms-page-view .event-description {
  float: left;
  width: calc(100% - 95px);
}
.cms-page-view .std span[class^="icon-"] {
  padding-right: 5px;
}

.background-banner {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cms-hero {
  padding: 100px 20px;
}

.cms-hero p {
  width: 50%;
  max-width: 420px;
  margin: 0 auto 2em;
}
.cms-hero p.wide {
  max-width: 600px;
  width: 60%;
}

.cms-hero h2,
.cpzone-banner h2,
.block-zone h2 {
  font-size: 24px;
  margin: 0 auto 2em;
}
.cms-hero h3,
.cpzone-banner h3,
.block-zone h3 {
  font-size: 14px;
}

.block-zone {
  padding: 60px 0 40px;
}
.block-zone.content-wrap {
  padding: 20px 20px 30px;
  padding: 60px 10px 40px;
}
.block-zone:after {
  content: '';
  display: table;
  clear: both;
}
.block-zone:last-child {
  margin-bottom: 0;
}
.block-zone .block-zone {
  padding: 40px 0 0px;
}
.block-zone p {
  width: 60%;
  margin: 0 auto 2em;
}
.block-zone a {
  color: #848a9c;
  font-size: 16px;
  text-decoration: underline;
}
.block-zone a:hover {
  text-decoration: none;
}
.block-zone.light-bg {
  background: #f7f7f7;
  padding: 40px 20px 30px;
  padding: 50px 20px 30px;
}

.cms-page-view ul.small-links-list {
  margin: 25px 0;
  display: flex;
}
.cms-page-view ul.small-links-list li:after {
  content: '|';
}
.cms-page-view ul.small-links-list li:last-child:after {
  content: none;
}
.cms-page-view ul.small-links-list a {
  margin: 0 10px;
  color: #000000;
  font-size: 12px;
}

ul.cms-icon-list,
ul.small-links-list {
  list-style-type: none;
  justify-content: center;
}
ul.cms-icon-list li,
ul.small-links-list li {
  margin-left: 0;
}

ul.cms-icon-list {
  list-style-type: none;
  margin: 30px 0 0;
  justify-content: center;
  display: flex;
  margin: 60px auto 40px;
}
ul.cms-icon-list img {
  margin: 0 auto 10px;
  max-height: 36px;
}
ul.cms-icon-list span {
  font-size: 14px;
  display: block;
  text-transform: uppercase;
  font-weight: bold;
}
ul.cms-icon-list .text-link-secondary {
  display: block;
}
ul.cms-icon-list.six-columns li {
  font-size: 16px;
  line-height: 1.75;
  padding: 0 0 30px 0;
  padding: 0 .5%;
  width: 20%;
}
ul.cms-icon-list.two-columns li {
  margin: 0 auto 30px;
  width: 50%;
  width: 20%;
  max-width: 180px;
  padding: 0 10px;
  margin: 0;
}

.button.wide {
  margin: 20px 10px;
}

.border-bottom {
  border-bottom: 1px solid #eeeeee;
}

/* Creative Club */
.cclub-banner {
  background-position: center bottom;
}
.cclub-banner:after {
  content: "";
  display: inline-block;
  background: url("https://www.deserres.ca/skin/frontend/deserres/default/images/c-club-card.png") no-repeat 0 0;
  background-size: contain;
  margin: 0 0 -75px;
  width: 103px;
  height: 159px;
}
.cclub-banner.french-card:after {
  background: url("https://www.deserres.ca/skin/frontend/deserres/default/images/c-club-card_FR.png") no-repeat 0 0;
  background-size: contain;
}
.cclub-banner .cms-icon-list {
  margin-top: 0;
}

.cclub-banner,
.cpzone-banner {
  background-size: cover;
  margin-bottom: 60px;
}
.cclub-banner:after,
.cpzone-banner:after {
  content: "";
  display: inline-block;
  background-size: contain;
}

.cms-hero.cpzone-banner,
.cms-hero.cclub-banner {
  padding: 60px 20px 0;
}

.cpzone-banner {
  margin-bottom: 75px;
}
.cpzone-banner:after {
  background: url("https://www.deserres.ca/skin/frontend/deserres/default/images/cpzone-card.png") no-repeat 0 0;
  margin: 0 0 -75px;
  width: 150px;
  height: 115px;
  width: 186px;
  height: 143px;
  margin-bottom: -75px;
}

ul.number-list {
  list-style-type: none;
  margin: 50px auto 0;
  margin: 80px auto 60px;
}
ul.number-list:after {
  content: '';
  display: table;
  clear: both;
}
ul.number-list li {
  margin-left: 0;
  position: relative;
}
ul.number-list li span {
  color: #e52f32;
}
ul.number-list li:nth-child(1):after {
  content: '1';
}
ul.number-list li:nth-child(2):after {
  content: '2';
}
ul.number-list li:nth-child(3):after {
  content: '3';
}
ul.number-list li:after {
  font-size: 313px;
  color: #d3d3d3;
  opacity: .3;
  font-weight: 700;
  line-height: .5;
  text-align: center;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
ul.number-list h3, ul.number-list p {
  position: relative;
  z-index: 1;
}
ul.number-list h3 {
  font-size: 20px;
}

.lp-creative-club .std {
  position: relative;
}
.lp-creative-club .std .header-creative-club-join {
  max-width: 1084px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  margin-top: -92px;
  padding-right: 32px;
}
.lp-creative-club .std .header-creative-club-join__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lp-creative-club .std .header-creative-club-join__ctas__big-cta a {
  margin: 12px 10px;
}
.lp-creative-club .std .header-creative-club-join__ctas__small-cta {
  font-size: 14px;
}
.lp-creative-club .std .creative-club-join {
  margin-top: 120px;
}
.lp-creative-club .std .creative-club-join h2 {
  font-size: 32px;
}
.lp-creative-club .std .creative-club-join__ctas {
  position: relative;
  display: flex;
  justify-content: center;
}
.lp-creative-club .std .creative-club-join__ctas__cta p {
  width: auto;
  margin-bottom: 0;
  max-width: 292px;
  font-size: 13px !important;
}
.lp-creative-club .std .creative-club-join__ctas__cta a {
  min-width: 300px;
}
.lp-creative-club .std .creative-club-join__ctas__cta:first-of-type {
  margin-right: 80px;
}
.lp-creative-club .std .creative-club-join__ctas__cta:last-of-type {
  margin-left: 80px;
}
.lp-creative-club .std .creative-club-join__ctas:after {
  content: '';
  display: block;
  position: absolute;
  height: 100%;
  width: 1px;
  left: 50%;
  top: 0;
  background-color: #000;
}

ul.points-list {
  margin-bottom: 0;
  margin-top: 55px;
  padding: 0 30px;
  padding: 0 60px;
}
ul.points-list:after {
  content: '';
  display: table;
  clear: both;
}
ul.points-list li {
  margin: 0;
  font-weight: 600;
  float: left;
  width: 25%;
}
ul.points-list li span {
  color: #e52f32;
}

.cms-product-list.max-4-products .products-grid {
  max-width: 1024px;
}
.cms-product-list ul.points-list li {
  font-size: 20px;
}

.three-column-container li {
  display: inline-block;
  vertical-align: middle;
  width: 33%;
}

/* Student Status */
div.student-status {
  padding: 200px 16px 70px;
  background-position: center center;
}

/* Associations */
.cms-hero.associations-hero {
  background-position: center bottom;
  padding: 60px 20px 120px;
}

.cms-page-view table.cms-table {
  width: 100%;
}
.cms-page-view table.cms-table tbody tr {
  background: #FFFFFF;
  border-bottom: 5px solid #f7f7f7;
}
.cms-page-view table.cms-table tbody tr td {
  padding: 30px;
}
.cms-page-view table.cms-table tbody tr td h3 {
  font-size: 16px;
}
.cms-page-view table.cms-table tbody tr td p {
  margin: 0;
  font-size: 12px;
}

/* Zone account */
form.webforms-careers {
  margin-top: 40px;
}
form.webforms-careers .fieldset {
  clear: left;
  margin-bottom: 40px;
}
form.webforms-careers .fieldset:after {
  content: '';
  display: table;
  clear: both;
}
form.webforms-careers .fieldset input[type=file] {
  max-width: 100%;
}

.preferred-position:after {
  content: '';
  display: table;
  clear: both;
}
.preferred-position .form-list:after {
  content: '';
  display: table;
  clear: both;
}

.field.form-three-column,
.wide .form-three-column {
  float: left;
  width: 33%;
  padding-right: 20px;
}

.hide-form-label > label {
  display: none;
}

.form-divider:before {
  content: "";
  height: 0px;
  width: 100%;
  display: block;
  position: absolute;
  border-top: 1px solid #eeeeee;
  top: -15px;
}

.following-field {
  padding-top: 20px;
}

.form-list .fields {
  clear: left;
}

.list-select li:first-child {
  margin-top: 0;
}

.wide .left-half,
.field.right-half,
.field.left-half {
  width: calc(50% - 10px);
  float: left;
}

.wide .left-half,
.field.left-half {
  margin-right: 10px;
}

.field.right-half {
  margin-left: 10px;
}

.contact-you li.wide {
  clear: both;
  overflow: hidden;
}

.contact-you li.wide {
  clear: both;
  overflow: hidden;
}

.hour-availability .fields:nth-child(2) {
  max-width: 200px;
}
.hour-availability .list-select .control {
  float: left;
  width: 100%;
}
.hour-availability input.input-text {
  max-width: 100px;
}
.hour-availability .webforms-fields-row-30,
.hour-availability .webforms-fields-row-31 {
  clear: left;
}
.hour-availability .wide {
  clear: left;
  float: left;
  width: 300px;
}
.hour-availability .wide + .fields {
  clear: none;
}
.hour-availability .fields {
  overflow: hidden;
  float: left;
  width: 50%;
}
.hour-availability .availability-day-list {
  width: 275px;
  float: left;
}

.end-time,
.start-time {
  float: left;
  width: calc(50% - 10px);
}
.end-time label,
.end-time .input-box,
.start-time label,
.start-time .input-box {
  display: inline-block;
}

.start-time {
  margin-right: 10px;
}

body .webforms-success-text {
  background: white;
  border: 1px solid #000000;
}

.cms-block .block-subscribe .block-content {
  position: relative;
  display: block;
  max-width: 600px;
  margin: 0 auto;
}
.cms-block .block-subscribe .block-content .input-box {
  margin: 0;
  padding-top: 0;
}
.cms-block .block-subscribe .block-content .input-box input {
  padding-right: 147px;
}
.cms-block .block-subscribe .block-content .input-box input:disabled {
  color: rgba(0, 0, 0, 0.3);
}
.cms-block .block-subscribe .block-content .actions {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  margin: 0;
}
.cms-block .block-subscribe .block-content .actions .button {
  float: none;
  height: 48px;
  padding-top: 0;
  padding-bottom: 0;
}
.cms-block .block-subscribe .block-content .actions .button .atc-ajax-icon {
  display: none;
  background-color: rgba(255, 255, 255, 0.2);
}
.cms-block .block-subscribe .block-content .actions .button .atc-ajax-icon img {
  max-width: 30px;
}
.cms-block .block-subscribe .block-content .actions .button:disabled .atc-ajax-icon {
  display: block;
}
.cms-block .block-subscribe .block-content .validation-advice {
  position: absolute;
}
.cms-block .block-subscribe .block-content .ajax-response {
  position: absolute;
  display: block;
  padding-top: 4px;
  text-align: left;
  font-weight: normal;
  font-size: 12px;
}
.cms-block .block-subscribe .block-content .success {
  color: #000;
}
.cms-block-info-hero .wrapper, .cms-block-info-content .wrapper {
  max-width: 1084px;
  padding: 0 32px;
  background-color: transparent;
}
.cms-block-info-hero {
  padding-bottom: 48px;
}
.cms-block-info-content {
  padding-bottom: 60px;
}

/* ============================================ *
 * Customer
 * ============================================ */
.customer-account .main-container .content-wrapper {
  padding: 0;
  padding: 20px 0;
}
.customer-account .main-container .content-wrapper:after {
  content: '';
  display: table;
  clear: both;
}
.customer-account .main-container .content-wrapper h2 {
  margin: 0;
  margin-bottom: 10px;
  color: #231f20;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeSpeed;
}
.customer-account .main-container .content-wrapper h2.box-title {
  margin: 0;
  margin-bottom: 5px;
  color: #231f20;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}

.customer-account-login .page-title {
  border-bottom: 1px solid #000000;
  margin-bottom: 30px;
}
.customer-account-login .page-title h1 {
  font-size: 38px;
  margin-bottom: 1.25em;
}
.customer-account-login .col-main {
  padding: 20px 0 30px;
}
.customer-account-login .form-list > li {
  margin-bottom: 20px;
}
.customer-account-login .scaffold-form label {
  text-transform: uppercase;
}
.customer-account-login .scaffold-form label:first-child {
  width: 130px;
}
.customer-account-login .scaffold-form li a {
  color: #848a9c;
  font-size: 16px;
  text-decoration: underline;
}
.customer-account-login .scaffold-form li a:hover {
  text-decoration: none;
}
.customer-account-login .col2-set .buttons-set {
  text-align: left;
  border-top: 0;
}
.customer-account-login .col2-set .buttons-set button,
.customer-account-login .col2-set .buttons-set .button {
  float: none;
  margin: 0;
}
.customer-account-login .col2-set .col-2 ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0 20px 0;
}
.customer-account-login .col2-set li {
  font-size: 16px;
  color: #636466;
}
.customer-account-login .col2-set .col-1 {
  padding-right: 64px;
}
.customer-account-login .col2-set .col-2 {
  padding-left: 64px;
}
.customer-account-login h2 {
  margin: 0;
  margin-bottom: 5px;
  color: #231f20;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
}

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

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

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

.customer-account-create .account-create {
  padding-bottom: 50px;
}
.customer-account-create .buttons-set {
  max-width: 500px;
}
.customer-account-create .fieldset {
  display: inline-block;
}
.customer-account-create .fieldset,
.customer-account-create .buttons-set {
  margin-left: 0;
}
.customer-account-create .fieldset .hidden {
  display: none;
}
.customer-account-create #remember-me-popup {
  max-width: 455px;
}

.customer-account-forgotpassword .fieldset,
.customer-account-forgotpassword .buttons-set {
  max-width: 400px;
}
.customer-account-forgotpassword h2 {
  margin: 0;
  margin-bottom: 10px;
  color: #231f20;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  text-rendering: optimizeSpeed;
}
.customer-account-forgotpassword .fieldset .input-box input.input-text {
  width: 100%;
}

/* ============================================ *
 * My Account Global Styles
 * ============================================ */
body.customer-account:not(.sales-order-history) select {
  height: 48px;
  background: #eeeeee;
  border-radius: 0;
  border: 1px solid #eeeeee;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-color: #d4d2d2;
  padding: 0 34px 0 14px;
}
body.customer-account .select-wrapper {
  display: inline-block;
}
body.customer-account .my-account .page-title h1 {
  border: 0;
  text-align: left;
}
body.customer-account .my-account .title-buttons {
  position: relative;
  text-align: right;
}
body.customer-account .my-account .title-buttons h1 {
  text-align: left;
}
body.customer-account .my-account .title-buttons .button {
  position: absolute;
  right: 0;
  top: 0;
}
body.customer-account .my-account .title-buttons a,
body.customer-account .my-account .title-buttons span.separator {
  position: relative;
  top: -42px;
}
body.customer-account .my-account .fieldset h2,
body.customer-account .my-account .addresses-list h2,
body.customer-account .my-account .order-details h2 {
  width: 100%;
  display: inline-block;
}
body.customer-account .my-account .addresses-list h3 {
  font-size: 14px;
  font-weight: 600;
}
body.customer-account .my-account .fieldset {
  margin-top: 32px;
  margin-bottom: 32px;
}
body.customer-account .data-table {
  margin-top: 5px;
}
body.customer-account .data-table tr:last-child td {
  border-bottom: 0;
}
body.customer-account .data-table td {
  color: #636466;
  font-size: 16px;
}
body.customer-account .data-table td a {
  font-size: 13px;
  display: block;
}
body.customer-account .data-table td.date {
  min-width: 150px;
}
body.customer-account .data-table span.nobr {
  white-space: normal;
}
body.customer-account .data-table span.nobr a {
  white-space: nowrap;
}
body.customer-account .data-table td.view a {
  display: block;
}
body.customer-account .data-table .link-reorder {
  margin-top: 10px;
}
body.customer-account .data-table .separator {
  display: none;
}
body.customer-account .data-table .product-name {
  font-weight: 500;
  margin-bottom: 0;
}
body.customer-account .data-table .colour-name {
  font-weight: 500;
  color: #000000;
  font-size: 14px;
}
body.customer-account .sidebar .block ol#compare-items li {
  margin: 10px 0;
}
body.customer-account .sidebar .block .block-content p.block-subtitle {
  margin-bottom: 16px;
  font-size: 13px;
}
body.customer-account .sidebar .block .block-content .actions {
  margin-top: 32px;
}
body.customer-account .sidebar ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
body.customer-account .sidebar ol#cart-sidebar-reorder p.product-name {
  display: inline-block;
  margin-bottom: 0;
}
body.customer-account .sidebar .block-cart .summary {
  margin-bottom: 16px;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li {
  margin: 0;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li input {
  margin-right: 10px;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder p.product-name {
  display: inline;
  margin-bottom: 0;
  font-size: inherit;
}

.form-list .customer-dob .dob-month,
.form-list .customer-dob .dob-day {
  width: 40px;
  float: left;
  margin-right: 10px;
}
.form-list .customer-dob .dob-year {
  width: 80px;
  float: left;
}
.form-list label {
  text-transform: uppercase;
}

/* ============================================ *
 * Dashboard
 * ============================================ */
.dashboard .box-head {
  margin-top: 32px;
  border-bottom: 1px solid #b1b1b1;
  padding-bottom: 7px;
}
.dashboard .box-head h2 {
  font-size: 21px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0;
}
.dashboard .box-head a {
  padding: 10px;
}
.dashboard p {
  color: #636466;
  font-size: 16px;
}
.dashboard .box-title a,
.dashboard .box-head a {
  font-size: 12px;
}
.dashboard .welcome-msg strong {
  font-weight: normal;
}
.dashboard .box-account {
  padding-bottom: 40px;
  margin-bottom: 20px;
}
.dashboard .box-account a {
  color: #848a9c;
  font-size: 16px;
  text-decoration: underline;
}
.dashboard .box-account a:hover {
  text-decoration: none;
}
.dashboard .box-account address {
  color: #636466;
  font-size: 16px;
}
.dashboard .col2-set .col-1,
.dashboard .col2-set .col-2 {
  padding-right: 12.09677%;
  padding-bottom: 0;
}
.dashboard .col2-set .col-1 .box-title,
.dashboard .col2-set .col-2 .box-title {
  position: relative;
  padding-bottom: 10px;
}
.dashboard .col2-set .col-1 .box-title h2,
.dashboard .col2-set .col-1 .box-title h3,
.dashboard .col2-set .col-2 .box-title h2,
.dashboard .col2-set .col-2 .box-title h3 {
  font-size: 13px;
  padding-top: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
}
.dashboard .col2-set .col-1 .box-title a,
.dashboard .col2-set .col-2 .box-title a {
  color: #848a9c;
  font-size: 16px;
  text-decoration: underline;
}
.dashboard .col2-set .col-1 .box-title a:hover,
.dashboard .col2-set .col-2 .box-title a:hover {
  text-decoration: none;
}
.dashboard .box-reviews.box-account {
  padding-bottom: 0;
}
.dashboard .box-reviews li {
  padding: 10px 0;
  border-top: 1px solid #eeeeee;
}
.dashboard .box-reviews li:first-child {
  border-top: 0;
}
.dashboard .box-reviews li .number {
  margin-right: -20px;
  float: left;
  line-height: 1.4;
  font-size: 13px;
}
.dashboard .box-reviews li .details {
  margin-left: 20px;
}
.dashboard .box-reviews li .details .ratings {
  content: '';
  display: table;
  clear: both;
  margin-bottom: 0;
}
.dashboard .box-reviews li .details .ratings strong {
  float: left;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  margin-right: 5px;
}
.dashboard .box-reviews li .details .ratings .rating-box {
  float: left;
  margin: 3px 0 0 0;
}

.loyalty .col2-set .hello {
  padding-top: 20px;
  font-size: 18px;
  margin-bottom: 30px;
}
.loyalty .col2-set .card {
  font-size: 13px;
  margin-bottom: 16px;
}
.loyalty-tab .creative-club-form {
  margin-bottom: 50px;
}
.loyalty-tab .creative-club-form .input-radio + .input-radio {
  margin-top: 18px;
}
.loyalty-tab .creative-club-form .input {
  display: flex;
  border: 1px solid #636466;
}
.loyalty-tab .creative-club-form .input .input-wrapper,
.loyalty-tab .creative-club-form .input label {
  padding: 24px;
}
.loyalty-tab .creative-club-form .input .input-wrapper {
  border-right: 2px solid #b1b1b1;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loyalty-tab .creative-club-form .input label {
  font-weight: 400;
  font-size: 16px;
  color: #636466;
}
.loyalty-tab .creative-club-form .input-cardnumber {
  border: none;
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}
.loyalty-tab .creative-club-form .input-cardnumber--hidden {
  display: none;
}
.loyalty-tab .creative-club-form .input-cardnumber label {
  padding: 0;
  margin-bottom: 4px;
}
.loyalty-tab .creative-club-form .input-cardnumber input {
  padding: 8px 12px;
}
.loyalty-tab .creative-club-form .input-terms {
  position: relative;
  margin-top: 20px;
  margin-bottom: 60px;
  background-color: #eeeeee;
  border: none;
}
.loyalty-tab .creative-club-form .input-terms .input-wrapper {
  border-right: 2px solid #fff;
}
.loyalty-tab .creative-club-form .input-terms strong {
  color: #000;
}
.loyalty-tab .creative-club-form .input-terms a {
  text-decoration: underline;
}
.loyalty-tab .creative-club-form .input-terms .validation-advice {
  position: absolute;
  bottom: -24px;
  left: 0;
}
.loyalty-tab .col2-set {
  margin-bottom: 40px;
}
.loyalty-tab .col2-set .hello {
  padding-top: 0;
}
.loyalty-tab .col2-set h3 {
  margin-top: 30px;
  font-size: 16px;
}
.loyalty-tab .col2-set p {
  font-size: 13px;
}

/* ============================================ *
 * Address Book
 * ============================================ */
.my-account .addresses-list .col-1,
.my-account .addresses-list .col-2 {
  padding-bottom: 0;
}
.my-account .addresses-list .item {
  margin: 0 0 32px 0;
}
.my-account .addresses-list .item p {
  margin-top: 10px;
}

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

.order-date {
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: uppercase;
}

.order-info-box {
  margin-bottom: 40px;
  margin-top: 20px;
}
.order-info-box + .order-info-box {
  padding-bottom: 40px;
  border-bottom: 1px solid #eeeeee;
}
.order-info-box .col-1 {
  padding-right: 0;
  width: 48%;
}
.order-info-box .col-2 {
  width: 52%;
}
.order-info-box .col-1,
.order-info-box .col-2 {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.order-info-box .box-title {
  width: 100%;
  padding-right: 10px;
  float: left;
}
.order-info-box .box-title h2 {
  font-size: 14px;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: bold;
  line-height: 1.5;
}
.order-info-box .box-content {
  float: left;
}
.order-info-box .box-content td,
.order-info-box .box-content th {
  line-height: 1.3;
}
.order-info-box .box-content th {
  padding-top: 10px;
}
.order-info-box .box-content td {
  padding-left: 16px;
}
.order-info-box .box-content strong {
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
}

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

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

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

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

body.customer-account .my-account .order-details h2 {
  margin: 0;
  margin-bottom: 10px;
  color: #231f20;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
  text-rendering: optimizeSpeed;
}

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

.customer-account-logoutsuccess .main-container {
  min-height: 450px;
}

.my-rewards .box {
  margin-bottom: 20px;
}

.account-balance {
  margin-bottom: 20px;
}

/* Loyalty Card */
.customer-user-attributes h3 {
  margin: 0;
  margin-bottom: 10px;
  color: #231f20;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
}

/* Change Forgotten Password */
.customer-account-changeforgotten .scaffold-form {
  max-width: 500px;
}

/* ============================================ *
 * Contacts
 * ============================================ */
.contacts-index-index .buttons-set {
  margin-left: 0;
  max-width: 450px;
}
.contacts-index-index .buttons-set p.required {
  float: left;
}

/* CSS FOR NEW PROGRESSIVE CHECKOUT */
#checkout-progress-wrapper {
  padding-left: 20px;
}
#checkout-progress-wrapper .block-title {
  padding: 27px;
  border-bottom: 1px solid #d4d2d2;
  margin-bottom: 0;
}
#checkout-progress-wrapper .block-title strong {
  cursor: inherit;
  font-size: 14px;
}

#checkout-progress-wrapper .block-title,
#checkout-progress-wrapper .block-content {
  width: 100%;
}

#checkout-progress-wrapper .block-content .items-list {
  display: block;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 205px;
  width: 100%;
}

#checkout-progress-wrapper .block-content li.item {
  margin: 0;
  border-bottom: solid 1px #d4d2d2;
  padding: 15px 15px 15px 10px;
}
#checkout-progress-wrapper .block-content li.item:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

#checkout-progress-wrapper li.item .product-image {
  border: 0;
}

#checkout-progress-wrapper .sidebar-items-end {
  display: block;
  clear: both;
  height: 1px;
  border-bottom: solid 1px #d4d2d2;
}

#checkout-progress-wrapper .order-status-summary,
.order-status-summary .summary-item {
  display: block;
  width: 100%;
  margin: 0px;
}

.order-status-summary {
  padding: 20px 16px 25px;
  background: #f5f5f5;
}

.order-status-summary .summary-item {
  clear: both;
  margin-top: 10px;
  height: auto;
}
.order-status-summary .summary-item:first-child {
  margin-top: 0;
}
.order-status-summary .summary-item.grand-total .summary-item-label,
.order-status-summary .summary-item.grand-total .summary-item-value {
  color: #e52f32;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}

.summary-item-label {
  width: 60%;
  float: left;
  color: #636466;
  width: 52%;
}

.summary-item-value {
  width: 40%;
  float: left;
  text-align: right;
  color: #636466;
  width: 47%;
}

.divider {
  display: block;
  width: 100%;
  clear: both;
  height: 2px;
}

p.product-name a {
  font-size: 12px;
}

.block-progress p {
  margin-bottom: 3px;
}

.block-progress p.qty {
  font-size: 12px;
}

.product-item-price {
  text-align: right;
  font-weight: 700;
  margin-top: 5px;
}

.block-content li.item {
  padding-bottom: 10px;
}

#order-status-update {
  position: relative;
}

#order-status-update-loader {
  display: none;
  position: absolute;
  padding: 0px;
  margin: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0px;
  background: none;
  width: 100%;
}

#order-status-update-loader div {
  display: block;
  width: 100%;
  text-align: center;
  color: #231f20;
  font-weight: 700;
}

#order-status-update-loader div img {
  margin: 0 auto;
}

#order-status-update-loader-overlay {
  display: none;
  position: absolute;
  padding: 0px;
  margin: 0px;
  top: 0px;
  left: 0px;
  background-color: #d4d2d2;
  opacity: 0.2;
  width: 100%;
}

.zone-savings-msg {
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid #d4d2d2;
  color: #636466;
  font-weight: 700;
}

.zone-savings-msg,
#checkout-progress-wrapper .block-title {
  text-align: center;
  background: #f5f5f5;
}

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

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

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

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

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

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

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

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

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

/* ============================================ *
 * Review - Customer
 * ============================================ */
#customer-reviews {
  width: auto;
  float: none;
}
#customer-reviews .review-heading {
  border-top: 1px solid #b1b1b1;
  border-bottom: 1px solid #b1b1b1;
  padding: 10px 0 5px;
}
#customer-reviews .review-heading:after {
  content: '';
  display: table;
  clear: both;
}
#customer-reviews .review-heading h2 {
  float: left;
  display: block;
}
#customer-reviews .review-heading .pager {
  clear: none;
  float: right;
  width: auto;
}
#customer-reviews .review-heading .pager .count-container .limiter {
  margin-bottom: 0;
}
#customer-reviews .review-heading .pager .count-container .limiter label {
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
}
#customer-reviews .review-heading .pager .amount {
  display: none;
}
#customer-reviews h2 {
  color: #0207fa;
  font-size: 12px;
  text-transform: uppercase;
}
#customer-reviews h2 span {
  color: #231f20;
}
#customer-reviews h3 {
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
}
#customer-reviews h3 span {
  color: #0207fa;
}
#customer-reviews .fieldset {
  padding-top: 25px;
  width: 470px;
}
#customer-reviews .fieldset h4 {
  border-bottom: 1px solid #b1b1b1;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  padding-bottom: 5px;
  text-transform: uppercase;
}
#customer-reviews .fieldset h4 em {
  display: none;
}
#customer-reviews .fieldset .form-list {
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  margin: 10px 0;
  text-transform: uppercase;
  width: 470px;
}
#customer-reviews .fieldset .form-list .inline-label:after {
  content: '';
  display: table;
  clear: both;
}
#customer-reviews .fieldset .form-list label {
  font-size: 12px;
  font-weight: normal;
}
#customer-reviews .fieldset .form-list textarea {
  border: 1px solid #b1b1b1;
  border-radius: 0;
  min-width: 100%;
  -webkit-appearance: none;
}
#customer-reviews .fieldset .form-list input {
  border: 1px solid #b1b1b1;
  border-radius: 0;
}
#customer-reviews .fieldset .form-list input[type="text"] {
  width: 100%;
}
#customer-reviews .buttons-set {
  border: none;
  margin: 0;
  width: 470px;
}
#customer-reviews dl {
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 10px;
}
#customer-reviews dl dt {
  margin: 10px 0;
  text-transform: uppercase;
}
#customer-reviews dl dd {
  font-size: 14px;
  margin: 10px 0;
}
#customer-reviews dl dd .ratings-table {
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  width: 100%;
}
#customer-reviews dl dd .ratings-table tr {
  margin-right: 15px;
}
#customer-reviews dl dd .ratings-table .review-label {
  width: 300px;
  max-width: 70%;
}
#customer-reviews dl dd table {
  margin: 15px 0;
}
#customer-reviews dl dd .review-meta {
  color: #0207fa;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase;
}

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

/* ============================================ *
 * Ratings - Global
 * ============================================ */
.ratings-table {
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
.ratings-table th {
  padding-right: 10px;
}
.ratings-table .rating-box {
  background-position: 0 -615px;
  background-repeat: repeat-x;
  height: 13px;
  overflow: hidden;
  text-indent: -9999px;
  width: 65px;
}
.ratings-table .rating-box .rating {
  background-position: 0 -600px;
  background-repeat: repeat-x;
  float: left;
  height: 13px;
  text-indent: -9999px;
}

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

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

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

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

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

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

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

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

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

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

/* ============================================ *
 * Checkout - Mini cart
 * ============================================ */
.header-minicart {
  display: inline-block;
}
.header-minicart .minicart-message {
  display: block;
  padding: 10px;
}
.header-minicart .empty {
  padding: 10px;
  text-align: center;
  border: 1px solid #ededed;
}
.header-minicart .minicart-wrapper {
  clear: both;
  position: relative;
}
.header-minicart .minicart-wrapper:before, .header-minicart .minicart-wrapper:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.header-minicart .minicart-wrapper:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
.header-minicart .minicart-wrapper:after {
  background-image: url("https://www.deserres.ca/skin/frontend/deserres/default/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.header-minicart .minicart-wrapper.loading {
  position: relative;
}
.header-minicart .minicart-wrapper.loading:before, .header-minicart .minicart-wrapper.loading:after {
  display: block;
}
.header-minicart .block-cart {
  display: none;
  background: #FFFFFF;
}
.header-minicart .block-subtitle {
  background-color: #231f20;
  color: #FFFFFF;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  padding: 14px;
  text-align: center;
  margin-bottom: 0px;
}
.header-minicart .block-subtitle .close {
  width: 40px;
  float: right;
  display: block;
  color: #231f20;
  text-decoration: none;
  font-weight: normal;
  font-size: 30px;
  position: absolute;
  top: -8px;
  right: -3px;
}
.header-minicart .block-subtitle .item-count {
  color: #d4d2d2;
  font-size: 12px;
  display: block;
  font-weight: 400;
}
.header-minicart .mini-products-list li {
  padding: 10px 16px;
  border: 1px solid #ededed;
  border-width: 0 1px 1px;
  position: relative;
  margin-bottom: 0;
}
.header-minicart .mini-products-list li .product-image {
  border: 0;
  float: none;
}
.header-minicart .mini-products-list li .product-image,
.header-minicart .mini-products-list li .product-details {
  display: inline-block;
  vertical-align: middle;
}
.header-minicart .mini-products-list li .product-details {
  position: relative;
  margin: 0;
  width: 73%;
  padding-left: 7px;
}
.header-minicart .quantity {
  font-size: 12px;
}
.header-minicart .info-wrapper {
  float: right;
  text-align: right;
  width: 30%;
  display: block;
  font-size: 12px;
}
.header-minicart .info-wrapper th {
  display: none;
}
.header-minicart .info-wrapper td {
  color: #231f20;
  clear: right;
  font-weight: 700;
}
.header-minicart .info-wrapper tr {
  display: block;
}
.header-minicart .info-wrapper tbody {
  float: right;
}
.header-minicart .info-wrapper .qty-wrapper td {
  height: 33px;
  line-height: 33px;
}
.header-minicart .info-wrapper .qty {
  padding-left: 4px;
  padding-right: 4px;
  margin-right: 2px;
  width: 3.2em;
  text-align: center;
  height: 30px;
}
.header-minicart .info-wrapper .quantity-button {
  opacity: 0;
  transition: opacity 100ms;
}
.header-minicart .info-wrapper .quantity-button[disabled] {
  cursor: default;
}
.header-minicart .info-wrapper .quantity-button.visible {
  opacity: 1;
}
.header-minicart .block-content {
  margin-top: 0;
}
.header-minicart .subtotal {
  background-color: #f5f5f5;
  text-align: center;
  padding: 15px;
}
.header-minicart .subtotal .label,
.header-minicart .subtotal .price {
  font-weight: 700;
  font-size: 16px;
}
.header-minicart .subtotal .price {
  color: #231f20;
}
.header-minicart .subtotal .free-shipping {
  display: block;
  color: #636466;
  line-height: 1;
  font-size: 12px;
  margin-top: 2px;
}
.header-minicart .subtotal .free-shipping span {
  font-weight: 700;
}
.header-minicart .minicart-actions {
  margin-top: 0px;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.header-minicart .minicart-actions .checkout-button {
  width: 100%;
  background: #e52f32;
  padding: 20px;
}
.header-minicart .minicart-actions .paypal-logo .paypal-or {
  line-height: 1.6;
}
.header-minicart #minicart-error-message {
  text-align: center;
  color: red;
  display: none;
}
.header-minicart #minicart-success-message {
  text-align: center;
  color: green;
  display: none;
}
.header-minicart .jcarousel-control-prev,
.header-minicart .jcarousel-control-next {
  display: none;
}

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

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

.header-minicart a.skip-cart.skip-active {
  padding-bottom: 11px;
  padding-bottom: 29px;
}
.header-minicart a.skip-cart.skip-active:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 6px solid #231f20;
  border-top: none;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}

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

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

/* solR*/
.solrsearch-index-index.two-cols-style-active .col-left {
  float: left;
  float: left;
  width: 25%;
  padding-left: 0;
  clear: left;
}
.solrsearch-index-index.two-cols-style-active .center-col {
  float: right;
  padding-right: 0;
  width: 72.5%;
}
.solrsearch-index-index.one-col-style-active .center-col {
  width: 100%;
}
.solrsearch-index-index.one-col-style-active .col-left {
  width: 0;
}
.solrsearch-index-index #solr_search_result_page_container ul.header-result {
  border-bottom: solid #e5e5e5 1px;
  font-size: 0;
  position: relative;
  z-index: 5;
  margin-bottom: 22px;
}
.solrsearch-index-index #solr_search_result_page_container ul.header-result > span {
  display: none;
}
.solrsearch-index-index #solr_search_result_page_container ul.header-result li {
  display: inline-block;
  position: relative;
  z-index: 10;
  top: 1px;
}
.solrsearch-index-index #solr_search_result_page_container ul.header-result li a {
  padding: 15px 32px;
  font-size: 14px;
  font-weight: 500;
  color: #231f20;
  text-transform: uppercase;
  display: inline-block;
}
.solrsearch-index-index #solr_search_result_page_container ul.header-result li a:hover {
  text-decoration: none;
}
.solrsearch-index-index #solr_search_result_page_container ul.header-result li.active {
  border: solid #e5e5e5 1px;
  border-top: solid 3px #e52f32;
  border-bottom: solid #FFFFFF 1px;
}
.solrsearch-index-index #solr_search_result_page_container #s_content {
  padding-right: 35px;
}
.solrsearch-index-index #solr_search_result_page_container #s_content li {
  border-bottom: solid 1px #e5e5e5;
  padding: 20px 0 25px;
}
.solrsearch-index-index #solr_search_result_page_container #s_content li div {
  display: block;
}
.solrsearch-index-index #solr_search_result_page_container #s_content .content_title {
  color: #000000;
  font-weight: 600;
  font-size: 16px;
}
.solrsearch-index-index #solr_search_result_page_container #s_content .content_description {
  color: #000000;
  font-weight: 400;
  font-size: 16px;
  margin: 20px 0 20px;
}
.solrsearch-index-index #solr_search_result_page_container #s_content .content_link {
  color: #e82d2d;
  font-weight: 400;
  font-size: 13px;
}
.solrsearch-index-index #solr_search_result_page_container .category-products .products-grid > li.item {
  width: calc( (100% / 3) - 8px );
}
.solrsearch-index-index #solr_search_result_page_container .category-products .products-grid > li.item:nth-child(4n + 1) {
  clear: none;
}
.solrsearch-index-index #solr_search_result_page_container .category-products .products-grid > li.item:nth-child(4n) {
  margin-right: 1.52838%;
}
.solrsearch-index-index #solr_search_result_page_container .category-products .products-grid > li.item:nth-child(3n) {
  margin-right: 0;
}
.solrsearch-index-index #solr_search_result_page_container .page-title #trigger-feedback {
  display: none;
}
.solrsearch-index-index #solr_search_result_page_container .page-title::after {
  display: table;
  content: "";
  clear: both;
}
.solrsearch-index-index #solr_search_result_page_container .answer-no-result {
  color: #231f20;
  font-size: 16px;
  text-align: center;
  max-width: 90%;
  padding: 0 15px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.solrsearch-index-index #solr_search_result_page_container .footer-no-result {
  font-size: 0;
  max-width: 992px;
  width: 100%;
  margin: 0 auto;
}
.solrsearch-index-index #solr_search_result_page_container .footer-no-result::after {
  display: table;
  content: "";
  clear: both;
}
.solrsearch-index-index #solr_search_result_page_container .footer-no-result > div {
  float: left;
  width: calc( 100% / 2 - 15px);
  margin: 0 30px 40px 0;
  position: relative;
  max-width: 480px;
}
.solrsearch-index-index #solr_search_result_page_container .footer-no-result > div img {
  height: auto;
  max-width: 480px;
  width: 100%;
}
.solrsearch-index-index #solr_search_result_page_container .footer-no-result > div img + h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  width: 100%;
}
.solrsearch-index-index #solr_search_result_page_container .footer-no-result > div img + h2 a {
  color: #fff;
}
.solrsearch-index-index #solr_search_result_page_container .footer-no-result > div img + h2 a:hover {
  text-decoration: none;
}
.solrsearch-index-index #solr_search_result_page_container .footer-no-result > div:nth-child(even) {
  margin-right: 0;
}
.solrsearch-index-index #solr_search_result_page_container .footer-no-result > div:nth-child(even) img {
  margin-left: auto;
  margin-right: 0;
}
.solrsearch-index-index #solr_search_result_page_container .footer-no-result > div:nth-child(3), .solrsearch-index-index #solr_search_result_page_container .footer-no-result > div:nth-child(4) {
  border: solid #000 1px;
  height: 200px;
}
.solrsearch-index-index #solr_search_result_page_container .footer-no-result > div:nth-child(3) > div, .solrsearch-index-index #solr_search_result_page_container .footer-no-result > div:nth-child(4) > div {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
}
.solrsearch-index-index #solr_search_result_page_container .footer-no-result > div:nth-child(3) p, .solrsearch-index-index #solr_search_result_page_container .footer-no-result > div:nth-child(4) p {
  font-size: 18px;
  color: #231f20;
  text-align: center;
}
.solrsearch-index-index #solr_search_result_page_container .footer-no-result > div:nth-child(3) h2, .solrsearch-index-index #solr_search_result_page_container .footer-no-result > div:nth-child(4) h2 {
  font-size: 24px;
  font-weight: 600;
  color: #231f20;
  text-align: center;
  margin: 18px auto 15px;
}
.solrsearch-index-index #solr_search_result_page_container .footer-no-result > div:nth-child(3) p:last-child, .solrsearch-index-index #solr_search_result_page_container .footer-no-result > div:nth-child(4) p:last-child {
  font-size: 14px;
  text-align: center;
}
.solrsearch-index-index #solr_search_result_page_container .footer-no-result > div:nth-child(4) > div {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
}
.solrsearch-index-index #solr_search_result_page_container .footer-no-result > div:nth-child(4) > div img, .solrsearch-index-index #solr_search_result_page_container .footer-no-result > div:nth-child(4) > div h2 {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.solrsearch-index-index #solr_search_result_page_container .footer-no-result > div:nth-child(4) > div img {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  max-width: 100px;
  height: 85px;
  padding-left: 30px;
}
.solrsearch-index-index #solr_search_result_page_container .footer-no-result > div:nth-child(4) > div a {
  color: #000;
}
.solrsearch-index-index #solr_search_result_page_container .footer-no-result > div:nth-child(4) > div a:hover {
  text-decoration: none;
}

/* ============================================ *
 * Account - Reviews
 * ============================================ */
.product-review .product-img-box p.label {
  border-bottom: 1px solid #b1b1b1;
  font-size: 16px;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin-top: 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.product-review .product-img-box .rating-box {
  margin: 15px 0;
}
.product-review .product-details h2 {
  border-bottom: 1px solid #b1b1b1;
  color: #3399CC;
  font-size: 16px;
  font-weight: 600;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  padding-bottom: 10px;
}
.product-review .ratings-table {
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.product-review .ratings-table th {
  padding-right: 10px;
}
.product-review .ratings-table tr {
  float: left;
  font-size: 12px;
  margin-right: 10px;
  text-transform: uppercase;
  float: none;
}
.product-review .ratings-description dt {
  border-bottom: 1px solid #b1b1b1;
  font-size: 16px;
  font-weight: 400;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin-top: 20px;
  padding: 10px 0;
  text-transform: uppercase;
}
.product-review .ratings-description dd {
  color: #737373;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
}

/* ============================================ *
 * CMS Pages
 * ============================================ */
.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;
}
.cms-page-view .std img,
.cms-no-route .std img {
  max-width: 100%;
}
.cms-page-view .std a.button,
.cms-no-route .std a.button {
  color: #f5f5f5;
  text-decoration: none;
}
.cms-page-view .std a.text-link-secondary,
.cms-no-route .std a.text-link-secondary {
  color: #848a9c;
  font-size: 16px;
  text-decoration: underline;
}
.cms-page-view .std a.text-link-secondary:hover,
.cms-no-route .std a.text-link-secondary:hover {
  text-decoration: none;
}
.cms-page-view .std a.block-link,
.cms-no-route .std a.block-link {
  display: block;
}
.cms-page-view .std p,
.cms-no-route .std p {
  color: #636466;
  font-size: 16px;
}
.cms-page-view .std p a,
.cms-no-route .std p a {
  color: #231f20;
  text-decoration: underline;
}
.cms-page-view .std p a.button,
.cms-no-route .std p a.button {
  color: #f5f5f5;
  text-decoration: none;
}
.cms-page-view .std h1,
.cms-no-route .std h1 {
  color: #231f20;
}
.cms-page-view .std h2,
.cms-no-route .std h2 {
  color: #231f20;
}
.cms-page-view .std li,
.cms-no-route .std li {
  color: #636466;
  font-size: 16px;
}
.cms-page-view .std dd ol li,
.cms-no-route .std dd ol li {
  font-size: 12px;
}
.cms-page-view .col-left:after,
.cms-no-route .col-left:after {
  content: '';
  display: table;
  clear: both;
}

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

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

#accordion .toggle-tabs {
  display: none;
}
#accordion dl > dt {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  margin-bottom: 0px;
  padding: 11px 0;
  position: relative;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  display: block;
}
#accordion dl > dt span {
  position: relative;
}
#accordion dl > dt:hover {
  background-color: #ededed;
}
#accordion dl > dd:last-child {
  border-width: 0 1px 1px 1px;
}
#accordion li {
  position: relative;
  overflow: hidden;
}
#accordion li .plusimage h2 {
  margin-right: 10px;
}

.page-sitemap .links {
  display: block;
  text-align: right;
  margin: 0 20px 0 0;
}
.page-sitemap .links a {
  position: relative;
}
.page-sitemap .pages {
  position: static;
  display: block;
}
.page-sitemap .pager {
  width: 100%;
}
.page-sitemap .pager .amount {
  margin-left: 0;
}
.page-sitemap .sitemap {
  clear: both;
  margin: 15px 0;
  font-size: 12px;
}
.page-sitemap .sitemap li {
  margin: 3px 0;
}

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

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

.cms-page-view .fieldset p.required {
  color: #e52f32;
  font-size: 12px;
}

.cms-page-view .select-wrapper select {
  height: 48px;
  background: #eeeeee;
  border-radius: 0;
  border: 1px solid #eeeeee;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-color: #d4d2d2;
  padding: 0 34px 0 14px;
  width: 100%;
  margin-top: 0;
}

.cms-open-gallery iframe {
  border: 0;
  max-width: 100%;
}

#pageContent {
  width: 1073px;
}

.cms-zone-account-create .buttons-set,
.cms-creation-compte-zone .buttons-set {
  margin-bottom: 30px;
}

/* ============================================ *
 * Pricing Conditions
 * ============================================ */
.price-box .minimal-price-link .label {
  color: #ff3333;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.customer-account-create .scaffold-form .captcha-input-container label:first-child {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

#recurring_start_date_trig {
  display: inline;
}

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

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

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

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

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

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

.widget {
  clear: both;
}

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

.col2-left-layout .col-main .widget,
.col2-right-layout .col-main .widget,
.col3-layout .col-main .widget {
  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  /* Set column config */
  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  /* Set column config */
}
.col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd),
.col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd),
.col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd) {
  clear: none;
}
.col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1),
.col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1),
.col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1) {
  clear: none;
}
.col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
.col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n),
.col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
.col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n),
.col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
.col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n) {
  margin-right: 1.5625%;
}
.col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li,
.col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li,
.col3-layout .col-main .widget .products-grid--max-4-col-widget > li {
  margin-right: 1.5625%;
}
.col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li,
.col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li,
.col3-layout .col-main .widget .products-grid--max-4-col-widget > li {
  width: 23.82813%;
  margin-right: 1.5625%;
}
.col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1),
.col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1),
.col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1) {
  clear: left;
}
.col2-left-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n),
.col2-right-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n),
.col3-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n) {
  margin-right: 0;
}
.col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd),
.col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd),
.col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd) {
  clear: none;
}
.col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1),
.col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1),
.col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1) {
  clear: none;
}
.col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
.col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n),
.col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
.col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n),
.col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
.col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n) {
  margin-right: 1.5625%;
}
.col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li,
.col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li,
.col3-layout .col-main .widget .products-grid--max-5-col-widget > li {
  margin-right: 1.5625%;
}
.col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li,
.col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li,
.col3-layout .col-main .widget .products-grid--max-5-col-widget > li {
  width: 18.75%;
  margin-right: 1.5625%;
}
.col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1),
.col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1),
.col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1) {
  clear: left;
}
.col2-left-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n),
.col2-right-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n),
.col3-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n) {
  margin-right: 0;
}

.col1-layout .col-main .widget {
  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  /* Set column config */
  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  /* Set column config */
}
.col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(odd) {
  clear: none;
}
.col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n+1) {
  clear: none;
}
.col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(even),
.col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(3n) {
  margin-right: 1.5625%;
}
.col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
  margin-right: 1.5625%;
}
.col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
  width: 23.82813%;
  margin-right: 1.5625%;
}
.col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n+1) {
  clear: left;
}
.col1-layout .col-main .widget .products-grid--max-4-col-widget > li:nth-child(4n) {
  margin-right: 0;
}
.col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(odd) {
  clear: none;
}
.col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n+1) {
  clear: none;
}
.col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(even),
.col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(3n) {
  margin-right: 1.5625%;
}
.col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
  margin-right: 1.5625%;
}
.col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
  width: 18.75%;
  margin-right: 1.5625%;
}
.col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n+1) {
  clear: left;
}
.col1-layout .col-main .widget .products-grid--max-5-col-widget > li:nth-child(5n) {
  margin-right: 0;
}

/* ============================================ *
 * Checkout - Multiple Addresses
 * ============================================ */
body[class*="checkout-multishipping-"] .checkout-progress {
  width: 100%;
  float: left;
  margin-bottom: 25px;
}
body[class*="checkout-multishipping-"] .checkout-progress > li {
  float: left;
  width: 20%;
  text-align: center;
  padding: 8px 1% 6px;
  background: #F4F4F4;
  text-transform: uppercase;
  border-bottom: 1px solid #b1b1b1;
  border-right: 1px solid #b1b1b1;
  margin-bottom: 10px;
  font-family: "SharpGrotesk-Book-22", "Helvetica Neue", Verdana, Arial, sans-serif;
}
body[class*="checkout-multishipping-"] .checkout-progress > li.active {
  background-color: #e52f32;
}
body[class*="checkout-multishipping-"] .checkout-progress > li.last {
  border-right: 0px;
}
body[class*="checkout-multishipping-"] .page-title {
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
body[class*="checkout-multishipping-"] .page-title h1 {
  border: 0 none;
  float: left;
  margin-top: 2px;
  margin-right: 2%;
}
body[class*="checkout-multishipping-"] .page-title .button {
  float: right;
}
body[class*="checkout-multishipping-"] .multiple-checkout > h2 {
  text-transform: none;
  font-size: 17px;
  margin-bottom: 15px;
}
body[class*="checkout-multishipping-"] .messages {
  float: left;
  width: 100%;
}
body[class*="checkout-multishipping-"] .col-2.col-wide {
  width: 66%;
}
body[class*="checkout-multishipping-"] .col-1.col-narrow {
  width: 30%;
}
body[class*="checkout-multishipping-"] .actions {
  margin-bottom: 10px;
}
body[class*="checkout-multishipping-"] .grand-total {
  text-align: right;
  font-size: 16px;
  font-weight: bold;
}
body[class*="checkout-multishipping-"] #checkout-review-submit {
  float: right;
}
body[class*="checkout-multishipping-"] #review-buttons-container {
  float: right;
  text-align: right;
}

.checkout-multishipping-addresses .btn-remove2 {
  text-indent: -5555px;
  display: block;
  width: 22px;
  height: 22px;
}

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

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

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

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

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

.loyalty-register .main-container {
  max-width: none;
  padding: 0;
}
.loyalty-register .col-main .wrapper-outer {
  background-color: #f5f5f5;
}
.loyalty-register .col-main .wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 32px;
  background-color: transparent;
}
.loyalty-register .col-main h1 {
  max-width: 1084px;
  margin: 48px auto 32px;
  font-size: 36px;
  padding: 0 32px;
}
.loyalty-register .col-main .section-title {
  margin: 24px 0 20px;
  display: flex;
  font-size: 20px;
  align-items: center;
}
.loyalty-register .col-main .section-title-number {
  border-radius: 50%;
  color: #fff;
  background-color: #e52f32;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.loyalty-register .col-main .section-content {
  background-color: #fff;
}
.loyalty-register .col-main .section-subscribe {
  margin-bottom: 50px;
}
.loyalty-register .col-main .section-subscribe .section-content {
  padding: 52px;
}
.loyalty-register .col-main .section-subscribe .section-content .input-radio + .input-radio {
  margin-top: 18px;
}
.loyalty-register .col-main .section-subscribe .section-content .input {
  display: flex;
  border: 1px solid #636466;
}
.loyalty-register .col-main .section-subscribe .section-content .input .input-wrapper,
.loyalty-register .col-main .section-subscribe .section-content .input label {
  padding: 24px;
}
.loyalty-register .col-main .section-subscribe .section-content .input .input-wrapper {
  border-right: 2px solid #b1b1b1;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loyalty-register .col-main .section-subscribe .section-content .input label {
  font-weight: 400;
  font-size: 16px;
  color: #636466;
}
.loyalty-register .col-main .section-subscribe .section-content .input-cardnumber {
  border: none;
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}
.loyalty-register .col-main .section-subscribe .section-content .input-cardnumber--hidden {
  display: none;
}
.loyalty-register .col-main .section-subscribe .section-content .input-cardnumber label {
  padding: 0;
  margin-bottom: 4px;
}
.loyalty-register .col-main .section-subscribe .section-content .input-cardnumber input {
  padding: 8px 12px;
}
.loyalty-register .col-main .section-subscribe .section-content .input-terms {
  position: relative;
  margin-top: 20px;
  background-color: #eeeeee;
  border: none;
}
.loyalty-register .col-main .section-subscribe .section-content .input-terms .input-wrapper {
  border-right: 2px solid #fff;
}
.loyalty-register .col-main .section-subscribe .section-content .input-terms strong {
  color: #000;
}
.loyalty-register .col-main .section-subscribe .section-content .input-terms a {
  text-decoration: underline;
}
.loyalty-register .col-main .section-subscribe .section-content .input-terms .validation-advice {
  position: absolute;
  bottom: -24px;
  left: 0;
}
.loyalty-register .col-main .section-account {
  border: 1px solid #636466;
  margin-bottom: 100px;
}
.loyalty-register .col-main .section-account .section-tabs {
  display: flex;
}
.loyalty-register .col-main .section-account .section-tabs li {
  font-weight: 600;
  font-size: 20px;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 16px;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
}
.loyalty-register .col-main .section-account .section-tabs li:not(.active) {
  background-color: #f7f7f7;
  border: 2px solid #b1b1b1;
  border-top: none;
}
.loyalty-register .col-main .section-account .section-tabs li:first-of-type:not(.active) {
  border-left: none;
}
.loyalty-register .col-main .section-account .section-tabs li:last-of-type:not(.active) {
  border-right: none;
}
.loyalty-register .col-main .section-account .section-form:not(.active) {
  display: none;
}
.loyalty-register .col-main .section-account .section-form form {
  max-width: 460px;
  margin: 0 auto;
}
.loyalty-register .col-main .section-account .section-form form h3.form-title {
  text-transform: uppercase;
  font-size: 18px;
  margin: 42px 0;
  text-align: center;
}
.loyalty-register .col-main .section-account .section-form form label {
  color: #636466;
  font-size: 13px;
  margin-bottom: 6px;
}
.loyalty-register .col-main .section-account .section-form form input {
  margin-bottom: 6px;
}
.loyalty-register .col-main .section-account .section-form form .f-left {
  display: inline-block;
  text-decoration: underline;
  margin-bottom: 6px;
}
.loyalty-register .col-main .section-account .section-form form .buttons-set {
  border-top: none;
  text-align: left;
  margin-bottom: 80px;
}
.loyalty-register .col-main .section-account .section-form form .buttons-set button {
  float: none;
  margin-left: 0;
}

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

@font-face {
  font-family: "SharpGrotesk-Book-18";
  src: url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook18.eot");
  src: url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook18.eot?#iefix") format("embedded-opentype"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook18.otf") format("opentype"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook18.svg") format("svg"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook14.ttf") format("truetype"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook18.woff") format("woff"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook18.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SharpGrotesk-Book-20";
  src: url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook20.eot");
  src: url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook20.eot?#iefix") format("embedded-opentype"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook20.otf") format("opentype"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook20.svg") format("svg"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook14.ttf") format("truetype"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook20.woff") format("woff"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook20.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SharpGrotesk-Book-22";
  src: url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook22.eot");
  src: url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook22.eot?#iefix") format("embedded-opentype"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook22.otf") format("opentype"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook22.svg") format("svg"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook22.ttf") format("truetype"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook22.woff") format("woff"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook22.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "SharpGrotesk-Book-24";
  src: url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook24.eot");
  src: url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook24.eot?#iefix") format("embedded-opentype"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook24.otf") format("opentype"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook24.svg") format("svg"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook24.ttf") format("truetype"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook24.woff") format("woff"), url("https://www.deserres.ca/skin/frontend/deserres/default/fonts/SharpGrotesk/Book/SharpGroteskBook24.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
#narrow-by-list-0,
h2.product-name,
h3.product-name,
h4.product-name,
h5.product-name,
p.product-name,
.short-description,
.footer-container ul.nav-primary,
#product-details,
.block.block-subscribe .block-title,
.block.block-subscribe h6,
.footer-top-container ul li,
.products-grid.category-grid h2.category-name {
  font-family: "SharpGrotesk-Book-20";
}

body.attributenav-index-index ul li,
body.cms-index-noroute ul li {
  font-family: "SharpGrotesk-Book-20";
}

body.demac-mlilite-index-index #locator_search {
  font-family: "SharpGrotesk-Book-20";
}
body.demac-mlilite-index-index .store-list table tr td {
  font-family: "SharpGrotesk-Book-20";
}

body.cms-page-view p,
body.cms-page-view table tr td,
body.cms-page-view .rate,
body.cms-page-view li,
body.cms-page-view label,
body.cms-page-view input,
body.cms-page-view select {
  font-family: "SharpGrotesk-Book-20";
}

body.customer-account-create p,
body.customer-account-create label,
body.customer-account-create input {
  font-family: "SharpGrotesk-Book-20";
}

.cart .crosssell {
  float: left;
  clear: left;
  padding: 50px 0 0;
  margin: 0;
  position: relative;
}
.cart .crosssell .products-grid {
  margin: 0 -10px;
  padding: 0;
}
.cart .crosssell:after {
  display: block;
  width: 100%;
  content: '';
  position: relative;
  height: 0;
  clear: both;
}
.cart .crosssell h2 {
  padding: 0 0 10px;
}
.cart .crosssell .item {
  padding: 0 10px;
  margin: 0 0 20px !important;
  clear: none !important;
}
.cart .crosssell .item .product-info {
  padding: 0 !important;
  min-height: auto !important;
}
.cart .crosssell .item .product-info .product-image {
  float: none;
}
.cart .crosssell .item .product-info .product-name {
  overflow: hidden;
  padding: -15px !important;
}
.cart .crosssell .item .product-info .price-box {
  padding: 0 15px;
}
.cart .crosssell .item .product-info ._details {
  position: relative;
  padding: 10px 0 0;
  width: 100%;
  max-width: calc(100% - 30px);
  margin: 0 auto;
}
.cart .crosssell .item .product-info ._details a {
  display: block;
  padding: 10px 5px;
  background: #fff;
  color: #e52f32;
  text-transform: uppercase;
  text-align: center;
  line-height: 100%;
}
.cart .crosssell .item .product-info ._details a span {
  position: relative;
}
.cart .crosssell .item .product-info ._details a span:after {
  font-size: 18px;
  font-family: "icomoon";
  content: "";
  margin-top: -4px;
  padding-left: 10px;
  display: inline-block;
  vertical-align: middle;
}
.cart .crosssell .item .product-info .actions {
  position: relative;
  padding: 10px 0 15px;
  min-height: 30px;
}
.cart .crosssell .item .product-info .actions .btn-cart {
  display: block;
  padding: 12px 5px;
  margin: 0 auto;
  width: 100%;
  max-width: calc(100% - 30px);
  line-height: 100%;
}

@media only screen and (max-width: 599px) {
  .cart .cart-forms {
    clear: none;
    float: none;
  }
  .cart .crosssell {
    width: 100%;
  }
  .cart .crosssell .item {
    width: 50% !important;
  }
  .cart .crosssell .item .product-info .product-name {
    height: 33px;
  }
}
@media only screen and (min-width: 600px) {
  .cart .cart-forms {
    clear: none;
    float: left;
  }
  .cart .crosssell {
    width: 100%;
  }
  .cart .crosssell .item {
    width: 25% !important;
  }
  .cart .crosssell .item .product-info .product-name {
    height: 40px;
  }
}
@media only screen and (min-width: 980px) {
  .cart .cart-forms {
    clear: right;
    float: right;
  }
  .cart .crosssell {
    width: 67%;
  }
}
._category_block_campagne {
  position: relative;
  overflow: hidden;
}
._category_block_campagne ._inner {
  position: relative;
  margin: 0 -10px;
}
._category_block_campagne ._inner:after {
  position: relative;
  height: 0;
  width: 100%;
  clear: both;
  content: '';
  display: block;
}
._category_block_campagne ._inner ._item {
  position: relative;
  padding: 0 10px;
  float: left;
}
._category_block_campagne ._inner ._item a {
  display: block;
  color: transparent;
  margin: 0;
  padding: 0;
  font-size: 0;
  position: relative;
}
._category_block_campagne ._inner ._item a:before {
  position: relative;
  content: '';
  display: block;
  padding-top: 100%;
  width: 100%;
}
._category_block_campagne ._inner ._item a img {
  position: absolute;
  display: block;
  width: 100%;
  opacity: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
._category_block_campagne ._inner ._item a img + img {
  position: absolute;
  opacity: 0;
}
._category_block_campagne ._inner ._item a:hover img {
  opacity: 0;
}
._category_block_campagne ._inner ._item a:hover img:last-child {
  opacity: 1;
}
._category_block_campagne ._inner._col_4 {
  margin: 0 -7px;
}
._category_block_campagne ._inner._col_4 ._item {
  padding: 0 7px;
}

@media only screen and (max-width: 767px) {
  ._category_block_campagne {
    margin: 0;
    padding: 0;
  }
  ._category_block_campagne ._inner {
    padding: 20px 0 0;
  }
  ._category_block_campagne ._inner ._item {
    width: 50%;
    margin: 0 0 20px;
  }
  ._category_block_campagne ._inner._col_3 ._item {
    width: 100%;
    margin: 0 auto 20px;
    max-width: 400px;
    float: none !important;
  }
  ._category_block_campagne ._inner._col_4 {
    padding: 20px 0 6px;
  }
  ._category_block_campagne ._inner._col_4 ._item {
    margin: 0 0 14px;
  }
}
@media only screen and (min-width: 768px) {
  ._category_block_campagne {
    margin: 0 auto;
    max-width: 1084px;
    padding: 0 32px;
  }
  ._category_block_campagne ._inner {
    padding: 20px 0;
  }
  ._category_block_campagne ._inner ._item {
    width: 25%;
  }
  ._category_block_campagne ._inner._col_3 ._item {
    width: 33.333%;
  }
  ._category_block_campagne._home {
    max-width: 1440px;
    padding: 0 24px;
  }
}
.main-container._zone_contenu {
  position: relative;
  margin: 0 auto;
  padding: 0;
  max-width: 1440px;
  overflow: hidden;
}

.main._zone_contenu {
  position: relative;
  margin: 0;
  padding: 0;
  max-width: 100%;
}
.main._zone_contenu .content-wrapper {
  position: relative;
}
.main._zone_contenu .content-wrapper:after {
  position: relative;
  height: 0;
  width: 100%;
  clear: both;
  content: '';
  display: block;
}
.main._zone_contenu .content-wrapper .col-main {
  width: 100%;
  margin: 0;
  padding: 0;
  float: none;
}
.main._zone_contenu .content-wrapper .col-main .item_block {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 0 40px;
}
.main._zone_contenu .content-wrapper .col-main .item_block:after {
  position: relative;
  height: 0;
  width: 100%;
  clear: both;
  content: '';
  display: block;
}
.main._zone_contenu .content-wrapper .col-main .item_block ._item {
  position: relative;
}
.main._zone_contenu .content-wrapper .col-main .item_block ._item a {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 0;
  bottom: 0;
  display: block;
  z-index: 2;
  color: #231f20;
}
.main._zone_contenu .content-wrapper .col-main .item_block ._item span {
  display: block;
  text-align: center;
  color: #231f20;
}
.main._zone_contenu .content-wrapper .col-main .item_block ._item span._inner {
  position: absolute;
  left: 50%;
  top: 50%;
  display: table;
  z-index: 2;
  max-width: 90%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.main._zone_contenu .content-wrapper .col-main .item_block ._item span._inner span {
  margin: 10px 0;
}
.main._zone_contenu .content-wrapper .col-main .item_block ._item span._inner span.p {
  text-align: center;
  font-size: 14px;
}
.main._zone_contenu .content-wrapper .col-main .item_block ._item span._inner ._link {
  color: #231f20;
  margin: 0 auto;
  width: auto;
  padding: 0;
  display: inline-grid;
}
.main._zone_contenu .content-wrapper .col-main .item_block ._item span._inner ._link span {
  white-space: nowrap;
  background: #fff;
  padding: 10px;
  margin: 15px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  color: #231f20 !important;
}
.main._zone_contenu .content-wrapper .col-main .item_block ._item span._inner._white {
  color: #fff;
}
.main._zone_contenu .content-wrapper .col-main .item_block ._item span._inner._white span {
  color: #fff;
}
.main._zone_contenu .content-wrapper .col-main .item_block ._item img {
  width: 100%;
  position: relative;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.main._zone_contenu .content-wrapper .col-main .item_block ._item img + img {
  position: absolute;
  top: 0;
  left: 10px;
  opacity: 0;
  width: calc(100% - 20px);
  max-width: none;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.main._zone_contenu .content-wrapper .col-main .item_block ._item:hover img {
  opacity: 0;
}
.main._zone_contenu .content-wrapper .col-main .item_block ._item:hover img:last-child {
  opacity: 1;
}
.main._zone_contenu .content-wrapper .col-main .item_block._heading {
  margin: 0 0 30px;
}
.main._zone_contenu .content-wrapper .col-main .item_block._heading h1, .main._zone_contenu .content-wrapper .col-main .item_block._heading h2, .main._zone_contenu .content-wrapper .col-main .item_block._heading h3 {
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 120%;
}
.main._zone_contenu .content-wrapper .col-main .item_block._col_instagram {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.main._zone_contenu .content-wrapper .col-main .item_block._col_instagram .inner {
  padding: 0;
  margin: 0 -10px;
}
.main._zone_contenu .content-wrapper .col-main .item_block._col_instagram .inner ._inner {
  max-width: 80%;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.main._zone_contenu .content-wrapper .col-main .item_block._col_instagram .inner ._inner .h1 {
  pointer-events: none;
  display: block;
  margin: 10px 0;
}
.main._zone_contenu .content-wrapper .col-main .item_block._col_instagram .inner ._inner ._link {
  color: #231f20;
  margin: 0 auto;
  width: auto;
  padding: 0;
  display: inline-grid;
}
.main._zone_contenu .content-wrapper .col-main .item_block._col_instagram .inner ._inner ._link span {
  white-space: nowrap;
  background: #fff;
  padding: 10px;
  margin: 15px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  color: #231f20 !important;
}
.main._zone_contenu .content-wrapper .col-main .item_block._col_instagram .instagram-feed-catalog__content .fs-entry-container div.fs-timeline-entry {
  margin: 0 10px 20px;
}
.main._zone_contenu .content-wrapper .col-main .item_block._col_1 ._item ._inner span {
  color: #636466;
}
.main._zone_contenu .content-wrapper .col-main .item_block._col_1._inner_2 {
  background: #f8f8f8;
  padding: 9%;
}
.main._zone_contenu .content-wrapper .col-main .item_block._col_1._inner_2 ._item {
  max-width: 1084px;
  margin: 0 auto;
}
.main._zone_contenu .content-wrapper .col-main .item_block._col_1._inner_2 ._item ._inner span {
  color: #231f20;
}
.main._zone_contenu .content-wrapper .col-main .item_block._col_1._inner_2 ._item ._inner a {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  display: table;
  z-index: 2;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .main._zone_contenu ._hidden_mobile {
    display: none;
  }
  .main._zone_contenu .visible_mobile {
    display: block;
  }
  .main._zone_contenu .content-wrapper .item_block._col_1 ._item img {
    display: none;
    opacity: 1 !important;
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
  }
  .main._zone_contenu .content-wrapper .item_block._col_1 ._item img:last-child {
    display: block !important;
  }
  .main._zone_contenu .content-wrapper .item_block._col_2 {
    padding: 0;
  }
  .main._zone_contenu .content-wrapper .item_block._col_2 ._item {
    width: 100%;
    padding: 0 10px;
    max-width: 450px;
    margin: 0 auto 20px;
  }
  .main._zone_contenu .content-wrapper .item_block._col_2 ._item img {
    width: 100%;
    position: relative;
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
  }
  .main._zone_contenu .content-wrapper .item_block._col_2 ._item img + img {
    position: absolute;
    top: 0;
    left: 10px;
    opacity: 0;
    width: calc(100% - 20px);
    max-width: none;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
  }
  .main._zone_contenu .content-wrapper .item_block._col_2 ._item:last-child {
    margin: 0 auto;
  }
  .main._zone_contenu .content-wrapper .item_block._col_3 {
    padding: 0;
  }
  .main._zone_contenu .content-wrapper .item_block._col_3 ._item {
    max-width: 450px;
    margin: 0 auto 20px;
    padding: 0 10px;
  }
  .main._zone_contenu .content-wrapper .item_block._col_3 ._item:last-child {
    margin: 0 auto;
  }
  .main._zone_contenu .content-wrapper .item_block._col_instagram {
    padding: 0;
  }
  .main._zone_contenu .content-wrapper .item_block h1,
  .main._zone_contenu .content-wrapper .item_block .h1 {
    font-size: 20px;
    font-family: "SharpGrotesk-Book-20";
  }
  .main._zone_contenu .content-wrapper .item_block h2,
  .main._zone_contenu .content-wrapper .item_block .h2 {
    font-size: 18px;
    font-family: "SharpGrotesk-Book-20";
  }
  .main._zone_contenu .content-wrapper .item_block h3,
  .main._zone_contenu .content-wrapper .item_block .h3 {
    font-size: 16px;
    font-family: "SharpGrotesk-Book-20";
  }
}
@media only screen and (min-width: 768px) {
  .main._zone_contenu ._hidden_mobile {
    display: block;
  }
  .main._zone_contenu .visible_mobile {
    display: none;
  }
  .main._zone_contenu .content-wrapper .item_block._col_1 ._item img {
    display: block;
    opacity: 1 !important;
  }
  .main._zone_contenu .content-wrapper .item_block._col_1 ._item img + img {
    display: none;
  }
  .main._zone_contenu .content-wrapper .item_block._col_2 {
    padding: 0 10px;
  }
  .main._zone_contenu .content-wrapper .item_block._col_2 ._item {
    width: 50%;
    float: left;
    padding: 0 10px;
  }
  .main._zone_contenu .content-wrapper .item_block._col_2 ._item img {
    width: 100%;
    position: relative;
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
  }
  .main._zone_contenu .content-wrapper .item_block._col_2 ._item img + img {
    position: absolute;
    top: 0;
    left: 10px;
    opacity: 0;
    width: calc(100% - 20px);
    max-width: none;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
  }
  .main._zone_contenu .content-wrapper .item_block._col_3 {
    padding: 0 10px;
  }
  .main._zone_contenu .content-wrapper .item_block._col_3 ._item {
    width: 33.333%;
    float: left;
    padding: 0 10px;
  }
  .main._zone_contenu .content-wrapper .item_block._col_instagram {
    padding: 0 10px;
  }
  .main._zone_contenu .content-wrapper .item_block h1,
  .main._zone_contenu .content-wrapper .item_block .h1 {
    font-size: 28px;
    font-family: "SharpGrotesk-Book-20";
  }
  .main._zone_contenu .content-wrapper .item_block h2,
  .main._zone_contenu .content-wrapper .item_block .h2 {
    font-size: 24px;
    font-family: "SharpGrotesk-Book-20";
  }
  .main._zone_contenu .content-wrapper .item_block h3,
  .main._zone_contenu .content-wrapper .item_block .h3 {
    font-size: 18px;
    font-family: "SharpGrotesk-Book-20";
  }
}
@media only screen and (min-width: 992px) {
  .main._zone_contenu .content-wrapper .item_block h1,
  .main._zone_contenu .content-wrapper .item_block .h1 {
    font-size: 36px;
    font-family: "SharpGrotesk-Book-20";
  }
  .main._zone_contenu .content-wrapper .item_block h2,
  .main._zone_contenu .content-wrapper .item_block .h2 {
    font-size: 28px;
    font-family: "SharpGrotesk-Book-20";
  }
  .main._zone_contenu .content-wrapper .item_block h3,
  .main._zone_contenu .content-wrapper .item_block .h3 {
    font-size: 20px;
    font-family: "SharpGrotesk-Book-20";
  }
}
.main._zone_contenu {
  position: relative;
  margin: 0;
  padding: 0;
  max-width: 100%;
}
.main._zone_contenu .category-cms-block {
  position: relative;
  max-width: 100%;
  padding: 0;
}
.main._zone_contenu .category-cms-block:after {
  position: relative;
  height: 0;
  width: 100%;
  clear: both;
  content: '';
  display: block;
}
.main._zone_contenu .category-cms-block .item_block {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 0 25px;
}
.main._zone_contenu .category-cms-block .item_block:after {
  position: relative;
  height: 0;
  width: 100%;
  clear: both;
  content: '';
  display: block;
}
.main._zone_contenu .category-cms-block .item_block ._item {
  position: relative;
}
.main._zone_contenu .category-cms-block .item_block ._item a {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 0;
  bottom: 0;
  display: block;
  z-index: 2;
  color: #231f20;
}
.main._zone_contenu .category-cms-block .item_block ._item span {
  display: block;
  text-align: center;
  color: #231f20;
}
.main._zone_contenu .category-cms-block .item_block ._item span._inner {
  position: absolute;
  left: 50%;
  top: 50%;
  display: table;
  z-index: 2;
  max-width: 90%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.main._zone_contenu .category-cms-block .item_block ._item span._inner span {
  margin: 10px 0;
}
.main._zone_contenu .category-cms-block .item_block ._item span._inner span.p {
  text-align: center;
  font-size: 14px;
}
.main._zone_contenu .category-cms-block .item_block ._item span._inner ._link {
  color: #231f20;
  margin: 0 auto;
  width: auto;
  padding: 0;
  display: inline-grid;
}
.main._zone_contenu .category-cms-block .item_block ._item span._inner ._link span {
  white-space: nowrap;
  background: #fff;
  padding: 10px;
  margin: 15px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  color: #231f20 !important;
}
.main._zone_contenu .category-cms-block .item_block ._item span._inner._white {
  color: #fff;
}
.main._zone_contenu .category-cms-block .item_block ._item span._inner._white span {
  color: #fff;
}
.main._zone_contenu .category-cms-block .item_block ._item img {
  width: 100%;
  position: relative;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.main._zone_contenu .category-cms-block .item_block ._item img + img {
  position: absolute;
  top: 0;
  left: 10px;
  opacity: 0;
  width: calc(100% - 20px);
  max-width: none;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.main._zone_contenu .category-cms-block .item_block._col_1 ._item ._inner span {
  color: #636466;
}
.main._zone_contenu .content-wrapper {
  position: relative;
}
.main._zone_contenu .content-wrapper:after {
  position: relative;
  height: 0;
  width: 100%;
  clear: both;
  content: '';
  display: block;
}
.main._zone_contenu .content-wrapper .sidebar {
  position: relative;
  width: 100%;
  float: none;
  max-width: 1084px;
  margin: 0 auto;
  padding: 0;
  z-index: 2;
}
.main._zone_contenu .content-wrapper .sidebar + .col-main {
  position: relative;
  width: 100%;
  float: none;
  max-width: 1124px;
  margin: 0 auto;
}
.main._zone_contenu .content-wrapper .sidebar + .col-main .category-products {
  position: relative;
  overflow: hidden;
}
.main._zone_contenu .content-wrapper .sidebar + .col-main .category-products .toolbar {
  padding: 0 0 15px;
}
.main._zone_contenu .content-wrapper .sidebar + .col-main .category-products .toolbar .sorter {
  display: none;
}
.main._zone_contenu .content-wrapper .sidebar + .col-main .category-products .toolbar .pager {
  float: right;
  width: auto;
}
.main._zone_contenu .content-wrapper .sidebar + .col-main .category-products .toolbar .pager .count-container {
  float: left;
  padding-right: 50px;
}
.main._zone_contenu .content-wrapper .sidebar + .col-main .category-products .toolbar .pager .pages {
  width: auto;
  float: right;
}
.main._zone_contenu .content-wrapper .sidebar + .col-main .category-products .products-grid {
  position: relative;
  margin: 0 -10px;
  padding: 0;
}
.main._zone_contenu .content-wrapper .sidebar + .col-main .category-products .products-grid li {
  display: block;
  margin: 0;
}
.main._zone_contenu .content-wrapper .sidebar + .col-main .category-products .products-grid li .product-image {
  display: block;
  margin: 0 auto;
  position: relative;
  padding: 0;
}
.main._zone_contenu .content-wrapper .sidebar + .col-main .category-products .products-grid li .product-image:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  background: #000;
  opacity: 0.15;
  display: block;
  z-index: 1;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.main._zone_contenu .content-wrapper .sidebar + .col-main .category-products .products-grid li .product-image img {
  width: 100%;
}
.main._zone_contenu .content-wrapper .sidebar + .col-main .category-products .products-grid li .product-image:hover:before {
  opacity: 0.5;
}
.main._zone_contenu .content-wrapper .sidebar + .col-main .category-products .products-grid li .product-image:hover + .product-info .actions {
  opacity: 1;
}
.main._zone_contenu .content-wrapper .sidebar + .col-main .category-products .products-grid li .product-info {
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  background: transparent;
  color: #fff;
  min-height: 1px !important;
  padding: 0 !important;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}
.main._zone_contenu .content-wrapper .sidebar + .col-main .category-products .products-grid li .product-info h2 {
  position: relative;
}
.main._zone_contenu .content-wrapper .sidebar + .col-main .category-products .products-grid li .product-info h2 a {
  color: #fff;
  text-transform: uppercase;
}
.main._zone_contenu .content-wrapper .sidebar + .col-main .category-products .products-grid li .product-info .actions {
  min-height: 1px !important;
  padding: 0 !important;
  position: relative;
  opacity: 0;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.main._zone_contenu .content-wrapper .sidebar + .col-main .category-products .products-grid li .product-info .actions a {
  color: #fff;
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
}

@media only screen and (max-width: 767px) {
  .main._zone_contenu ._hidden_mobile {
    display: none;
  }
  .main._zone_contenu .visible_mobile {
    display: block;
  }
  .main._zone_contenu .category-cms-block .item_block._col_1 ._item img {
    display: none;
    opacity: 1 !important;
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
  }
  .main._zone_contenu .category-cms-block .item_block._col_1 ._item img:last-child {
    display: block !important;
  }
  .main._zone_contenu .category-cms-block .item_block h1,
  .main._zone_contenu .category-cms-block .item_block .h1 {
    font-size: 20px;
    font-family: "SharpGrotesk-Book-20";
  }
  .main._zone_contenu .category-cms-block .item_block h2,
  .main._zone_contenu .category-cms-block .item_block .h2 {
    font-size: 18px;
    font-family: "SharpGrotesk-Book-20";
  }
  .main._zone_contenu .category-cms-block .item_block h3,
  .main._zone_contenu .category-cms-block .item_block .h3 {
    font-size: 16px;
    font-family: "SharpGrotesk-Book-20";
  }
  .main._zone_contenu .content-wrapper .sidebar .block-content.toggle-content {
    position: relative;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav {
    position: relative;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav {
    position: relative;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .block-title {
    position: relative;
    text-align: center;
    margin: 0;
    padding: 0 0 10px;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list {
    position: relative;
    display: block;
    margin: 0;
    padding: 0 0 15px;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list:after {
    position: relative;
    height: 0;
    width: 100%;
    clear: both;
    content: '';
    display: block;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .state-container .currently ol li {
    padding-left: 10px;
    clear: left;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .state-container .actions {
    margin-bottom: 15px !important;
    padding: 0 0 0 10px !important;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item {
    position: relative;
    float: left;
    padding: 0;
    clear: left;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_name {
    position: relative;
    background: transparent;
    padding: 10px 20px 10px 10px;
    text-transform: uppercase;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_name:after {
    position: relative;
    height: 0;
    width: 100%;
    clear: both;
    content: '';
    display: block;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_name span {
    position: relative;
    cursor: pointer;
    padding: 0 20px 0 0;
    display: block;
    float: left;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_name span:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_name span ._deco {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 10px;
    height: 10px;
    padding: 0;
    pointer-events: none;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_name span ._deco:before {
    position: absolute;
    content: '';
    width: 8px;
    height: 2px;
    background: #231f20;
    top: 1px;
    left: 2px;
    pointer-events: none;
    -webkit-transform: rotate(40deg);
    -moz-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    -o-transform: rotate(40deg);
    transform: rotate(40deg);
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_name span ._deco:after {
    position: absolute;
    content: '';
    height: 2px;
    background: #231f20;
    width: 8px;
    background: #231f20;
    top: 6px;
    left: 2px;
    pointer-events: none;
    -webkit-transform: rotate(-40deg);
    -moz-transform: rotate(-40deg);
    -ms-transform: rotate(-40deg);
    -o-transform: rotate(-40deg);
    transform: rotate(-40deg);
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_items {
    position: relative;
    margin: 0;
    padding: 0;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_items .item_content {
    background: #fff;
    margin: 0;
    padding: 0 10px;
    border: none;
    overflow: hidden;
    height: 0;
    border-left: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-right: 1px solid transparent;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_items .item_content ol {
    margin: 0;
    padding: 0;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_items .item_content ol li {
    margin-bottom: 8px;
    position: relative;
    display: block;
    padding: 0;
    line-height: 140%;
    border: none;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_items .item_content ol li:before {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    border: 1px solid #231f20;
    top: 1px;
    left: 0;
    pointer-events: none;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_items .item_content ol li a {
    background: none !important;
    line-height: 100%;
    font-size: 14px;
    padding: 0 0 0 20px !important;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_items .item_content ol li.m-selected-ln-item a:before {
    position: absolute;
    content: '';
    width: 8px;
    height: 1px;
    background: #231f20;
    top: 7px;
    left: 2px;
    pointer-events: none;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_items .item_content ol li.m-selected-ln-item a:after {
    position: absolute;
    content: '';
    height: 1px;
    background: #231f20;
    width: 8px;
    background: #231f20;
    top: 7px;
    left: 2px;
    pointer-events: none;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_items .item_content .m-more-less {
    position: relative;
    margin: -1px 0 0;
    padding: 0;
    background: #fff;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item.open .filter_name {
    background: #f8f8f8;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item.open .filter_name span ._deco {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 7px;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item.open .filter_items .item_content {
    height: auto;
    padding: 10px;
    border-left: 1px solid #f8f8f8;
    border-bottom: 1px solid #f8f8f8;
    border-right: 1px solid #f8f8f8;
  }
  .main._zone_contenu .content-wrapper .sidebar + .col-main {
    padding: 0 10px;
  }
  .main._zone_contenu .content-wrapper .sidebar + .col-main .category-products .pager .count-container {
    padding-right: 0 !important;
  }
  .main._zone_contenu .content-wrapper .sidebar + .col-main .category-products .products-grid li {
    padding: 0 10px 20px;
    width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  .main._zone_contenu ._hidden_mobile {
    display: block;
  }
  .main._zone_contenu .visible_mobile {
    display: none;
  }
  .main._zone_contenu .category-cms-block {
    padding: 0;
  }
  .main._zone_contenu .category-cms-block .item_block._col_1 ._item img {
    display: block;
    opacity: 1 !important;
  }
  .main._zone_contenu .category-cms-block .item_block._col_1 ._item img + img {
    display: none;
  }
  .main._zone_contenu .category-cms-block .item_block h1,
  .main._zone_contenu .category-cms-block .item_block .h1 {
    font-size: 28px;
    font-family: "SharpGrotesk-Book-20";
  }
  .main._zone_contenu .category-cms-block .item_block h2,
  .main._zone_contenu .category-cms-block .item_block .h2 {
    font-size: 24px;
    font-family: "SharpGrotesk-Book-20";
  }
  .main._zone_contenu .category-cms-block .item_block h3,
  .main._zone_contenu .category-cms-block .item_block .h3 {
    font-size: 18px;
    font-family: "SharpGrotesk-Book-20";
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav {
    position: relative;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav {
    position: relative;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .block-title {
    position: relative;
    text-align: center;
    margin: 0;
    padding: 0 0 10px;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list {
    position: relative;
    display: table;
    width: auto;
    margin: 0 auto;
    padding: 0 0 15px;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list:after {
    position: relative;
    height: 0;
    width: 100%;
    clear: both;
    content: '';
    display: block;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item {
    position: relative;
    float: left;
    padding: 0;
    margin: 0 0 0 20px;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_name {
    position: relative;
    background: transparent;
    padding: 10px 20px 10px 10px;
    text-transform: uppercase;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_name:after {
    position: relative;
    height: 0;
    width: 100%;
    clear: both;
    content: '';
    display: block;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_name span {
    position: relative;
    cursor: pointer;
    padding: 0 20px 0 0;
    display: block;
    float: left;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_name span:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_name span ._deco {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5px;
    width: 10px;
    height: 10px;
    margin: auto;
    padding: 0;
    pointer-events: none;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_name span ._deco:before {
    position: absolute;
    content: '';
    width: 8px;
    height: 2px;
    background: #231f20;
    top: 1px;
    left: 2px;
    pointer-events: none;
    -webkit-transform: rotate(40deg);
    -moz-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    -o-transform: rotate(40deg);
    transform: rotate(40deg);
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_name span ._deco:after {
    position: absolute;
    content: '';
    height: 2px;
    background: #231f20;
    width: 8px;
    background: #231f20;
    top: 6px;
    left: 2px;
    pointer-events: none;
    -webkit-transform: rotate(-40deg);
    -moz-transform: rotate(-40deg);
    -ms-transform: rotate(-40deg);
    -o-transform: rotate(-40deg);
    transform: rotate(-40deg);
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_items {
    position: relative;
    height: 0;
    margin: 0;
    padding: 0;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_items .item_content {
    background: #fff;
    margin: 0;
    padding: 0 10px;
    border: none;
    overflow: hidden;
    height: 0;
    border-left: 1px solid transparent;
    border-bottom: 1px solid transparent;
    border-right: 1px solid transparent;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_items .item_content ol {
    margin: 0;
    padding: 0;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_items .item_content ol li {
    margin-bottom: 8px;
    position: relative;
    display: block;
    padding: 0;
    line-height: 140%;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_items .item_content ol li:before {
    position: absolute;
    content: '';
    width: 12px;
    height: 12px;
    border: 1px solid #231f20;
    top: 1px;
    left: 0;
    pointer-events: none;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_items .item_content ol li a {
    background: none !important;
    line-height: 100%;
    font-size: 14px;
    padding: 0 0 0 20px !important;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_items .item_content ol li.m-selected-ln-item a:before {
    position: absolute;
    content: '';
    width: 8px;
    height: 1px;
    background: #231f20;
    top: 7px;
    left: 2px;
    pointer-events: none;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_items .item_content ol li.m-selected-ln-item a:after {
    position: absolute;
    content: '';
    height: 1px;
    background: #231f20;
    width: 8px;
    background: #231f20;
    top: 7px;
    left: 2px;
    pointer-events: none;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item .filter_items .item_content .m-more-less {
    position: relative;
    margin: -1px 0 0;
    padding: 0;
    background: #fff;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item.open .filter_name {
    background: #f8f8f8;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item.open .filter_name span ._deco {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    bottom: 3px;
  }
  .main._zone_contenu .content-wrapper .sidebar .mb-mana-catalog-leftnav .block-layered-nav .narrow-by-list .filter_item.open .filter_items .item_content {
    height: auto;
    padding: 10px;
    border-left: 1px solid #f8f8f8;
    border-bottom: 1px solid #f8f8f8;
    border-right: 1px solid #f8f8f8;
  }
  .main._zone_contenu .content-wrapper .sidebar + .col-main {
    padding: 0 20px;
  }
  .main._zone_contenu .content-wrapper .sidebar + .col-main .category-products .products-grid li {
    padding: 0 10px 40px;
    width: 33.333%;
  }
}
@media only screen and (min-width: 992px) {
  .main._zone_contenu .category-cms-block .item_block h1,
  .main._zone_contenu .category-cms-block .item_block .h1 {
    font-size: 36px;
    font-family: "SharpGrotesk-Book-20";
  }
  .main._zone_contenu .category-cms-block .item_block h2,
  .main._zone_contenu .category-cms-block .item_block .h2 {
    font-size: 28px;
    font-family: "SharpGrotesk-Book-20";
  }
  .main._zone_contenu .category-cms-block .item_block h3,
  .main._zone_contenu .category-cms-block .item_block .h3 {
    font-size: 20px;
    font-family: "SharpGrotesk-Book-20";
  }
}
.inner_product-wrap {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
.inner_product-wrap:after {
  position: relative;
  height: 0;
  width: 100%;
  clear: both;
  content: '';
  display: block;
}
.inner_product-wrap .product-img-box {
  position: relative;
  margin: 0;
  padding: 0;
}
.inner_product-wrap .product-img-box:after {
  position: relative;
  height: 0;
  width: 100%;
  clear: both;
  content: '';
  display: block;
}
.inner_product-wrap .product-img-box .product-image {
  position: relative;
  margin: 0;
  padding: 0;
}

#grouped-table {
  margin-top: 30px;
}
#grouped-table .content-wrap h2 {
  font-family: "SharpGrotesk-Book-22";
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
  .inner_product-wrap {
    padding: 30px 14px 10px;
  }
  .inner_product-wrap .product-name.project {
    padding: 0 14px 0 6px;
    float: left;
    width: 45%;
  }
  .inner_product-wrap .product-name.project h1 {
    margin: 0;
    line-height: 120%;
  }
  .inner_product-wrap .product-img-box {
    width: 55%;
    float: right;
  }
  .inner_product-wrap .product-img-box .product-image {
    width: 80%;
    float: left;
    padding: 0;
    border: none;
  }
  .inner_product-wrap .product-img-box .product-image .product-image-gallery {
    padding: 6px;
  }
  .inner_product-wrap .product-img-box .product-image .product-image-gallery img {
    width: 100%;
  }
  .inner_product-wrap .product-img-box .more-views_project {
    width: 20%;
    top: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    overflow: hidden;
  }
  .inner_product-wrap .product-img-box .more-views_project:before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 6px;
    background: #fff;
    z-index: 2;
    content: '';
  }
  .inner_product-wrap .product-img-box .more-views_project:after {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 6px;
    background: #fff;
    z-index: 2;
    content: '';
  }
  .inner_product-wrap .product-img-box .more-views_project .product-image_thumbs .slick-prev {
    left: 5px;
    right: 5px;
    position: absolute;
    z-index: 1;
    top: 16px;
    width: calc( 100% - 10px);
    height: 25px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
  }
  .inner_product-wrap .product-img-box .more-views_project .product-image_thumbs .slick-prev:before {
    color: #231f20;
    content: "";
    font-size: 25px;
    line-height: 100%;
    opacity: 1;
  }
  .inner_product-wrap .product-img-box .more-views_project .product-image_thumbs .slick-next {
    left: 5px;
    right: 5px;
    position: absolute;
    z-index: 1;
    bottom: 3px;
    width: calc( 100% - 10px);
    height: 25px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    top: auto;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
  }
  .inner_product-wrap .product-img-box .more-views_project .product-image_thumbs .slick-next:before {
    color: #231f20;
    content: "";
    font-size: 25px;
    line-height: 100%;
    opacity: 1;
  }
  .inner_product-wrap .product-img-box .more-views_project .product-image_thumbs .slick-list .slick-slide {
    margin: 0;
    padding: 6px;
    width: 100% !important;
    border: none !important;
  }
  .inner_product-wrap .product-img-box .more-views_project .product-image_thumbs .slick-list .slick-slide a {
    display: block;
  }
  .inner_product-wrap .product-img-box .more-views_project .product-image_thumbs .slick-list .slick-slide a img {
    display: block;
    width: 100%;
  }
  .inner_product-wrap .product-img-box .more-views_project .product-image_thumbs .slick-list .slick-slide._video a span {
    position: relative;
    display: block;
    background-color: #231f20;
    background-image: url("https://www.deserres.ca/skin/frontend/deserres/default/images/video_image.png");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .inner_product-wrap .product-img-box .more-views_project .product-image_thumbs .slick-list .slick-slide._video a span:before {
    position: relative;
    content: '';
    display: block;
    padding: 100% 0 0;
  }
  .inner_product-wrap .product-img-box .more-views_project .product-image_thumbs:hover .slick-prev,
  .inner_product-wrap .product-img-box .more-views_project .product-image_thumbs:hover .slick-next {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .inner_product-wrap .product_wrap {
    position: relative;
    float: left;
    margin: 0;
    padding: 0 14px 0 6px;
    width: 45%;
  }
  .inner_product-wrap .product_wrap .product-social {
    position: relative;
    margin: 0;
    padding: 0;
  }
  .inner_product-wrap .product_wrap .product-social:after {
    position: relative;
    height: 0;
    width: 100%;
    clear: both;
    content: '';
    display: block;
  }
  .inner_product-wrap .product_wrap .product-social ._prod_info {
    position: relative;
    float: left;
    padding: 7px 0;
    font-family: "SharpGrotesk-Book-20";
  }
  .inner_product-wrap .product_wrap .product-social ._prod_info:after {
    position: relative;
    height: 0;
    width: 100%;
    clear: both;
    content: '';
    display: block;
  }
  .inner_product-wrap .product_wrap .product-social ._prod_info ._item {
    position: relative;
    display: block;
    float: left;
    padding: 0 10px;
  }
  .inner_product-wrap .product_wrap .product-social ._prod_info ._item:before {
    position: absolute;
    top: 4px;
    left: 0;
    bottom: 4px;
    width: 1px;
    background: #231f20;
    content: '';
    display: block;
  }
  .inner_product-wrap .product_wrap .product-social ._prod_info ._item:first-child {
    padding-left: 0;
  }
  .inner_product-wrap .product_wrap .product-social ._prod_info ._item:first-child:before {
    display: none;
  }
  .inner_product-wrap .product_wrap .product-social .sharing-links {
    float: left;
    width: auto;
    font-family: "SharpGrotesk-Book-20";
  }
  .inner_product-wrap .product_wrap .product-social .sharing-links li {
    font-size: 14px;
    text-transform: uppercase;
  }
  .inner_product-wrap .product_wrap .product-social ._print {
    float: right;
    position: relative;
    display: block;
    padding: 0 0 0 20px;
    color: #231f20;
    text-transform: uppercase;
    text-decoration: none;
  }
  .inner_product-wrap .product_wrap .product-social ._print:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    color: #231f20;
    font-family: 'icomoon';
    font-size: 16px;
    content: "";
    line-height: 120%;
  }
  .inner_product-wrap .product_wrap .short-description {
    position: relative;
    padding: 22px 0;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    font-family: "SharpGrotesk-Book-20";
  }
  .inner_product-wrap .product_wrap ._material {
    position: relative;
    padding: 0 0 22px;
  }
  .inner_product-wrap .product_wrap ._material ._title {
    text-transform: uppercase;
    font-size: 23px;
    font-family: "SharpGrotesk-Book-22";
    line-height: 100%;
    padding: 22px 0 15px;
    font-weight: 700;
  }
  .inner_product-wrap .product_wrap ._material ._content ul li {
    position: relative;
    padding: 0 0 0 12px;
    font-family: "SharpGrotesk-Book-20";
  }
  .inner_product-wrap .product_wrap ._material ._content ul li:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: block;
    margin: auto;
    width: 5px;
    height: 5px;
    border-radius: 3px;
    content: '';
    background: #231f20;
  }
  .inner_product-wrap .product_wrap .add-to-cart {
    margin: 25px 0;
  }

  .creative_projects {
    position: relative;
  }
  .creative_projects .creative-projects {
    background: transparent !important;
    margin: 0;
    padding: 40px 20px 0 !important;
  }
  .creative_projects .creative-projects #project_instructions {
    padding: 50px 0 0;
    max-width: 100%;
    border-top: 1px solid #e1e1e1;
    position: relative;
  }
  .creative_projects .creative-projects #project_instructions:after {
    position: relative;
    height: 0;
    width: 100%;
    clear: both;
    content: '';
    display: block;
  }
  .creative_projects .creative-projects #project_instructions .col_left {
    float: left;
    width: 70%;
    max-width: 950px;
    padding: 0 25px 0 0;
  }
  .creative_projects .creative-projects #project_instructions .col_left ._title {
    position: relative;
    text-transform: uppercase;
    font-size: 23px;
    font-family: "SharpGrotesk-Book-22";
    line-height: 100%;
    color: #231f20;
    font-weight: 700;
  }
  .creative_projects .creative-projects #project_instructions .col_left .alt-links {
    float: none;
    position: relative;
    margin: 0;
    padding: 25px 0;
  }
  .creative_projects .creative-projects #project_instructions .col_left .alt-links:after {
    position: relative;
    height: 0;
    width: 100%;
    clear: both;
    content: '';
    display: block;
  }
  .creative_projects .creative-projects #project_instructions .col_left .alt-links a {
    display: block;
    float: left;
    margin: 0 25px;
  }
  .creative_projects .creative-projects #project_instructions .col_left .alt-links a:first-child {
    margin-left: 0;
  }
  .creative_projects .creative-projects #project_instructions .col_left .instructions {
    position: relative;
    padding: 0;
  }
  .creative_projects .creative-projects #project_instructions .col_left .instructions h1 {
    font-size: 18px;
    margin: 0;
    padding: 0 0 20px;
    line-height: 120%;
  }
  .creative_projects .creative-projects #project_instructions .col_left .instructions p, .creative_projects .creative-projects #project_instructions .col_left .instructions div {
    font-family: "SharpGrotesk-Book-20";
    font-size: 14px;
    color: #231f20;
    line-height: 120%;
    margin: 0 0 15px;
  }
  .creative_projects .creative-projects #project_instructions .col-right {
    float: right;
    width: 25%;
    padding: 30px;
    box-shadow: 0 0 4px #e1e1e1;
    font-size: 14px;
    font-family: "SharpGrotesk-Book-20";
    line-height: 120%;
    color: #231f20;
    margin: 0 6px 20px;
  }
  .creative_projects .creative-projects #project_instructions .col-right ul li {
    margin: 0 0 25px;
  }
  .creative_projects .creative-projects #project_instructions .col-right .zblock-item img {
    width: 100%;
  }

  .creative_projects-related .box-related {
    max-width: 1094px;
    padding: 0 32px;
    margin: 0 auto;
    float: none !important;
  }
  .creative_projects-related .box-related .box-title {
    padding-top: 35px;
  }
  .creative_projects-related .box-related .box-title h2 {
    font-size: 23px;
    font-family: "SharpGrotesk-Book-22";
    line-height: 100%;
    font-weight: 700;
    text-transform: uppercase;
  }
  .creative_projects-related .box-related .products-grid {
    position: relative;
    margin: 0 -10px;
    padding: 0;
  }
  .creative_projects-related .box-related .products-grid li {
    display: block;
    margin: 0;
    background: transparent;
  }
  .creative_projects-related .box-related .products-grid li .product-image {
    display: block;
    margin: 0 auto;
    position: relative;
    padding: 0;
  }
  .creative_projects-related .box-related .products-grid li .product-image:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: #000;
    opacity: 0.15;
    display: block;
    z-index: 1;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
  }
  .creative_projects-related .box-related .products-grid li .product-image img {
    width: 100%;
  }
  .creative_projects-related .box-related .products-grid li .product-image:hover:before {
    opacity: 0.5;
  }
  .creative_projects-related .box-related .products-grid li .product-image:hover + .product-info .actions {
    opacity: 1;
  }
  .creative_projects-related .box-related .products-grid li .product-info {
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    background: transparent;
    color: #fff;
    min-height: 1px !important;
    padding: 0 !important;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
  }
  .creative_projects-related .box-related .products-grid li .product-info h2 {
    position: relative;
  }
  .creative_projects-related .box-related .products-grid li .product-info h2 a {
    color: #fff;
    text-transform: uppercase;
  }
  .creative_projects-related .box-related .products-grid li .product-info .actions {
    min-height: 1px !important;
    padding: 0 !important;
    position: relative;
    opacity: 0;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
  }
  .creative_projects-related .box-related .products-grid li .product-info .actions a {
    color: #fff;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
  }
  .creative_projects-related .products-grid li {
    padding: 0 10px 40px;
    width: 33.333%;
  }

  #grouped-table .content-wrap h2 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .inner_product-wrap {
    padding: 0 7px 10px;
  }
  .inner_product-wrap .product-img-box .more-views_project {
    padding: 0 20px;
  }
  .inner_product-wrap .product-img-box .more-views_project .product-image_thumbs .slick-prev:before,
  .inner_product-wrap .product-img-box .more-views_project .product-image_thumbs .slick-next:before {
    color: #231f20;
  }
  .inner_product-wrap .product-img-box .more-views_project .product-image_thumbs .slick-list .slick-slide a {
    display: block;
    padding: 0;
  }
  .inner_product-wrap .product-img-box .more-views_project .product-image_thumbs .slick-list .slick-slide a img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
  .inner_product-wrap .product-img-box .more-views_project .product-image_thumbs .slick-list .slick-slide._video a span {
    position: relative;
    display: block;
    background-color: #231f20;
    background-image: url("https://www.deserres.ca/skin/frontend/deserres/default/images/video_image.png");
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .inner_product-wrap .product-img-box .more-views_project .product-image_thumbs .slick-list .slick-slide._video a span:before {
    position: relative;
    content: '';
    display: block;
    padding: 100% 0 0;
  }
  .inner_product-wrap .product_wrap {
    position: relative;
    margin: 0 auto;
    padding: 0 6px;
    max-width: 450px;
  }
  .inner_product-wrap .product_wrap .product-social {
    position: relative;
    margin: 0 auto;
    padding: 0;
    max-width: 450px;
  }
  .inner_product-wrap .product_wrap .product-social:after {
    position: relative;
    height: 0;
    width: 100%;
    clear: both;
    content: '';
    display: block;
  }
  .inner_product-wrap .product_wrap .product-social ._prod_info {
    position: relative;
    padding: 20px 0 15px;
    font-family: "SharpGrotesk-Book-20";
    display: table;
    width: auto;
    margin: 0 auto;
  }
  .inner_product-wrap .product_wrap .product-social ._prod_info:after {
    position: relative;
    height: 0;
    width: 100%;
    clear: both;
    content: '';
    display: block;
  }
  .inner_product-wrap .product_wrap .product-social ._prod_info ._item {
    position: relative;
    display: block;
    float: left;
    padding: 0 10px;
  }
  .inner_product-wrap .product_wrap .product-social ._prod_info ._item:before {
    position: absolute;
    top: 4px;
    left: 0;
    bottom: 4px;
    width: 1px;
    background: #231f20;
    content: '';
    display: block;
  }
  .inner_product-wrap .product_wrap .product-social ._prod_info ._item:first-child {
    padding-left: 0;
  }
  .inner_product-wrap .product_wrap .product-social ._prod_info ._item:first-child:before {
    display: none;
  }
  .inner_product-wrap .product_wrap .product-social .sharing-links {
    display: table;
    width: auto;
    margin: 0 auto;
    font-family: "SharpGrotesk-Book-20";
    float: none;
  }
  .inner_product-wrap .product_wrap .product-social .sharing-links li {
    font-size: 14px;
    text-transform: uppercase;
  }
  .inner_product-wrap .product_wrap .product-social ._print {
    display: none;
  }
  .inner_product-wrap .product_wrap .short-description {
    position: relative;
    padding: 22px 0;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    font-family: "SharpGrotesk-Book-20";
    text-align: center;
  }
  .inner_product-wrap .product_wrap ._material {
    position: relative;
    padding: 0 0 20px;
    display: table;
    margin: 0 auto;
    width: auto;
  }
  .inner_product-wrap .product_wrap ._material ._title {
    text-transform: uppercase;
    font-size: 18px;
    font-family: "SharpGrotesk-Book-22";
    line-height: 100%;
    padding: 22px 0 15px;
    font-weight: 700;
  }
  .inner_product-wrap .product_wrap ._material ._content ul li {
    position: relative;
    padding: 0 0 0 12px;
    font-family: "SharpGrotesk-Book-20";
  }
  .inner_product-wrap .product_wrap ._material ._content ul li:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: block;
    margin: auto;
    width: 5px;
    height: 5px;
    border-radius: 3px;
    content: '';
    background: #231f20;
  }
  .inner_product-wrap .product_wrap .add-to-cart {
    margin: 25px auto 10px;
    width: auto;
    display: table;
  }

  .creative_projects {
    position: relative;
  }
  .creative_projects .creative-projects {
    background: transparent !important;
    margin: 0 auto;
    padding: 15px 10px 0 !important;
    max-width: 450px;
  }
  .creative_projects .creative-projects #project_instructions {
    padding: 30px 0 0;
    max-width: 100%;
    border-top: 1px solid #e1e1e1;
    position: relative;
  }
  .creative_projects .creative-projects #project_instructions:after {
    position: relative;
    height: 0;
    width: 100%;
    clear: both;
    content: '';
    display: block;
  }
  .creative_projects .creative-projects #project_instructions .col_left {
    padding: 0 0 15px;
    margin: 0 0 5px;
  }
  .creative_projects .creative-projects #project_instructions .col_left ._title {
    position: relative;
    text-transform: uppercase;
    font-size: 18px;
    font-family: "SharpGrotesk-Book-22";
    line-height: 100%;
    color: #231f20;
    font-weight: 700;
    padding: 0 0 15px;
  }
  .creative_projects .creative-projects #project_instructions .col_left .alt-links {
    display: none;
  }
  .creative_projects .creative-projects #project_instructions .col_left .instructions {
    position: relative;
    padding: 0;
  }
  .creative_projects .creative-projects #project_instructions .col_left .instructions h1 {
    font-size: 18px;
    margin: 0;
    padding: 0 0 20px;
    line-height: 120%;
  }
  .creative_projects .creative-projects #project_instructions .col_left .instructions p, .creative_projects .creative-projects #project_instructions .col_left .instructions div {
    font-family: "SharpGrotesk-Book-20";
    font-size: 14px;
    color: #231f20;
    line-height: 120%;
    margin: 0 0 15px;
  }
  .creative_projects .creative-projects #project_instructions .col-right {
    padding: 30px;
    box-shadow: 0 0 4px #e1e1e1;
    font-size: 14px;
    font-family: "SharpGrotesk-Book-20";
    line-height: 120%;
    color: #231f20;
    margin: 0 auto 20px;
    width: 90%;
    float: none;
  }
  .creative_projects .creative-projects #project_instructions .col-right ul li {
    margin: 0 0 25px;
  }
  .creative_projects .creative-projects #project_instructions .col-right .zblock-item img {
    width: 100%;
  }

  #grouped-table .content-wrap h2 {
    font-size: 18px;
  }

  .creative_projects-related {
    padding: 25px 0;
  }
  .creative_projects-related .box-related {
    padding: 0 10px;
    margin: 0 auto;
    float: none !important;
  }
  .creative_projects-related .box-related .box-title {
    padding-top: 0;
  }
  .creative_projects-related .box-related .box-title h2 {
    font-size: 18px;
    font-family: "SharpGrotesk-Book-22";
    line-height: 100%;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 15px 30px 15px 10px;
  }
  .creative_projects-related .box-related .box-title h2:after {
    top: 14px !important;
  }
  .creative_projects-related .box-related .products-grid {
    position: relative;
    margin: 0 -10px;
    padding: 0;
  }
  .creative_projects-related .box-related .products-grid li {
    display: block;
    margin: 0;
    background: transparent;
  }
  .creative_projects-related .box-related .products-grid li .product-image {
    display: block;
    margin: 0 auto;
    position: relative;
    padding: 0;
  }
  .creative_projects-related .box-related .products-grid li .product-image:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: #000;
    opacity: 0.15;
    display: block;
    z-index: 1;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
  }
  .creative_projects-related .box-related .products-grid li .product-image img {
    width: 100%;
  }
  .creative_projects-related .box-related .products-grid li .product-image:hover:before {
    opacity: 0.5;
  }
  .creative_projects-related .box-related .products-grid li .product-image:hover + .product-info .actions {
    opacity: 1;
  }
  .creative_projects-related .box-related .products-grid li .product-info {
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    background: transparent;
    color: #fff;
    min-height: 1px !important;
    padding: 0 !important;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
  }
  .creative_projects-related .box-related .products-grid li .product-info h2 {
    position: relative;
  }
  .creative_projects-related .box-related .products-grid li .product-info h2 a {
    color: #fff;
    text-transform: uppercase;
  }
  .creative_projects-related .box-related .products-grid li .product-info .actions {
    min-height: 1px !important;
    padding: 0 !important;
    position: relative;
    opacity: 0;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
  }
  .creative_projects-related .box-related .products-grid li .product-info .actions a {
    color: #fff;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
  }
  .creative_projects-related .products-grid li {
    padding: 0 10px 40px;
    width: 100%;
    max-width: 450px;
    margin: 0 auto !important;
    height: auto !important;
    float: none;
  }
  .creative_projects-related .products-grid li h2 {
    border: none;
    background: transparent;
  }
}
#toTop.to-top.active {
  z-index: 3;
}

/**
 * Magento Enterprise Edition
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Magento Enterprise Edition End User License Agreement
 * that is bundled with this package in the file LICENSE_EE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://www.magento.com/license/enterprise-edition
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magento.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magento.com for more information.
 *
 * @category    design
 * @package     rwd_enterprise
 * @copyright Copyright (c) 2006-2016 X.commerce, Inc. and affiliates (http://www.magento.com)
 * @license http://www.magento.com/license/enterprise-edition
 */
/* ============================================ *
 * General Enterprise Styles
 * ============================================ */
.global-site-notice div.notice-inner {
  background-image: url("https://www.deserres.ca/skin/frontend/rwd/enterprise/images/demo-logo.png");
}

/* ============================================ *
 * RMA List
 * ============================================ */
/* ============================================ *
 * RMA Create
 * ============================================ */
#rma_create_form .form-list li {
  border-bottom: 1px solid #cccccc;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: f-size-xs;
}
#rma_create_form .form-list li:last-child {
  border-bottom: none;
}
#rma_create_form .form-list li h5 {
  font-weight: 400;
  text-align: left;
  padding-left: 15px;
  text-transform: none;
}
#rma_create_form .form-list li h5.rma-email {
  text-transform: none;
}
#rma_create_form .fieldset {
  margin: 20px 0;
}
#rma_create_form .fieldset #registrant_options .field .input-box {
  margin-bottom: 10px;
}
#rma_create_form .buttons-set {
  border-top: none;
}

/* ============================================ *
 * RMA View
 * ============================================ */
.rma-view.col-2 {
  text-align: right;
}
.rma-view h3 {
  font-weight: 600;
}

body.enterprise-rma-return-view .box-content {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: f-size-xs;
  margin-bottom: 20px;
}

#my-returns-items-table th,
#my-returns-items-table td {
  font-size: 13px;
}

#rma_comment .box-content label {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: f-size-xs;
  font-weight: 400;
}
#rma_comment .buttons-set {
  border-top: none;
}
#rma_comment .note-list {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: f-size-xs;
  font-weight: 400;
}
#rma_comment .note-list li {
  border-bottom: 1px solid #cccccc;
  padding: 5px 0;
}
#rma_comment .note-list li:last-child {
  border-bottom: none;
}

/* ============================================ *
 * Store credit
 * ============================================ */
.storecredit .account-balance {
  border-bottom: 1px solid #cccccc;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

body.customer-account .storecredit .data-table td.last {
  padding: 10px;
}

/* ============================================ *
 * Gift Registry
 * ============================================ */
.gift-note {
  width: 99%;
}

.btn-gift-registry {
  padding-top: 7px;
}
.btn-gift-registry .input-box {
  margin: 0 0 7px;
}
.btn-gift-registry select {
  width: 100%;
}

.gr-manage-items {
  margin-bottom: 15px;
}
.gr-manage-items input.qty {
  min-width: 45px;
}

#event_date_trig {
  display: inline;
}

.gift-registry-edit textarea,
.gift-registry-edit input {
  max-width: 100%;
  width: 365px;
}
.gift-registry-edit label[for=type_id] {
  text-transform: uppercase;
  margin-bottom: 0px;
  font-size: 13px;
}
.gift-registry-edit .add-row {
  width: 100%;
  max-width: 365px;
}
.gift-registry-edit .add-row > p {
  float: right;
}
.gift-registry-edit .btn-remove {
  float: right;
}

.block-gr-search .form-alt > li {
  margin-top: 3.5px;
  margin-bottom: 3.5px;
}
.block-gr-search button {
  margin-top: 7px;
}
.block-gr-search .input-box > select {
  width: 100%;
}

#gr-please-wait {
  margin-bottom: 10px;
  margin-left: 0;
}

.gift-registry-view .subtitle {
  margin-top: 30px;
  font-size: 18px;
}

.gift-registry-items .btn-update {
  margin-top: 7px;
}
.gift-registry-items textarea {
  min-width: 80px;
}

.gr-type-specific-options img.v-middle {
  display: inline;
}

#gr_search_form select,
#gr_search_email_form select,
#gr_search_id_form select {
  margin-bottom: 5px;
}
#gr_search_form .buttons-set,
#gr_search_email_form .buttons-set,
#gr_search_id_form .buttons-set {
  max-width: 365px;
}
#gr_search_form p.required,
#gr_search_email_form p.required,
#gr_search_id_form p.required {
  position: relative;
  top: -30px;
}

/* ============================================ *
 * Reward
 * ============================================ */
.rewards {
  margin-bottom: 30px;
}

.reward-message {
  background-color: #3399cc;
  display: block;
  margin: 5px 0;
  padding: 3px 10px;
  color: #e6e6e6;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.reward-message.reward-checkout {
  margin-bottom: 10px;
}
.reward-message p {
  display: inline;
  font-size: 13px;
}
.reward-message p.limit {
  display: block;
  font-size: 12px;
  font-style: italic;
}
.reward-message a {
  color: #e6e6e6;
  text-decoration: underline;
}

.my-rewards h2 {
  position: relative;
  line-height: 1.7;
}
.my-rewards h2 .separator {
  display: none;
}
.my-rewards h2 a {
  white-space: nowrap;
  float: right;
  margin: 0 0 5px 10px;
}
.my-rewards .box {
  margin-bottom: 20px;
}
.my-rewards .box.info-box {
  border-bottom: 1px solid #ededed;
  padding-bottom: 10px;
}
.my-rewards .box.info-box dt {
  font-weight: bold;
  margin-bottom: 0;
  margin-top: 10px;
  text-transform: none;
}

/* ============================================ *
 * Gift Message Styles
 * ============================================ */
.gift-message-form .inner-box > div {
  clear: both;
  width: 100%;
}

#allow-gift-options-for-items-container,
#allow-gift-messages-for-order-container,
#allow-gift-options-for-order-container {
  width: 100%;
  float: left;
  display: block;
}

.gift-message-form .gift-item .fieldset {
  float: left;
  width: 100%;
  margin-left: 0px !important;
}

.gift-message-form .inner-box > div {
  clear: both;
  width: 100%;
}

.gift-wrapping-form .select {
  max-width: 300px;
}

.gift-item .product-img-box > * {
  float: left;
  clear: both;
  margin-top: 5px;
}

/* ============================================ *
 * Enterprise Wishlist Styles
 * ============================================ */
/* Customer Account Styles */
#wishlist_edit_action_container {
  left: 0;
  position: fixed;
  top: 50px;
  width: 100%;
  z-index: 99999;
}
#wishlist_edit_action_container .popup-block {
  background: #F4F4F4;
  border: 1px solid #CCCCCC;
  display: block;
  margin: 0 auto;
  padding: 2% 20px;
  width: 100%;
  max-width: 500px;
  min-width: 320px;
}
#wishlist_edit_action_container .popup-block .block-title {
  padding-top: 0;
  border-top: 0;
}
#wishlist_edit_action_container .popup-block .block-title .btn-close {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}

.wishlist-actions-container {
  content: '';
  display: table;
  clear: both;
  width: 100%;
  margin-bottom: 10px;
}
.wishlist-actions-container .sub-title {
  float: left;
}
.wishlist-actions-container .sub-title .item-count {
  text-transform: none;
  margin-left: 10px;
}
.wishlist-actions-container .sub-title .wishlist-edit {
  margin-left: 10px;
  font-size: 15px;
}
.wishlist-actions-container .btn-create {
  float: right;
}

.wishlist-management .table-caption {
  content: '';
  display: table;
  clear: both;
  width: 100%;
  border-bottom: 1px solid #cccccc;
  font-size: 16px;
}
.wishlist-management .table-caption .sub-title {
  float: left;
  padding-bottom: 5px;
}
.wishlist-management .table-caption .sub-title:after {
  content: ':';
}
.wishlist-management .table-caption #wishlists-select,
.wishlist-management .table-caption #wishlists-move,
.wishlist-management .table-caption #wishlists-copy {
  float: left;
  margin-left: 10px;
  position: relative;
  padding-bottom: 5px;
}
.wishlist-management .table-caption #wishlists-select .split-button-title,
.wishlist-management .table-caption #wishlists-move .split-button-title,
.wishlist-management .table-caption #wishlists-copy .split-button-title {
  display: inline;
}
.wishlist-management .table-caption #wishlists-select .change,
.wishlist-management .table-caption #wishlists-move .change,
.wishlist-management .table-caption #wishlists-copy .change {
  margin-left: 10px;
  font-size: 15px;
}
.wishlist-management .table-caption #wishlists-select .list-container,
.wishlist-management .table-caption #wishlists-move .list-container,
.wishlist-management .table-caption #wishlists-copy .list-container {
  width: auto;
  left: auto;
  right: 0;
}
.wishlist-management .table-caption #wishlists-select .list-container li,
.wishlist-management .table-caption #wishlists-move .list-container li,
.wishlist-management .table-caption #wishlists-copy .list-container li {
  padding: 2px 10px;
}
.wishlist-management .table-caption #wishlists-select .list-container li a,
.wishlist-management .table-caption #wishlists-select .list-container li span,
.wishlist-management .table-caption #wishlists-move .list-container li a,
.wishlist-management .table-caption #wishlists-move .list-container li span,
.wishlist-management .table-caption #wishlists-copy .list-container li a,
.wishlist-management .table-caption #wishlists-copy .list-container li span {
  font-size: 15px;
  padding: 0;
}
.wishlist-management .table-caption #wishlists-select .list-container li:last-child,
.wishlist-management .table-caption #wishlists-move .list-container li:last-child,
.wishlist-management .table-caption #wishlists-copy .list-container li:last-child {
  border-bottom: 0;
}
.wishlist-management .table-caption #wishlists-move,
.wishlist-management .table-caption #wishlists-copy {
  float: right;
}
.wishlist-management .table-caption #wishlists-move .split-button-title,
.wishlist-management .table-caption #wishlists-copy .split-button-title {
  display: none;
}
.wishlist-management + .fieldset .buttons-set button {
  margin-bottom: 10px;
}

.fieldset .wishlist-empty {
  margin-bottom: 30px;
}

#wishlist-table .item-manage .split-button {
  float: right;
  margin-left: 20px;
  margin-bottom: 3px;
}
#wishlist-table .item-manage .split-button .change:after {
  top: 5px;
}
#wishlist-table .item-manage .split-button .list-container {
  left: auto;
  right: 0;
  width: auto;
}
#wishlist-table .item-manage .split-button .list-container li span {
  padding: 0 10px;
}
#wishlist-table .item-manage .split-button ~ .btn-update {
  clear: right;
  float: right;
  margin-top: 10px;
}

.wishlist-search-view h2.subtitle {
  margin-top: 20px;
  margin-bottom: 5px;
}
.wishlist-search-view .info-table .nobr {
  margin-right: 30px;
}
.wishlist-search-view #wishlist-table.clean-table td {
  max-width: 100%;
}
.wishlist-search-view #wishlist-table.clean-table td p.qty {
  text-align: center;
  width: 100%;
}
.wishlist-search-view #wishlist-table.clean-table td .price-box {
  margin: 0;
}
.wishlist-search-view #wishlist-table.clean-table th {
  padding-left: 2px;
  padding-right: 2px;
}
.wishlist-search-view .truncated .truncated_full_value .item-options {
  left: -40px;
}

/* Store Front Styles */
.split-button {
  position: relative;
}
.split-button .split-button-title {
  display: none;
}
.split-button .change {
  padding-right: 13px;
  min-height: 25px;
  position: relative;
}
.split-button .change:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 4px solid #3399cc;
  border-bottom: none;
  content: '';
  right: 0;
  top: 8px;
}
.split-button .change.active:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-bottom: 4px solid #3399cc;
  border-top: none;
}
.split-button .list-container {
  display: none;
  width: 120%;
  max-width: 320px;
  min-width: 175px;
  position: absolute;
  left: -10%;
  top: 100%;
  background: #FBFBFB;
  border: 1px solid #cccccc;
  text-align: center;
  z-index: 99999999;
}
.split-button .list-container li {
  border-bottom: 1px solid #ededed;
}
.split-button .list-container li span,
.split-button .list-container li a {
  color: #3399cc;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  position: relative;
  font-size: 14px;
  cursor: pointer;
  display: block;
  padding: 5px 10px;
  white-space: normal;
  text-transform: none;
}
.split-button .list-container li span:hover,
.split-button .list-container li a:hover {
  color: #246b8f;
}
.split-button .list-container li.new {
  background-color: #ededed;
}
.split-button .list-container li.new span:before,
.split-button .list-container li.new a:before {
  content: '+ ';
}
.split-button.active .list-container {
  display: block;
}

.products-grid .split-button .list-container {
  width: 115%;
}
.products-grid .split-button .list-container li span,
.products-grid .split-button .list-container li a {
  font-size: 12px;
}

.products-list .split-button .list-container {
  width: auto;
}

.product-view .split-button .change {
  padding-right: 20px;
}
.product-view .split-button .change:after {
  right: 7px;
}
.product-view .split-button .list-container {
  width: auto;
}
.product-view .split-button .list-container li {
  float: none;
  margin-bottom: 0;
}

.products-list .split-button .list-container {
  left: auto;
  right: -10%;
}

/* ============================================ *
 * Customer Order by SKU
 * ============================================ */
.widget-addbysku td.last .input-box {
  float: left;
}

.widget-addbysku .btn-remove {
  cursor: pointer;
  float: left;
  margin-top: 7px;
  margin-left: 5px;
}

.widget-addbysku .add-row {
  cursor: pointer;
}

/* ============================================ *
 * Gift Message Styles
 * ============================================ */
.gift-message-form .inner-box > div {
  clear: both;
  width: 100%;
}

#allow-gift-options-for-items-container,
#allow-gift-messages-for-order-container,
#allow-gift-options-for-order-container {
  width: 100%;
  float: left;
  display: block;
}

.gift-message-form .gift-item .fieldset {
  float: left;
  width: 100%;
  margin-left: 0px !important;
}

.gift-message-form .inner-box > div {
  clear: both;
  width: 100%;
}

.gift-wrapping-form .select {
  max-width: 300px;
}

.gift-item .product-img-box > * {
  float: left;
  clear: both;
  margin-top: 5px;
}

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

.events-panel {
  border-top: 1px solid #cccccc;
  float: left;
  width: 100%;
  margin-top: 10px;
}
.events-panel .event-item {
  float: left;
  width: 100%;
  margin: 10px 0;
}
.events-panel .event-item .status {
  font-size: 18px;
}
.events-panel .event-item .event-dates, .events-panel .event-item .event-button, .events-panel .event-item .event-ticker {
  margin-bottom: 10px;
}
.events-panel .event-item .category-show {
  border: 1px solid #cccccc;
  float: left;
  width: 100%;
}
.events-panel .event-item .category-show img {
  width: 100%;
}

/* Category Event Module - Upcoming */
.container-upcoming {
  background: #f4f4f4;
  border-color: #cccccc;
}

.container-upcoming:after {
  border-top-color: #cccccc;
}

/* Category Event Module - Closed */
.container-closed {
  background: #aaaaaa;
  border-color: #777777;
}

.container-closed:after {
  border-top-color: #777777;
}

