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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */
h1, [class*="customer-account"] .dashboard .box-account .box-head h2 {
  font-size: 2em;
}

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

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

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

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

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

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

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

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

h1, [class*="customer-account"] .dashboard .box-account .box-head h2,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

address {
  font-style: normal;
}

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

img {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

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

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

.form-list #form-reset-password {
  width: 440px;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .form-list #form-reset-password {
    width: 80%;
  }
}

#button-reset-password {
  margin: auto;
  width: 210px;
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  #button-reset-password {
    width: 70%;
  }
}

/* ============================================ *
 * 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: "Bliss2", Arial, sans-serif;
  color: #636363;
  font-size: 14px;
  line-height: 1.5;
}

a {
  color: #0096b6;
  text-decoration: none;
}

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

a:focus {
  outline: none;
  color: #00181d;
}

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

/* ============================================ *
 * Typography
 * ============================================ */
h1, [class*="customer-account"] .dashboard .box-account .box-head h2, .h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #3399CC;
  font-family: "Bliss2", Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
}

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

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

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

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

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

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

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

.availability .label {
  display: none;
}

.availability.in-stock {
  color: #11B400;
}

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

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

/* -------------------------------------------- *
 * Page Titles
 */
.page-title h1, .page-title [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .page-title h2,
.page-title h2,
.product-name h1,
.product-name [class*="customer-account"] .dashboard .box-account .box-head h2,
[class*="customer-account"] .dashboard .box-account .box-head .product-name h2,
.product-name .h1 {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  color: #636363;
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 3px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

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

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

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

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

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

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

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

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

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

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

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

/* -------------------------------------------- *
 * 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: "Bliss2", Arial, sans-serif;
  margin: 7px 0;
}
.block-account li strong,
.block-cms-menu li strong {
  font-weight: 400;
  color: #0096b6;
}
.block-account li a,
.block-cms-menu li a {
  color: #636363;
}
.block-account li a:hover,
.block-cms-menu li a:hover {
  color: #0096b6;
}

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

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

/* Primary Buttons */
.button,
.cart-table .product-cart-actions .button,
#co-shipping-method-form .buttons-set .button,
.footer .button {
  background: #3399CC;
  display: inline-block;
  padding: 7px 15px;
  border: 0;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: normal;
  font-family: "Bliss2", Arial, sans-serif;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
}
.button:hover,
.cart-table .product-cart-actions .button:hover,
#co-shipping-method-form .buttons-set .button:hover,
.footer .button:hover {
  background: #2e8ab8;
  cursor: pointer;
}
.button:active,
.cart-table .product-cart-actions .button:active,
#co-shipping-method-form .buttons-set .button:active,
.footer .button:active {
  background: #297aa3;
  color: #FFFFFF;
}
.button:focus,
.cart-table .product-cart-actions .button:focus,
#co-shipping-method-form .buttons-set .button:focus,
.footer .button:focus {
  background-color: #297aa3;
  outline: none;
  color: #FFFFFF;
}

a.button {
  text-decoration: none;
}

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

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

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

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

.button2:focus {
  outline: none;
}

.button2 span,
.button2 span span {
  line-height: 30px;
  height: 30px;
  text-decoration: underline;
  text-transform: uppercase;
  display: inline-block;
  color: #0096b6;
  font-family: "Bliss2", Arial, sans-serif;
}
.button2 span:hover,
.button2 span span:hover {
  text-decoration: none;
  color: #246b8f;
}

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

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

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

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

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

.paypal-button img {
  display: inline;
}

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

/* -------------------------------------------- *
 * Icons
 */
.icon-sprite, .btn-remove2, .ratings .rating-box, .ratings .rating-box .rating, .sorter > .sort-by .sort-by-switcher, .sorter > .view-mode .grid,
.sorter > .view-mode .list, .skip-nav .icon, .skip-search .icon, #search_mini_form .search-button:before, .skip-cart .icon, .product-view .sharing-links a, .review-summary-table .rating-box .rating-number:after, .ratings-table .rating-box, .ratings-table .rating-box .rating, body.page-le-mag .presentation .actions .sharing-links a {
  background-image: url(../images/icon_sprite.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 4 / 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .icon-sprite, .btn-remove2, .ratings .rating-box, .ratings .rating-box .rating, .sorter > .sort-by .sort-by-switcher, .sorter > .view-mode .grid,
  .sorter > .view-mode .list, .skip-nav .icon, .skip-search .icon, #search_mini_form .search-button:before, .skip-cart .icon, .product-view .sharing-links a, .review-summary-table .rating-box .rating-number:after, .ratings-table .rating-box, .ratings-table .rating-box .rating, body.page-le-mag .presentation .actions .sharing-links a {
    background-image: url(../images/icon_sprite@2x.png);
    background-size: 100px 1000px;
  }
}
/* -------------------------------------------- *
 * Breadcrumbs
 */
.breadcrumbs {
  overflow: hidden;
  margin: 20px 0 15px 0;
}

.breadcrumbs li {
  float: left;
  font-size: 10px;
  font-family: "Bliss2", Arial, sans-serif;
  text-transform: uppercase;
}

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

.breadcrumbs a:hover {
  color: #a3a5a8;
  text-decoration: none;
}

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

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

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

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

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

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

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

/* -------------------------------------------- *
 * Container
 */
.main-container,
.footer-container {
  position: relative;
  margin: 0 auto;
  padding: 0;
}
.main-container:after,
.footer-container:after {
  content: '';
  display: table;
  clear: both;
}

.footer-container {
  padding: 0 20px;
}

.main-container,
.footer-container {
  /*padding: $trim;*/
}

.footer-container {
  padding-top: 0px;
}

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

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

.col-left {
  float: left;
  width: 25%;
  padding-left: 0;
  /* Remove the 15px padding */
  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: 75%;
}

.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: 50%;
  padding: 20px;
}
.col2-set .col-1 {
  float: left;
  padding-left: 0;
}
.col2-set .col-2 {
  float: right;
  padding-right: 0;
}
.col2-set .narrow {
  width: 33%;
}
.col2-set .wide {
  width: 65%;
}
.col2-set:after {
  content: '';
  display: table;
  clear: both;
}

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

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

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

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

/* -------------------------------------------- *
 * Messages
 */
.success {
  color: #11B400;
}

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

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

/* -------------------------------------------- *
 * 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 #DF280A;
  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 #DF280A;
  border-right: none;
}

.messages .notice-msg li {
  color: #000000;
  border-left: 5px solid #E26703;
  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 #E26703;
  border-right: none;
}

.messages .success-msg li {
  color: #000000;
  border-left: 5px solid #11B400;
  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 #11B400;
  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, .page-popup [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .page-popup h2 {
  margin: 0 0 0.5em;
  font-size: 36px;
}

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

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

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

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

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

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

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

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

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

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

.price-notice {
  color: #A0A0A0;
}

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

.price-box .price,
.price {
  font-family: "Bliss2", Arial, sans-serif;
}

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

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

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

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

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

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

span.weee {
  display: block;
}

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

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

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

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

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

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

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

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

.no-touch .product-image:hover {
  border-color: #3399CC;
}

/* -------------------------------------------- *
 * 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: 15px;
  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 .note {
  color: #A0A0A0;
  font-size: 13px;
}

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

/* -------------------------------------------- *
 * Toolbar
 */
.toolbar {
  margin-top: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #CCCCCC;
  border-top: 1px solid #CCCCCC;
  background: #F4F4F4;
  padding: 5px 10px 0px 10px;
}
.toolbar:after {
  content: '';
  display: table;
  clear: both;
}

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

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

.toolbar,
.pager {
  font-family: "Bliss2", Arial, sans-serif;
  color: #636363;
  line-height: 30px;
  font-size: 12px;
}

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

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

.sorter > .sort-by {
  float: left;
  margin-right: 5px;
  height: 30px;
}
.sorter > .sort-by .sort-by-switcher {
  width: 30px;
  height: 30px;
  display: inline-block;
}
.sorter > .sort-by .sort-by-switcher--asc {
  background-position: 4px -542px;
}
.sorter > .sort-by .sort-by-switcher--asc:hover {
  background-position: -46px -542px;
}
.sorter > .sort-by .sort-by-switcher--desc {
  background-position: 4px -567px;
}
.sorter > .sort-by .sort-by-switcher--desc:hover {
  background-position: -46px -567px;
}

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

.pager {
  float: right;
  overflow: hidden;
}
.pager > .count-container {
  float: left;
}
.pager .amount {
  float: left;
  font-family: "Bliss2", Arial, sans-serif;
  white-space: nowrap;
  margin: 0 15px 0 0;
}
.pager .limiter {
  float: left;
  height: 30px;
  line-height: 30px;
}
.pager .limiter > label {
  padding-right: 5px;
}
.pager .limiter > label:after {
  content: ':';
}
.pager .amount,
.pager .limiter,
.pager .pages {
  margin-bottom: 5px;
}

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

.pages li {
  float: left;
}

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

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

.pages .next,
.pages .previous {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: transparent;
  position: relative;
  font-family: "Bliss2", Arial, sans-serif;
}
.pages .next:hover,
.pages .previous:hover {
  border: 1px solid #0096b6;
}

.pages .next:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #0096b6;
  border-right: none;
  top: 50%;
  margin-top: -3px;
  left: 50%;
  margin-left: -2px;
}
.pages .next:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #246b8f;
  border-right: none;
}

.pages .previous:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #0096b6;
  border-left: none;
  top: 50%;
  margin-top: -3px;
  left: 50%;
  margin-left: -2px;
}
.pages .previous:hover:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #246b8f;
  border-left: none;
}

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

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

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

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

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

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

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

.width-full {
  width: 100%;
}

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

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

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

button.button.button-first {
  background: #0096b6;
  padding: 11px 36px;
  float: none !important;
  border: 1px solid #0096b6;
  box-sizing: border-box;
  font-size: 14px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
button.button.button-first:hover {
  background: #006c83;
  border: 1px solid #006c83;
}
button.button.button-second {
  background: #ffffff;
  color: #0096b6;
  padding: 11px 36px;
  float: none !important;
  border: 1px solid #0096b6;
  box-sizing: border-box;
  font-size: 14px;
}
button.button.button-second:hover {
  border-width: 2px;
  padding: 10px 35px;
}
button.button.button-nopriority {
  background: #58585a !important;
  padding: 11px 36px;
  float: none !important;
  border: 1px solid #58585a;
  box-sizing: border-box;
  font-size: 14px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
button.button.button-nopriority:hover {
  background: #3f3f40 !important;
  border: 1px solid #3f3f40 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.input-text.validation-failed {
  border-color: #DF280A;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.data-table tbody td,
.data-table tfoot td {
  font-family: Georgia, Times, "Times New Roman", serif;
}

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

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

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

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

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

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

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

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

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

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

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

.select-style {
  padding: 0;
  margin: 0;
  border: 1px solid #ccc;
  border-right: none;
  border-top: none;
  width: 120px;
  overflow: hidden;
  background-color: #fff;
  background: #fff url("../images/arrowdown.gif") no-repeat 90% 50%;
}
.select-style.fullselect {
  width: 100%;
  background-position: 98% center;
}
.select-style select {
  padding: 5px 8px;
  width: 130%;
  border: none !important;
  box-shadow: none;
  background-color: transparent !important;
  background-image: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}
.select-style select:focus {
  outline: none;
}

body.cms-index-index .page-header-container h1, body.cms-index-index .page-header-container [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head body.cms-index-index .page-header-container h2 {
  margin-bottom: 0;
}

body.catalog-category-view .page-header-container a.logo {
  box-sizing: content-box;
}

@font-face {
  font-family: "Bliss2";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/bliss2-light.eot?") format("eot"), url("../fonts/bliss2-light.woff") format("woff"), url("../fonts/bliss2-light.ttf") format("truetype"), url("../fonts/bliss2-light.svg#Bliss2") format("svg");
}
@font-face {
  font-family: "Bliss2";
  font-style: italic;
  font-weight: 300;
  src: url("../fonts/bliss2-light-italic.eot?") format("eot"), url("../fonts/bliss2-light-italic.woff") format("woff"), url("../fonts/bliss2-light-italic.ttf") format("truetype"), url("../fonts/bliss2-light-italic.svg#Bliss2") format("svg");
}
@font-face {
  font-family: "Bliss2";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/bliss2-regular.eot?") format("eot"), url("../fonts/bliss2-regular.woff") format("woff"), url("../fonts/bliss2-regular.ttf") format("truetype"), url("../fonts/bliss2-regular.svg#Bliss2") format("svg");
}
@font-face {
  font-family: "Bliss2";
  font-style: italic;
  font-weight: normal;
  src: url("../fonts/bliss2-regular-italic.eot?") format("eot"), url("../fonts/bliss2-regular-italic.woff") format("woff"), url("../fonts/bliss2-regular-italic.ttf") format("truetype"), url("../fonts/bliss2-regular-italic.svg#Bliss2") format("svg");
}
@font-face {
  font-family: "Bliss2";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/bliss2-medium.eot?") format("eot"), url("../fonts/bliss2-medium.woff") format("woff"), url("../fonts/bliss2-medium.ttf") format("truetype"), url("../fonts/bliss2-medium.svg#Bliss2") format("svg");
}
@font-face {
  font-family: "Bliss2";
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/bliss2-medium-italic.eot?") format("eot"), url("../fonts/bliss2-medium-italic.woff") format("woff"), url("../fonts/bliss2-medium-italic.ttf") format("truetype"), url("../fonts/bliss2-medium-italic.svg#Bliss2") format("svg");
}
@font-face {
  font-family: "Bliss2";
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/bliss2-bold.eot?") format("eot"), url("../fonts/bliss2-bold.woff") format("woff"), url("../fonts/bliss2-bold.ttf") format("truetype"), url("../fonts/bliss2-bold.svg#Bliss2") format("svg");
}
@font-face {
  font-family: "Bliss2";
  font-style: italic;
  font-weight: bold;
  src: url("../fonts/bliss2-bold-italic.eot?") format("eot"), url("../fonts/bliss2-bold-italic.woff") format("woff"), url("../fonts/bliss2-bold-italic.ttf") format("truetype"), url("../fonts/bliss2-bold-italic.svg#Bliss2") format("svg");
}
@font-face {
  font-family: "Bliss2";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/bliss2-heavy.eot?") format("eot"), url("../fonts/bliss2-heavy.woff") format("woff"), url("../fonts/bliss2-heavy.ttf") format("truetype"), url("../fonts/bliss2-heavy.svg#Bliss2") format("svg");
}
@font-face {
  font-family: "Bliss2";
  font-style: italic;
  font-weight: 800;
  src: url("../fonts/bliss2-heavy-italic.eot?") format("eot"), url("../fonts/bliss2-heavy-italic.woff") format("woff"), url("../fonts/bliss2-heavy-italic.ttf") format("truetype"), url("../fonts/bliss2-heavy-italic.svg#Bliss2") format("svg");
}
/* ============================================ *
 * Header
 * ============================================ */
.page-header {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.page-header-container {
  position: relative;
  text-align: center;
}

/*  Header transparent homepage  */
.cms-index-index .page-header-container {
  position: absolute;
  top: 0;
  z-index: 10;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}
.cms-index-index .page-header-container:hover {
  background-color: rgba(255, 255, 255, 0.85);
}
.cms-index-index .page-header-container #header-nav {
  border-bottom: none;
}
.cms-index-index .page-header-container #header-nav .nav-primary li.level0 ul {
  border-top: none;
}
.cms-index-index .page-header-container .menu-active ul.level0 {
  background-color: rgba(255, 255, 255, 0.85);
}
.cms-index-index .page-header-container .menu-active ul.level0 ul.level1 {
  background-color: transparent;
}
.cms-index-index .page-header-container .menu-active ul.level0 li.level2 {
  background-color: transparent;
}

.header-language-container,
.page-header {
  font-family: "Bliss2", Arial, sans-serif;
}

/* ============================================ *
 * Language switcher + welcome message
 * ============================================ */
.header-language-background {
  padding: 10px;
  background-color: #0096b6;
  text-transform: uppercase;
  display: none;
}
.header-language-background .header-language-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.header-language-background:after {
  content: '';
  display: table;
  clear: both;
}
.header-language-background .form-language,
.header-language-background .currency-switcher {
  float: left;
  margin-right: 10px;
}
.header-language-background .welcome-msg {
  float: right;
}

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

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

/* ============================================ *
 * Logo
 * ============================================ */
.logo {
  display: block;
  float: none;
  width: 65%;
  min-width: 100px;
  min-height: 44px;
  text-align: center;
  padding: 10px;
}
.logo .small {
  display: block;
  max-width: 240px;
}
.logo .large {
  display: none;
  width: auto;
}

.scrolled-header .logo img {
  max-width: 100%;
}

.logo {
  max-width: 237px;
  min-height: 86px;
  margin: 0 auto;
  padding: 60px 15px 15px 15px;
  box-sizing: content-box;
}
.logo .small {
  display: none;
}
.logo .large {
  display: block;
}

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

.skip-links {
  border: 0;
  width: 100%;
  position: static;
  top: 0;
  left: 0;
}

/* -------------------------------------------- *
 * Skip - Link
 */
.skip-link {
  position: relative;
  float: left;
  width: 20%;
  height: 34px;
  background: none;
  color: #ffffff;
  line-height: 34px;
  text-align: center;
  font-size: 13px;
}

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

.skip-link {
  width: 25%;
}

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

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

.skip-link.skip-cart .icon {
  background: url("../images/icon-cart.png") no-repeat;
  background-position: left 3px;
}
.skip-link.skip-cart:hover .icon {
  opacity: 0.7;
  /*background: url("../images/icon-cart-black.png") no-repeat;*/
}
.skip-link.skip-cart:hover .label {
  /*color:$c-est-darkgrey;*/
  opacity: 0.7;
}
.skip-link.skip-cart:hover .count {
  opacity: 0.7;
}
.skip-link.skip-cart:hover:after {
  background: url("../images/icon-navarrow-black.png") no-repeat !important;
}

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

.skip-links .skip-search {
  height: 34px;
  background: none;
  padding-top: 2px;
}
.skip-links .skip-search .icon {
  background: url("../images/icon-search.png") no-repeat;
  background-position: left center !important;
  width: 20px;
  height: 34px;
  display: block;
}
.skip-links .skip-search:hover .icon {
  /*background: url("../images/icon-search-black.png") no-repeat;*/
  opacity: 0.7;
}
.skip-links .skip-search:hover .label {
  opacity: 0.7;
}

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

.skip-link .label {
  display: inline;
  line-height: 37px;
}

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

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

/* ============================================ *
 * Global Header Navigation
 * ============================================ */
.account-cart-wrapper {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  text-align: right;
  padding: 0 2%;
  /*background: $c-est-darkgrey;*/
  background: #000000;
  height: 37px;
}
.account-cart-wrapper a.skip-link:not(.skip-search) {
  outline: none;
  color: #ffffff;
  padding: 0 35px 0 0;
}
.account-cart-wrapper a.skip-link:not(.skip-search):after {
  content: '';
  width: 9px;
  height: 4px;
  background: url("../images/icon-navarrow.png") no-repeat;
  position: absolute;
  top: 17px;
  right: 20px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.account-cart-wrapper a.skip-link:not(.skip-search).skip-active:after {
  transform: rotate(180deg);
}
.account-cart-wrapper a.skip-link:not(.skip-search):hover {
  color: #ffffff;
}
.account-cart-wrapper a.skip-link:not(.skip-search):hover span.icon {
  background-position: left 3px !important;
}
.account-cart-wrapper .header-est-links {
  position: absolute;
  top: 0;
  height: 37px;
  line-height: 37px;
  color: #ffffff;
  background: #000000;
}
.account-cart-wrapper .header-est-links ul li {
  display: inline-block;
  margin-right: 15px;
}
.account-cart-wrapper .header-est-links ul li a {
  color: #ffffff;
  font-size: 13px;
}
.account-cart-wrapper .header-est-links ul li a .icon {
  background: url("../images/sprite-esthederm.png");
  display: inline-block;
  width: 30px;
  height: 37px;
  float: left;
}
.account-cart-wrapper .header-est-links ul li a .label {
  float: left;
  padding-left: 5px;
}
.account-cart-wrapper .header-est-links ul li a.link-diagnostic .icon {
  background-position: 0 4px;
}
.account-cart-wrapper .header-est-links ul li a.link-institut .icon {
  background-position: 0 -26px;
}
.account-cart-wrapper .header-est-links ul li a.link-circle .icon {
  background-position: 0 -57px;
}
.account-cart-wrapper .header-est-links ul li a:hover {
  text-decoration: none;
  /*&.link-diagnostic{
      .icon{
          background-position: -30px 4px;
      }
  }
  &.link-institut{
      .icon{
          background-position: -30px -26px;
      }
  }
  &.link-circle{
      .icon{
          background-position: -30px -57px;
      }
  }*/
}
.account-cart-wrapper .header-est-links ul li a:hover .label {
  opacity: 0.7;
}
.account-cart-wrapper .header-est-links ul li a:hover .icon {
  opacity: 0.7;
}
.account-cart-wrapper .link-naos {
  float: none;
  width: auto;
  vertical-align: top;
  display: inline-block;
  padding: 0 10px;
}
.account-cart-wrapper .language-switch:hover {
  text-decoration: none;
}
.account-cart-wrapper .language-switch .label {
  color: white;
  line-height: 37px;
  margin-right: 50px;
  text-decoration: none !important;
}
.account-cart-wrapper .language-switch .label:hover {
  color: #a3a5a8;
  opacity: 0.7;
}

.scrolled-header {
  padding: 0 2%;
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  background: #ffffff;
  z-index: 999;
  width: 100%;
  border-bottom: 1px solid #303e48;
}
.scrolled-header .logo {
  max-height: 70px;
  max-width: 140px;
  float: left;
  padding: 0;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  min-height: 0;
  padding-top: 10px;
  margin-right: 25px;
}
.scrolled-header #scrolled-header-nav {
  display: inline-block;
}
.scrolled-header #scrolled-header-nav ol.nav-primary {
  margin: 0;
}
.scrolled-header #scrolled-header-nav ol.nav-primary li.level0 a.level0 {
  line-height: 70px;
}
.scrolled-header .skip-links {
  position: relative;
  width: 100px;
  clear: none;
  float: right;
  height: 70px;
  top: auto;
  left: auto;
  overflow: hidden;
}
.scrolled-header .skip-links .account-cart-wrapper {
  position: relative;
  padding: 0 2%;
  background: none;
  height: auto;
}
.scrolled-header .skip-links .account-cart-wrapper .skip-link {
  width: 40px;
  height: 70px;
  display: inline-block;
  float: left;
  font-size: 13px;
}
.scrolled-header .skip-links .account-cart-wrapper .header-minicart .skip-link span.label {
  display: none;
}
.scrolled-header .skip-links .account-cart-wrapper .skip-search {
  padding: 0;
}
.scrolled-header .skip-links .account-cart-wrapper .skip-search span.icon {
  background: url("../images/icon-search-scrolled.png") no-repeat;
  width: 25px;
  height: 70px;
  background-position: left center !important;
}
.scrolled-header .skip-links .account-cart-wrapper .skip-search:hover span.icon {
  background-position: left center !important;
}
.scrolled-header .skip-links .account-cart-wrapper .skip-search:after {
  display: none;
}
.scrolled-header .skip-links .account-cart-wrapper .skip-cart {
  display: none;
  padding: 0;
  width: 40px;
}
.scrolled-header .skip-links .account-cart-wrapper .skip-cart span.icon {
  background: url("../images/icon-cart-scrolled.png") no-repeat;
  width: 25px;
  height: 70px;
  background-position: left center !important;
}
.scrolled-header .skip-links .account-cart-wrapper .skip-cart:hover span.icon {
  background-position: left center !important;
}
.scrolled-header .skip-links .account-cart-wrapper .skip-cart:after {
  display: none;
}
.scrolled-header .skip-links .account-cart-wrapper .skip-cart span.count {
  color: #303e48;
  position: absolute;
  top: 28px;
  right: 0px;
  border-radius: 50%;
  height: 20px;
  font-size: 15px;
  font-weight: bold;
}
.scrolled-header .skip-links .account-cart-wrapper .skip-cart span.count:before {
  display: none;
}
.scrolled-header .skip-links .account-cart-wrapper .skip-cart span.count:after {
  display: none;
}

div#header-cart.scrolled.skip-active {
  position: fixed;
  top: 70px;
}

#header-account button.button {
  width: 80%;
  padding: 11px 0;
}
#header-account button.button.button-second:hover {
  padding: 10px 0;
}
#header-account input {
  width: 80%;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  border-top: none;
  border-right: none;
  outline: none;
  margin-bottom: 10px;
}
#header-account .forgot-password-link {
  color: #a3a5a8;
  text-decoration: none;
  outline: none;
  border-bottom: 1px solid #a3a5a8;
  width: 80%;
  margin: 0 auto 30px auto;
  padding-bottom: 30px;
}
#header-account .forgot-password-link:hover {
  color: #2f3d47;
}

.nav-primary li.level0:after {
  opacity: 0;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #303e48;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.nav-primary li.level0:hover:after {
  opacity: 1;
}

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

.free-delivery {
  width: 100%;
  max-width: 1070px;
  margin: auto;
}
.free-delivery img {
  margin-top: -80px;
  float: right;
}
@media screen and (min-width: 1020px) and (max-width: 1050px) {
  .free-delivery img {
    margin-right: 40px;
  }
}
@media screen and (max-width: 1020px) {
  .free-delivery img {
    margin-right: 20px;
  }
}
@media screen and (max-width: 750px) {
  .free-delivery {
    display: none;
  }
}

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

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

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

.skip-nav {
  width: 25%;
}

.skip-nav {
  display: none;
}

/* ============================================ *
 * Nav - Skip Content
 * ============================================ */
#header-nav {
  display: block;
  /* Force visibility */
  border-bottom: 1px solid #303e48;
}

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

/* ============================================ *
 * General Navigation Styles
 * ============================================ */
.nav-primary a {
  text-decoration: none;
  position: relative;
  display: block;
  color: #303e48;
  line-height: 30px;
  font-family: "Bliss2", Arial, sans-serif;
  font-size: 15px;
}
.nav-primary li {
  position: relative;
}

.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;
  font-weight: 500;
}

/* ============================================ *
 * Small Viewports - Accordion Style Menu
 * ============================================ */
/* ============================================ *
 * 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.menu-active ul.level0 {
  display: table !important;
  table-layout: fixed;
  height: 380px !important;
}
.nav-primary li.level0.menu-active ul.level0 div.nav-restrictor {
  width: 1000px;
  height: 330px;
  overflow: hidden;
}
.nav-primary a.level0 {
  padding: 0 25px;
}
.nav-primary ul.level0 li.level1 a {
  color: #a3a5a8;
}
.nav-primary ul.level0 li.level1 a.level2 {
  font-size: 13px;
  text-transform: none;
  line-height: 23px;
  height: 23px;
  font-weight: 300;
}
.nav-primary ul.level0 li.level1 a.level2:hover {
  color: #2f3d47;
}
.nav-primary ul.level0 li.level1 li.level2.view-all a {
  color: #303e48;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-primary li.level0,
.nav-primary a.level0 {
  display: inline-block;
}
.nav-primary li:last-child > a {
  border-bottom: none;
}
.nav-primary a:hover,
.nav-primary li:hover > a {
  color: #303e48;
}
.nav-primary .menu-active {
  z-index: 200;
}
.nav-primary li.level0 ul {
  background: #FBFBFB;
  border: solid 1px #CCCCCC;
  position: absolute;
  left: 0;
  top: 30px;
  /* Height of ".nav-primary a.level0" */
  z-index: 10;
  width: 250px;
  display: none;
  /* Hide until displayed. */
  border: none;
  background: #ffffff;
  text-transform: uppercase;
  border-bottom: 1px solid #a3a5a8;
  text-align: left !important;
  border-top: 1px solid #303e48;
  padding-top: 25px;
  padding-bottom: 25px;
}
.nav-primary li.level0 ul:not(.level0) {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  text-align: left;
  border: none;
  padding: 0;
}
.nav-primary ul.level0.haslichildren li.level1:not(.view-all) {
  vertical-align: top;
  height: 100%;
  width: 250px;
  float: left;
}
.nav-primary .nav-promo-block {
  text-align: center;
  width: 250px;
  vertical-align: top;
  float: left;
  display: block;
  height: 330px;
  padding-right: 50px;
}
.nav-primary li.level1:not(.parent) {
  display: none;
}
.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.view-all {
  font-weight: bold;
  padding-bottom: 10px;
}
.nav-primary li.level1.parent a.level1 {
  display: none;
}
.nav-primary ul.level0 {
  padding: 60px 0;
}
.nav-primary ul.level0:not(.haslichildren) {
  border-right: none;
}
.nav-primary ul.level0:not(.haslichildren) li.level1 {
  display: block;
  border-right: none;
}
.nav-primary ul.level0:not(.haslichildren) li.level1.view-all {
  display: none !important;
}
.nav-primary ul.level0:not(.haslichildren) .nav-promo-block {
  display: table-cell;
  max-width: 30%;
}

.scrolled-header .nav-primary li.level0 ul.level0 {
  position: fixed;
  top: 70px;
  left: 0 !important;
  width: 100%;
  text-align: center;
}

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

.scrolled-header #scrolled-header-nav #nav ol.nav-primary li.level0 a.level0 {
  font-size: 13px;
  padding: 0 10px;
}

#header #header-nav #nav ol.nav-primary li.level0 a.level0 {
  font-size: 14px;
  padding: 0 17px;
}

.scrolled-header .logo {
  max-width: 85px;
}
.scrolled-header #scrolled-header-nav #nav ol.nav-primary li.level0 a.level0 {
  font-size: 11px;
  padding: 0 10px;
}

.nav-promo-block {
  text-align: center;
  width: 30%;
  vertical-align: top;
}
.nav-promo-block img {
  width: 100%;
}
.nav-promo-block .nav-block-title {
  font-size: 14px;
  color: #58585a;
  font-weight: 500;
  display: block;
  margin-top: 20px;
  text-transform: uppercase;
}
.nav-promo-block .nav-block-text {
  text-transform: none;
  color: #58585a;
  margin-bottom: 20px;
  display: block;
  font-size: 12px;
  margin-top: 10px;
}
.nav-promo-block button.button.button-first {
  padding: 10px 30px;
  font-weight: 300;
}

hr {
  height: .25rem;
  width: 25%;
  opacity: 0;
  margin: 0 0 0 0%;
  background: #303e48;
  border: none;
  transition: margin .3s ease-in-out;
  padding: 0;
  position: absolute;
  bottom: 0;
}

#scrolled-header-nav hr {
  left: 0;
}

#nav li.level0.nav-1 ul.level0 li.level1 li.level2.view-all {
  display: none;
}

/* ============================================ *
 * Search - Skip Link
 * ============================================ */
.skip-search:not(.skip-active):hover .icon {
  background-position: -46px -146px;
}
.skip-search .icon {
  background-position: 4px -146px;
}

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

#header-search, #scrolled-header-search {
  position: absolute;
  top: 0px;
  right: -25%;
  width: 25%;
  height: 37px;
  padding: 0;
  box-sizing: border-box;
  background: none;
  -webkit-transition: right 0.25s ease;
  -moz-transition: right 0.25s ease;
  -ms-transition: right 0.25s ease;
  -o-transition: right 0.25s ease;
  transition: right 0.25s ease;
}
#header-search.skip-active, #scrolled-header-search.skip-active {
  right: 0;
}
#header-search #search_mini_form #search, #scrolled-header-search #search_mini_form #search {
  background: #58585a;
  color: #ffffff;
  height: 37px;
  padding-left: 55px;
  padding-right: 0;
  border: none;
  border-radius: 0 !important;
  font-size: 13px;
  /* firefox 19+ */
  /* ie */
}
#header-search #search_mini_form #search::-webkit-input-placeholder, #scrolled-header-search #search_mini_form #search::-webkit-input-placeholder {
  color: #ffffff;
}
#header-search #search_mini_form #search::-moz-placeholder, #scrolled-header-search #search_mini_form #search::-moz-placeholder {
  color: #ffffff;
}
#header-search #search_mini_form #search:-ms-input-placeholder, #scrolled-header-search #search_mini_form #search:-ms-input-placeholder {
  color: #ffffff;
}
#header-search #search_mini_form .search-button, #scrolled-header-search #search_mini_form .search-button {
  left: 0;
  right: auto;
}
#header-search #search_mini_form .search-button:before, #scrolled-header-search #search_mini_form .search-button:before {
  background: url("../images/icon-search.png") no-repeat;
  background-position: center 3px !important;
}
#header-search #search_mini_form .search-button:after, #scrolled-header-search #search_mini_form .search-button:after {
  content: '';
  position: absolute;
  right: 0;
  height: 11px;
  width: 1px;
  background: #ffffff;
  top: 13px;
}

#scrolled-header-search {
  top: 0px;
  height: 70px;
}
#scrolled-header-search #search_mini_form #search {
  height: 70px;
}
#scrolled-header-search #search_mini_form .search-button {
  height: 70px;
}
#scrolled-header-search #search_mini_form .search-button:after {
  height: 44px;
}

/* ============================================ *
 * Search Input
 * ============================================ */
#search_mini_form .input-box {
  position: relative;
  padding-top: 0;
  z-index: 8;
}

#search_mini_form label {
  display: none;
}

#search {
  width: 100%;
  height: 40px;
  padding-right: 40px;
  font-family: "Bliss2", Arial, sans-serif;
}

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

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

#search_mini_form .search-button:hover:before {
  opacity: 0.8;
}

#search_mini_form .search-button:active:before {
  margin-top: -13px;
  margin-left: -13px;
}

#search_mini_form .search-autocomplete:before {
  display: none;
}

/* ============================================ *
 * Header - Account
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Account
 */
.skip-account:not(.skip-active):hover .icon {
  background-position: -46px -44px;
}
.skip-account .icon {
  background: url("../images/icon-account.png") no-repeat;
  background-position: left 3px !important;
}
.skip-account:hover .icon {
  /*background: url("../images/icon-account-black.png") no-repeat;*/
  opacity: 0.7;
}
.skip-account:hover .label {
  /*color:$c-est-darkgrey;*/
  opacity: 0.7;
}
.skip-account:hover:after {
  background: url("../images/icon-navarrow-black.png") no-repeat !important;
}

.skip-account, .skip-search, .skip-cart {
  float: none;
  width: auto;
  vertical-align: top;
  display: inline-block;
  padding: 0 10px;
}

#header-account.skip-active,
#scrolled-header-account.skip-active {
  background: #FBFBFB;
  border: solid 1px #CCCCCC;
  background: #ffffff;
  display: block;
  position: absolute;
  z-index: 200;
  top: 37px;
  right: 100px;
  width: 245px;
  border-top: 0;
  border: none;
  border-left: 1px solid #f6f6f6;
  border-bottom: 1px solid #f6f6f6;
  border-right: 1px solid #f6f6f6;
  padding-top: 30px;
  box-shadow: 5px 5px 16px rgba(163, 165, 168, 0.2);
}
#header-account.skip-active .block .actions,
#scrolled-header-account.skip-active .block .actions {
  margin: 0;
}

#header-account a,
#scrolled-header-account a {
  display: block;
  padding: 5px 10px;
  color: #ffffff;
  line-height: 2;
}

#header-account a:hover,
#scrolled-header-account a:hover {
  color: #ffffff;
  text-decoration: none;
}

#header-account .user-account-links a {
  color: #303e48;
}
#header-account .user-account-links a:hover {
  color: #303e48;
}

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

#header-account a {
  position: relative;
  display: block;
  padding: 5px 10px;
  line-height: 23px;
  text-align: center;
}

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

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

.skip-cart {
  width: auto;
  padding: 0 10px;
}

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

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

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

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

.skip-cart {
  color: #0096b6;
}
.skip-cart:hover {
  text-decoration: none;
}
.skip-cart .count {
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  position: static;
  background: none;
  margin-left: 0px;
  font-size: 14px;
  width: auto;
}
.skip-cart .count:before {
  content: '(';
}
.skip-cart .count:after {
  content: ')';
}

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

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

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

/* -------------------------------------------- *
 * Mini Cart - Full
 */
/* Actions */
.cart-menu .actions {
  overflow: hidden;
  padding: 15px;
}

.cart-menu .actions .button {
  float: left;
  width: 48%;
}

.cart-menu .actions .button + .button {
  margin-left: 4%;
}

/* Subtotal */
.cart-menu .subtotal {
  padding: 0 15px 15px;
  font-family: "Bliss2", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

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

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

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

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

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

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

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

#header-cart.skip-active {
  width: 400px;
  border: 1px solid rgba(163, 165, 168, 0.1);
  box-shadow: 5px 5px 16px rgba(163, 165, 168, 0.2);
  border-top: none;
}
#header-cart .minicart-wrapper {
  min-height: 75px;
  padding: 25px 30px 25px 30px;
}
#header-cart .minicart-wrapper a.close {
  position: absolute;
  right: 30px;
  top: 25px;
  background: url("../images/cross-close.png");
  width: 21px;
  height: 21px;
}
#header-cart .minicart-wrapper p.empty {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #303e48;
  padding: 0;
  text-align: left;
}

.empty-cart-close {
  width: 22px;
  height: 22px;
  display: block;
  position: absolute;
  background: url("../images/empty-cart-close.png") no-repeat;
  right: 30px;
  transform: translate(0, -50%);
  top: 50%;
  cursor: pointer;
}

/* ============================================ *
 * Footer
 * ============================================ */
/* -------------------------------------------- *
 * Footer
 */
.footer,
.footer button {
  font-family: "Bliss2", Arial, sans-serif;
}

.footer {
  clear: both;
  width: 100%;
  border-top: 1px solid #CCCCCC;
  padding-top: 30px;
  /* -------------------------------------------- *
   * Social icons
   */
}
.footer .block-title {
  border-bottom: 0;
  padding: 3px 0;
}
.footer .block-title strong {
  font-weight: normal;
}
.footer .block-title,
.footer address {
  color: #3399CC;
}
.footer .links {
  float: left;
  width: 17%;
  padding: 0 30px 0 0;
  margin-bottom: 30px;
}
.footer .links li {
  word-break: break-all;
  line-height: 1.4;
  padding: 4px 0;
}
.footer .links a {
  color: #636363;
}
.footer .links a:hover {
  color: #0096b6;
}
.footer .block-subscribe {
  float: right;
  width: 320px;
  margin-bottom: 30px;
}
.footer .links,
.footer .block-subscribe {
  text-transform: uppercase;
  font-size: 12px;
}
.footer .form-subscribe-header {
  display: none;
}
.footer .links.social-media em {
  background-image: url(../images/social_icons.png);
  background-repeat: no-repeat;
  width: 13px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 7px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 4 / 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .footer .links.social-media em {
    background-image: url(../images/social_icons@2x.png);
    background-size: 50px 125px;
  }
}
.footer .links.social-media em.facebook {
  background-position: 0 -0px;
  height: 13px;
}
.footer .links.social-media a:hover em.facebook {
  background-position: -25px -0px;
}
.footer .links.social-media em.twitter {
  background-position: 0 -24px;
  height: 13px;
}
.footer .links.social-media a:hover em.twitter {
  background-position: -25px -24px;
}
.footer .links.social-media em.youtube {
  background-position: 0 -49px;
  height: 13px;
}
.footer .links.social-media a:hover em.youtube {
  background-position: -25px -49px;
}
.footer .links.social-media em.pinterest {
  background-position: 0 -74px;
  height: 15px;
}
.footer .links.social-media a:hover em.pinterest {
  background-position: -25px -74px;
}
.footer .links.social-media em.rss {
  background-position: 0 -99px;
  height: 13px;
}
.footer .links.social-media a:hover em.rss {
  background-position: -25px -99px;
}
.footer .block-subscribe .input-box {
  float: left;
  width: 65.625%;
  padding-top: 0;
}
.footer .block-subscribe .input-text {
  width: 100%;
  border-right: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.footer .block-subscribe .block-content {
  padding-top: 7px;
}
.footer .block-subscribe .block-content:after {
  content: '';
  display: table;
  clear: both;
}
.footer .block-subscribe .actions {
  float: left;
  width: 34.375%;
  margin: 0;
}
.footer .block-subscribe .actions .button {
  height: 30px;
  line-height: 17px;
  float: left;
}
.footer .bugs,
.footer address {
  clear: both;
}
.footer .bugs {
  display: none;
}
.footer .form-language,
.footer .currency-switcher,
.footer .store-switcher {
  clear: both;
  margin-bottom: 10px;
}
.footer .form-language,
.footer .currency-switcher {
  display: none;
}
.footer address {
  border-top: 1px solid #CCCCCC;
  text-align: center;
  width: 100%;
  font-size: 11px;
  margin-top: 30px;
  padding: 30px 0;
}
.footer .links {
  width: 22.65625%;
  padding-right: 0;
  margin-right: 3.125%;
}
.footer .links:nth-child(4) {
  margin-right: 0;
}
.footer .block-subscribe {
  clear: both;
  float: none;
  margin: 0 auto 30px auto;
}

.footer-container .footer {
  padding: 30px 3% 30px 3%;
}
.footer-container .footer .footer-sitemap {
  width: 50%;
  display: inline-block;
  padding: 0 4%;
  border-right: 1px solid #a3a5a8;
  text-align: center;
}
.footer-container .footer .footer-sitemap .footer-category-sitemap {
  width: 33%;
  display: inline-block;
  margin-bottom: 30px;
  vertical-align: top;
  text-align: left;
  min-width: 160px;
}
.footer-container .footer .footer-sitemap .footer-category-sitemap h4 {
  color: #333d47;
  margin-bottom: 15px;
  font-size: 14px;
}
.footer-container .footer .footer-sitemap .footer-category-sitemap ul {
  padding: 0;
  margin: 0;
}
.footer-container .footer .footer-sitemap .footer-category-sitemap ul li a {
  color: #58585a;
  font-size: 13px;
}
.footer-container .footer .footer-sitemap .footer-category-sitemap ul li a:hover {
  text-decoration: none;
}
.footer-container .footer .footer-social {
  width: 49%;
  display: inline-block;
  vertical-align: top;
  padding: 0 4%;
}
.footer-container .footer .footer-social .footer-end-content {
  display: flex;
  justify-content: space-between;
}
.footer-container .footer .footer-social .block.block-subscribe {
  width: 100%;
  float: none;
  margin-bottom: 75px;
}
.footer-container .footer .footer-social .block.block-subscribe .block-title {
  margin: 0 0 10px 0;
  padding: 0;
}
.footer-container .footer .footer-social .block.block-subscribe .block-title strong {
  color: #333d47;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}
.footer-container .footer .footer-social .block.block-subscribe .block-content {
  margin: 0;
  padding: 0;
}
.footer-container .footer .footer-social .block.block-subscribe .block-content .form-subscribe-header {
  display: block;
  margin-bottom: 20px;
}
.footer-container .footer .footer-social .block.block-subscribe .block-content .form-subscribe-header label {
  text-transform: none;
  color: #58585a;
  font-size: 14px;
  font-weight: 400;
}
.footer-container .footer .footer-social .block.block-subscribe .block-content .input-box, .footer-container .footer .footer-social .block.block-subscribe .block-content .actions {
  float: none;
  display: inline-block;
  padding-top: 0;
  vertical-align: top;
}
.footer-container .footer .footer-social .block.block-subscribe .block-content .actions {
  width: 30%;
}
.footer-container .footer .footer-social .block.block-subscribe .block-content .actions .button {
  padding: 10px 0;
  height: auto;
  width: 100%;
  font-weight: 300;
}
.footer-container .footer .footer-social .block.block-subscribe .block-content .input-box {
  margin-right: 5%;
  width: 64%;
}
.footer-container .footer .footer-social .block.block-subscribe .block-content .input-box input.input-text {
  border: none;
  border-left: 1px solid #a3a5a8;
  border-bottom: 1px solid #a3a5a8;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  padding-left: 15px;
  outline: none;
  font-weight: 400;
}
.footer-container .footer .footer-social .block.block-subscribe .block-content .input-box input.input-text::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-weight: 400;
}
.footer-container .footer .footer-social .block.block-subscribe .block-content .input-box input.input-text::-moz-placeholder {
  /* Firefox 19+ */
  font-weight: 400;
}
.footer-container .footer .footer-social .block.block-subscribe .block-content .input-box input.input-text:-ms-input-placeholder {
  /* IE 10+ */
  font-weight: 400;
}
.footer-container .footer .footer-social .block.block-subscribe .block-content .input-box input.input-text:-moz-placeholder {
  /* Firefox 18- */
  font-weight: 400;
}
.footer-container .footer .footer-social .footer-social-content {
  overflow: hidden;
  margin-right: 30px;
}
.footer-container .footer .footer-social .footer-social-content h4 {
  color: #333d47;
  text-transform: uppercase;
  font-size: 14px;
  margin: 0 0 20px 0;
  padding: 0;
}
.footer-container .footer .footer-social .footer-social-content ul {
  display: block;
  width: 100%;
}
.footer-container .footer .footer-social .footer-social-content ul li {
  width: 38px;
  height: 38px;
  display: inline-block;
  margin-right: 8px;
}
.footer-container .footer .footer-social .footer-social-content ul li:last-child {
  margin-right: 0;
}
.footer-container .footer .footer-social .footer-social-content ul li a {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/social-sprite.png") no-repeat;
}
.footer-container .footer .footer-social .footer-social-content ul li a.footer-social-facebook {
  background-position: 0 0;
}
.footer-container .footer .footer-social .footer-social-content ul li a.footer-social-tumbler {
  background-position: -46px 0;
}
.footer-container .footer .footer-social .footer-social-content ul li a.footer-social-twitter {
  background-position: -92px 0;
}
.footer-container .footer .footer-social .footer-social-content ul li a.footer-social-youtube {
  background-position: -138px 0;
}
.footer-container .footer .footer-social .footer-social-content ul li a.footer-social-instagram {
  background-position: -184px 0;
}
.footer-container .footer .footer-social .footer-social-content ul li a.footer-social-googleplus {
  background-position: -230px 0;
}
.footer-container .footer .footer-social .footer-social-content ul li a:hover {
  text-decoration: none;
}
.footer-container .footer-links-legal {
  text-align: center;
  border-top: 1px solid #a3a5a8;
  border-bottom: 1px solid #a3a5a8;
  width: 100%;
}
.footer-container .footer-links-legal ul li {
  display: inline-block;
}
.footer-container .footer-links-legal ul li a {
  line-height: 40px;
  height: 40px;
  color: #a3a5a8;
  text-transform: uppercase;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 300;
}
.footer-container .footer-languages {
  padding: 0 0 0 3%;
  overflow: hidden;
  position: absolute;
}
.footer-container .footer-languages ul {
  float: left;
  padding: 10px 0;
}
.footer-container .footer-languages ul li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 9px;
}
.footer-container .footer-languages ul li:last-child {
  margin-right: 0;
}
.footer-container .footer-languages ul li a {
  width: 25px;
  height: 17px;
  display: block;
  border: 1px solid #a3a5a8;
  box-sizing: border-box;
  background: url("../images/sprite-flags.png") no-repeat;
  padding: 0 !important;
}
.footer-container .footer-languages ul li a:hover {
  text-decoration: none;
}
.footer-container .footer-languages .goto-site {
  margin-left: -5px;
}
.footer-container .footer-languages .goto-us {
  background-position: -168px center;
}
.footer-container .footer-languages .goto-fr {
  background-position: 0px center;
}
.footer-container .footer-languages .goto-en {
  background-position: -28px center;
}
.footer-container .footer-languages .goto-ca_fr {
  background-position: -139px center;
}
.footer-container .footer-languages .goto-es {
  background-position: -83px center;
}
.footer-container .footer-languages .goto-it {
  background-position: -111px center;
}
.footer-container .footer-languages .goto-cn {
  background-position: -196px center;
}
.footer-container .footer-languages .goto-bg {
  background-position: -225px center;
}
.footer-container .footer-languages .goto-co {
  background-position: -254px center;
}
.footer-container .footer-paiement-img {
  padding-top: 20px;
}

.footer-bottom-links {
  display: none;
}
.footer-bottom-links .consignestri {
  float: left;
  padding-top: 10px;
  width: 100%;
  max-width: 49%;
  padding-bottom: 10px;
  padding-left: 3%;
}
.footer-bottom-links .consignestri a {
  float: left;
  color: #303e48;
  font-size: 14px;
}
.footer-bottom-links .consignestri a:hover {
  text-decoration: none;
}
.footer-bottom-links .consignestri a img {
  max-height: 21px;
  margin-right: 25px;
  vertical-align: middle;
  display: inline-block;
}
.footer-bottom-links #onibilink {
  float: right;
  font-size: 14px;
  color: #303e48;
  text-transform: uppercase;
  padding-top: 10px;
  text-align: right;
  width: 100%;
  max-width: 49%;
  padding-bottom: 10px;
}
.footer-bottom-links #onibilink a {
  font-size: 14px;
  color: #303e48;
}
.footer-bottom-links #onibilink a:hover {
  text-decoration: none;
}

.footer-container .footer-links-legal ul li a {
  padding: 0 10px;
}
.footer-container .footer-bottom-links .consignestri {
  float: none;
  width: 100%;
  text-align: center;
  max-width: 100%;
}
.footer-container .footer-bottom-links .consignestri a {
  float: none;
}
.footer-container .footer-bottom-links #onibilink {
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.footer-container .footer .footer-social .footer-end-content {
  display: block;
}
.footer-container .footer .footer-social .footer-end-content .footer-category-sitemap {
  margin-top: 30px;
}

/* ================================================= *
 * General Product List Styles (not module-specific)
 * ================================================= */
/* -------------------------------------------- *
 * Product List General
 */
.category-title h1, .category-title [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .category-title h2,
body.catalogsearch-result-index .page-title h1,
body.catalogsearch-result-index .page-title [class*="customer-account"] .dashboard .box-account .box-head h2,
[class*="customer-account"] .dashboard .box-account .box-head body.catalogsearch-result-index .page-title h2 {
  border-bottom: none;
}

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

.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 {
  margin: 0;
  margin-bottom: 0.5em;
  color: #636363;
  font-family: "Bliss2", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  font-size: 13px;
  font-family: "Bliss2", 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: #636363;
}
h2.product-name a:hover,
h3.product-name a:hover,
h4.product-name a:hover,
h5.product-name a:hover,
p.product-name a:hover {
  color: #0096b6;
  text-decoration: none;
}

.products-grid .product-name,
.products-list .product-name {
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 14px;
  font-family: "Bliss2", Arial, sans-serif;
}
.products-grid .product-name a,
.products-list .product-name a {
  font-weight: 500;
}

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

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

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

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

.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;
  padding-bottom: 95px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.products-list .product-shop {
  float: right;
  width: 66.66667%;
  padding-left: 20px;
}
.products-list .product-shop .product-name {
  margin-bottom: 0;
}
.products-list .product-shop .ratings {
  margin: 0;
}
.products-list .product-shop .ratings .rating-box,
.products-list .product-shop .ratings .rating-links {
  float: left;
  margin-right: 7px;
}
.products-list .product-shop .ratings .rating-links {
  margin-top: 4px;
}
.products-list .product-shop .price-box {
  margin-top: 0;
}
.products-list .product-shop .price-box .price {
  font-size: 18px;
}
.products-list .product-shop .action {
  margin: 7px 0;
}
.products-list .product-shop .desc {
  margin-top: 7px;
}
.products-list .product-shop .product-primary,
.products-list .product-shop .desc {
  float: left;
  width: 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: 50px;
}
.mini-products-list .product-details {
  margin-left: 60px;
}
.mini-products-list .product-details .product-name {
  padding-top: 10px;
}
.mini-products-list li {
  margin-bottom: 10px;
  clear: both;
}
.mini-products-list li:after {
  content: '';
  display: table;
  clear: both;
}

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

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

/* ============================================ *
 * Layered Navigation
 * ============================================ */
.block-layered-nav .block-subtitle--filter {
  display: none;
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Bliss2", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0px;
  padding: 7px 10px 7px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #CCCCCC;
  position: relative;
  background-color: #F4F4F4;
  cursor: pointer;
}
.block-layered-nav .block-subtitle--filter:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 4px solid #0096b6;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px;
}
.block-layered-nav .block-subtitle--filter:hover {
  background-color: #ededed;
}

.block-layered-nav .block-content {
  border: none;
}
.block-layered-nav .block-content .toggle-tabs {
  display: none;
}
.block-layered-nav .block-content > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Bliss2", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0px;
  padding: 7px 10px 7px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #CCCCCC;
  position: relative;
  background-color: #F4F4F4;
  display: block;
}
.block-layered-nav .block-content > dl > dt:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 4px solid #0096b6;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px;
}
.block-layered-nav .block-content > dl > dt:hover {
  background-color: #ededed;
}
.block-layered-nav .block-content > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #CCCCCC;
}
.block-layered-nav .block-content > dl > dd:last-child {
  border-width: 0 1px 1px 1px;
}
.block-layered-nav .block-content h4.left-nav-title {
  color: #303e48;
  font-size: 16px;
  font-weight: normal;
}
.block-layered-nav .block-content ol.left-nav-list li a {
  font-size: 14px;
  color: #a3a5a8;
  font-weight: 300;
  line-height: 35px;
  text-transform: uppercase;
}

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

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

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

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

.catalog-category-view *, .catalogsearch-result-index * {
  box-sizing: border-box;
}
.catalog-category-view .main-container .category_banner, .catalogsearch-result-index .main-container .category_banner {
  background-size: cover;
  width: 100%;
  display: block;
  height: 230px;
}
.catalog-category-view .main-container .main, .catalogsearch-result-index .main-container .main {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.catalog-category-view .main-container .main .breadcrumbs, .catalogsearch-result-index .main-container .main .breadcrumbs {
  margin: 20px 0 15px 0;
}
.catalog-category-view .main-container .main .col-left, .catalogsearch-result-index .main-container .main .col-left {
  width: 23%;
  margin-right: 2%;
}
.catalog-category-view .main-container .main .col-left.sidebar .block .block-content, .catalogsearch-result-index .main-container .main .col-left.sidebar .block .block-content {
  padding: 20px 0 30px 10%;
  border: 1px solid #a3a5a8;
}
.catalog-category-view .main-container .main .col-left.sidebar .block .block-content dl dd, .catalogsearch-result-index .main-container .main .col-left.sidebar .block .block-content dl dd {
  border: none;
  padding: 0;
}
.catalog-category-view .main-container .main .col-left.sidebar .block .block-content dl dd ol.left-nav-list, .catalogsearch-result-index .main-container .main .col-left.sidebar .block .block-content dl dd ol.left-nav-list {
  margin-bottom: 20px;
}
.catalog-category-view .main-container .main .col-left.sidebar .block .block-content dl dd ol.left-nav-list li a, .catalogsearch-result-index .main-container .main .col-left.sidebar .block .block-content dl dd ol.left-nav-list li a {
  transition: padding 0.25s ease;
}
.catalog-category-view .main-container .main .col-left.sidebar .block .block-content dl dd ol.left-nav-list li a:hover, .catalogsearch-result-index .main-container .main .col-left.sidebar .block .block-content dl dd ol.left-nav-list li a:hover {
  text-decoration: none;
  color: #2f3d47;
}
.catalog-category-view .main-container .main .col-main, .catalogsearch-result-index .main-container .main .col-main {
  /*width:100%;
  max-width: 1280px;*/
}
.catalog-category-view .main-container .main .col-main .page-title h1, .catalog-category-view .main-container .main .col-main .page-title [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .catalog-category-view .main-container .main .col-main .page-title h2, .catalogsearch-result-index .main-container .main .col-main .page-title h1, .catalogsearch-result-index .main-container .main .col-main .page-title [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .catalogsearch-result-index .main-container .main .col-main .page-title h2 {
  font-size: 38px;
  text-transform: uppercase;
  font-weight: 500;
  color: #303e48;
  padding: 0;
  margin-bottom: 10px;
}
.catalog-category-view .main-container .main .col-main .page-title .link-rss, .catalogsearch-result-index .main-container .main .col-main .page-title .link-rss {
  display: none;
}
.catalog-category-view .main-container .main .col-main .category-image, .catalogsearch-result-index .main-container .main .col-main .category-image {
  display: none;
}
.catalog-category-view .main-container .main .col-main .category-description, .catalogsearch-result-index .main-container .main .col-main .category-description {
  color: #303e48;
  font-size: 14px;
  font-weight: 300;
  text-align: justify;
  margin-bottom: 15px;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar {
  margin: 0 0 10px 0;
  background: none;
  padding: 8px 0 4px 0;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .sorter .view-mode .list, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .sorter .view-mode .list {
  background-position: 11px -520px;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .sorter .view-mode .list:hover, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .sorter .view-mode .list:hover {
  background-position: -39px -520px;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .pager, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .pager {
  width: 100%;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .pager select, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .pager select {
  height: 25px;
  line-height: 25px;
  border-radius: 0;
  outline: none;
  padding: 0 6px;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .pager .limiter .select-style, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .pager .limiter .select-style {
  float: right;
  width: 60px;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .pager label, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .pager label {
  color: #a3a5a8;
  font-size: 14px;
  padding-right: 18px;
  font-weight: 300;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .pager .count-container .amount, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .pager .count-container .amount {
  color: #a3a5a8;
  font-size: 14px;
  position: relative;
  padding-right: 22px;
  margin: 0 22px 0 0;
  text-transform: uppercase;
  font-weight: 300;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .pager .count-container .amount:after, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .pager .count-container .amount:after {
  content: '';
  height: 17px;
  width: 1px;
  background: #a3a5a8;
  position: absolute;
  right: 0;
  top: 5px;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .pager .count-container .amount strong, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .pager .count-container .amount strong {
  font-weight: 300;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .pager .sort-by, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .pager .sort-by {
  float: left;
  padding-left: 22px;
  margin-left: 22px;
  position: relative;
  height: 27px;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .pager .sort-by:before, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .pager .sort-by:before {
  content: '';
  height: 17px;
  width: 1px;
  background: #a3a5a8;
  position: absolute;
  left: 0;
  top: 5px;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .pager .sort-by .sort-by-switcher, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .pager .sort-by .sort-by-switcher {
  display: none;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .pager .sort-by .select-style, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .pager .sort-by .select-style {
  float: right;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .pager .pages, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .pager .pages {
  float: right;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .pager .pages a, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .pager .pages a {
  color: #a3a5a8;
  width: 20px;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .pager .pages a:hover, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .pager .pages a:hover {
  text-decoration: none;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .pager .pages a.previous, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .pager .pages a.previous {
  font-size: 14px;
  text-transform: none;
  color: #a3a5a8;
  line-height: 31px;
  margin-right: 15px;
  width: 30px;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .pager .pages a.previous:before, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .pager .pages a.previous:before {
  display: none;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .pager .pages a.previous:hover, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .pager .pages a.previous:hover {
  border: none;
  outline: none;
  text-decoration: none;
  color: #a3a5a8;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .pager .pages a.next, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .pager .pages a.next {
  font-size: 14px;
  text-transform: none;
  color: #a3a5a8;
  line-height: 31px;
  margin-left: 15px;
  width: 30px;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .pager .pages a.next:before, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .pager .pages a.next:before {
  display: none;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .pager .pages a.next:hover, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .pager .pages a.next:hover {
  border: none;
  outline: none;
  text-decoration: none;
  color: #a3a5a8;
}
.catalog-category-view .main-container .main .col-main .category-products .toolbar .pager .pages .current, .catalogsearch-result-index .main-container .main .col-main .category-products .toolbar .pager .pages .current {
  border: none;
  color: #58585a;
  line-height: 31px;
  width: 20px;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid {
  display: table;
  width: 100%;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item {
  box-sizing: border-box;
  border: 5px solid #ffffff;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  padding: 1%;
  margin-right: 0;
  width: calc(100%/3);
  float: left;
  clear: none;
  display: block;
  position: relative;
  vertical-align: top;
  margin-bottom: 10px;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item:nth-child(3n+2):before, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item:nth-child(3n+2):before {
  content: '';
  position: absolute;
  top: 20%;
  height: 60%;
  left: -5px;
  width: 2px;
  background: #dddddd;
  display: block;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item:nth-child(3n+3):before, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item:nth-child(3n+3):before {
  content: '';
  position: absolute;
  top: 20%;
  height: 60%;
  left: -5px;
  width: 2px;
  background: #dddddd;
  display: block;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .product-info, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .product-info {
  padding-bottom: 0 !important;
  min-height: 0 !important;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .product-info .product-name, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .product-info .product-name {
  font-size: 14px;
  color: #303e48;
  font-weight: 800;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .product-info .product-name .product-title, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .product-info .product-name .product-title {
  display: block;
  min-height: 45px;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .product-info .product-name .product-subtitle, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .product-info .product-name .product-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #a3a5a8;
  text-transform: none;
  min-height: 60px;
  padding-bottom: 60px;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .product-info .product-name .product-subtitle span.product-subtitle-contenance, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .product-info .product-name .product-subtitle span.product-subtitle-contenance {
  font-weight: 100;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .ratings, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .ratings {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 1;
  z-index: 3;
  min-height: 0;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  -ms-transition: opacity 0.25s ease;
  -o-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  margin: 25px 0;
}
@media screen and (max-width: 750px) {
  .catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .ratings, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .ratings {
    top: 80px;
  }
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .ratings .rating-box, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .ratings .rating-box {
  width: 91px;
  height: 15px;
  background-position: 0 -616px;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .ratings .rating-box .rating, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .ratings .rating-box .rating {
  height: 15px;
  background-position: 0 -599px;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .actions, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .actions {
  position: absolute;
  bottom: 0;
  width: 100%;
  opacity: 0;
  z-index: 1;
  min-height: 0;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  -ms-transition: opacity 0.25s ease;
  -o-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .actions .button, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .actions .button {
  width: 90%;
  padding: 10px 0;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .actions .button.button-second:hover, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .actions .button.button-second:hover {
  padding: 9px 0;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .actions .availability.out-of-stock, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .actions .availability.out-of-stock {
  width: 48%;
  padding: 10px 0;
  float: right;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item:hover, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item:hover {
  border-color: #e7e8ea;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item:hover .ratings, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item:hover .ratings {
  opacity: 0;
  z-index: 1;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item:hover .actions, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item:hover .actions {
  opacity: 1;
  z-index: 3;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item:nth-child(even), .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item:nth-child(even) {
  margin-right: 0;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item a, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item a {
  border: none;
  outline: none;
  text-decoration: none;
  color: #303e48;
  text-transform: uppercase;
  text-align: center;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item a:hover, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item a:hover {
  color: #303e48;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item a img, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item a img {
  width: auto;
  margin: 0 auto;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .price-box, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .price-box {
  padding-bottom: 60px;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .price-box .price, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .price-box .price {
  font-weight: bold;
  font-size: 24px;
  color: #303e48;
}
.catalog-category-view .main-container .main .child-cat-block, .catalogsearch-result-index .main-container .main .child-cat-block {
  display: block;
  width: 100%;
}
.catalog-category-view .main-container .main .child-cat-block h2, .catalogsearch-result-index .main-container .main .child-cat-block h2 {
  color: #303e48;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 0;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 25px;
}
.catalog-category-view .main-container .main .child-cat-block .soin-list-name, .catalogsearch-result-index .main-container .main .child-cat-block .soin-list-name {
  color: #a3a5a8;
  line-height: 25px;
  font-size: 14px;
  display: table;
  width: 100%;
}
.catalog-category-view .main-container .main .child-cat-block .soin-list-name a, .catalogsearch-result-index .main-container .main .child-cat-block .soin-list-name a {
  color: #a3a5a8;
  text-decoration: none;
  display: table-row;
  transition: color .25s ease;
}
.catalog-category-view .main-container .main .child-cat-block .soin-list-name a:hover, .catalogsearch-result-index .main-container .main .child-cat-block .soin-list-name a:hover {
  color: #303e48 !important;
}
.catalog-category-view .main-container .main .child-cat-block .soin-list-name a:hover h3, .catalogsearch-result-index .main-container .main .child-cat-block .soin-list-name a:hover h3 {
  color: #303e48 !important;
}
.catalog-category-view .main-container .main .child-cat-block .soin-list-name a:hover span, .catalogsearch-result-index .main-container .main .child-cat-block .soin-list-name a:hover span {
  color: #303e48 !important;
}
.catalog-category-view .main-container .main .child-cat-block .soin-list-name a h3, .catalogsearch-result-index .main-container .main .child-cat-block .soin-list-name a h3 {
  display: table-cell;
  font-size: 14px;
  color: #a3a5a8;
  line-height: 25px;
  text-transform: uppercase;
  transition: color .25s ease;
  font-weight: 300;
}
.catalog-category-view .main-container .main .child-cat-block .soin-list-name a h3 .soin-list-description, .catalogsearch-result-index .main-container .main .child-cat-block .soin-list-name a h3 .soin-list-description {
  text-transform: none;
  transition: color .25s ease;
}
.catalog-category-view .main-container .main .child-cat-block .soin-list-name a span.soin-list-duration, .catalogsearch-result-index .main-container .main .child-cat-block .soin-list-name a span.soin-list-duration {
  text-transform: none;
  display: table-cell;
  text-align: right;
  transition: color .25s ease;
  min-width: 50px;
  font-weight: 300;
}
.catalog-category-view .main-container .main .child-cat-block .soin-list-name a:hover, .catalogsearch-result-index .main-container .main .child-cat-block .soin-list-name a:hover {
  text-decoration: none;
}
.catalog-category-view .main-container .main .child-cat-block .soin-list-name:last-child, .catalogsearch-result-index .main-container .main .child-cat-block .soin-list-name:last-child {
  margin-bottom: 47px;
}

.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .product-info .product-name, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .product-info .product-name {
  font-size: 12px;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .product-info .product-name .product-subtitle, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .product-info .product-name .product-subtitle {
  font-size: 13px;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .actions button.button, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .actions button.button {
  font-size: 12px;
}

.catalog-category-view .main-container .main, .catalogsearch-result-index .main-container .main {
  padding: 0 2%;
}
.catalog-category-view .main-container .main .col-left.sidebar, .catalogsearch-result-index .main-container .main .col-left.sidebar {
  width: 32%;
  margin-right: 2%;
}
.catalog-category-view .main-container .main .col-left.sidebar .block .block-content h4.left-nav-title, .catalogsearch-result-index .main-container .main .col-left.sidebar .block .block-content h4.left-nav-title {
  font-size: 14px;
}
.catalog-category-view .main-container .main .col-left.sidebar .block .block-content dl dd ol.left-nav-list li a, .catalogsearch-result-index .main-container .main .col-left.sidebar .block .block-content dl dd ol.left-nav-list li a {
  font-size: 12px;
}
.catalog-category-view .main-container .main .col-main, .catalogsearch-result-index .main-container .main .col-main {
  width: 66%;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item {
  width: calc(100%/2);
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item:nth-child(3n+2):after, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item:nth-child(3n+2):after {
  display: none;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item:nth-child(3n+2):before, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item:nth-child(3n+2):before {
  display: none;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .product-info .product-name, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .product-info .product-name {
  font-size: 12px;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .product-info .product-name .product-subtitle, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .product-info .product-name .product-subtitle {
  font-size: 13px;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .ratings, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .ratings {
  margin: 55px 0;
}
@media screen and (max-width: 1050px) {
  .catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .ratings, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .ratings {
    margin: 15px 0;
  }
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .actions button.button, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .actions button.button {
  font-size: 12px;
  display: block;
  margin: 0 auto 5px auto;
  width: 90%;
}
.catalog-category-view .main-container .main .col-main .category-products .products-grid li.item .price-box, .catalogsearch-result-index .main-container .main .col-main .category-products .products-grid li.item .price-box {
  padding-bottom: 125px;
}

.catalog-category-view .main-container.col1-layout .main .breadcrumbs {
  margin: 30px 0;
}
.catalog-category-view .main-container.col1-layout .main .col-main {
  width: 100%;
  text-align: center;
}
.catalog-category-view .main-container.col1-layout .main .col-main .page-title {
  text-align: center;
}
.catalog-category-view .main-container.col1-layout .main .col-main .page-title h1, .catalog-category-view .main-container.col1-layout .main .col-main .page-title [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .catalog-category-view .main-container.col1-layout .main .col-main .page-title h2 {
  margin: 0 0 17px 0;
  color: #303e48;
  font-size: 30px;
  line-height: 20px;
  font-weight: bold;
}
.catalog-category-view .main-container.col1-layout .main .col-main .category-description {
  font-size: 14px;
  color: #303e48;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  margin: 0 0 80px 0;
}
.catalog-category-view .main-container.col1-layout .main .col-main .category-description h2 {
  font-size: 18px;
  color: #303e48;
  margin: 0 0 17px 0;
  text-transform: none;
}
.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul {
  display: table;
  width: 100%;
  margin-bottom: 70px;
  border-bottom: 1px solid #939598;
}
.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul li.item {
  width: calc(100% / 3 - 50px);
  border: none;
  margin: 0 25px 50px 25px;
  display: inline-block;
  text-align: left;
  vertical-align: top;
  min-width: 320px;
}
.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul li.item:nth-child(3n+3) {
  margin-right: -0.25em;
}
.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul li.item a {
  text-decoration: none;
}
.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul li.item a:hover {
  text-decoration: none;
}
.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul li.item .carte-soins-name {
  position: relative;
  display: block;
  height: 100%;
}
.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul li.item .carte-soins-name p {
  color: #a3a5a8;
  font-size: 16px;
  font-weight: normal;
  line-height: 18px;
  padding-left: 30px;
  margin: 0 0 8px 0;
  min-height: 40px;
}
.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul li.item .carte-soins-name p.carte-soins-name-title {
  font-weight: 300;
}
.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul li.item .carte-soins-name h2 {
  padding-left: 30px;
  line-height: 20px;
  text-transform: none;
  margin: 0 0 35px 0;
  font-size: 26px;
  font-weight: 400;
}
.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul li.item .carte-soins-name:before {
  content: '';
  width: 1px;
  height: 90px;
  background: #303e48;
  left: 10px;
  bottom: -18px;
  position: absolute;
}
.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul li.item .carte-soins-image {
  width: 100%;
  height: 260px;
  display: block;
  margin: 0 0 30px 0;
  overflow: hidden;
}
.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul li.item .carte-soins-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul li.item .carte-soins-description {
  color: #303e48;
  font-size: 15px;
  margin: 0 0 35px 0;
  font-weight: 300;
  display: block;
  width: 100%;
  text-align: justify;
  min-height: 70px;
}
.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul li.item .button.button-first {
  float: right !important;
}
.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul.carte-soins-instituts {
  border-bottom: none;
}
.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul.carte-soins-instituts li.item {
  width: calc(100% / 2 - 50px);
}
.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul.carte-soins-instituts li.item:nth-child(2n+2) {
  margin-right: -0.25em;
}
.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul.carte-soins-instituts li.item .carte-soins-image {
  height: 365px;
}
.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul.carte-soins-instituts li.item .carte-soins-image img {
  width: 100%;
}

.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul li.item .carte-soins-name p {
  font-size: 13px;
}
.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul li.item .carte-soins-name h2 {
  font-size: 20px;
}
.catalog-category-view .main-container.col1-layout .main .col-main .carte-soins-wrapper ul li.item .carte-soins-image {
  height: auto !important;
}

.catalog-category-view .main-container .main .category-title-group {
  max-width: 670px;
  width: 100%;
  display: inline-block;
  margin-right: 40px;
}
.catalog-category-view .main-container .main .category-title-group .page-title h1, .catalog-category-view .main-container .main .category-title-group .page-title [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .catalog-category-view .main-container .main .category-title-group .page-title h2 {
  margin-bottom: 15px;
}
.catalog-category-view .main-container .main .liste-soins-institut {
  width: 100%;
  display: inline-block;
  max-width: 235px;
  vertical-align: top;
}
.catalog-category-view .main-container .main .liste-soins-institut .liste-soins-institut-block:first-child {
  margin-bottom: 32px;
}
.catalog-category-view .main-container .main .liste-soins-institut .liste-soins-institut-block img {
  display: inline-block;
  vertical-align: middle;
}
.catalog-category-view .main-container .main .liste-soins-institut .liste-soins-institut-block p {
  color: #a3a5a8;
  font-size: 15px;
  padding-left: 18px;
  display: inline-block;
  vertical-align: middle;
}
.catalog-category-view .main-container .main .liste-soins-institut .liste-soins-institut-block p a {
  color: #a3a5a8;
  text-decoration: none;
  font-weight: 300;
}
.catalog-category-view .main-container .main .liste-soins-institut .liste-soins-institut-block p a:hover {
  color: #333d47;
}
.catalog-category-view .main-container .main .liste-soins-institut .liste-soins-institut-block p strong {
  display: block;
  text-transform: uppercase;
  color: #303e48;
}
.catalog-category-view .main-container .main .col-left.sidebar .liste-soins-left-nav.block .block-content {
  padding: 0;
  border: none;
}
.catalog-category-view .main-container .main .col-left.sidebar .liste-soins-left-nav.block .block-content .left-nav-block {
  border: 1px solid #cccccc;
  margin-bottom: 50px;
  padding: 28px;
}
.catalog-category-view .main-container .main .col-left.sidebar .liste-soins-left-nav.block .block-content .left-nav-block ol.left-nav-list {
  margin-bottom: 0;
}
.catalog-category-view .main-container .main .col-left.sidebar .liste-soins-left-nav.block .block-content .left-nav-block ol.left-nav-list li a {
  color: #58585a;
}
.catalog-category-view .main-container .main .col-left.sidebar .liste-soins-left-nav.block .block-content .left-nav-block ol.left-nav-list li a:hover {
  padding: 0;
  color: #333d47;
}

.catalog-product-view #cilightbox #ciimageDataContainer {
  background: none;
  z-index: 999;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 4px;
}
.catalog-product-view #cilightbox #ciimageDataContainer #ciimageData #ciimageDetails {
  display: none;
}
.catalog-product-view #cilightbox #ciimageContainer {
  padding: 30px 10px 10px 10px;
}
.catalog-product-view #cilightbox #ciouterImageContainer {
  background-color: rgba(255, 255, 255, 0.3);
}

li.item:nth-child(3n+2):hover:before {
  display: none !important;
}
li.item:nth-child(3n+2):hover + li.item:before {
  display: none !important;
}

li.item:nth-child(3n+1):hover + li.item:before {
  display: none !important;
}

li.item:nth-child(3n+3):hover:before {
  display: none !important;
}

/* ============================================ *
 * Catalog - Product
 * ============================================ */
.catalog-product-view .main-container {
  max-width: 1280px;
  padding: 0 20px;
}

.product-view .product-essential .product-name {
  float: left;
  width: 100%;
}
.product-view .product-essential .product-name {
  margin-bottom: 20px;
}
.product-view .product-essential .product-name span {
  display: block;
  text-transform: uppercase;
  color: #303e48 !important;
  font-weight: 500;
  margin: 0;
}
.product-view .product-essential .product-name span.h1 {
  font-size: 30px;
  font-weight: 500;
  line-height: 28px;
}
.product-view .product-essential .product-name span.h1 .product-contenance {
  display: inline-block !important;
  font-weight: normal;
}
.product-view .product-essential .product-name span.h2 {
  font-size: 16px;
  line-height: 15px;
  font-weight: 300;
}
.product-view .product-essential .short-description {
  clear: both;
  color: #a3a5a8;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  margin: 0 0 15px 0;
}
.product-view .product-essential .short-description .std p {
  margin: 0;
}
.product-view .product-essential .extra-info {
  padding: 2px 0;
}
.product-view .product-essential .extra-info .ratings {
  margin: 0;
  vertical-align: middle;
}
.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: 0 20px 0 0;
}
.product-view .product-essential .extra-info .ratings .rating-links {
  margin: 0;
}
.product-view .product-essential .product-description {
  float: none;
  clear: both;
  padding: 20px 0 12px 0;
  box-sizing: border-box;
  border-top: 1px solid #58585a;
  border-bottom: 1px solid #58585a;
  color: #303e48;
  font-size: 14px;
  text-align: justify;
}
.product-view .product-essential .product-description .tabs {
  margin-top: 44px;
  margin-bottom: 0;
}
.product-view .product-essential .product-description .tabs ul {
  border: none;
  border-bottom: 1px solid #a3a5a8 !important;
  background: none;
  margin-bottom: 10px;
  width: 100%;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  display: flex;
  justify-content: space-between;
}
.product-view .product-essential .product-description .tabs ul:after {
  display: none;
}
.product-view .product-essential .product-description .tabs ul li {
  position: relative;
  border: none;
  white-space: nowrap;
  cursor: pointer;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.product-view .product-essential .product-description .tabs ul li span.tab-name {
  color: #a3a6a8;
  font-size: 18px;
  margin: 0;
  font-family: "Bliss2", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  font-size: 15px;
}
.product-view .product-essential .product-description .tabs ul li span.tab-name:hover {
  color: #2d3e48;
}
.product-view .product-essential .product-description .tabs ul li.current span.tab-name {
  color: #303e48;
}
.product-view .product-essential .product-description .tabs dl dd {
  border-bottom: none;
}
.product-view .product-essential:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .product-essential .product-advice {
  display: none;
  margin: 0 0 60px 0;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid #8dbac1;
  text-align: center;
  clear: both;
  position: relative;
  overflow: hidden;
}
.product-view .product-essential .product-advice:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: #8dbac1;
  left: 0;
  top: 12px;
}
.product-view .product-essential .product-advice:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: #8dbac1;
  right: 0;
  top: 12px;
}
.product-view .product-essential .product-advice h4 {
  font-size: 28px;
  font-weight: bold;
  color: #8dbac1;
  padding: 0 20px;
  z-index: 3;
  line-height: 25px;
  height: 25px;
  position: relative;
  margin: 0;
}
.product-view .product-essential .product-advice h4 span {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  background: #ffffff;
  padding: 0 20px;
}
.product-view .product-essential .product-advice h4:before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  height: 1px;
  width: 100%;
  background: #8dbac1;
  display: block;
}
.product-view .product-essential .product-advice .advice-blocks-wrapper {
  width: 100%;
  padding: 20px 0 0 0;
  display: table;
}
.product-view .product-essential .product-advice .advice-blocks-wrapper .advice-block {
  display: inline-block;
  text-align: left;
  padding: 0 22.5px;
  vertical-align: top;
  min-width: 225px;
  margin-right: -0.25em;
}
.product-view .product-essential .product-advice .advice-blocks-wrapper .advice-block:first-child {
  padding-left: 20px;
}
.product-view .product-essential .product-advice .advice-blocks-wrapper .advice-block:last-child {
  padding-right: 20px;
}
.product-view .product-essential .product-advice .advice-blocks-wrapper .advice-block img {
  display: block;
  margin: 0 auto 35px auto;
}
.product-view .product-essential .product-advice .advice-blocks-wrapper .advice-block p {
  font-size: 16px;
  color: #a3a5a8;
  line-height: 22px;
}
.product-view .product-essential .product-advice .advice-blocks-wrapper .advice-block p span {
  color: #8dbac1;
  font-size: 18px;
}
.product-view .product-essential .product-advice .advice-blocks-wrapper.advice-blocks--5blocks .advice-block {
  width: calc(100%/5);
}
.product-view .product-shop .product-name .h1,
.product-view .product-img-box .product-name h1,
.product-view .product-img-box .product-name [class*="customer-account"] .dashboard .box-account .box-head h2,
[class*="customer-account"] .dashboard .box-account .box-head .product-view .product-img-box .product-name h2 {
  color: #0096b6;
  margin-bottom: 0;
  border: 0;
  padding-bottom: 0;
}
.product-view .product-shop {
  width: 50%;
  float: right;
}
.product-view .product-shop .product-name {
  display: none;
  float: left;
  width: 100%;
}
.product-view .product-shop .product-name span {
  display: block;
  text-transform: uppercase;
  color: #303e48 !important;
  font-weight: bold;
  margin: 0;
}
.product-view .product-shop .product-name span.h1 {
  font-size: 32px;
}
.product-view .product-shop .product-name span.h1 .product-contenance {
  display: inline-block !important;
  font-weight: 300;
}
.product-view .product-shop .product-name span.h2 {
  font-size: 16px;
  margin-bottom: 5px;
}
.product-view .product-shop .extra-info {
  padding-right: 0;
  clear: both;
  width: 100%;
}
.product-view .product-shop .price-info {
  float: right;
  padding: 0;
  margin: 0 30px 0 0;
  text-align: right;
}
.product-view .product-shop .extra-info,
.product-view .product-shop .price-info {
  max-width: 100%;
}
.product-view .product-shop .extra-info {
  margin-bottom: 0;
}
.product-view .product-shop .short-description {
  margin-bottom: 15px;
  clear: both;
  color: #a3a5a8;
  font-size: 20px;
  font-weight: 300;
}
.product-view .product-shop .ratings {
  margin-bottom: 0;
  display: inline-block;
}
.product-view .product-shop .ratings .rating-box {
  width: 91px;
  height: 15px !important;
  background-position: 0 -616px;
}
.product-view .product-shop .ratings .rating-box .rating {
  height: 15px !important;
  background-position: 0 -599px;
}
.product-view .product-shop .availability {
  font-size: 16px;
}
.product-view .product-shop .price-box {
  margin: 0;
  height: 40px;
}
.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;
  vertical-align: middle;
}
.product-view .product-shop .price-box .old-price .price,
.product-view .product-shop .price-box .special-price .price,
.product-view .product-shop .price-box .regular-price .price {
  font-size: 38px;
  color: #303e48;
  font-weight: bold;
  line-height: 40px;
}
.product-view .product-shop .price-box .old-price .price {
  font-size: 30px;
}
.product-view .product-shop .price-box .regular-price .price,
.product-view .product-shop .price-box .special-price .price,
.product-view .product-shop .price-box .full-product-price .price {
  color: #303e48;
  font-size: 24px;
}
.product-view .product-shop .price-box .regular-price .price .price,
.product-view .product-shop .price-box .special-price .price .price,
.product-view .product-shop .price-box .full-product-price .price .price {
  font-size: 38px;
  color: #303e48;
  font-weight: bold;
  line-height: 40px;
}
.product-view .product-shop .price-box .regular-price .price {
  font-size: 35px;
}
.product-view .product-shop .price-box .regular-price .price .price {
  font-size: 35px;
}
.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: #636363;
}
.product-view .product-shop .price-box .special-price span.weee span.price {
  font-size: 16px;
}
.product-view .product-shop .price-box .special-price .price {
  font-size: 35px;
  color: #303e48;
  font-weight: bold;
}
.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: #636363;
}
.product-view .product-shop .price-box .price-excluding-tax .label,
.product-view .product-shop .price-box .price-including-tax .label {
  font-size: 16px;
  font-weight: 300;
}
.product-view .product-shop .price-box .price-excluding-tax .price,
.product-view .product-shop .price-box .price-including-tax .price {
  font-size: 20px;
}
.product-view .product-shop .add-to-cart-wrapper {
  clear: both;
  width: 100%;
  display: block;
  float: left;
  padding: 20px 0 30px 0;
}
.product-view .product-shop .product-reassur {
  width: 100%;
  clear: both;
  display: block;
  border-top: 1px solid #58585a;
  padding-top: 50px;
  margin-bottom: 20px;
}
.product-view .product-shop .product-reassur .product-reassur-block {
  width: 100%;
  display: inline-block;
  height: 50px;
  padding-left: 80px;
  margin-bottom: 50px;
  min-width: 200px;
  max-width: 308px;
}
.product-view .product-shop .product-reassur .product-reassur-block span {
  display: block;
  font-size: 15px;
}
.product-view .product-shop .product-reassur .product-reassur-block span.reassur-title {
  text-transform: uppercase;
  color: #303e48;
}
.product-view .product-shop .product-reassur .product-reassur-block span.reassur-subtitle {
  color: #a3a5a8;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.product-view .product-shop .product-reassur .product-reassur-block span.reassur-subtitle a {
  color: #a3a5a8;
  text-decoration: none;
  font-weight: 300;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.product-view .product-shop .product-reassur .product-reassur-block span.reassur-subtitle a:hover {
  color: #333d47;
  text-decoration: none;
}
.product-view .product-shop .product-reassur .product-reassur-block.reassur-trouver {
  background: url("../images/reassur-trouver.png") no-repeat 30px top;
}
.product-view .product-shop .product-reassur .product-reassur-block.reassur-paiement {
  background: url("../images/reassur-paiement.png") no-repeat 15px top;
}
.product-view .product-shop .product-reassur .product-reassur-block.reassur-rdv {
  background: url("../images/reassur-rdv.png") no-repeat 25px top;
}
.product-view .product-shop .product-reassur .product-reassur-block.reassur-fid {
  background: url("../images/reassur-fid.png") no-repeat 20px top;
}
.product-view .product-shop .product-reassur .product-reassur-block:hover span.reassur-subtitle {
  color: #333d47;
}
.product-view .product-shop .product-reassur .product-reassur-block:hover span.reassur-subtitle a {
  color: #333d47;
}
.product-view .price-box.map-info a {
  display: inherit;
}
.product-view .old-price .price-label {
  display: none;
}
.product-view .add-to-cart-wrapper,
.product-view .block-related {
  width: 100%;
}
.product-view .add-to-cart-wrapper .price-info {
  float: left;
}
.product-view .add-to-cart-wrapper .add-to-box {
  float: right;
}

.product-img-box {
  width: 42%;
  float: left;
  margin-right: 8%;
}
.product-img-box .more-views {
  text-align: center;
}
.product-img-box .more-views .product-image-thumbs li {
  border: 1px solid #dfe0e1;
  margin-right: 10px;
}
.product-img-box .product-name h1, .product-img-box .product-name [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .product-img-box .product-name h2 {
  border: 0;
}
.product-img-box .product-image {
  margin-bottom: 10px;
  border: none;
}
.product-img-box .product-image img {
  max-width: 100%;
  max-height: 550px;
  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("../images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.product-image-gallery.loading {
  position: relative;
}
.product-image-gallery.loading:before, .product-image-gallery.loading:after {
  display: block;
}

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

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

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

.product-view {
  /* Set a min-height so that the floated elements break appropriately */
}
.product-view .add-to-box:after,
.product-view .add-to-cart:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .add-to-cart {
  padding: 0;
}
.product-view .add-to-cart .qty-wrapper,
.product-view .product-options-bottom .price-box,
.product-view .add-to-cart-buttons {
  min-height: 40px;
}
.product-view .product-options-bottom .price-box,
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart-buttons .button,
.product-view .add-to-cart-buttons .paypal-logo {
  margin-bottom: 0;
}
.product-view .add-to-cart .qty-wrapper,
.product-view .add-to-cart .qty-wrapper label {
  float: left;
}
.product-view .add-to-cart .qty-wrapper label {
  line-height: 40px;
  font-size: 14px;
  color: #303e48;
  margin-right: 10px;
  font-weight: 300;
}
.product-view .add-to-cart .qty-wrapper .select-style {
  width: 60px;
  margin: 6px 30px 0 0;
  padding: 0;
  float: left;
}
.product-view .add-to-cart .qty-wrapper .select-style select {
  padding: 0 0 0 10px;
}
.product-view .add-to-cart .qty-wrapper .qty {
  float: left;
  height: 28px;
  border-color: #a3a5a8;
  border-radius: 2px;
  font-size: 16px;
  color: #303e48;
  padding-left: 0;
}
.product-view .add-to-cart-buttons {
  float: left;
  margin-right: 0;
  max-width: 100%;
}
.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: 40px;
  line-height: 39px;
  font-size: 16px;
  padding: 0 58px;
  float: left;
  min-width: 160px;
  width: 100%;
  white-space: normal;
}
.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 .or {
  display: none;
}

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

.product-view .sharing-links {
  float: right;
  padding-bottom: 10px;
}
.product-view .sharing-links:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .sharing-links li {
  float: left;
  padding: 0;
}
.product-view .sharing-links a {
  text-indent: -9999px;
  display: block;
  width: 26px;
  height: 21px;
}
.product-view .sharing-links a:hover {
  opacity: 0.8;
}
.product-view .sharing-links a.link-wishlist {
  background-position: 0 -225px;
}
.product-view .sharing-links a.link-compare {
  background-position: 0 -250px;
}
.product-view .sharing-links a.link-email-friend {
  background-position: 0 -322px;
}
.product-view .sharing-links a.link-facebook {
  background-position: 3px -376px;
}
.product-view .sharing-links a.link-facebook:hover {
  background-position: -32px -376px;
}
.product-view .sharing-links a.link-twitter {
  background-position: 3px -347px;
}
.product-view .sharing-links a.link-twitter:hover {
  background-position: -31px -347px;
}
.product-view .sharing-links a.link-googleplus {
  background-position: 3px -405px;
}
.product-view .sharing-links a.link-googleplus:hover {
  background-position: -31px -405px;
}

.product-collateral {
  clear: both;
}

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

.box-collateral {
  clear: both;
}

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

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

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

.product-view .ratings .rating-links {
  float: left;
  margin-top: 0;
  line-height: 17px;
}

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

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

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

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

.product-options p.required {
  position: absolute;
  top: 6px;
  right: 15px;
  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 #EDEDED;
}

.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;
  vertical-align: middle;
  *vertical-align: auto;
  *zoom: 1;
  *display: inline;
  padding: 2px 0;
  vertical-align: middle;
}

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

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

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

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

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

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

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

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

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

.product-options-bottom {
  background-color: #F4F4F4;
  padding: 15px 20px;
  border: 1px solid #CCCCCC;
  border-top: 0;
  margin-bottom: 10px;
}

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

.product-options-bottom .product-pricing,
.product-options-bottom .tier-prices {
  float: right;
  margin: 0;
  padding: 0 0 10px;
  border: 0;
  background: 0;
  color: #636363;
  float: none;
  width: 100%;
  text-align: right;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #CCCCCC;
}

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

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

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

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

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

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

.product-view .product-collateral {
  margin-bottom: 30px;
}
.product-view .product-collateral .toggle-tabs {
  border: none;
  border-bottom: 1px solid #a3a5a8;
  background: none;
  display: table;
  table-layout: fixed;
}
.product-view .product-collateral .toggle-tabs:after {
  display: none;
}
.product-view .product-collateral .toggle-tabs li {
  border: none;
  display: table-cell;
  float: none;
  text-align: center;
}
.product-view .product-collateral .toggle-tabs li span {
  position: relative;
  font-size: 24px;
  color: #a3a5a8;
  font-weight: normal;
  padding: 0;
  font-size: 22px;
}
.product-view .product-collateral .toggle-tabs li span:hover {
  color: #303e48;
}
.product-view .product-collateral .toggle-tabs li.current span {
  color: #303e48;
  font-weight: normal;
}
.product-view .product-collateral .toggle-tabs li.current span:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #303e48;
  border-bottom: none;
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translate(-50%, 0);
}
.product-view .product-collateral .toggle-tabs li.current span:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #303e48;
}
.product-view .product-collateral .collateral-tabs dd {
  border: none;
  padding: 20px 0 20px 0;
  overflow: hidden;
}
.product-view .product-collateral .collateral-tabs dd .tab-content .std {
  line-height: 19px;
}
.product-view .product-collateral .collateral-tabs dd .tab-content .std .product-composition-title {
  text-transform: uppercase;
  color: #303e48;
}
.product-view .product-collateral .collateral-tabs dd .tab-content .std p {
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 300;
}
.product-view .product-collateral .collateral-tabs dd .tab-content .std p.product-composition {
  margin-top: 17px;
  line-height: 17px;
  color: #a3a5a8;
  text-align: justify;
}
.product-view .product-collateral.product-collateral-upsells {
  margin-bottom: 0;
}
.product-view .product-collateral.product-collateral-upsells ul.toggle-tabs {
  border-bottom: none;
}
.product-view .product-collateral.product-collateral-upsells ul.toggle-tabs li {
  position: relative;
}
.product-view .product-collateral.product-collateral-upsells ul.toggle-tabs li:first-child:before {
  content: '';
  width: 50%;
  position: absolute;
  background: #a3a5a8;
  height: 1px;
  left: 50%;
  bottom: -1px;
}
.product-view .product-collateral.product-collateral-upsells ul.toggle-tabs li:last-child:before {
  content: '';
  width: 50%;
  position: absolute;
  background: #a3a5a8;
  height: 1px;
  right: 50%;
  bottom: -1px;
}
.product-view .product-collateral.product-collateral-upsells ul.toggle-tabs li:first-child:last-child:before {
  display: none;
}
.product-view .product-collateral.product-collateral-upsells ul.toggle-tabs li span {
  border-bottom: 1px solid #a3a5a8;
}
.product-view .product-collateral.product-collateral-upsells .collateral-tabs dd {
  border-bottom: none;
  min-height: 0;
  max-height: none;
}
.product-view .product-collateral #customer-reviews {
  padding: 0 20px;
  width: 100%;
}
.product-view .product-collateral #customer-reviews .review-heading {
  display: none;
}
.product-view .product-collateral #customer-reviews .no-rating {
  display: table;
  width: 60%;
  float: right;
}
.product-view .product-collateral #customer-reviews dl {
  display: table;
  width: 60%;
  float: right;
}
.product-view .product-collateral #customer-reviews dl dt {
  font-size: 18px;
  color: #58585a;
  text-transform: uppercase;
  display: inline-block;
  margin: 0;
  width: 75%;
  padding-right: 5%;
  vertical-align: top;
  border-right: 1px solid #a3a5a8;
  margin-bottom: 15px;
}
.product-view .product-collateral #customer-reviews dl dt .review-title {
  margin-right: 25px;
  display: inline-block;
  font-weight: bold;
}
.product-view .product-collateral #customer-reviews dl dt .ratings-table {
  display: inline-block;
}
.product-view .product-collateral #customer-reviews dl dt .ratings-table .rating-box {
  width: 91px;
  height: 15px;
  background-position: 0 -616px;
}
.product-view .product-collateral #customer-reviews dl dt .ratings-table .rating-box .rating {
  height: 15px;
  background-position: 0 -599px;
}
.product-view .product-collateral #customer-reviews dl dt .review-date {
  float: right;
  font-size: 14px;
  color: #a3a5a8;
  font-weight: 300;
  padding-top: 4px;
}
.product-view .product-collateral #customer-reviews dl dt .review-content {
  clear: both;
  display: block;
  font-size: 14px;
  color: #58585a;
  text-transform: none;
}
.product-view .product-collateral #customer-reviews dl dd {
  padding: 0;
  margin: 0;
  border: none;
  display: inline-block;
  width: 25%;
  padding-left: 5%;
  vertical-align: top;
  min-height: 0;
  max-height: none;
  margin-right: -0.25em;
}
.product-view .product-collateral #customer-reviews dl dd .review-meta {
  text-transform: none;
}
.product-view .product-collateral #customer-reviews dl dd .review-meta .review-meta-name {
  color: #58585a;
  font-size: 16px;
  margin-bottom: 40px;
  font-weight: 400;
}
.product-view .product-collateral #customer-reviews .form-add {
  width: 37.5%;
  float: left;
  height: 100%;
  min-height: 353px;
  max-height: 353px;
  padding-right: 2.5%;
  border-right: 1px solid #a3a5a8;
  display: table;
}
.product-view .product-collateral #customer-reviews .form-add h3 {
  font-size: 24px;
  color: #303e48;
  text-align: left;
  font-weight: 500;
  margin: 0 0 15px 0;
}
.product-view .product-collateral #customer-reviews .form-add p.review-subtitle {
  color: #303e48;
  font-size: 15px;
  font-weight: normal;
  text-align: keft;
  margin-bottom: 25px;
}
.product-view .product-collateral #customer-reviews .form-add h4 {
  color: #303e48;
  font-size: 14px;
  font-weight: normal;
  padding-left: 10px;
  height: 34px;
  display: table-cell;
  vertical-align: bottom;
  line-height: 12px;
  position: relative;
  padding-bottom: 0;
  border: none;
}
.product-view .product-collateral #customer-reviews .form-add h4 span {
  font-size: 20px;
  font-weight: 500;
}
.product-view .product-collateral #customer-reviews .form-add h4:before {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #303e48;
}
.product-view .product-collateral #customer-reviews .form-add #nickname_field, .product-view .product-collateral #customer-reviews .form-add label[for="nickname_field"], .product-view .product-collateral #customer-reviews .form-add .nickname-block {
  display: none;
}
.product-view .product-collateral #customer-reviews .form-add .section-explanation {
  margin-top: 9px;
  text-transform: none;
  padding-left: 30px;
}
.product-view .product-collateral #customer-reviews .form-add .review-nologged {
  font-size: 17px;
  text-align: center;
  display: table-cell;
  width: 100%;
  vertical-align: middle;
}
.product-view .product-collateral #customer-reviews .form-add .review-nologged button {
  display: block;
  margin: 20px auto;
  min-width: 200px;
}
.product-view .product-collateral #customer-reviews .form-add .fieldset {
  width: 100%;
  padding: 0;
  margin: 0;
}
.product-view .product-collateral #customer-reviews .form-add .fieldset .form-list {
  width: 100%;
}
.product-view .product-collateral #customer-reviews .form-add .fieldset .form-list li {
  position: relative;
  margin-bottom: 20px;
}
.product-view .product-collateral #customer-reviews .form-add .fieldset .form-list li label {
  position: absolute;
  height: 40px;
  line-height: 40px;
  top: 0;
  left: 10px;
  transition: visibility 0.15s, opacity 0.15s linear;
  text-transform: none;
  font-size: 13px;
}
.product-view .product-collateral #customer-reviews .form-add .fieldset .form-list li label em {
  color: #303e48;
}
.product-view .product-collateral #customer-reviews .form-add .fieldset .form-list li label[for="summary_field"] {
  top: 68px;
}
.product-view .product-collateral #customer-reviews .form-add .fieldset .form-list li label[for="review_field"] {
  top: 55px;
}
.product-view .product-collateral #customer-reviews .form-add .fieldset .form-list li label.fadeout {
  visibility: hidden;
  opacity: 0;
}
.product-view .product-collateral #customer-reviews .form-add .fieldset .form-list li input, .product-view .product-collateral #customer-reviews .form-add .fieldset .form-list li textarea {
  width: 100%;
  height: 40px;
  line-height: 40px;
  color: #303e48;
  font-size: 13px;
  font-weight: normal;
  border-top: none;
  border-right: none;
  border-color: #dedfe1;
  padding: 0 6px;
  background: #ffffff;
  outline: none;
}
.product-view .product-collateral #customer-reviews .form-add .fieldset .form-list li textarea {
  height: 100px;
  line-height: normal;
  padding-top: 10px;
  max-width: none;
  margin-top: 20px;
}
.product-view .product-collateral #customer-reviews .form-add .buttons-set {
  width: 100%;
}
.product-view .product-collateral #customer-reviews .form-add #review-form {
  /***** CSS Magic to Highlight Stars on Hover *****/
  /* hover previous stars in list */
}
.product-view .product-collateral #customer-reviews .form-add #review-form .review-summary-table {
  border: none;
  margin-left: 24px;
  width: calc(100% - 24px);
}
.product-view .product-collateral #customer-reviews .form-add #review-form .rating {
  border: none;
  float: left;
}
.product-view .product-collateral #customer-reviews .form-add #review-form .rating > input {
  display: none;
}
.product-view .product-collateral #customer-reviews .form-add #review-form .rating > label:before {
  margin: 5px;
  font-size: 1.25em;
  font-family: FontAwesome;
  display: inline-block;
  content: "\f005";
}
.product-view .product-collateral #customer-reviews .form-add #review-form .rating > .half:before {
  content: "\f089";
  position: absolute;
}
.product-view .product-collateral #customer-reviews .form-add #review-form .rating > label {
  color: #ddd;
  float: right;
  width: auto;
}
.product-view .product-collateral #customer-reviews .form-add #review-form .rating > input:checked ~ label,
.product-view .product-collateral #customer-reviews .form-add #review-form .rating:not(:checked) > label:hover,
.product-view .product-collateral #customer-reviews .form-add #review-form .rating:not(:checked) > label:hover ~ label {
  color: #303e48;
}
.product-view .product-collateral #customer-reviews .form-add #review-form .rating > input:checked + label:hover,
.product-view .product-collateral #customer-reviews .form-add #review-form .rating > input:checked ~ label:hover,
.product-view .product-collateral #customer-reviews .form-add #review-form .rating > label:hover ~ input:checked ~ label,
.product-view .product-collateral #customer-reviews .form-add #review-form .rating > input:checked ~ label:hover ~ label {
  color: #303e48;
}

.box-up-sell .products-grid {
  display: table;
  width: 100%;
}
.box-up-sell .products-grid li {
  box-sizing: border-box;
  border: 5px solid #ffffff;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  padding: 1%;
  width: calc(100%/4);
  float: left;
  display: inline-block;
  position: relative;
  vertical-align: top;
  margin: 0;
}
.box-up-sell .products-grid li .product-image {
  margin-bottom: 35px;
}
.box-up-sell .products-grid li .product-image img {
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 180px;
}
.box-up-sell .products-grid li .product-name {
  font-size: 14px;
  color: #303e48;
  font-weight: 800;
  min-height: 110px;
  margin-bottom: 0;
}
.box-up-sell .products-grid li .product-name .product-name-first {
  min-height: 30px;
  display: block;
}
.box-up-sell .products-grid li .product-name .product-subtitle {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #a3a5a8;
  text-transform: none;
  padding-bottom: 60px;
}
.box-up-sell .products-grid li .product-name .product-subtitle span {
  font-weight: 300;
}
.box-up-sell .products-grid li .ratings {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 90%;
  opacity: 1;
  z-index: 3;
  min-height: 0;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  -ms-transition: opacity 0.25s ease;
  -o-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  margin: 25px 0;
  display: block;
}
.box-up-sell .products-grid li .ratings .rating-box {
  width: 91px;
  height: 15px;
  background-position: 0 -616px;
}
.box-up-sell .products-grid li .ratings .rating-box .rating {
  height: 15px;
  background-position: 0 -599px;
}
.box-up-sell .products-grid li .ratings .rating-links {
  display: none;
}
.box-up-sell .products-grid li .actions {
  position: absolute;
  bottom: 5%;
  width: 90%;
  opacity: 0;
  z-index: 1;
  min-height: 0;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  -ms-transition: opacity 0.25s ease;
  -o-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  left: 5%;
}
.box-up-sell .products-grid li .actions .button {
  width: 90%;
  padding: 10px 0;
  font-size: 13px;
}
.box-up-sell .products-grid li .actions .button.button-second:hover {
  padding: 9px 0;
}
.box-up-sell .products-grid li .actions .availability.out-of-stock {
  width: 48%;
  padding: 10px 0;
  float: right;
}
.box-up-sell .products-grid li:hover {
  border-color: #e7e8ea;
}
.box-up-sell .products-grid li:hover .ratings {
  opacity: 0;
  z-index: 1;
}
.box-up-sell .products-grid li:hover .actions {
  opacity: 1;
  z-index: 3;
}
.box-up-sell .products-grid li:nth-child(even) {
  margin-right: 0;
}
.box-up-sell .products-grid li a {
  border: none;
  outline: none;
  text-decoration: none;
  color: #303e48;
  text-transform: uppercase;
  text-align: center;
}
.box-up-sell .products-grid li a:hover {
  color: #303e48;
}
.box-up-sell .products-grid li a img {
  width: auto;
  margin: 0 auto;
}
.box-up-sell .products-grid li .price-box {
  padding-bottom: 60px;
}
.box-up-sell .products-grid li .price-box .price {
  font-weight: bold;
  font-size: 24px;
  color: #303e48;
}

.product-view .product-shop .product-name span.h1 {
  font-size: 28px;
}
.product-view .add-to-cart-wrapper .add-to-box {
  float: left;
}

.box-up-sell .products-grid li .product-name {
  font-size: 12px;
}
.box-up-sell .products-grid li .product-name .product-subtitle {
  font-size: 13px;
}
.box-up-sell .products-grid li .actions button.button {
  font-size: 12px;
}

.box-up-sell .products-grid li {
  width: calc(100%/2);
}
.box-up-sell .products-grid li .product-name {
  font-size: 12px;
}
.box-up-sell .products-grid li .product-name .product-subtitle {
  font-size: 13px;
}
.box-up-sell .products-grid li .ratings {
  margin: 55px 0;
}
.box-up-sell .products-grid li .actions button.button {
  font-size: 12px;
  display: block;
  margin: 0 auto 5px auto;
  width: 90%;
}
.box-up-sell .products-grid li .price-box {
  padding-bottom: 125px;
}

.category-products-home {
  padding: 0 5%;
}
.category-products-home .products-grid-home {
  display: flex;
  justify-content: flex-start;
  text-align: center;
}
.category-products-home .products-grid-home li.item {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.category-products-home .products-grid-home li.item a.product-image {
  margin-bottom: 30px;
}
.category-products-home .products-grid-home li.item h2.product-name {
  flex-grow: 1;
}
.category-products-home .products-grid-home li.item h2.product-name a.product-name {
  font-weight: bold;
}
.category-products-home .products-grid-home li.item h2.product-name span {
  display: block;
  color: #a3a5a8;
  font-size: 14px;
  text-transform: none;
}
.category-products-home .products-grid-home li.item h2.product-name span.product-subtitle {
  font-weight: bold;
  margin-top: 15px;
}
.category-products-home .products-grid-home li.item h2.product-name span.product-contenance {
  font-weight: normal;
}

.block-product-gamme img {
  float: left;
  width: 48%;
}
.block-product-gamme .att-gamme-wrapper {
  float: right;
  width: 48%;
}
.block-product-gamme .att-gamme-wrapper p {
  margin: 0;
  padding: 0;
  line-height: 17px;
  color: #a3a5a8;
}
.block-product-gamme .att-gamme-wrapper p strong {
  color: #303e48;
}
.block-product-gamme .att-gamme-wrapper .att-gamme-title {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #303e48;
}
.block-product-gamme .att-gamme-wrapper .att-gamme-subtitle {
  font-weight: 500;
  color: #303e48;
}
.block-product-gamme .att-gamme-wrapper button {
  float: right !important;
  margin-top: 7px;
}

body:not(.cms-index-index) button.button-carousel-category {
  display: block !important;
  margin: 0 auto;
}

body:not(.cms-index-index) .presentation button.button-carousel-category {
  margin-bottom: 20px;
  margin-top: 10px;
}

.product-type-care.product-view .product-essential .product-description .description-section-title {
  font-size: 14px;
  color: #303e48;
  font-weight: bold;
  line-height: 25px;
  text-transform: uppercase;
}
.product-type-care.product-view .product-essential .product-description p {
  font-size: 14px;
  font-weight: 300;
  color: #a3a5a8;
  line-height: 22px;
  margin: 0 0 15px 0;
}
.product-type-care.product-view .product-essential .product-shop .product-reassur .product-reassur-block {
  padding-left: 50px;
}
.product-type-care.product-view .product-essential .product-shop .product-reassur .product-reassur-block.reassur-paiement, .product-type-care.product-view .product-essential .product-shop .product-reassur .product-reassur-block.reassur-fid {
  display: none;
}
.product-type-care.product-view .product-essential .product-shop .product-reassur .product-reassur-block.reassur-trouver {
  background-position: left top;
}
.product-type-care.product-view .product-essential .product-shop .product-reassur .product-reassur-block.reassur-rdv {
  background-position: left top;
  max-width: 210px;
  float: right;
}
.product-type-care.product-view .product-collateral .toggle-tabs {
  border-bottom: none;
}
.product-type-care.product-view .add-to-cart-wrapper .price-info {
  margin: 0 10px 0 0;
  display: inline-block;
  float: none;
}
.product-type-care.product-view .add-to-cart-wrapper .product-precision {
  display: inline-block;
  height: 40px;
  position: relative;
  padding-top: 20px;
  font-size: 16px;
  color: #a3a5a8;
  font-weight: 300;
}
.product-type-care.product-view .find-institut-block {
  padding: 50px 0;
  margin: 0 auto 50px auto;
  border-top: 1px solid #58585a;
  border-bottom: 1px solid #58585a;
  display: table;
}
.product-type-care.product-view .find-institut-block img {
  display: inline-block;
  width: 42%;
  margin-right: 3%;
}
.product-type-care.product-view .find-institut-block .att-institut-wrapper {
  display: inline-block;
  width: 55%;
  height: 100%;
  vertical-align: top;
  position: relative;
}
.product-type-care.product-view .find-institut-block .att-institut-wrapper:before {
  height: 1px;
  background: #303e48;
  content: '';
  display: block;
  width: 85px;
  position: absolute;
  top: 10px;
  left: -95px;
}
.product-type-care.product-view .find-institut-block .att-institut-wrapper .att-institut-title {
  font-size: 16px;
  color: #a3a5a8;
  line-height: 16px;
  font-weight: normal;
  margin: 0 0 15px 0;
}
.product-type-care.product-view .find-institut-block .att-institut-wrapper .att-institut-subtitle {
  font-size: 26px;
  font-weight: 500;
  color: #303e48;
  margin: 0 0 30px 0;
  line-height: 20px;
}
.product-type-care.product-view .find-institut-block .att-institut-wrapper .att-institut-content {
  color: #303e48;
  font-size: 15px;
  font-weight: normal;
  margin: 0 0 30px 0;
}
.product-type-care.product-view .find-institut-block .att-institut-wrapper button {
  position: absolute;
  bottom: 7px;
  right: 0;
}

.video-gallery-links li {
  border: 1px solid #d8d9da;
}

.product-image-thumbs li {
  height: 104px;
}

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

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

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

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

/* ============================================ *
 * Catalog - Compare
 * ============================================ */
.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 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: table;
}

#cart-form .cart-table {
  clear: both;
  width: 100%;
  margin-bottom: 40px;
}
#cart-form .cart-table tbody td {
  vertical-align: middle;
  padding: 25px 0;
}
#cart-form .cart-table tbody td.product-cart-info {
  padding-left: 40px;
}
#cart-form .cart-table tbody td.product-cart-info a.product-image {
  margin-right: 50px;
  border: none;
}
#cart-form .cart-table tbody td.product-cart-info h2.product-name {
  font-size: 16px;
  color: #303e48;
  font-weight: 400;
  text-align: left;
}
#cart-form .cart-table tbody td.product-cart-info h2.product-name span {
  display: block;
  font-size: 14px;
  color: #a3a5a8;
  text-transform: none;
  line-height: 18px;
}
#cart-form .cart-table tbody td.product-cart-info h2.product-name .product-subtitle {
  display: block;
  font-weight: 400;
}
#cart-form .cart-table tbody td.product-cart-info h2.product-name .product-contenance {
  font-weight: 100;
}
#cart-form .cart-table tbody td.product-cart-actions label {
  float: left;
  clear: both;
  line-height: 30px;
  height: 30px;
  width: 60px;
  text-align: right;
  margin-right: 12px;
  font-size: 14px;
  color: #58585a;
  font-weight: normal;
  margin-bottom: 5px;
}
#cart-form .cart-table tbody td.product-cart-actions label.remove-label {
  font-size: 12px;
  color: #a3a5a8;
  margin-bottom: 0;
}
#cart-form .cart-table tbody td.product-cart-actions .select-style {
  width: 55px;
  padding-left: 0px;
}
#cart-form .cart-table tbody td.product-cart-actions .select-style select.qty {
  width: 130%;
  padding: 0 0 0 10px;
  margin-bottom: 0;
  text-align: left;
}
#cart-form .cart-table tbody td.product-cart-actions .btn-remove2 {
  float: left;
  height: 30px;
  line-height: 30px;
  width: 55px;
  background: url("../images/remove-2.png") no-repeat 15px center;
}
#cart-form .cart-table tbody td.product-cart-total {
  padding-right: 40px;
}
#cart-form .cart-table tbody td.product-cart-total .cart-price .price {
  font-size: 24px;
  font-weight: normal;
  color: #303e48;
}

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

.cart-forms {
  float: none;
  clear: both;
  width: 58%;
  display: inline-block;
  margin-right: 2%;
  vertical-align: top;
  max-width: 700px;
}

.cart-totals-wrapper {
  float: right;
  clear: both;
  width: 40%;
  display: inline-block;
  vertical-align: top;
}

.cart-totals,
.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  padding: 0;
}

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

.checkout-cart-index #postcode {
  width: 100%;
}
.checkout-cart-index .main {
  min-height: 500px;
}

.product-cart-info .product-image,
.product-cart-info .product-name {
  display: inline-block;
  vertical-align: middle;
}

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

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

/* ============================================ *
 * Checkout - Cart
 * ============================================ */
.cart .page-title {
  margin-bottom: 15px;
}
.cart .page-title:after {
  content: '';
  display: table;
  clear: both;
}
.cart .page-title h1, .cart .page-title [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .cart .page-title h2 {
  float: left;
  border-bottom: none;
  margin-bottom: 6px;
  margin-right: 10px;
}

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

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

.cart-totals .checkout-types .btn-checkout {
  margin-bottom: 7px;
  background: #0096b6;
  padding: 11px 36px;
  font-size: 16px;
  font-weight: normal;
}

.cart-table {
  font-family: "Bliss2", Arial, sans-serif;
}
.cart-table th,
.cart-table td,
.cart-table tbody td {
  border-bottom: none;
  vertical-align: middle;
}
.cart-table h2 {
  color: #636363;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}
.cart-table thead th,
.cart-table tbody td {
  background-color: transparent;
  padding: 10px 5px;
  font-family: "Bliss2", Arial, sans-serif;
}
.cart-table .product-cart-info,
.cart-table .product-cart-actions {
  padding-left: 15px;
}
.cart-table tr {
  border-bottom: 1px solid #e2e3e5;
}
.cart-table tbody tr:last-child {
  border-bottom: none;
}
.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: "Bliss2", Arial, sans-serif;
}
.cart-table .product-cart-image .cart-links,
.cart-table .product-cart-info .btn-remove,
.cart-table .product-cart-actions .button {
  display: none;
}
.cart-table .product-cart-image {
  padding-left: 0;
  padding-right: 0;
}
.cart-table .product-cart-image .product-image img {
  max-width: 100%;
  width: 100%;
}
.cart-table .product-cart-image a.cart-edit {
  display: none;
}
.cart-table .product-cart-sku {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-style: italic;
  font-size: 12px;
  margin: 5px 0 12px;
}
.cart-table .product-cart-sku .label {
  font-weight: 600;
}
.cart-table .btn-empty {
  float: left;
}
.cart-table .product-cart-total,
.cart-table .product-cart-price {
  text-align: center;
}
.cart-table .cart-tax-total {
  position: relative;
  cursor: pointer;
}
.cart-table .cart-tax-total:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #3399CC;
  border-left: none;
  position: absolute;
  top: 3px;
  right: -11px;
}
.cart-table .cart-tax-total.cart-tax-total-expanded:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #3399CC;
  border-bottom: none;
  right: -15px;
  top: 6px;
}
.cart-table .cart-links > li {
  white-space: nowrap;
  line-height: 1.3;
  margin-bottom: 5px;
  min-width: 65px;
  font-size: 13px;
}
.cart-table .cart-links > li > a {
  display: block;
}
.cart-table .cart-links > li:last-child {
  margin-bottom: 0;
}
.cart-table .product-cart-actions {
  min-width: 60px;
  text-align: center;
}
.cart-table .product-cart-actions .qty {
  height: 30px;
  border-color: #C0C0C0;
  border-radius: 0;
  margin-bottom: 10px;
  text-align: center;
  width: 3.2em;
}
.cart-table .product-cart-actions .button {
  margin-bottom: 5px;
}
.cart-table .item-options {
  padding-left: 15px;
}

/* ============================================ *
 * Checkout - Estimate Shipping and Tax
 * ============================================ */
.shipping h2 {
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 5px;
}
.shipping select {
  max-width: 100%;
  height: 30px;
  display: block;
  border: 1px solid #C0C0C0;
}
.shipping select.validation-failed {
  border-color: #DF280A;
}
.shipping .shipping-desc {
  display: none;
}
.shipping .buttons-set {
  border: none;
  margin: 0;
  padding: 0;
}
.shipping .form-list:after {
  content: '';
  display: table;
  clear: both;
}
.shipping .form-list li {
  float: left;
  margin: 5px 2% 10px 0;
}
.shipping .form-list .shipping-country {
  width: 37%;
}
.shipping .form-list .shipping-region {
  width: 41%;
}
.shipping .form-list .shipping-postcode {
  margin-right: 0;
  width: 18%;
}
.shipping .form-list .shipping-postcode input {
  margin-top: 4px;
}
.shipping .form-list .input-box {
  padding-top: 0;
}
.shipping .form-list input {
  height: 30px;
  margin-top: 4px;
}
.shipping .form-list label {
  font-family: "Bliss2", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}
.shipping .sp-methods {
  padding: 10px 0 0;
  text-align: left;
}
.shipping .sp-methods dd {
  margin-bottom: 10px;
}
.shipping .sp-methods label {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  min-width: 100px;
}
.shipping .sp-methods label span {
  font-family: "Bliss2", Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
}
.shipping #co-shipping-method-form .buttons-set .button {
  float: left;
  margin-left: 0;
}
.shipping #co-shipping-method-form .sp-methods dd label {
  border: 1px solid #CCCCCC;
  background-color: #ededed;
  min-width: 220px;
}
.shipping #co-shipping-method-form .sp-methods dd label:hover {
  background-color: gainsboro;
}

.cart .cart-totals {
  text-align: right;
  max-width: 380px;
  float: right;
}
.cart .cart-totals:after {
  content: '';
  display: table;
  clear: both;
}
.cart .cart-totals table {
  font-family: "Bliss2", Arial, sans-serif;
  font-size: 12px;
  margin-bottom: 25px;
  text-transform: uppercase;
  width: 100%;
}
.cart .cart-totals table td {
  padding: 2px 0px;
}
.cart .cart-totals table td:first-child {
  padding-right: 10px;
  min-width: 120px;
}
.cart .cart-totals table tbody tr:last-child td,
.cart .cart-totals table tbody tr:last-child th {
  padding-bottom: 10px;
}
.cart .cart-totals table tfoot {
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
}
.cart .cart-totals table tfoot td {
  font-size: 24px;
  padding: 2px 5px;
  vertical-align: top;
}
.cart .cart-totals table tfoot strong span,
.cart .cart-totals table tfoot span.price {
  font-family: "Bliss2", Arial, sans-serif;
}
.cart .cart-totals table tfoot strong {
  font-weight: 400;
}

.cart-forms .discount {
  margin-bottom: 45px;
}

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

#discount-coupon-form,
.cart .giftcard {
  width: 100%;
}
#discount-coupon-form h2,
.cart .giftcard h2 {
  display: block;
  font-size: 15px;
  color: #58585a;
  font-weight: normal;
  margin-bottom: 20px;
}
#discount-coupon-form label,
.cart .giftcard label {
  font-family: "Bliss2", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
  min-width: 105px;
  display: inline-block;
  margin-right: 10px;
  display: none;
}
#discount-coupon-form .field-wrapper,
.cart .giftcard .field-wrapper {
  display: table;
  width: 100%;
  table-layout: fixed;
}
#discount-coupon-form .validation-advice,
.cart .giftcard .validation-advice {
  display: inline;
}
#discount-coupon-form .button-wrapper,
.cart .giftcard .button-wrapper {
  display: table-cell;
  vertical-align: bottom;
}
#discount-coupon-form .button-wrapper > button,
.cart .giftcard .button-wrapper > button {
  float: right !important;
  margin-left: 10px;
  padding: 10px 36px;
}
#discount-coupon-form .button-wrapper > button.nocancel,
.cart .giftcard .button-wrapper > button.nocancel {
  float: left !important;
  margin-left: 30px;
}
#discount-coupon-form .input-text,
.cart .giftcard .input-text {
  border-radius: 0;
  height: 40px;
  line-height: 40px;
  width: 100%;
  max-width: 350px;
  border-top: none;
  border-right: none;
  border-color: #dedfe1;
  color: #303e48;
  margin-right: 30px;
  outline: none;
  display: table-cell;
}

.cart .giftcard p {
  margin-bottom: 7px;
}

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

/* ============================================ *
 * Checkout - Cart Cross sell
 * ============================================ */
.crosssell h2 {
  color: #3399CC;
}
.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 */
.checkout-steps {
  text-align: center;
  display: table;
  margin: 50px auto 40px auto;
}
.checkout-steps li {
  display: inline-block;
  vertical-align: top;
  margin: 0 33px;
  position: relative;
  text-transform: uppercase;
  text-align: center;
  color: #a3a5a8;
  font-size: 13px;
  overflow: initial;
}
.checkout-steps li span {
  display: block;
  font-size: 20px;
  color: #a3a5a8;
}
.checkout-steps li.active {
  border-bottom: 2px solid #303e48;
  color: #303e48;
}
.checkout-steps li.active span {
  font-weight: bold;
}
.checkout-steps li:first-child {
  margin-left: 21px;
}
.checkout-steps li:first-child:before {
  content: '';
  width: 120px;
  height: 1px;
  background: #a3a5a8;
  position: absolute;
  bottom: 8px;
  left: -141px;
}

.cart-popin {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  min-width: 320px;
  height: 300px;
  background: #ffffff;
  padding: 25px;
  z-index: 2;
  -moz-box-shadow: 1px 1px 10px 4px #a3a5a8;
  -webkit-box-shadow: 1px 1px 10px 4px #a3a5a8;
  -o-box-shadow: 1px 1px 10px 4px #a3a5a8;
  box-shadow: 1px 1px 10px 4px #a3a5a8;
  filter: progid:DXImageTransform.Microsoft.Shadow(color=#a3a5a8, Direction=134, Strength=10);
}
.cart-popin .cart-popin-content {
  overflow: auto;
  height: 100%;
}
.cart-popin .cart-popin-close {
  width: 8px;
  height: 8px;
  background: url("../images/remove-2.png") no-repeat center center;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.shipping-information-wrapper h2 {
  display: block;
  font-size: 15px;
  color: #58585a;
  font-weight: 400;
  margin-bottom: 20px;
  clear: both;
  text-align: left;
}
.shipping-information-wrapper .popin-cart-opener {
  margin-bottom: 20px;
  display: inline-block;
  cursor: pointer;
  float: left;
  clear: left;
}
.shipping-information-wrapper .popin-cart-opener:hover {
  text-decoration: underline;
}
.shipping-information-wrapper .paiement-information {
  margin: 20px 0 25px 0;
  display: block;
  clear: both;
  float: left;
}

.continu-shopping-link {
  float: left;
  clear: both;
  display: inline-block;
  color: #303e48;
  line-height: 20px;
  border-bottom: 1px solid #a3a5a8;
  margin-bottom: 45px;
}
.continu-shopping-link:hover {
  color: #a3a5a8;
  text-decoration: none;
}

#shopping-cart-totals-table tbody tr td {
  font-weight: 400;
  padding: 0;
  font-size: 15px;
  line-height: 30px;
}
#shopping-cart-totals-table tbody tr td:first-child {
  text-align: left;
}
#shopping-cart-totals-table tbody tr td:last-child {
  text-align: right;
}
#shopping-cart-totals-table tfoot {
  border: none;
}
#shopping-cart-totals-table tfoot tr td {
  padding: 0;
  font-size: 13px;
  line-height: 30px;
  font-weight: 100;
}
#shopping-cart-totals-table tfoot tr td:first-child {
  text-align: left;
  width: 230px;
}
#shopping-cart-totals-table tfoot tr td:last-child {
  text-align: right;
}
#shopping-cart-totals-table tfoot tr:last-child td {
  padding-top: 115px;
  font-size: 24px;
  font-weight: 400;
}
#shopping-cart-totals-table tfoot tr:last-child td strong {
  font-weight: 400;
}

.crosssell {
  text-align: center;
  margin-bottom: 50px;
}
.crosssell h2 {
  display: inline-block;
  color: #303e48;
  font-size: 24px;
  padding-bottom: 15px;
  position: relative;
  line-height: 20px;
  margin-bottom: 35px;
  font-weight: 400;
}
.crosssell h2:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #303e48;
  border-bottom: none;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translate(-50%, 0);
}
.crosssell h2:before {
  width: 100%;
  height: 3px;
  display: block;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background: #303e48;
}
.crosssell .products-grid {
  display: table;
  width: 100%;
}
.crosssell .products-grid li {
  box-sizing: border-box;
  border: 5px solid #ffffff;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  padding: 1%;
  margin-right: 0;
  width: calc(100%/4);
  float: none;
  clear: both;
  display: inline-block;
  position: relative;
  vertical-align: top;
  margin-bottom: 0;
}
.crosssell .products-grid li .product-image {
  margin-bottom: 35px;
}
.crosssell .products-grid li .product-image img {
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 180px;
}
.crosssell .products-grid li .product-name {
  font-size: 14px;
  color: #303e48;
  font-weight: 800;
  min-height: 110px;
  margin-bottom: 35px;
}
.crosssell .products-grid li .product-name .product-name-first {
  min-height: 30px;
  display: block;
}
.crosssell .products-grid li .product-name .product-subtitle {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #a3a5a8;
  text-transform: none;
}
.crosssell .products-grid li .product-name .product-subtitle span {
  font-weight: 300;
}
.crosssell .products-grid li .ratings {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 90%;
  opacity: 1;
  z-index: 3;
  min-height: 0;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  -ms-transition: opacity 0.25s ease;
  -o-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  margin: 25px 0;
  display: block;
}
.crosssell .products-grid li .ratings .rating-box {
  width: 91px;
  height: 15px;
  background-position: 0 -616px;
}
.crosssell .products-grid li .ratings .rating-box .rating {
  height: 15px;
  background-position: 0 -599px;
}
.crosssell .products-grid li .ratings .rating-links {
  display: none;
}
.crosssell .products-grid li .actions {
  position: absolute;
  bottom: 5%;
  width: 90%;
  opacity: 0;
  z-index: 1;
  min-height: 0;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  -ms-transition: opacity 0.25s ease;
  -o-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  left: 5%;
}
.crosssell .products-grid li .actions .button {
  width: 48%;
  padding: 16px 0;
}
.crosssell .products-grid li .actions .button.button-second:hover {
  padding: 15px 0;
}
.crosssell .products-grid li .actions .availability.out-of-stock {
  width: 48%;
  padding: 16px 0;
  float: right;
}
.crosssell .products-grid li:hover {
  border-color: #e7e8ea;
}
.crosssell .products-grid li:hover .ratings {
  opacity: 0;
  z-index: 1;
}
.crosssell .products-grid li:hover .actions {
  opacity: 1;
  z-index: 3;
}
.crosssell .products-grid li:nth-child(even) {
  margin-right: 0;
}
.crosssell .products-grid li a {
  border: none;
  outline: none;
  text-decoration: none;
  color: #303e48;
  text-transform: uppercase;
  text-align: center;
}
.crosssell .products-grid li a:hover {
  color: #303e48;
}
.crosssell .products-grid li a img {
  width: auto;
  margin: 0 auto;
}
.crosssell .products-grid li .price-box {
  padding-bottom: 60px;
}
.crosssell .products-grid li .price-box .price {
  font-weight: bold;
  font-size: 24px;
  color: #303e48;
}

.checkout-cart-empty .main {
  min-height: 500px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.checkout-cart-empty .main .page-title {
  margin: 50px auto 40px auto;
}

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

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

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

.opc select {
  width: 365px;
}

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

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

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

.opc .section.active .step-title {
  border-bottom: 1px solid #ECECEC;
}

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

.opc .section.allow:not(.active) .step-title a {
  display: block;
  float: right;
  line-height: 40px;
  height: 40px;
  padding: 0px 10px;
}

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

.opc .section .step-title .number,
.opc .section.allow.active .step-title .number,
.no-touch .opc .section.allow:hover .step-title .number {
  width: 26px;
  height: 26px;
  text-align: center;
  color: #FFFFFF;
  line-height: 26px;
  background-color: #0096b6;
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -13px;
}

.opc .section.allow .step-title .number {
  background-color: #80cbdb;
}

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

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

.opc .section .step-title h2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  height: 40px;
  float: left;
  margin: 0px 4px 0px 45px;
}

.opc .section .step {
  padding: 20px;
}
.opc .section .step:after {
  content: '';
  display: table;
  clear: both;
}

.opc select {
  max-width: 365px;
  width: 100%;
}

.opc h3 {
  font-weight: 500;
}

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

.opc #opc-login .step {
  padding: 0px;
}
.opc #opc-login .buttons-set {
  border-top: 0;
  padding-top: 5px;
}

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

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

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

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

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

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

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

/* -------------------------------------------- *
 * Shipping and Payment methods
 */
.sp-methods {
  margin: 0 0 8px;
}
.sp-methods dt {
  margin: 13px 0 5px;
  font-weight: bold;
}
.sp-methods dt:first-child {
  margin: 0 0 5px;
}
.sp-methods dd li {
  margin: 5px 0;
}
.sp-methods label img {
  float: left;
}
.sp-methods label a {
  margin-top: 6px;
  float: right;
  margin-left: 10px;
}
.sp-methods .price {
  font-weight: bold;
}
.sp-methods .form-list {
  padding-left: 20px;
}
.sp-methods .form-list li {
  margin: 0 0 8px;
}
.sp-methods select.month {
  width: 120px;
  margin-right: 10px;
}
.sp-methods select.year {
  width: 96px;
}
.sp-methods input.cvv {
  width: 4em !important;
}
.sp-methods #advice-validate-cc-exp-ccsave_expiration {
  max-width: 130px;
}
.sp-methods .checkmo-list li {
  margin: 0 0 5px;
  content: '';
  display: table;
  clear: both;
}
.sp-methods .checkmo-list label {
  width: 165px;
  padding-right: 15px;
  text-align: right;
  float: left;
}
.sp-methods .checkmo-list address {
  float: left;
}
.sp-methods .release-amounts {
  margin: 0.5em 0;
}
.sp-methods .release-amounts button {
  float: left;
  margin: 5px 10px 0 0;
}

/* One Page Checkout */
.block-progress {
  border: 0;
  margin: 0;
  border-left: 1px solid #CCCCCC;
  padding-left: 20px;
}
.block-progress .block-content {
  font-size: 13px;
}
.block-progress dt {
  padding-top: 6px;
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Bliss2", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: normal;
  color: #A0A0A0;
}
.block-progress dt.complete {
  color: #636363;
}
.block-progress dd {
  padding-left: 15px;
  margin-bottom: 10px;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-style: italic;
}
.block-progress dd address {
  font-style: italic;
}
.block-progress #payment-progress-opcheckout .subtitle {
  margin-bottom: 3px;
}
.block-progress .payment-info dt {
  padding: 0;
  margin: 0 0 3px 0;
  color: #636363;
  font-family: Georgia, Times, "Times New Roman", serif;
  text-transform: none;
  font-style: italic;
  float: left;
  clear: both;
  font-size: 13px;
}
.block-progress .payment-info dt:after {
  content: ': ';
}
.block-progress .payment-info dd {
  float: left;
  margin-bottom: 3px;
  font-size: 13px;
}
.block-progress .payment-info:after {
  content: '';
  display: table;
  clear: both;
}

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

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

#review-buttons-container {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}
#review-buttons-container .btn-checkout {
  min-width: 220px;
}
#review-buttons-container .please-wait {
  float: left;
  margin-right: 10px;
}
#review-buttons-container .f-left {
  float: right;
}

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

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

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

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

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

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

/* ============================================ *
 * Checkout - Success
 * ============================================ */
.checkout-onepage-success .col-main {
  padding: 0;
  text-align: center;
}
.checkout-onepage-success .buttons-set {
  margin: 10px 0;
  text-align: center;
}
.checkout-onepage-success .buttons-set button {
  float: none;
}

/* ============================================ *
 * 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: #636363;
  text-decoration: none;
  box-sizing: content-box;
}

.swatch-link {
  border: 1px solid #CCCCCC;
  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(../images/bg_x.png) center no-repeat transparent;
  z-index: 10;
}
.swatch-link.has-image .swatch-label {
  position: relative;
}
.swatch-link.has-image img {
  position: absolute;
  top: 0;
  left: 0;
}

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

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

#narrow-by-list dd .configurable-swatch-list li {
  margin: 0 0 0 3px;
  width: 47%;
}
#narrow-by-list dd .swatch-link {
  border: none;
  line-height: 25px;
  margin-right: 2px;
  text-align: left;
}
#narrow-by-list dd .swatch-link.has-image {
  line-height: inherit;
}
#narrow-by-list dd .swatch-link:hover .swatch-label {
  border-color: #3399CC;
}
#narrow-by-list dd .swatch-label {
  background: #F4F4F4;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  display: block;
  float: left;
  line-height: 1.5em;
  margin: 0 5px 0 0;
  padding: 1px 5px;
  white-space: nowrap;
}
#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: #CCCCCC;
  cursor: default;
}

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

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

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

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

/* ============================================ *
 * Customer
 * ============================================ */
.customer-account-login .scaffold-form label:first-child {
  width: 115px;
}
.customer-account-login .col2-set .buttons-set {
  text-align: left;
  border-top: 0;
}
.customer-account-login .col2-set .buttons-set button,
.customer-account-login .col2-set .buttons-set .button {
  float: none;
  min-width: 50%;
  margin: 0;
}
.customer-account-login .col2-set .col-1 ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0 20px 0;
}
.customer-account-login .col2-set .col-1,
.customer-account-login .col2-set .col-2 {
  padding-top: 0;
  margin-top: 20px;
}
.customer-account-login .col2-set .col-1 {
  padding-right: 20px;
}
.customer-account-login .col2-set .col-2 {
  padding-left: 20px;
  border-left: 1px solid #EDEDED;
}
.customer-account-login .col2-set .col-1 {
  padding-right: 60px;
}
.customer-account-login .col2-set .col-2 {
  padding-left: 60px;
  border-left: 1px solid #EDEDED;
}

.customer-account-create .scaffold-form label:first-child {
  width: 140px;
}

.opc #opc-login p:not(.required) {
  font-style: italic;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 13px;
  color: #A0A0A0;
}

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

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

.customer-account-create .buttons-set {
  max-width: 455px;
}
.customer-account-create .fieldset,
.customer-account-create .buttons-set {
  margin-left: 30px;
}
.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 {
  margin-left: 30px;
  max-width: 400px;
}
.customer-account-forgotpassword .fieldset .input-box input.input-text {
  width: 100%;
}

/* ============================================ *
 * My Account Global Styles
 * ============================================ */
body.customer-account .my-account .page-title h1, body.customer-account .my-account .page-title [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head body.customer-account .my-account .page-title h2 {
  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, body.customer-account .my-account .title-buttons [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head body.customer-account .my-account .title-buttons h2 {
  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: 30px;
  margin-bottom: 30px;
}
body.customer-account .data-table {
  margin-top: 5px;
}
body.customer-account .data-table td a {
  font-family: "Bliss2", Arial, sans-serif;
  text-transform: uppercase;
  font-style: normal;
  font-size: 13px;
}
body.customer-account .data-table span.nobr {
  white-space: normal;
}
body.customer-account .data-table span.nobr a {
  white-space: nowrap;
}
body.customer-account .data-table td.view a {
  display: block;
}
body.customer-account .data-table .separator {
  display: none;
}
body.customer-account .sidebar .block ol#compare-items li {
  margin: 10px 0;
}
body.customer-account .sidebar .block .block-content p.block-subtitle {
  margin-bottom: 15px;
}
body.customer-account .sidebar .block .block-content .actions {
  margin-top: 30px;
}
body.customer-account .sidebar ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
body.customer-account .sidebar ol#cart-sidebar-reorder p.product-name {
  display: inline-block;
  margin-bottom: 0;
}
body.customer-account .sidebar .block-cart .summary {
  margin-bottom: 15px;
}
body.customer-account .sidebar .block-reorder {
  display: none;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li {
  margin-top: 10px;
  margin-bottom: 0;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder li input {
  margin-right: 10px;
}
body.customer-account .sidebar .block-reorder ol#cart-sidebar-reorder p.product-name {
  display: inline;
  margin-bottom: 0;
}

.form-list .customer-dob .dob-month,
.form-list .customer-dob .dob-day {
  width: 40px;
  float: left;
  margin-right: 10px;
}
.form-list .customer-dob .dob-year {
  width: 80px;
  float: left;
}

/* ============================================ *
 * Dashboard
 * ============================================ */
.dashboard ul.messages {
  width: calc(100% - 260px);
}
.dashboard .box-head {
  margin-top: 30px;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 7px;
}
.dashboard .box-head h2 {
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0;
}
.dashboard .box-head a {
  padding: 10px;
}
.dashboard .box-title a,
.dashboard .box-head a {
  text-transform: uppercase;
  font-size: 12px;
}
.dashboard .box-account {
  padding-bottom: 40px;
  border-bottom: 1px solid #CCCCCC;
  margin-bottom: 45px;
}
.dashboard .box-account p,
.dashboard .box-account address {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-style: italic;
}
.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-weight: 600;
  font-size: 14px;
  margin-bottom: 0;
}
.dashboard .col2-set .col-1 .box-title a,
.dashboard .col2-set .col-2 .box-title a {
  line-height: 19.6px;
}
.dashboard .box-reviews.box-account {
  padding-bottom: 0;
}
.dashboard .box-reviews li {
  padding: 10px 0;
  border-top: 1px solid #EDEDED;
}
.dashboard .box-reviews li:first-child {
  border-top: 0;
}
.dashboard .box-reviews li .number {
  margin-right: -20px;
  float: left;
  line-height: 1.4;
  font-size: 13px;
}
.dashboard .box-reviews li .details {
  margin-left: 20px;
}
.dashboard .box-reviews li .details .ratings {
  content: '';
  display: table;
  clear: both;
  margin-bottom: 0;
}
.dashboard .box-reviews li .details .ratings strong {
  float: left;
  font-family: "Bliss2", Arial, sans-serif;
  font-size: 13px;
  margin-right: 5px;
}
.dashboard .box-reviews li .details .ratings .rating-box {
  float: left;
  margin: 3px 0 0 0;
}

/* ============================================ *
 * Address Book
 * ============================================ */
.my-account .addresses-list {
  font-family: Georgia, Times, "Times New Roman", serif;
}
.my-account .addresses-list .col-1,
.my-account .addresses-list .col-2 {
  padding-bottom: 0;
}
.my-account .addresses-list .item {
  margin: 0 0 30px 0;
}
.my-account .addresses-list .item p {
  margin-top: 10px;
}

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

.order-date {
  font-family: "Bliss2", Arial, sans-serif;
  text-transform: uppercase;
}

.order-info-box {
  margin-bottom: 40px;
  margin-top: 20px;
}
.order-info-box + .order-info-box {
  padding-bottom: 40px;
  border-bottom: 1px solid #EDEDED;
}
.order-info-box .col-1 {
  padding-right: 0;
  width: 48%;
}
.order-info-box .col-2 {
  width: 52%;
}
.order-info-box .col-1,
.order-info-box .col-2 {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.order-info-box .box-title {
  width: 150px;
  padding-right: 10px;
  float: left;
}
.order-info-box .box-title h2 {
  font-size: 14px;
  font-family: "Bliss2", Arial, sans-serif;
  font-weight: bold;
  line-height: 1.5;
}
.order-info-box .box-title h2:after {
  content: ':';
}
.order-info-box .box-content {
  float: left;
  font-family: Georgia, Times, "Times New Roman", serif;
}
.order-info-box .box-content td,
.order-info-box .box-content th {
  font-family: Georgia, Times, "Times New Roman", serif;
  line-height: 1.3;
}
.order-info-box .box-content th {
  padding-top: 10px;
}
.order-info-box .box-content td {
  padding-left: 15px;
}
.order-info-box .box-content strong {
  font-family: "Bliss2", Arial, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
}

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

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

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

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

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

body.customer-account .data-table td.view a {
  white-space: normal;
}

/* ============================================ *
 * Newsletter Subscriptions
 * ============================================ */
body.newsletter-manage-index .my-account .fieldset {
  margin-bottom: 20px;
}
body.newsletter-manage-index .my-account .fieldset h2 {
  display: none;
}
body.newsletter-manage-index .my-account .form-list {
  border-top: 1px solid #EDEDED;
  padding-top: 10px;
}

/* ============================================ *
 * Contacts
 * ============================================ */
.contacts-index-index .col-main {
  width: 100%;
  float: none;
  padding: 0;
}
.contacts-index-index .banner-account-image {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.contacts-index-index .account-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  float: none;
}
.contacts-index-index .account-wrapper .page-title h1, .contacts-index-index .account-wrapper .page-title [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .contacts-index-index .account-wrapper .page-title h2 {
  margin: 0;
  text-align: center;
  padding: 20px 0 15px 0;
  color: #303e48;
  font-weight: 500;
  font-family: "Bliss2", Arial, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  border: none;
}
.contacts-index-index .account-wrapper .page-title p.contact-subtitle {
  text-align: center;
  margin: 0 auto 45px auto;
  font-size: 18px;
  color: #303e48;
  font-weight: normal;
}
.contacts-index-index .account-wrapper p.contact-sub-subtitle {
  text-align: left;
  margin: 0 auto 45px auto;
  font-size: 14px;
  color: #303e48;
  font-weight: 300;
}
.contacts-index-index .account-wrapper h2 {
  margin-bottom: 20px;
}
.contacts-index-index h3 {
  text-align: center;
  margin-bottom: 35px;
}
.contacts-index-index h3.form-list-section-title {
  background-image: none !important;
  padding-left: 11px;
  height: 35px;
  vertical-align: bottom;
  display: inline-block;
  line-height: 40px;
  color: #303e48;
  position: relative;
  font-size: 14px;
  margin-bottom: 30px;
  padding-top: 7px;
}
.contacts-index-index h3.form-list-section-title:before {
  content: '1. ';
  font-size: 20px;
}
.contacts-index-index h3.form-list-section-title:after {
  content: '';
  height: 100%;
  width: 1px;
  display: block;
  background: #303e48;
  top: 0;
  position: absolute;
  left: 0;
}
.contacts-index-index h3.form-list-section-title.section-tel:before {
  content: '2. ';
}
.contacts-index-index h3.form-list-section-title.section-courrier:before {
  content: '3. ';
}
.contacts-index-index #contactForm {
  padding-left: 0;
  padding-right: 40px;
  width: 50%;
  float: left;
}
.contacts-index-index #contactForm h2 {
  display: block;
}
.contacts-index-index #contactForm input, .contacts-index-index #contactForm textarea {
  width: 100%;
  height: 40px;
  line-height: 40px;
  color: #303e48;
  font-size: 13px;
  font-weight: normal;
  border-top: none;
  border-right: none;
  border-color: #dedfe1;
  padding: 0 6px;
  background: #ffffff;
  outline: none;
}
.contacts-index-index #contactForm textarea {
  height: 100px;
  line-height: normal;
  padding-top: 10px;
  max-width: none;
}
.contacts-index-index #contactForm .form-list li.field {
  position: relative;
  margin-bottom: 20px;
}
.contacts-index-index #contactForm .form-list li.field label {
  position: absolute;
  height: 40px;
  line-height: 40px;
  top: 0;
  left: 10px;
  transition: visibility 0.15s, opacity 0.15s linear;
}
.contacts-index-index #contactForm .form-list li.field label.fadeout {
  visibility: hidden;
  opacity: 0;
}
.contacts-index-index #contactForm .buttons-set button.button-first {
  margin: 0;
}
.contacts-index-index .service-client-wrapper {
  width: 50%;
  float: right;
  padding-left: 40px;
}
.contacts-index-index .service-client-wrapper p {
  margin-bottom: 30px;
  color: #a3a5a8;
  font-size: 14px;
}
.contacts-index-index .service-client-wrapper p span {
  color: #303e48;
  display: block;
}
.contacts-index-index .service-client-wrapper p a {
  color: #0096b6;
}
.contacts-index-index .service-client-wrapper p a:hover {
  text-decoration: none;
}
.contacts-index-index .buttons-set {
  margin: 10px 0 50px 0;
}
.contacts-index-index .buttons-set p.required {
  float: left;
}

#recaptcha_table tbody tr:last-child {
  display: none;
}

/* ============================================ *
 * PayPal
 * ============================================ */
.paypal-review-order .info-set {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #EDEDED;
}
.paypal-review-order .buttons-set {
  margin-top: 0px;
  padding-top: 0px;
  border: 0;
}
.paypal-review-order .buttons-set button {
  margin-bottom: 10px;
}

.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: 15px 0;
  max-width: 100%;
}
div.paypal-logo span {
  display: block;
  width: 100%;
}
div.paypal-logo span a {
  display: inline-block;
  max-width: 100%;
}
div.paypal-logo span a img {
  max-width: 100%;
}
div.paypal-logo span > img {
  display: none;
}

.checkout-types div.paypal-logo {
  text-align: right;
}

.bml-checkout-type {
  list-style-type: none;
}

.sidebar .paypal-logo {
  text-align: center;
  line-height: 0;
}
.sidebar .paypal-logo > a {
  display: inline-block;
  max-width: 100%;
}
.sidebar .paypal-logo > a:hover {
  opacity: 0.8;
}
.sidebar .paypal-logo > a img {
  display: block;
}
.sidebar .paypal-logo .label {
  margin-top: 4px;
}
.sidebar .paypal-logo .label a {
  font-size: 12px;
  line-height: 1.5;
}

/* ============================================ *
 * Review - Customer
 * ============================================ */
#customer-reviews {
  width: auto;
  float: none;
}
#customer-reviews .review-heading {
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  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: "Bliss2", Arial, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
}
#customer-reviews .review-heading .pager .amount {
  display: none;
}
#customer-reviews h2 {
  color: #3399CC;
  font-size: 12px;
  text-transform: uppercase;
}
#customer-reviews h2 span {
  color: #636363;
}
#customer-reviews h3 {
  font-family: "Bliss2", Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
}
#customer-reviews h3 span {
  color: #3399CC;
}
#customer-reviews .fieldset {
  padding-top: 25px;
  width: 470px;
}
#customer-reviews .fieldset h4 {
  border-bottom: 1px solid #CCCCCC;
  font-family: "Bliss2", 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: "Bliss2", 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 #CCCCCC;
  border-radius: 0;
  min-width: 100%;
  -webkit-appearance: none;
}
#customer-reviews .fieldset .form-list input {
  border: 1px solid #CCCCCC;
  border-radius: 0;
}
#customer-reviews .fieldset .form-list input[type="text"] {
  width: 100%;
}
#customer-reviews .buttons-set {
  border: none;
  margin: 0;
  width: 470px;
}
#customer-reviews dl {
  font-family: "Bliss2", 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-family: Georgia, Times, "Times New Roman", serif;
  font-size: 14px;
  margin: 10px 0;
}
#customer-reviews dl dd .ratings-table {
  font-family: "Bliss2", 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: #3399CC;
  font-family: "Bliss2", Arial, sans-serif;
  font-size: 10px;
  font-weight: normal;
  text-transform: uppercase;
}

.review-summary-table {
  border-bottom: 1px solid #CCCCCC;
  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: "Bliss2", Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
.ratings-table th {
  padding-right: 10px;
}
.ratings-table .rating-box {
  background-position: 0 -617px;
  background-repeat: repeat-x;
  height: 15px;
  overflow: hidden;
  text-indent: -9999px;
  width: 65px;
}
.ratings-table .rating-box .rating {
  background-position: 0 -599px;
  background-repeat: repeat-x;
  float: left;
  height: 15px;
  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 #EDEDED;
}
.slideshow-container .slideshow {
  width: 100%;
  padding: 0;
  position: relative;
  margin: 0;
  border: 10px solid #FFFFFF;
}
.slideshow-container .slideshow > li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  display: block;
  margin: 0;
}
.slideshow-container .slideshow > li:first-child {
  position: static;
  z-index: 100;
}
.slideshow-container .slideshow > li img {
  max-width: 100%;
  width: 100%;
}

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

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

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

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

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

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

/* ============================================ *
 * Wishlist
 * ============================================ */
#wishlist-table th {
  text-align: center;
}
#wishlist-table.clean-table {
  font-family: "Bliss2", Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  width: 100%;
}
#wishlist-table.clean-table th {
  border-bottom: 1px solid #C0C0C0;
}
#wishlist-table.clean-table td {
  padding: 15px;
  vertical-align: top;
}
#wishlist-table.clean-table thead th {
  font-family: "Bliss2", Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
#wishlist-table .product-name {
  font-size: 16px;
  font-family: "Bliss2", Arial, sans-serif;
  margin-bottom: 0;
  text-transform: uppercase;
}
#wishlist-table .product-name a {
  color: #0096b6;
}
#wishlist-table .wishlist-sku {
  font-size: 11px;
  font-family: "Bliss2", Arial, sans-serif;
  margin: 5px 0;
}
#wishlist-table textarea {
  border: 1px solid #C0C0C0;
  width: 100%;
  height: 45px;
  font-size: 11px;
  font-family: "Bliss2", 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 #3399CC;
}
#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: "Bliss2", Arial, sans-serif;
  font-size: 12px;
}
#wishlist-table .price-box .price {
  color: #636363;
}
#wishlist-table .giftregisty-add {
  margin-top: 5px;
}
#wishlist-table .giftregisty-add .change {
  display: none;
}
#wishlist-table .giftregisty-add li {
  cursor: pointer;
  color: #0096b6;
  margin-bottom: 3px;
}
#wishlist-table .truncated .details {
  background: none;
  color: #0096b6;
}
#wishlist-table td[data-rwd-label]:before {
  font-weight: 600;
}

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

/* ============================================ *
 * Wishlist Sidebar
 * ============================================ */
.block-wishlist .mini-products-list > li:not(:last-child) {
  padding-bottom: 5px;
}
.block-wishlist .product-details .product-name {
  padding-top: 0;
  margin-bottom: 5px;
}
.block-wishlist .price-box {
  float: left;
  margin: 0;
}
.block-wishlist .price-box,
.block-wishlist .price-box .price,
.block-wishlist .link-cart {
  font-size: 12px;
}
.block-wishlist .link-cart {
  float: left;
  text-transform: uppercase;
  margin-right: 7px;
  padding-right: 7px;
  border-right: 1px solid #EDEDED;
}

/* ============================================ *
 * Checkout - Mini cart
 * ============================================ */
.header-minicart .minicart-message {
  display: block;
  padding: 10px;
}
.header-minicart .empty {
  padding: 10px;
  text-align: center;
}
.header-minicart .minicart-wrapper {
  clear: both;
  position: relative;
}
.header-minicart .minicart-wrapper:before, .header-minicart .minicart-wrapper:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.header-minicart .minicart-wrapper:before {
  background-color: white;
  opacity: 0.8;
  z-index: 2;
}
.header-minicart .minicart-wrapper:after {
  background-image: url("../images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.header-minicart .minicart-wrapper.loading {
  position: relative;
}
.header-minicart .minicart-wrapper.loading:before, .header-minicart .minicart-wrapper.loading:after {
  display: block;
}
.header-minicart .block-cart {
  display: none;
}
.header-minicart .block-subtitle {
  color: #50A4CF;
  font-family: "Bliss2", Arial, sans-serif;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.4;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.header-minicart .block-subtitle .close {
  width: 40px;
  float: right;
  display: block;
  color: #636363;
  text-decoration: none;
  font-weight: normal;
  font-size: 30px;
  position: absolute;
  top: -8px;
  right: -3px;
}
.header-minicart .mini-products-list {
  padding: 10px;
  padding-top: 0px;
}
.header-minicart .mini-products-list li {
  border-bottom: 1px solid #DDDDDD;
  position: relative;
  padding: 15px 0;
}
.header-minicart .mini-products-list li .product-details {
  position: relative;
  display: inline-block;
  margin: 0 -0.25em 0 0;
  max-width: 218px;
  vertical-align: middle;
}
.header-minicart .mini-products-list li .product-details .product-name {
  font-weight: 500;
  text-align: left;
  max-width: calc(100% - 50px);
  float: left;
  color: #303e48;
  font-size: 12px;
}
.header-minicart .mini-products-list li .product-details .product-name a {
  color: #303e48;
  font-size: 12px;
}
.header-minicart .mini-products-list li .product-details span.price {
  float: left;
  width: 50px;
  color: #303e48;
  font-size: 12px;
  text-align: right;
}
.header-minicart .mini-products-list li .product-details .info-wrapper {
  clear: both;
}
.header-minicart .mini-products-list li .product-details .info-wrapper .mini-cart-item-desc {
  width: calc(100% - 50px);
  float: left;
  color: #a3a5a8;
  font-size: 12px;
  font-weight: 300;
  text-align: left;
  min-height: 1px;
  font-weight: normal;
}
.header-minicart .mini-products-list li .product-details .info-wrapper .mini-cart-item-desc span {
  display: block;
  font-weight: 300;
}
.header-minicart .mini-products-list li .product-details .info-wrapper .remove {
  float: left;
  width: 50px;
  text-align: right;
  background: url("../images/remove-2.png") no-repeat right center;
  height: 20px;
}
.header-minicart .mini-products-list .product-image {
  width: 100px;
  display: inline-block;
  vertical-align: middle;
}
.header-minicart .mini-products-list .product-image img {
  width: 100%;
  height: auto;
}
.header-minicart .product-details .product-name {
  padding-top: 0px;
  font-weight: bold;
}
.header-minicart .product-details .product-name a {
  color: #0096b6;
}
.header-minicart .info-wrapper {
  margin-bottom: 0.5em;
}
.header-minicart .info-wrapper th {
  text-transform: uppercase;
  padding-right: 10px;
}
.header-minicart .info-wrapper td {
  color: #3399CC;
  clear: 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;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -moz-transition-duration: 100ms;
  -o-transition-duration: 100ms;
  -webkit-transition-duration: 100ms;
  transition-duration: 100ms;
}
.header-minicart .info-wrapper .quantity-button[disabled] {
  cursor: default;
}
.header-minicart .info-wrapper .quantity-button.visible {
  opacity: 1;
}
.header-minicart .subtotal {
  text-align: right;
  line-height: 2em;
}
.header-minicart .subtotal .label {
  color: #303e48;
  text-transform: uppercase;
  margin-right: 30px;
  font-weight: 500;
}
.header-minicart .subtotal .price {
  color: #303e48;
  font-weight: 500;
}
.header-minicart .minicart-actions {
  margin-top: 30px;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.header-minicart .minicart-actions .checkout-types.minicart {
  width: 120px;
  float: right;
  height: 40px;
}
.header-minicart .minicart-actions .checkout-types.minicart li {
  width: 100%;
  height: 100%;
}
.header-minicart .minicart-actions .checkout-types.minicart li a.checkout-button {
  width: 100%;
  line-height: 40px;
  background: #0096b6;
  color: #ffffff;
  padding: 0;
  min-width: 0;
}
.header-minicart .minicart-actions .checkout-button {
  min-width: 145px;
}
.header-minicart .minicart-actions .cart-link {
  height: 40px;
  line-height: 40px;
  text-transform: uppercase;
  font-size: 13px;
  width: 195px;
  display: block;
  border: 1px solid #0096b6;
  background: #0096b6;
  text-decoration: none;
  color: #ffffff;
  margin: 0 auto;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.header-minicart .minicart-actions .cart-link:hover {
  text-decoration: none;
  color: #0096b6;
  background: #ffffff;
}
.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;
}

/* ============================================ *
 * Search - Auto Suggest
 * ============================================ */
.search-autocomplete {
  left: 0 !important;
  overflow: visible !important;
  position: relative !important;
  top: 15px !important;
  width: 100% !important;
  z-index: 200;
}
.search-autocomplete ul {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background-color: #FFFFFF;
  border: 1px solid #3399CC;
  left: 0;
  padding-left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.search-autocomplete ul li {
  border-bottom: 1px solid #F4F4F4;
  color: #0096b6;
  cursor: pointer;
  font-size: 12px;
  padding: 4px 6px;
  text-align: left;
}
.search-autocomplete ul li:hover {
  color: #00819d;
}
.search-autocomplete ul li.selected {
  background-color: #0096b6;
  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 #0096b6;
  border-top: none;
  left: 50%;
  top: -7px;
}

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

/* ============================================ *
 * Account - Reviews
 * ============================================ */
.product-review .product-img-box p.label {
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  font-family: "Bliss2", 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 #CCCCCC;
  color: #3399CC;
  font-size: 16px;
  font-weight: 600;
  font-family: "Bliss2", Arial, sans-serif;
  padding-bottom: 10px;
}
.product-review .ratings-table {
  font-family: "Bliss2", Arial, sans-serif;
}
.product-review .ratings-table th {
  padding-right: 10px;
}
.product-review .ratings-table tr {
  float: left;
  font-size: 12px;
  margin-right: 10px;
  text-transform: uppercase;
}
.product-review .ratings-description dt {
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  font-weight: 400;
  font-family: "Bliss2", Arial, sans-serif;
  margin-top: 20px;
  padding: 10px 0;
  text-transform: uppercase;
}
.product-review .ratings-description dd {
  color: #737373;
  font-family: "Bliss2", Arial, sans-serif;
  font-size: 13px;
}

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

/* ============================================ *
 * CMS Pages
 * ============================================ */
.mentions-legales .std {
  display: block !important;
}

.cms-page-view .page-title h1, .cms-page-view .page-title [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .cms-page-view .page-title h2,
.cms-page-view .page-title h3,
.cms-page-view .page-head h1,
.cms-page-view .page-head [class*="customer-account"] .dashboard .box-account .box-head h2,
[class*="customer-account"] .dashboard .box-account .box-head .cms-page-view .page-head h2,
.cms-page-view .page-head h3,
.cms-no-route .page-title h1,
.cms-no-route .page-title [class*="customer-account"] .dashboard .box-account .box-head h2,
[class*="customer-account"] .dashboard .box-account .box-head .cms-no-route .page-title h2,
.cms-no-route .page-title h3,
.cms-no-route .page-head h1,
.cms-no-route .page-head [class*="customer-account"] .dashboard .box-account .box-head h2,
[class*="customer-account"] .dashboard .box-account .box-head .cms-no-route .page-head h2,
.cms-no-route .page-head h3 {
  border: none;
}
.cms-page-view .std,
.cms-no-route .std {
  display: none;
}
.cms-page-view .std img,
.cms-no-route .std img {
  max-width: 100%;
}
.cms-page-view .std p,
.cms-no-route .std p {
  color: #636363;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
  line-height: 24px;
}
.cms-page-view .std h1, .cms-page-view .std [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .cms-page-view .std h2,
.cms-no-route .std h1,
.cms-no-route .std [class*="customer-account"] .dashboard .box-account .box-head h2,
[class*="customer-account"] .dashboard .box-account .box-head .cms-no-route .std h2 {
  color: #3399CC;
}
.cms-page-view .std h2,
.cms-no-route .std h2 {
  color: #3399CC;
}
.cms-page-view .std li,
.cms-no-route .std li {
  color: #636363;
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
  line-height: 24px;
}
.cms-page-view .col-left:after,
.cms-no-route .col-left:after {
  content: '';
  display: table;
  clear: both;
}

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

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

#accordion .toggle-tabs {
  display: none;
}
#accordion > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Bliss2", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-weight: normal;
  margin-bottom: 0px;
  padding: 7px 10px 7px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: #CCCCCC;
  position: relative;
  background-color: #F4F4F4;
  display: block;
}
#accordion > dl > dt:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 4px solid #0096b6;
  border-bottom: none;
  left: 10px;
  top: 50%;
  margin-top: -3px;
}
#accordion > dl > dt:hover {
  background-color: #ededed;
}
#accordion > dl > dd {
  padding: 10px;
  margin: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: #CCCCCC;
}
#accordion > dl > dd:last-child {
  border-width: 0 1px 1px 1px;
}
#accordion li {
  position: relative;
  overflow: hidden;
}
#accordion li .plusimage h2 {
  margin-right: 10px;
}

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

.contacts-index-index h1, .contacts-index-index [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .contacts-index-index h2 {
  border: none;
}

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

.cms-news-cellular-water .std {
  display: none;
}

/* ============================================ *
 * Pricing Conditions
 * ============================================ */
.price-box .minimal-price-link .label {
  color: #CF5050;
  font-family: "Bliss2", 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 #CCCCCC;
  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%;
}

/* ============================================ *
 * 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, .recurring-profiles-title [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .recurring-profiles-title h2 {
  margin-bottom: 7px;
}

body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons {
  float: right;
  text-align: right;
  margin-bottom: 30px;
}
body.customer-account .my-account .title-buttons.recurring-profiles-title-buttons .button {
  position: static;
}

.recurring-profiles-messages:after {
  content: '';
  display: table;
  clear: both;
}

#recurring_start_date_trig {
  display: inline;
}

/* ============================================ *
 * Billing Agreements
 * ============================================ */
.billing-agreements .info-box {
  margin-bottom: 30px;
}
.billing-agreements .info-box:after {
  content: '';
  display: table;
  clear: both;
}
.billing-agreements .info-box .form-list {
  max-width: 400px;
  width: 100%;
}
.billing-agreements .info-box .box-title {
  margin-top: 20px;
  margin-bottom: 7px;
}
.billing-agreements .info-box .button {
  float: right;
  margin-top: 7px;
}
.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%;
}

.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: 2.22222%;
}
.col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
  margin-right: 2.22222%;
}
.col1-layout .col-main .widget .products-grid--max-4-col-widget > li {
  width: 23.33333%;
  margin-right: 2.22222%;
}
.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: 2.22222%;
}
.col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
  margin-right: 2.22222%;
}
.col1-layout .col-main .widget .products-grid--max-5-col-widget > li {
  width: 18.22222%;
  margin-right: 2.22222%;
}
.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 #CCCCCC;
  border-right: 1px solid #CCCCCC;
  margin-bottom: 10px;
  font-family: "Bliss2", Arial, sans-serif;
}
body[class*="checkout-multishipping-"] .checkout-progress > li.active {
  background-color: #DDDDDD;
}
body[class*="checkout-multishipping-"] .checkout-progress > li.last {
  border-right: 0px;
}
body[class*="checkout-multishipping-"] .page-title {
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
body[class*="checkout-multishipping-"] .page-title h1, body[class*="checkout-multishipping-"] .page-title [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head body[class*="checkout-multishipping-"] .page-title h2 {
  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 #CCCCCC;
  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 #CCCCCC;
  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;
}

.onestepcheckout-index-index input {
  border-radius: 0 !important;
}
.onestepcheckout-index-index .first {
  border-top: none;
}
.onestepcheckout-index-index .main-container {
  width: 100%;
  max-width: 1280px;
}
.onestepcheckout-index-index .main-container div.onestepcheckout-error {
  color: #DF280A;
  text-align: left;
  font-size: 10px;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute;
  bottom: 3px;
  width: auto !important;
  background: none;
  border: none;
}
.onestepcheckout-index-index .main-container span.required {
  color: #58585a;
}
.onestepcheckout-index-index .main-container #onestepcheckout-form .group-select {
  padding: 0 !important;
}
.onestepcheckout-index-index .main-container #onestepcheckout-form .group-select li {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.onestepcheckout-index-index .main-container #onestepcheckout-form .group-select .onestepcheckout-login-top-container {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}
.onestepcheckout-index-index .main-container #onestepcheckout-form .group-select .onestepcheckout-login-top-container p {
  font-size: 14px;
  color: #303e48;
}
.onestepcheckout-index-index .main-container #onestepcheckout-form .group-select .onestepcheckout-login-top-container #onestepcheckout-login-link {
  padding: 8px 15px;
  color: #ffffff;
  background: #0096b6;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 13px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 100;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.onestepcheckout-index-index .main-container #onestepcheckout-form .group-select .onestepcheckout-login-top-container #onestepcheckout-login-link:hover {
  text-decoration: none;
  color: #ffffff;
  background: #006c83;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns {
  width: 100%;
  border-top: none;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns > div {
  margin: 0;
  box-sizing: border-box;
  padding: 0 0 0 20px;
  background: none !important;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns p.onestepcheckout-numbers {
  background-image: none !important;
  padding-left: 11px;
  height: 35px;
  vertical-align: bottom;
  display: inline-block;
  line-height: 40px;
  color: #303e48;
  position: relative;
  font-size: 14px;
  margin-bottom: 30px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns p.onestepcheckout-numbers:before {
  font-size: 20px;
  color: #303e48;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns p.onestepcheckout-numbers:after {
  content: '';
  height: 100%;
  width: 1px;
  display: block;
  background: #303e48;
  top: 0;
  position: absolute;
  left: 0;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns p.onestepcheckout-numbers.onestepcheckout-numbers-1:before {
  content: '1. ';
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns p.onestepcheckout-numbers.onestepcheckout-numbers-2:before {
  content: '2. ';
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns p.onestepcheckout-numbers.onestepcheckout-numbers-3 {
  padding-bottom: 30px;
  margin-bottom: 0;
  height: 65px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns p.onestepcheckout-numbers.onestepcheckout-numbers-3:before {
  content: '3. ';
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns p.onestepcheckout-numbers.onestepcheckout-numbers-3:after {
  left: 20px;
  height: 35px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns p.onestepcheckout-numbers.onestepcheckout-numbers-4:before {
  content: '4. ';
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left {
  width: calc(100% / 3);
  min-width: 320px;
  padding-right: 50px;
  border-right: 1px solid #dedfe1;
  border-left: 1px solid #dedfe1;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box {
  position: relative;
  padding-top: 0;
  margin-bottom: 20px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box .onestepcheckout-address-line {
  margin: 0;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box label {
  height: 39px;
  line-height: 40px;
  color: #58585a;
  font-size: 13px;
  font-weight: normal;
  transition: visibility 0.15s, opacity 0.15s linear;
  background: #ffffff;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box label.fadeout {
  visibility: hidden;
  opacity: 0;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box br {
  display: none;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box input[type="text"], .onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box input[type="password"], .onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box select {
  height: 40px;
  line-height: 40px;
  color: #58585a;
  font-size: 13px;
  font-weight: normal;
  border-top: none;
  border-right: none;
  width: 100% !important;
  border-color: #dedfe1;
  padding: 0 6px;
  background: #ffffff;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box input[type="text"]:focus, .onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box input[type="password"]:focus, .onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box select:focus {
  outline: none;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box input[type="text"], .onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box input[type="password"] {
  padding: 0 9px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box input[id="billing:street1"] {
  margin-bottom: 20px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box.input-firstname, .onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box.input-email, .onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box.input-postcode, .onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box.input-company, .onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box.input-password:first-child {
  float: left;
  width: calc(50% - 12.5px);
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box.input-telephone, .onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box.input-lastname, .onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box.input-fax, .onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box.input-region, .onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box.input-password:last-child {
  float: right;
  width: calc(50% - 12.5px);
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box.input-country label, .onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box.input-region label {
  display: none !important;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box.input-different-shipping {
  clear: both;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-box:not(.input-different-shipping):not(.input-postcode):not(.input-address):not(.input-country):not(.customer-dob):not(.input-region) label {
  position: absolute;
  top: 0;
  left: 11px;
  cursor: text;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-postcode label, .onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .input-address label {
  position: absolute;
  top: 0;
  left: 11px;
  cursor: text;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left .field > label[for='billing:day'], .onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left label[for='billing:gender'] {
  margin-bottom: 20px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left div.dob-day, .onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left div.dob-month, .onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left div.dob-year {
  position: relative;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left div.dob-day label, .onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left div.dob-month label, .onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left div.dob-year label {
  position: absolute;
  top: 0;
  left: 11px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left div.dob-day {
  width: calc(25% - 12.5px);
  margin-right: 12.5px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left div.dob-month {
  width: calc(25% - 12.5px);
  margin: 0 12.5px 0 0;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-left div.dob-year {
  width: calc(50% - 12.5px);
  float: right;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-middle,
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right {
  width: calc(100% / 3 * 2);
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-middle {
  margin-bottom: 20px;
  padding: 0;
  position: relative;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-middle:after {
  width: calc(100% - 20px);
  height: 1px;
  background: #dedfe1;
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-middle div.onestepcheckout-shipping-method {
  float: left;
  width: calc(50% - 20px);
  margin-left: 20px;
  padding: 0;
  min-width: 320px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-middle div.onestepcheckout-shipping-method .onestepcheckout-shipping-method-block {
  padding-left: 10px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-middle div.onestepcheckout-shipping-method .onestepcheckout-shipping-method-block dl dd {
  margin-bottom: 17px !important;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-middle div.onestepcheckout-shipping-method .onestepcheckout-shipping-method-block dl dt input {
  display: inline-block;
  vertical-align: middle;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-middle div.onestepcheckout-shipping-method .onestepcheckout-shipping-method-block dl dt label {
  display: inline-block;
  vertical-align: middle;
  padding-left: 43px;
  font-size: 13px;
  color: #58585a;
  line-height: 15px;
  margin-left: 10px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-middle div.onestepcheckout-shipping-method .onestepcheckout-shipping-method-block dl dt label b {
  font-size: 10px;
  color: #a3a5a8;
  font-weight: normal;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-middle div.onestepcheckout-shipping-method .onestepcheckout-shipping-method-block dl dt label[for*="colissimo"] {
  background: url("../images/colissimosuivi.png") no-repeat left center;
  background-size: 34px auto;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-middle div.onestepcheckout-shipping-method .onestepcheckout-shipping-method-block dl dt strong {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  line-height: 15px;
  color: #58585a;
  font-weight: normal;
  padding-left: 5px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-middle p.onestepcheckout-numbers-3,
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-middle div.payment-methods {
  float: right;
  width: 50%;
  padding-left: 30px;
  min-width: 320px;
  border-left: 1px solid #dedfe1;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-middle .payment-methods dl {
  padding-left: 10px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-middle .payment-methods dl dt {
  padding: 0;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-middle .payment-methods dl dt span.no-display {
  display: inline-block !important;
  vertical-align: middle;
  height: 17px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-middle .payment-methods dl dt label {
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  color: #58585a;
  line-height: 15px;
  margin-left: 10px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-middle .payment-methods dl dd {
  padding: 0 0 0 25px;
  margin-top: 17px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-middle .payment-methods dl dd img {
  display: inline-block;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right {
  float: right;
  min-width: 320px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right div.onestepcheckout-summary {
  padding-left: 12px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right table.onestepcheckout-summary {
  padding-left: 30px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right table.onestepcheckout-summary thead tr th {
  border: none;
  font-size: 15px;
  color: #58585a;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right table.onestepcheckout-summary thead tr th.qty {
  text-align: left;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right table.onestepcheckout-summary thead tr th.total {
  width: 25%;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right table.onestepcheckout-summary tbody tr td {
  border: none;
  line-height: 14px;
  padding: 15px 0;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right table.onestepcheckout-summary tbody tr td.image img {
  margin-right: 15px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right table.onestepcheckout-summary tbody tr td.name {
  font-size: 14px;
  font-weight: bold;
  color: #303e48;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right table.onestepcheckout-summary tbody tr td.name span.product-subtitle {
  display: block;
  text-transform: none;
  color: #a3a5a8;
  margin-top: 10px;
  font-size: 12px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right table.onestepcheckout-summary tbody tr td.name .onestepcheckout-summary-product-image {
  display: inline-block;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right table.onestepcheckout-summary tbody tr td.qty {
  text-align: left;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right table.onestepcheckout-summary tbody tr td.total {
  width: 25%;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right table.onestepcheckout-totals {
  width: 34.5%;
  float: right;
  color: #303e48;
  margin-top: 20px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right table.onestepcheckout-totals tr td {
  border: none;
  font-size: 15px;
  color: #58585a;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right table.onestepcheckout-totals tr td:first-child {
  text-align: left;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right table.onestepcheckout-totals tr.grand-total td {
  padding-top: 20px;
  font-size: 16px;
  color: #303e48;
  text-transform: uppercase;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right .onestepcheckout-enable-newsletter {
  clear: both;
  float: left;
  margin-bottom: 6px;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right .onestepcheckout-enable-newsletter label {
  padding-left: 10px;
  line-height: 20px;
  font-size: 13px;
  color: #58585a;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right .onestepcheckout-enable-newsletter input {
  top: 4px;
  border-radius: 0;
  background: none;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right ol.checkout-agreements {
  float: left;
  max-width: 60%;
  clear: both;
  margin: 0;
  width: 100%;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right ol.checkout-agreements input {
  top: 1px;
  border-radius: 0;
  background: none;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right ol.checkout-agreements label {
  padding-left: 10px;
  line-height: 20px;
  font-size: 13px;
  color: #58585a;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right ol.checkout-agreements label a {
  font-weight: bold;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right ol.checkout-agreements label a:hover {
  text-decoration: none;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right .onestepcheckout-place-order-wrapper {
  margin-top: -24px;
  float: right;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right .onestepcheckout-place-order-wrapper button#onestepcheckout-place-order {
  padding: 11px 36px;
  background: #0096b6;
  border: 1px solid #0096b6;
  box-sizing: border-box;
  font-size: 14px;
  box-shadow: none;
  text-shadow: none;
  text-transform: uppercase;
  border-radius: 0;
  font-weight: normal;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right .onestepcheckout-place-order-wrapper button#onestepcheckout-place-order > span {
  font-weight: normal;
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right .onestepcheckout-place-order-wrapper button#onestepcheckout-place-order > span:before {
  content: '> ';
}
.onestepcheckout-index-index .main-container .checkoutcontainer.onestepcheckout-threecolumns div.onestepcheckout-column-right .onestepcheckout-place-order-wrapper button#onestepcheckout-place-order:hover {
  background: #006c83;
  border: 1px solid #006c83;
}

.checkout-steps {
  text-align: center;
  display: table;
  margin: 50px auto 40px auto;
}
.checkout-steps li {
  display: inline-block;
  vertical-align: top;
  margin: 0 33px;
  position: relative;
  text-transform: uppercase;
  text-align: center;
  color: #a3a5a8;
  font-size: 13px;
  overflow: initial !important;
}
.checkout-steps li span {
  display: block;
  font-size: 20px;
  color: #a3a5a8;
}
.checkout-steps li.active:not(:first-child) {
  border-bottom: 2px solid #303e48;
  color: #303e48;
}
.checkout-steps li.active:not(:first-child) span {
  font-weight: bold;
  color: #303e48;
}
.checkout-steps li.active:not(:first-child):before {
  content: '';
  width: 24px;
  height: 1px;
  background: #a3a5a8;
  position: absolute;
  bottom: 8px;
  left: -48px;
}
.checkout-steps li:first-child {
  margin-left: 21px;
}
.checkout-steps li:first-child:before {
  content: '';
  width: 120px;
  height: 1px;
  background: #a3a5a8;
  position: absolute;
  bottom: 8px;
  left: -141px;
}

#onestepcheckout-login-popup p.close {
  bottom: auto;
  top: 0;
}
#onestepcheckout-login-popup .onestepcheckout-popup-wrapper {
  background: #ffffff;
}
#onestepcheckout-login-popup .onestepcheckout-popup-wrapper .input-text {
  border-top: none;
  border-right: none;
  outline: none;
}
#onestepcheckout-login-popup .onestepcheckout-popup-wrapper #onestepcheckout-login-table tbody tr td:first-child {
  width: 20% !important;
}
#onestepcheckout-login-popup .onestepcheckout-popup-wrapper #onestepcheckout-login-table tbody tr td:nth-child(2) {
  width: 35% !important;
}
#onestepcheckout-login-popup .onestepcheckout-popup-wrapper #onestepcheckout-login-table tbody tr td:last-child {
  width: 25% !important;
}
#onestepcheckout-login-popup .onestepcheckout-popup-wrapper #onestepcheckout-forgot-table tbody tr td:first-child {
  width: 20% !important;
}
#onestepcheckout-login-popup .onestepcheckout-popup-footer {
  background: #ffffff;
}
#onestepcheckout-login-popup #onestepcheckout-forgot-button, #onestepcheckout-login-popup #onestepcheckout-login-button {
  border: 1px solid #0096b6;
  background: #0096b6;
  color: #ffffff;
}

.onibi-storelocator-index-index .first {
  border-top: none;
}
.onibi-storelocator-index-index .main-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.onibi-storelocator-index-index .main-container .storelocator {
  margin-top: 80px;
  overflow: hidden;
  margin-bottom: 50px;
}
.onibi-storelocator-index-index .main-container .storelocator #store-search {
  margin-bottom: 30px;
}
.onibi-storelocator-index-index .main-container .storelocator #store-search fieldset {
  border: 1px solid #8dbac1;
  padding: 50px;
  padding-top: 30px;
  padding-bottom: 10px;
}
.onibi-storelocator-index-index .main-container .storelocator #store-search fieldset legend {
  text-transform: uppercase;
  font-weight: normal;
  font-size: 28px;
  color: #8dbac1;
  text-align: center;
  padding: 0 20px;
  line-height: 32px;
}
.onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address {
  width: 100%;
  display: flex;
}
.onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address {
  width: 100%;
  display: flex;
  justify-content: space-between;
  /*.actions{
    display: inline-block;
    width: 100%;
    button{
      height:40px;
      line-height: 40px;
      background: $c-est-tonicblue;
      color:#ffffff;
      -webkit-transition: all 0.25s ease;
      -moz-transition: all 0.25s ease;
      -ms-transition: all 0.25s ease;
      -o-transition: all 0.25s ease;
      transition: all 0.25s ease;
      &:hover{
        background:darken($c-est-tonicblue, 10%);
      }
    }
  }*/
}
.onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address input#address, .onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address input#name, .onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address select {
  width: 100%;
  display: inline-block;
  margin-right: 50px;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  border-color: #58585a;
  border-top: none;
  border-right: none;
  border-radius: 0 !important;
  font-size: 13px;
  font-weight: 300;
  color: #58585a;
  padding-left: 15px;
  outline: none;
}
.onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address input#address:-moz-placeholder, .onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address input#name:-moz-placeholder, .onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address select:-moz-placeholder {
  color: #000000 !important;
  font-weight: normal;
}
.onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address input#address::-moz-placeholder, .onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address input#name::-moz-placeholder, .onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address select::-moz-placeholder {
  color: #000000 !important;
  font-weight: normal;
}
.onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address input#address:-ms-input-placeholder, .onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address input#name:-ms-input-placeholder, .onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address select:-ms-input-placeholder {
  color: #000000 !important;
  font-weight: normal;
}
.onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address input#address::-webkit-input-placeholder, .onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address input#name::-webkit-input-placeholder, .onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address select::-webkit-input-placeholder {
  color: #000000 !important;
  font-weight: normal;
}
.onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address input#address::-webkit-input-placeholder, .onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address input#name::-webkit-input-placeholder, .onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address select::-webkit-input-placeholder {
  color: #000000 !important;
  font-weight: normal;
  opacity: 0.7;
}
.onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address input#address::-moz-placeholder, .onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address input#name::-moz-placeholder, .onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address select::-moz-placeholder {
  color: #000000 !important;
  font-weight: normal;
}
.onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address input#address:-ms-input-placeholder, .onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address input#name:-ms-input-placeholder, .onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address select:-ms-input-placeholder {
  color: #000000 !important;
  font-weight: normal;
}
.onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address input#address:-moz-placeholder, .onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address input#name:-moz-placeholder, .onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address select:-moz-placeholder {
  color: #000000 !important;
  font-weight: normal;
}
.onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address .field-address-filter-wrapper {
  width: 45%;
  display: flex;
  flex-direction: column;
  margin-right: 5%;
}
.onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address .field-name-wrapper {
  width: 45%;
}
.onibi-storelocator-index-index .main-container .storelocator #store-search fieldset .store-search-address .search-address select {
  margin-top: 10px;
  border-left: 1px solid #58585a;
  border-bottom: 1px solid #58585a;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url("/skin/frontend/esthederm/default/images/arrow-bottom.png") !important;
  background-repeat: no-repeat !important;
  background-position: right 5px !important;
  background-size: 3.5% !important;
}
.onibi-storelocator-index-index .main-container .storelocator .stores {
  width: 52%;
  max-width: 655px;
}
.onibi-storelocator-index-index .main-container .storelocator .stores #loader-img {
  transform: translate(-50%, -50%);
}
.onibi-storelocator-index-index .main-container .storelocator .stores #store-list-container .store-list {
  overflow-y: auto;
  overflow-x: hidden;
}
.onibi-storelocator-index-index .main-container .storelocator .stores #store-list-container .store-list .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: #cccccc;
  width: 3px;
}
.onibi-storelocator-index-index .main-container .storelocator .stores #store-list-container .store-list .mCSB_scrollTools .mCSB_draggerRail {
  background: white;
}
.onibi-storelocator-index-index .main-container .storelocator .stores #store-list-container .store-list .store-table {
  width: 98%;
  margin-right: 2%;
  display: table;
  padding: 20px 0;
}
.onibi-storelocator-index-index .main-container .storelocator .stores #store-list-container .store-list .store-table:first-child {
  padding-top: 0;
}
.onibi-storelocator-index-index .main-container .storelocator .stores #store-list-container .store-list .store-table:last-child {
  border-bottom: none;
}
.onibi-storelocator-index-index .main-container .storelocator .stores #store-list-container .store-list .store-table .store-image {
  width: 48%;
  margin-right: 2%;
  padding: 0;
  float: none;
  vertical-align: top;
  max-height: 145px;
  overflow: hidden;
}
.onibi-storelocator-index-index .main-container .storelocator .stores #store-list-container .store-list .store-table .store-image img {
  width: auto;
  max-width: none;
}
.onibi-storelocator-index-index .main-container .storelocator .stores #store-list-container .store-list .store-table .store-info-container {
  display: inline-block;
  width: 50%;
  padding: 10px 0;
  vertical-align: top;
  margin-right: -0.25em;
}
.onibi-storelocator-index-index .main-container .storelocator .stores #store-list-container .store-list .store-table .store-info-container a {
  text-decoration: none;
}
.onibi-storelocator-index-index .main-container .storelocator .stores #store-list-container .store-list .store-table .store-info-container h3.store-name {
  color: #303e48;
  text-decoration: none;
  font-size: 14px;
  line-height: 10px;
  margin-bottom: 5px;
  font-weight: 500;
}
.onibi-storelocator-index-index .main-container .storelocator .stores #store-list-container .store-list .store-table .store-info-container .col-address {
  display: inline-block;
  color: #a3a5a8;
  font-size: 14px;
  line-height: 10px;
  font-weight: 300;
}
.onibi-storelocator-index-index .main-container .storelocator .stores #store-list-container .store-list .store-table .store-info-container .col-address.col-address-country {
  display: none;
}
.onibi-storelocator-index-index .main-container .storelocator .stores #store-list-container .store-list .store-table .store-info-container .store-phone {
  display: block;
  height: 40px;
  margin: 8px 0 20px 0;
  text-transform: uppercase;
  color: #303e48;
  font-size: 14px;
  font-weight: 500;
}
.onibi-storelocator-index-index .main-container .storelocator .stores #store-list-container .store-list .store-table .store-info-container .store-phone a {
  display: block;
  color: #a3a5a8;
  font-size: 14px;
  text-decoration: none;
  font-weight: 400;
}
.onibi-storelocator-index-index .main-container .storelocator .stores #store-list-container .store-list .store-table .store-info-container .store-phone a:hover {
  color: #a3a5a8;
  text-decoration: none;
}
.onibi-storelocator-index-index .main-container .storelocator .stores #store-list-container .store-list .store-table .store-info-container .store-link a {
  color: #0096b6;
  font-size: 13px;
  font-weight: normal;
  text-decoration: none;
}
.onibi-storelocator-index-index .main-container .storelocator .stores #store-list-container .store-list .store-table .store-info-container .store-link a:hover {
  color: #0096b6;
  text-decoration: none;
}
.onibi-storelocator-index-index .main-container .storelocator #maps {
  width: 48%;
  max-width: 600px;
  float: right;
}
.onibi-storelocator-index-index .main-container .storelocator #maps #map_canvas {
  width: 100%;
}
.onibi-storelocator-index-index .main-container .actions {
  width: 15%;
}
.onibi-storelocator-index-index .main-container .actions #searchlocator {
  width: 100%;
  font-size: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 10px;
  height: 40px;
  background: #0096b6;
  color: #ffffff;
  text-transform: uppercase;
  border: none;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.onibi-storelocator-index-index .main-container .actions #searchlocator:hover {
  background: #006c83;
}

.onibi-storelocator-index-index .main-container .storelocator #maps {
  width: 100%;
  float: none;
  margin: 0 auto;
  clear: both;
  overflow: hidden;
}
.onibi-storelocator-index-index .main-container .storelocator #maps #map_canvas {
  margin-left: 0;
}
.onibi-storelocator-index-index .main-container .storelocator .stores {
  width: 100%;
  max-width: 600px;
  margin: 40px auto 0 auto;
  float: none;
  clear: both;
}
.onibi-storelocator-index-index .main-container .storelocator .stores #store-list-container .store-list .store-table .store-image img {
  max-width: none;
}

.onibi-storelocator-store-view .first {
  border-top: none;
}
.onibi-storelocator-store-view .main-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.onibi-storelocator-store-view .main-container .store-view {
  margin-top: 80px;
  overflow: hidden;
}
.onibi-storelocator-store-view .main-container .store-view .col2-set {
  margin-bottom: 35px;
}
.onibi-storelocator-store-view .main-container .store-view .col2-set .col-1 {
  width: 50%;
}
.onibi-storelocator-store-view .main-container .store-view .col2-set .col-1 img.store-image {
  width: 100%;
  max-width: 540px;
}
.onibi-storelocator-store-view .main-container .store-view .col2-set .col-2 {
  width: 50%;
}
.onibi-storelocator-store-view .main-container .store-view .col2-set .col-2 h2.store-name {
  color: #303e48;
  font-weight: 500;
  font-size: 32px;
  line-height: 22px;
  margin-bottom: 14px;
}
.onibi-storelocator-store-view .main-container .store-view .col2-set .col-2 .col-address {
  color: #a3a5a8;
  font-size: 20px;
  font-weight: normal;
  padding-bottom: 48px;
  border-bottom: 1px solid #58585a;
}
.onibi-storelocator-store-view .main-container .store-view .col2-set .col-2 .store-info-block {
  display: block;
  width: 100%;
  text-align: left;
  margin-top: 25px;
}
.onibi-storelocator-store-view .main-container .store-view .col2-set .col-2 .store-info-block > *:not(.store-locator-view-infotitle) {
  display: block;
  color: #a3a5a8 !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 300 !important;
}
.onibi-storelocator-store-view .main-container .store-view .col2-set .col-2 .store-info-block .store-locator-view-infotitle {
  font-size: 14px;
  font-weight: normal;
  color: #303e48;
  line-height: 10px;
  margin-bottom: 7px;
}
.onibi-storelocator-store-view .main-container .store-view .col2-set .col-2 .store-info-block .store-day-opening {
  text-transform: capitalize;
}
.onibi-storelocator-store-view .main-container .store-view .store-tab {
  max-width: 750px;
  margin: 0 auto;
}
.onibi-storelocator-store-view .main-container .store-view .store-tab #store-tab-container {
  display: table;
  table-layout: fixed;
  width: 100%;
  overflow: auto;
}
.onibi-storelocator-store-view .main-container .store-view .store-tab #store-tab-container li {
  float: none;
  border: none;
  width: auto !important;
  display: table-cell;
  background: none;
  height: 50px;
  line-height: 50px;
}
.onibi-storelocator-store-view .main-container .store-view .store-tab #store-tab-container li span {
  color: #a3a5a8;
  font-size: 24px;
  width: auto;
  position: relative;
}
.onibi-storelocator-store-view .main-container .store-view .store-tab #store-tab-container li.active span {
  background: none;
  color: #303e48;
}
.onibi-storelocator-store-view .main-container .store-view .store-tab #store-tab-container li.active span:before {
  content: '';
  width: 100%;
  height: 3px;
  background: #303e48;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.onibi-storelocator-store-view .main-container .store-view .store-tab #store-tab-container li.active span:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #303e48;
  border-bottom: none;
  bottom: -8px;
  left: 50%;
  transform: translate(-50%, 0);
}
.onibi-storelocator-store-view .main-container .store-view .store-tab #store-tab-container li:hover span {
  background: none;
}
.onibi-storelocator-store-view .main-container .store-view #store-description .col2-set .col-1 {
  width: 100%;
  padding: 40px 0;
}
.onibi-storelocator-store-view .main-container .store-view #store-description .col2-set .col-1 .description .store-description-text {
  width: 46%;
  float: left;
  display: block;
  min-width: 310px;
  color: #a3a5a8;
  font-size: 14px;
}
.onibi-storelocator-store-view .main-container .store-view #store-description .col2-set .col-1 .description .store-description-text p {
  font-weight: 300;
  line-height: 18px;
}
.onibi-storelocator-store-view .main-container .store-view #store-description .col2-set .col-1 .description .store-description-text .store-description-title {
  font-size: 18px;
  color: #303e48;
  text-transform: uppercase;
  font-weight: 400;
}
.onibi-storelocator-store-view .main-container .store-view #store-description .col2-set .col-1 .description .store-description-text .store-description-subtitle {
  font-size: 14px;
  color: #303e48;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 400;
}
.onibi-storelocator-store-view .main-container .store-view #store-description .col2-set .col-1 .description .store-description-image {
  width: 46%;
  float: right;
  display: block;
  min-width: 310px;
}
.onibi-storelocator-store-view .main-container .store-view #store-description .col2-set .col-1 .description .store-description-image img {
  width: 100%;
  display: block;
}
.onibi-storelocator-store-view .main-container .store-view #store-contact {
  padding: 50px 0;
}
.onibi-storelocator-store-view .main-container .store-view #store-contact h3 {
  text-align: center;
  margin-bottom: 35px;
}
.onibi-storelocator-store-view .main-container .store-view #store-contact #contactForm {
  padding-left: 0;
  width: 40%;
  margin: 0 auto;
}
.onibi-storelocator-store-view .main-container .store-view #store-contact #contactForm input, .onibi-storelocator-store-view .main-container .store-view #store-contact #contactForm textarea {
  width: 100%;
  height: 40px;
  line-height: 40px;
  color: #303e48;
  font-size: 13px;
  font-weight: normal;
  border-top: none;
  border-right: none;
  border-color: #dedfe1;
  padding: 0 6px;
  background: #ffffff;
  outline: none;
}
.onibi-storelocator-store-view .main-container .store-view #store-contact #contactForm textarea {
  height: 100px;
  line-height: normal;
  padding-top: 10px;
  max-width: none;
}
.onibi-storelocator-store-view .main-container .store-view #store-contact #contactForm .form-list li.field {
  position: relative;
  margin-bottom: 20px;
}
.onibi-storelocator-store-view .main-container .store-view #store-contact #contactForm .form-list li.field label {
  position: absolute;
  height: 40px;
  line-height: 40px;
  top: 0;
  left: 10px;
  transition: visibility 0.15s, opacity 0.15s linear;
}
.onibi-storelocator-store-view .main-container .store-view #store-contact #contactForm .form-list li.field label.fadeout {
  visibility: hidden;
  opacity: 0;
}
.onibi-storelocator-store-view .main-container .store-view #store-contact #contactForm .buttons-set button.button-first {
  margin: 0;
}
.onibi-storelocator-store-view .main-container .store-view #store-offer .store-view-soin {
  width: 30%;
  float: left;
  margin: 30px 0;
}
.onibi-storelocator-store-view .main-container .store-view #store-offer .store-view-soin:nth-child(3n+2) {
  margin: 30px 5%;
}
.onibi-storelocator-store-view .main-container .store-view #store-offer .store-view-soin .store-view-soin-title {
  position: relative;
  font-size: 26px;
  display: block;
  color: #303e48;
  font-weight: normal;
  padding-left: 30px;
  margin-bottom: 27px;
  line-height: 19px;
}
.onibi-storelocator-store-view .main-container .store-view #store-offer .store-view-soin .store-view-soin-title span {
  color: #a3a5a8;
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 15px;
  display: block;
}
.onibi-storelocator-store-view .main-container .store-view #store-offer .store-view-soin .store-view-soin-title:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 12px;
  height: 85px;
  width: 1px;
  background: #303e48;
  display: block;
}
.onibi-storelocator-store-view .main-container .store-view #store-offer .store-view-soin img {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}
.onibi-storelocator-store-view .main-container .store-view #store-offer .store-view-soin .store-view-soin-desc {
  color: #303e48;
  font-size: 14px;
  font-weight: 300;
  min-width: 65px;
  margin-bottom: 10px;
}
.onibi-storelocator-store-view .main-container .store-view #store-offer .store-view-soin button.button.button-first {
  float: right !important;
}

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

.soins-solaires-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  font-style: normal !important;
  padding-bottom: 40px;
  margin-bottom: -40px;
}
.soins-solaires-wrapper * {
  box-sizing: border-box;
  font-family: "Bliss2", Arial, sans-serif !important;
  font-style: normal !important;
}
.soins-solaires-wrapper .soins-solaires-header {
  width: 100%;
  display: block;
  text-align: center;
  max-width: 100%;
  margin: 0 auto 65px auto;
}
.soins-solaires-wrapper .soins-solaires-header h1, .soins-solaires-wrapper .soins-solaires-header [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .soins-solaires-wrapper .soins-solaires-header h2 {
  color: #333d47;
  font-size: 30px;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}
.soins-solaires-wrapper .soins-solaires-header h2 {
  color: #333d47;
  font-size: 18px;
  margin: 0 0 10px 0;
}
.soins-solaires-wrapper .soins-solaires-header .soins-solaires-description {
  color: #333d47;
  font-size: 14px;
  margin: 0;
  text-align: center;
}
.soins-solaires-wrapper .soins-solaires-blocks {
  display: table;
}
.soins-solaires-wrapper .soins-solaires-blocks h4 {
  font-size: 16px;
  color: #939598;
  margin: 0 0 15px 0;
  line-height: 15px;
  position: relative;
  font-weight: 300;
  text-transform: none;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-subtitle {
  font-size: 24px;
  color: #333d47;
  margin: 0 0 15px 0;
  font-weight: 400;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-content {
  text-align: justify;
  height: 105px;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-actions {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48%;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-actions .soins-solaires-social {
  float: left;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-actions button {
  float: right !important;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-top {
  display: block;
  position: relative;
  margin: 0 5% 105px 0;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-top h4:before {
  content: '';
  width: 80px;
  height: 1px;
  left: -100px;
  bottom: 0;
  display: block;
  position: absolute;
  background: #333d47;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-top img {
  width: 48%;
  display: inline-block;
  vertical-align: top;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-top .soins-solaires-block-content-wrapper {
  width: 48%;
  display: inline-block;
  vertical-align: top;
  float: right;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-bottom--left,
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-bottom--right {
  display: inline-block;
  width: 45%;
  margin-right: 5%;
  position: relative;
  padding-bottom: 120px;
  vertical-align: top;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-bottom--left h4,
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-bottom--right h4 {
  margin-left: 30px;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-bottom--left h4:before,
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-bottom--right h4:before {
  content: '';
  width: 1px;
  height: 90px;
  left: -15px;
  bottom: -90px;
  display: block;
  position: absolute;
  background: #333d47;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-bottom--left .soins-solaires-block-left-bottom--right,
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-bottom--right .soins-solaires-block-left-bottom--right {
  margin-right: -0.25em;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-bottom--left .soins-solaires-block-subtitle,
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-bottom--right .soins-solaires-block-subtitle {
  padding-left: 30px;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-bottom--left img,
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-bottom--right img {
  width: 100%;
  margin-bottom: 40px;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-bottom--left .soins-solaires-actions,
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-bottom--right .soins-solaires-actions {
  width: 100%;
  padding: 0;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-right {
  display: table-cell;
  width: 24%;
  position: relative;
  padding-bottom: 80px;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-right h4 {
  margin-left: 30px;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-right h4:before {
  content: '';
  width: 1px;
  height: 90px;
  left: -15px;
  bottom: -90px;
  display: block;
  position: absolute;
  background: #333d47;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-right .soins-solaires-block-subtitle {
  padding-left: 30px;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-right img {
  width: 100%;
  margin-bottom: 35px;
}
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-right .soins-solaires-actions {
  width: 100%;
  padding: 0;
}
.soins-solaires-wrapper .sharing-links {
  list-style-type: none !important;
  padding-top: 14px;
  margin: 0 !important;
}
.soins-solaires-wrapper .sharing-links li {
  float: left;
  padding: 0;
  margin: 0 10px 0 0;
}
.soins-solaires-wrapper .sharing-links li a {
  text-indent: -9999px;
  display: block;
  width: 26px;
  height: 24px;
  background-image: url(../images/icon_sprite.png);
  background-repeat: no-repeat;
}
.soins-solaires-wrapper .sharing-links li a:hover {
  opacity: 0.8;
}
.soins-solaires-wrapper .sharing-links li a.link-facebook {
  background-position: 3px -372px;
}
.soins-solaires-wrapper .sharing-links li a.link-facebook:hover {
  background-position: -32px -372px;
}
.soins-solaires-wrapper .sharing-links li a.link-twitter {
  background-position: 3px -343px;
}
.soins-solaires-wrapper .sharing-links li a.link-twitter:hover {
  background-position: -31px -343px;
}
.soins-solaires-wrapper .sharing-links li a.link-googleplus {
  background-position: 3px -401px;
}
.soins-solaires-wrapper .sharing-links li a.link-googleplus:hover {
  background-position: -31px -401px;
}

.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-bottom--left,
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-bottom--right {
  display: table-cell;
  width: 51%;
  padding-right: 5%;
  float: left;
  margin-right: 0;
}

.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-bottom--left .soins-solaires-actions,
.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-left-bottom--right .soins-solaires-actions {
  width: 90%;
  padding: 0;
  left: 0;
}

.soins-solaires-wrapper .soins-solaires-blocks .soins-solaires-block-right {
  display: inline-block;
  width: 49%;
  vertical-align: top;
}

.cms-index-index .col-main div.std {
  display: none;
}

.presentation {
  display: block;
  width: 100%;
  padding: 0;
}
.presentation .bloc {
  margin-bottom: 30px;
}
.presentation .bloc:not(.slider):not(.free) {
  max-width: 1280px;
}
.presentation .bloc:last-child {
  margin-bottom: 0;
}
.presentation .tabs-carousels-container .tabs {
  margin-bottom: 0;
}
.presentation .titles {
  border: none;
  border-bottom: 1px solid #a3a5a8;
  background: none;
  display: table;
  table-layout: fixed;
  margin: 0 auto 30px auto;
}
.presentation .titles:after {
  display: none;
}
.presentation .titles h4 {
  border: none;
  display: table-cell;
  float: none;
  text-align: center;
  cursor: pointer;
  padding: 0 50px;
}
.presentation .titles h4:first-child {
  padding-left: 0;
}
.presentation .titles h4:last-child {
  padding-right: 0;
}
.presentation .titles h4 span.tab-name {
  position: relative;
  font-size: 24px;
  color: #a3a5a8;
  font-weight: 300;
}
.presentation .titles h4 span.tab-name:hover {
  color: #303e48;
}
.presentation .titles h4.active span.tab-name {
  color: #303e48;
  font-weight: 400;
}
.presentation .titles h4:first-child span.underliner {
  left: 0;
  position: absolute;
  bottom: 0;
  height: 10px;
  width: 100%;
  transition: .3s ease;
}
.presentation .titles h4:first-child span.underliner:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #303e48;
  border-bottom: none;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 0);
}
.presentation .titles h4:first-child span.underliner:after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #303e48;
  z-index: 2;
}
.presentation .tabs-carousel {
  padding: 0 0 40px 0;
  max-width: 1280px;
  margin: 0 auto 60px auto;
  border-bottom: 1px solid #ddd;
}
.presentation .carousels-container {
  width: 90%;
  margin: 0 auto;
}
.presentation .carousels-container .carousel {
  position: relative;
}
.presentation .carousels-container .carousel .carousel-products .owl-wrapper-outer .owl-wrapper {
  display: flex;
  justify-content: flex-start;
  text-align: center;
}
.presentation .carousels-container .carousel .carousel-products .owl-wrapper-outer .owl-wrapper .owl-item {
  padding: 0 10px;
}
.presentation .carousels-container .carousel .carousel-products .owl-wrapper-outer .owl-wrapper .owl-item .item {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 5px solid #ffffff;
}
.presentation .carousels-container .carousel .carousel-products .owl-wrapper-outer .owl-wrapper .owl-item .item a.product-image {
  margin-bottom: 30px;
  border: none;
}
.presentation .carousels-container .carousel .carousel-products .owl-wrapper-outer .owl-wrapper .owl-item .item a.product-image img {
  margin: 0 auto;
  max-width: 80%;
  max-height: 100%;
  height: auto;
}
.presentation .carousels-container .carousel .carousel-products .owl-wrapper-outer .owl-wrapper .owl-item .item h2.product-name {
  flex-grow: 1;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .presentation .carousels-container .carousel .carousel-products .owl-wrapper-outer .owl-wrapper .owl-item .item h2.product-name {
    margin-top: -200px;
  }
}
.presentation .carousels-container .carousel .carousel-products .owl-wrapper-outer .owl-wrapper .owl-item .item h2.product-name a.product-name {
  font-weight: bold;
  color: #303e48;
  text-transform: uppercase;
  font-size: 14px;
}
.presentation .carousels-container .carousel .carousel-products .owl-wrapper-outer .owl-wrapper .owl-item .item h2.product-name span {
  display: block;
  color: #a3a5a8;
  font-size: 14px;
  text-transform: none;
}
.presentation .carousels-container .carousel .carousel-products .owl-wrapper-outer .owl-wrapper .owl-item .item h2.product-name span.product-name-top {
  min-height: 40px;
  color: #303e48;
}
.presentation .carousels-container .carousel .carousel-products .owl-wrapper-outer .owl-wrapper .owl-item .item h2.product-name span.product-subtitle {
  font-weight: 400;
  max-width: 100%;
  margin: 15px auto 0 auto;
  min-height: 50px;
}
.presentation .carousels-container .carousel .carousel-products .owl-wrapper-outer .owl-wrapper .owl-item .item h2.product-name span.product-contenance {
  font-weight: normal;
  font-size: 13px;
  font-weight: 100;
}
.presentation .carousels-container .carousel .carousel-products .owl-wrapper-outer .owl-wrapper .owl-item .item .actions {
  position: absolute;
  width: 87%;
  height: 65px;
  bottom: 5px;
  background: #ffffff;
  display: none;
  left: 7%;
}
.presentation .carousels-container .carousel .carousel-products .owl-wrapper-outer .owl-wrapper .owl-item .item .actions button.button {
  padding: 11px 0;
  width: 48%;
  font-size: 13px !important;
}
.presentation .carousels-container .carousel .carousel-products .owl-wrapper-outer .owl-wrapper .owl-item .item .actions button.button.button-first {
  display: inline-block;
  margin-left: 2%;
}
.presentation .carousels-container .carousel .carousel-products .owl-wrapper-outer .owl-wrapper .owl-item .item .actions button.button.button-second {
  display: inline-block;
}
.presentation .carousels-container .carousel .carousel-products .owl-wrapper-outer .owl-wrapper .owl-item .item .actions button.button.button-second:hover {
  padding: 10px 0;
}
.presentation .carousels-container .carousel .carousel-products .owl-wrapper-outer .owl-wrapper .owl-item .item:hover {
  border-color: #e7e8ea;
}
.presentation .carousels-container .carousel .carousel-products .owl-wrapper-outer .owl-wrapper .owl-item .item:hover .actions {
  display: block;
}
.presentation .carousels-container .carousel .carousel-products .owl-controls .owl-pagination {
  display: none;
}
.presentation .carousels-container .carousel .carousel-products .owl-controls .owl-buttons div {
  position: absolute;
  top: 50%;
  margin: 0;
  color: #303e48;
  font-size: 40px;
  background: none;
  width: 22px;
  height: 40px;
  opacity: 1;
}
.presentation .carousels-container .carousel .carousel-products .owl-controls .owl-buttons div.owl-prev {
  left: 0;
  transform: translate(-100%, -50%);
  background: url("../images/est-arrow-prev.png") no-repeat;
}
.presentation .carousels-container .carousel .carousel-products .owl-controls .owl-buttons div.owl-next {
  right: 0;
  transform: translate(100%, -50%);
  background: url("../images/est-arrow-next.png") no-repeat;
}
.presentation .bloc .text {
  display: block;
  padding: 0;
  height: auto !important;
}
.presentation .slider.mobile {
  display: none;
}
.presentation .slider .slider-container {
  /*padding:0 5%;*/
}
.presentation .slider .slider-container .slider .owl-wrapper-outer .owl-wrapper .owl-item .item a img {
  width: 100%;
  display: block;
  height: auto;
}
.presentation .slider .slider-container .slider .owl-wrapper-outer .owl-wrapper .owl-item .item .item-caption .slide-left {
  left: 4%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  color: #ffffff;
  text-align: right;
}
.presentation .slider .slider-container .slider .owl-wrapper-outer .owl-wrapper .owl-item .item .item-caption .slide-right {
  right: 4%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  color: #ffffff;
  text-align: right;
}
.presentation .slider .slider-container .slider .owl-wrapper-outer .owl-wrapper .owl-item .item .item-caption .slide-title {
  font-size: 50px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: left;
  display: block;
}
.presentation .slider .slider-container .slider .owl-wrapper-outer .owl-wrapper .owl-item .item .item-caption .slide-subtitle {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
  display: block;
}
.presentation .slider .slider-container .slider .owl-wrapper-outer .owl-wrapper .owl-item .item .item-caption button {
  margin-top: 50px;
}
.presentation .slider .slider-container .slider .owl-controls .owl-pagination {
  position: absolute;
  width: 100%;
  bottom: 25px;
}
.presentation .slider .slider-container .slider .owl-controls .owl-pagination .owl-page {
  vertical-align: middle;
}
.presentation .slider .slider-container .slider .owl-controls .owl-pagination .owl-page span {
  background: #ffffff;
  width: 8px;
  height: 8px;
}
.presentation .slider .slider-container .slider .owl-controls .owl-pagination .owl-page.active span {
  width: 10px;
  height: 10px;
}
.presentation .slider .slider-container .slider .owl-controls .owl-buttons div {
  position: absolute;
  top: 50%;
  margin: 0;
  color: #303e48;
  font-size: 40px;
  background: none;
  width: 22px;
  height: 40px;
  opacity: 1;
}
.presentation .slider .slider-container .slider .owl-controls .owl-buttons div.owl-prev {
  left: 1%;
  transform: translate(0, -50%);
  background: url("../images/est-arrow-prev.png") no-repeat;
}
.presentation .slider .slider-container .slider .owl-controls .owl-buttons div.owl-next {
  right: 1%;
  transform: translate(0, -50%);
  background: url("../images/est-arrow-next.png") no-repeat;
}
.presentation .slider .slider-loader {
  width: 100%;
  height: 100%;
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
}
.presentation .slider .slider-loader img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.presentation .img-full-width {
  width: 100% !important;
}
.presentation .img-full-width img {
  width: 100%;
  height: auto;
  display: block;
}

.four-images-wrapper {
  padding: 0 0 30px 0;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
  font-style: normal !important;
}
.four-images-wrapper * {
  box-sizing: border-box;
  font-family: "Bliss2", Arial, sans-serif !important;
  font-style: normal !important;
}
.four-images-wrapper .four-images-blocks {
  display: table;
  width: 100%;
}
.four-images-wrapper .four-images-blocks a {
  text-decoration: none;
}
.four-images-wrapper .four-images-blocks a:hover {
  text-decoration: none;
}
.four-images-wrapper .four-images-blocks h4 {
  font-size: 16px;
  color: #939598;
  margin: 0 0 15px 0;
  line-height: 15px;
  position: relative;
  font-weight: 300;
  text-transform: none;
  margin-left: 30px;
}
.four-images-wrapper .four-images-blocks h4:before {
  content: '';
  width: 1px;
  height: 90px;
  left: -15px;
  bottom: -90px;
  display: block;
  position: absolute;
  background: #333d47;
}
.four-images-wrapper .four-images-blocks .four-images-block-subtitle {
  font-size: 24px;
  color: #333d47;
  margin: 0 0 15px 0;
  font-weight: 400;
  margin-left: 30px;
}
.four-images-wrapper .four-images-blocks img {
  width: 100%;
}
.four-images-wrapper .four-images-blocks .four-images-block-left-top {
  display: block;
  position: relative;
  margin: 0 5% 4.6% 0;
}
.four-images-wrapper .four-images-blocks .four-images-block-left-bottom--left,
.four-images-wrapper .four-images-blocks .four-images-block-left-bottom--right {
  display: inline-block;
  width: 45%;
  margin-right: 5%;
  position: relative;
  vertical-align: top;
}
.four-images-wrapper .four-images-blocks .four-images-block-left-bottom--right {
  margin-right: -0.25em;
}
.four-images-wrapper .four-images-blocks .four-images-block-right {
  display: table-cell;
  width: 23%;
  height: 100%;
}
.four-images-wrapper .four-images-blocks .four-images-block-right img {
  vertical-align: bottom;
  height: 88.7%;
  width: auto;
  max-width: none;
}

.four-images-wrapper .four-images-blocks .four-images-block-left-top {
  margin-right: 0;
}

.four-images-wrapper .four-images-blocks .four-images-block-left-bottom--left,
.four-images-wrapper .four-images-blocks .four-images-block-left-bottom--right {
  display: table-cell;
  width: 51%;
  padding-right: 5%;
  float: left;
  margin-right: 0;
}

.four-images-wrapper .four-images-blocks .four-images-block-right {
  display: inline-block;
  width: 49%;
  vertical-align: top;
  overflow: hidden;
}

.presentation .slider .slider-container .slider .owl-wrapper-outer .owl-wrapper .owl-item .item .item-caption .slide-title {
  font-size: 50px;
}
.presentation .slider .slider-container .slider .owl-wrapper-outer .owl-wrapper .owl-item .item .item-caption .slide-subtitle {
  font-size: 20px;
}

body:not(.cms-index-index) .presentation .bloc.free {
  padding-bottom: 0px;
}
body:not(.cms-index-index) .presentation .titles {
  border-bottom: none;
}

body.cms-top-category .main .col-main > .std {
  display: none;
}
body.cms-top-category .main > .breadcrumbs {
  display: none;
}
body.cms-top-category .main .breadcrumbs {
  max-width: 1280px;
  margin: 20px auto 15px auto;
}
body.cms-top-category .main .bloc:first-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
body.cms-top-category .main .landing-banner {
  width: 100%;
}
body.cms-top-category .main .presentation .bloc {
  overflow: visible;
}
body.cms-top-category .main .tabs-carousels-container:before {
  content: '';
  width: 100%;
  height: 1px;
  background: #cccccc;
  position: absolute;
  top: -30px;
}

body.page-actu .breadcrumbs {
  display: none;
}
body.page-actu .std {
  display: none;
}
body.page-actu .presentation {
  max-width: none;
  padding: 0 0 30px 0;
}
body.page-actu .presentation .bloc {
  margin-top: 20px;
  padding-bottom: 30px;
}
body.page-actu .presentation .bloc:first-child {
  margin-top: 0;
}

body.page-actualite .breadcrumbs {
  width: 100%;
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
}
body.page-actualite .presentation .bloc:before {
  content: ' ';
  display: block;
  width: 100%;
  max-width: 1340px;
  height: 1px;
  background-color: #cccccc;
  margin-bottom: 40px;
  margin-top: 40px;
}
body.page-actualite .presentation .bloc:first-child:before {
  margin-top: 10px;
}

.presentation .bloc {
  margin: 0 auto 30px auto;
  overflow: hidden;
}
@media screen and (min-width: 1024px) and (max-width: 1285px) {
  .presentation .bloc {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1285px) {
  .presentation .bloc:nth-child(1) {
    padding: 0;
  }
}
.presentation .blog-textimages {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.presentation .blog-textimages h2 {
  text-align: center;
  color: #303e48;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
}
.presentation .blog-textimages .content a {
  color: #303e48;
  text-decoration: none;
}
.presentation .blog-textimages .content a:hover {
  color: #0096b6;
  text-decoration: none;
}
.presentation .blog-textimages .content .text {
  width: 55%;
  float: left;
  padding: 0 80px 0 0px;
  text-align: justify;
  line-height: 26px;
  font-size: 16px;
  font-weight: 300;
}
.presentation .blog-textimages .content .text span.big {
  display: block;
  margin: 30px 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 20px;
  color: #303e48;
  font-weight: 500;
  line-height: 35px;
}
.presentation .blog-textimages .content .images {
  width: 45%;
  float: left;
}
.presentation .blog-textimages .content .images .n1 {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  clear: both;
}
.presentation .blog-textimages .content .images .n2 {
  display: block;
  clear: both;
  float: left;
  width: calc(50% - 5px);
}
.presentation .blog-textimages .content .images .n3 {
  display: block;
  float: right;
  width: calc(50% - 5px);
}
.presentation .blog-textimages .content .images a img {
  max-width: none !important;
  width: 100%;
  height: auto;
}

.presentation .bloc:not(.free):not(.slider) {
  padding: 0 15px;
}

.presentation .bloc .viab-cellul {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.presentation .bloc .viab-cellul:before {
  content: '';
  width: 1280px;
  height: 1px;
  background: #cccccc;
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.presentation .bloc .viab-cellul h2 {
  text-align: center;
  color: #303e48;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 0;
}
.presentation .bloc .viab-cellul p.subtitle {
  text-align: center;
  font-size: 14px;
  color: #303e48;
  font-weight: 300;
  text-transform: none;
  margin-bottom: 30px;
}
.presentation .bloc .viab-cellul .img-container {
  width: 100%;
  text-align: center;
}
.presentation .bloc .viab-cellul .img-container img {
  display: inline-block;
  width: 25%;
  margin-right: -0.25em;
}
.presentation .bloc .viab-cellul p.bottom-text {
  color: #a3a5a8;
  text-transform: uppercase;
  font-size: 20px;
  text-align: center;
  font-weight: 300;
  line-height: 23px;
  margin-top: 30px;
}

.presentation .bloc .viab-cellul {
  padding: 0 15px;
}

.presentation .bloc .pint-styled-list-wrapper {
  padding-top: 75px;
  background-size: 100% 368px;
  background-repeat: no-repeat;
}
.presentation .bloc .pint-styled-list-wrapper h2 {
  font-size: 28px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 70px;
  line-height: 32px;
  color: #303e48;
  font-weight: 500;
}
.presentation .bloc .pint-styled-list-wrapper .pint-styled-list {
  width: 100%;
  max-width: 785px;
  margin: 0 auto;
}
.presentation .bloc .pint-styled-list-wrapper .pint-styled-list .one-pint-intem {
  background: #ffffff;
  padding: 18px 10px;
  width: 200px;
  float: left;
}
.presentation .bloc .pint-styled-list-wrapper .pint-styled-list .one-pint-intem .top-content {
  color: #303e48;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  min-height: 50px;
  margin-bottom: 20px;
}
.presentation .bloc .pint-styled-list-wrapper .pint-styled-list .one-pint-intem .specific-content {
  background: url("../images/linearline.jpg") repeat-y;
  background-size: 100% auto;
  padding: 20px 15px;
}
.presentation .bloc .pint-styled-list-wrapper .pint-styled-list .one-pint-intem .specific-content h4 {
  font-size: 20px;
  font-weight: 500;
  color: #303e48;
  text-align: center;
  text-transform: uppercase;
  line-height: 23px;
  margin-bottom: 15px;
}
.presentation .bloc .pint-styled-list-wrapper .pint-styled-list .one-pint-intem .specific-content p {
  font-size: 12px;
  color: #303e48;
  font-weight: 300;
  text-align: center;
  line-height: 18px;
}

.presentation .bloc h2.video-title {
  font-size: 28px;
  text-align: center;
  text-transform: uppercase;
  line-height: 32px;
  color: #303e48;
  font-weight: 500;
  margin-bottom: 5px;
}
.presentation .bloc p.video-subtitle {
  text-align: center;
  color: #303e48;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 30px;
}
.presentation .bloc .video-wrapper {
  width: 100%;
  max-width: 1280px;
  position: relative;
  margin: 0 auto;
}
.presentation .bloc .video-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
}
.presentation .bloc .video-wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.presentation .bloc h2.video-title, .presentation .bloc p.video-subtitle, .presentation .bloc .video-wrapper {
  padding: 0 15px;
}
.presentation .bloc .video-wrapper img, .presentation .bloc .video-wrapper iframe {
  width: calc(100% - 30px);
  left: 15px;
}

body.page-actu .presentation .bloc {
  margin: 0 auto;
  padding-top: 30px;
}
body.page-actu .presentation .bloc:first-child {
  padding-top: 0;
  padding-bottom: 30px;
}
body.page-actu .presentation .bloc:first-child .blog-textimages {
  padding-top: 30px;
}
body.page-actu .presentation .bloc h2.video-title:before {
  content: '';
  width: 1280px;
  height: 1px;
  background: #cccccc;
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

body.notre-histoire .presentation .bloc {
  margin: 0 auto;
  padding-top: 0px;
}
body.notre-histoire .presentation .bloc:first-child {
  padding-top: 0;
  padding-bottom: 0px;
}
body.notre-histoire .presentation .bloc:first-child .blog-textimages {
  padding-top: 30px;
}
body.notre-histoire .presentation .bloc h2.video-title:before {
  content: '';
  width: 1280px;
  height: 1px;
  background: #cccccc;
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.page-actu .presentation .bloc .tabs-carousels-container:before {
  content: '';
  width: 100%;
  height: 1px;
  background: #ccc;
  position: absolute;
  top: 0;
  left: 0;
}

.presentation .bloc .tabs-carousel {
  padding-bottom: 30px;
}
.presentation .bloc:last-child {
  border-bottom: none;
}

body.bronzage-ie .std {
  display: none;
}
@media screen and (max-width: 1025px) and (orientation: landscape) {
  body.bronzage-ie .std {
    display: block !important;
  }
}

body.page-institut-esthederm .std {
  display: none;
}
body.page-institut-esthederm .presentation .blog-textimages:not(first-child):before {
  content: '';
  width: 100%;
  height: 1px;
  background: #ccc;
  position: absolute;
  top: 0;
  left: 0;
}
body.page-institut-esthederm .presentation .tabs-carousels-container:not(first-child):before {
  content: '';
  width: 100%;
  height: 1px;
  background: #ccc;
  position: absolute;
  top: 0;
  left: 0;
}
body.page-institut-esthederm .presentation .origine-wrapper .top-banner {
  position: relative;
  width: 100vw;
  left: calc(-50vw + 50%);
}
body.page-institut-esthederm .presentation .origine-wrapper .top-banner img {
  width: 100%;
}

@media screen and (max-width: 320px) {
  body.page-institut-esthederm .presentation .origine-wrapper .top-banner {
    left: initial;
    min-width: 320px;
  }
}
#l_eau_cellulaire {
  margin-top: -21px;
}
@media screen and (max-width: 450px) {
  #l_eau_cellulaire {
    margin-top: -21px;
  }
}

/*//CGV Wrapper Définition
$cgvMaxWidth               : 1280px;
$cgvFontFamily             : "Bliss2", Arial, sans-serif;
//CGV Page Title Styles
$cgvPageTitleColor         : #303e48;
$cgvPageTitleFontSize      : 24px;
$cgvPageTitleFontWeight    : bold;
//CGV Section Title Styles
$cgvSectionTitleColor      : #303e48;
$cgvSectionTitleFontSize   : 20px;
$cgvSectionTitleFontWeight : normal;
//CGV Content Styles
$cgvContentColor           : #303e48;
$cgvContentFontSize        : 14px;
$cgvContentLineHeight      : 24px;
$cgvContentFontWeight      : normal;
$cgvContentFontStyle       : normal;
$cgvUlListStyleType        : disc;
$cgvContentTextAlign       : justify;
$cgvLinksDecoration        : none;
$cgvLinksColor             : #0096b6;
$cgvLinksHoverDecoration   : none;
$cgvLinksHoverColor        : #0096b6;
*/
.cms-conditions-generales-de-vente .main-container, .cms-mentions-legales .main-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

#conditions-generales-de-vente {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 60px auto;
}
#conditions-generales-de-vente * {
  font-family: "Bliss2", Arial, sans-serif;
}
#conditions-generales-de-vente .page-title {
  text-align: center;
}
#conditions-generales-de-vente .page-title h1, #conditions-generales-de-vente .page-title [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head #conditions-generales-de-vente .page-title h2 {
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  color: #303e48;
  text-align: center;
}
#conditions-generales-de-vente .page-title h1:after, #conditions-generales-de-vente .page-title [class*="customer-account"] .dashboard .box-account .box-head h2:after, [class*="customer-account"] .dashboard .box-account .box-head #conditions-generales-de-vente .page-title h2:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 25%;
  height: 1px;
  width: 50%;
  background: #cccccc;
}
#conditions-generales-de-vente .expandall {
  float: right;
  margin: 35px auto;
  color: #303e48;
  text-align: right;
}
#conditions-generales-de-vente h3 {
  position: relative;
  margin: 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  font-weight: bold;
  color: #303e48;
  line-height: 45px;
  text-transform: uppercase;
  outline: none;
}
#conditions-generales-de-vente h3 .cgv-section-arrow {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 45px;
  width: 45px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#conditions-generales-de-vente h3 .cgv-section-arrow .ico-next--st1 {
  fill: none;
  stroke: #303e48;
  stroke-miterlimit: 10;
  stroke-width: 2px;
}
#conditions-generales-de-vente h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: #ccc;
}
#conditions-generales-de-vente h3:hover .cgv-section-arrow {
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  transform: rotate(30deg);
}
#conditions-generales-de-vente h3.ui-state-active .cgv-section-arrow {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
#conditions-generales-de-vente .content {
  clear: both;
  max-width: 100%;
  font-size: 14px;
}
#conditions-generales-de-vente .content .ui-accordion-content {
  padding: 20px 0 20px 0;
}
#conditions-generales-de-vente .content .ui-accordion-content p {
  margin: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  color: #303e48;
  line-height: 24px;
  text-align: justify;
}
#conditions-generales-de-vente .content .ui-accordion-content dt {
  padding-left: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  color: #303e48;
  line-height: 24px;
}
#conditions-generales-de-vente .content .ui-accordion-content dt:before {
  content: '\2022';
  font-size: 20px;
}
#conditions-generales-de-vente .content .ui-accordion-content dd {
  padding-left: 10px;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  color: #303e48;
  line-height: 24px;
}
#conditions-generales-de-vente .content .ui-accordion-content ul {
  margin: 0;
  padding: 0;
  list-style-type: disc;
}
#conditions-generales-de-vente .content .ui-accordion-content ul li {
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  color: #303e48;
  line-height: 24px;
}
#conditions-generales-de-vente .content .ui-accordion-content a {
  color: #0096b6;
  text-decoration: none;
}
#conditions-generales-de-vente .content .ui-accordion-content a:hover {
  color: #0096b6;
  text-decoration: none;
}
#conditions-generales-de-vente .content .ui-accordion-content a:focus, #conditions-generales-de-vente .content .ui-accordion-content a:active, #conditions-generales-de-vente .content .ui-accordion-content a:visited {
  color: #0096b6;
  text-decoration: none;
}

[class*="customer-account"] .banner-account-image {
  width: 100%;
  height: auto;
}
[class*="customer-account"] .main-container {
  margin: 0 auto;
  font-family: "Bliss2", Arial, sans-serif;
}
[class*="customer-account"] .main-container .data-table {
  margin-top: 0px;
}
[class*="customer-account"] .main-container .data-table th {
  font-size: 12px;
}
[class*="customer-account"] .main-container .data-table .ship {
  width: 20%;
}
[class*="customer-account"] .main-container .data-table .link-reorder {
  font-size: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: top;
  margin: 0 6px;
  background: transparent url(../images/icon-repeat.png) center center no-repeat;
}
[class*="customer-account"] .main-container .data-table .link-view {
  font-size: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: top;
  margin: 0 6px;
  background: transparent url(../images/icon-loupe.png) center center no-repeat;
}
[class*="customer-account"] .main-container a {
  color: #0096b6;
  font-weight: 300;
  font-family: "Bliss2", Arial, sans-serif;
  letter-spacing: inherit;
  text-decoration: none;
  font-size: 14px;
  text-transform: none;
  font-style: normal;
}
[class*="customer-account"] h1, [class*="customer-account"] .dashboard .box-account .box-head h2 {
  margin: 0;
  text-align: center;
  padding: 35px 0 20px 0;
  color: #333d47;
  font-weight: bold;
  font-family: "Bliss2", Arial, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  border: none;
}
[class*="customer-account"] p.page-subtitle {
  width: 90%;
  max-width: 800px;
  text-align: center;
  margin: 0 auto 30px auto;
}
[class*="customer-account"] h2 {
  margin: 0;
  text-align: left;
  padding: 0;
  color: #000000;
  font-weight: bold;
  font-family: "Bliss2", Arial, sans-serif;
  letter-spacing: inherit;
  text-decoration: none;
  font-style: normal;
  font-size: 16px;
  text-transform: none;
}
[class*="customer-account"] p.form-instructions {
  margin: 0;
  text-align: left;
  padding: 0;
  color: #818181;
  font-weight: normal;
  font-family: "Bliss2", Arial, sans-serif;
  letter-spacing: inherit;
  text-decoration: none;
  font-style: italic;
  font-size: 14px;
  text-transform: none;
}
[class*="customer-account"] ul.benefits {
  list-style: disc;
  color: #000000;
  font-style: normal;
  font-weight: normal;
  font-family: Arial;
  font-size: 14px;
  text-transform: none;
}
[class*="customer-account"] a.button {
  display: inline-block;
  text-decoration: none;
  padding: 0 30px;
  line-height: 40px;
  height: 40px;
  border-radius: 40px;
  text-transform: uppercase;
  font-family: "Bliss2", Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
  background: #303e48;
  letter-spacing: 2px;
  border: none;
  min-width: inherit !important;
}
[class*="customer-account"] p.required {
  display: none;
}
[class*="customer-account"] .form-list label {
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-family: "Bliss2", Arial, sans-serif;
  color: #000000;
  text-transform: none;
  text-decoration: none;
}
[class*="customer-account"] .form-list label:after {
  color: #000000;
}
[class*="customer-account"] .control input {
  margin-left: 0 !important;
  margin-top: 11px;
}
[class*="customer-account"] .control label {
  background: none !important;
  padding-left: 20px;
}
[class*="customer-account"] .control .link-tip {
  display: none;
}
[class*="customer-account"] .dashboard .hello strong {
  font-weight: normal;
}
[class*="customer-account"] .dashboard .box-account {
  border-bottom: none;
  margin-bottom: 0;
  margin-top: 0px;
  clear: both;
}
[class*="customer-account"] .dashboard .box-account .box-head {
  margin-top: 0;
  padding: 14px 0;
  border: 1px solid #cccccc;
  border-left: none;
  border-right: none;
}
[class*="customer-account"] .dashboard .box-account .box-head h2 {
  padding: 0;
  font-size: 16px;
  border: none;
  color: #303e48;
  font-weight: 500;
}
[class*="customer-account"] .dashboard .box-account .box-head a {
  float: right;
  padding: 0;
}
[class*="customer-account"] .sidebar .block-account {
  border: 1px solid #cccccc;
  padding: 0 20px;
  margin-top: 20px;
}
[class*="customer-account"] .sidebar .block-account .block-title {
  display: none;
}
[class*="customer-account"] .sidebar .block-account .block-content a, [class*="customer-account"] .sidebar .block-account .block-content strong {
  color: #58585a;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Bliss2", Arial, sans-serif;
  font-weight: normal;
  text-decoration: none;
}
[class*="customer-account"] .sidebar .block-account .block-content a:hover, [class*="customer-account"] .sidebar .block-account .block-content strong:hover {
  color: #333d47;
}
[class*="customer-account"] .sidebar .block-account .block-content strong {
  color: #303e48;
}
[class*="customer-account"] .sidebar .block-account .block-content li {
  margin: 15px 0;
}
[class*="customer-account"] .dashboard .box-account p,
[class*="customer-account"] .dashboard .box-account address {
  font-style: normal;
  font-family: "Bliss2", Arial, sans-serif;
  line-height: 20px;
}
[class*="customer-account"] .my-account .title-buttons .button {
  position: static !important;
}
[class*="customer-account"] .buttons-set {
  text-align: left;
  border: none;
}
[class*="customer-account"] .account-create {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
[class*="customer-account"] .account-create form {
  width: 100%;
  max-width: 915px;
  display: inline-block;
  padding-right: 50px;
  vertical-align: top;
}
[class*="customer-account"] .account-create .rgpd {
  font-size: 13px;
  text-align: justify;
  color: #bbb;
  padding: 0 0 50px;
}
[class*="customer-account"] .account-create .block-cercle-avantages {
  width: 100%;
  max-width: 360px;
  padding-left: 50px;
  display: inline-block;
  vertical-align: top;
}
[class*="customer-account"] .account-create .block-cercle-avantages .block-content ul {
  list-style-type: none;
}
[class*="customer-account"] .account-create .block-cercle-avantages .block-content ul li {
  list-style-type: none;
  margin-bottom: 50px;
}
[class*="customer-account"] .account-create .block-cercle-avantages .block-content ul li:last-child {
  margin-bottom: 0;
}
[class*="customer-account"] .account-create .block-cercle-avantages .block-content ul li img {
  width: 86px;
  display: inline-block;
  vertical-align: middle;
  height: auto;
  margin-right: 20px;
}
[class*="customer-account"] .account-create .block-cercle-avantages .block-content ul li p {
  display: inline-block;
  width: 160px;
  vertical-align: middle;
  color: #a3a5a8;
  font-size: 14px;
  font-weight: 300;
  text-transform: none;
  text-align: left;
  line-height: 20px;
  margin: 0;
}
[class*="customer-account"] .account-create .block-cercle-avantages .block-content ul li p span {
  color: #303e48;
  font-weight: normal;
  font-size: 15px;
  text-transform: uppercase;
  display: block;
}
[class*="customer-account"] .account-create .block-cercle-avantages .block-content ul li p a {
  color: #a3a5a8;
  text-decoration: none;
}
[class*="customer-account"] .account-create .block-cercle-avantages .block-content ul li p a:hover {
  text-decoration: none;
}
[class*="customer-account"] .account-create .block-title {
  border: none;
  margin-bottom: 20px;
}
[class*="customer-account"] .account-create .block-title strong > span {
  padding-left: 11px;
  padding-top: 22px;
  text-transform: uppercase;
  color: #303e48;
  font-size: 14px;
  font-weight: normal;
  position: relative;
}
[class*="customer-account"] .account-create .block-title strong > span:before {
  content: '';
  width: 1px;
  height: 34px;
  background: #303e48;
  display: block;
  position: absolute;
  left: 0;
  bottom: 2px;
}
[class*="customer-account"] .account-create .block-title strong > span span {
  font-size: 18px;
  font-weight: 500;
}
[class*="customer-account"] .account-create .form-list h3.form-list-section-title {
  background-image: none !important;
  padding-left: 11px;
  height: 35px;
  vertical-align: bottom;
  display: inline-block;
  line-height: 40px;
  color: #333d47;
  position: relative;
  font-size: 14px;
  margin-bottom: 30px;
  padding-top: 7px;
}
[class*="customer-account"] .account-create .form-list h3.form-list-section-title.connexion-info {
  margin-top: 30px;
}
[class*="customer-account"] .account-create .form-list h3.form-list-section-title:before {
  content: '1. ';
  font-size: 20px;
}
[class*="customer-account"] .account-create .form-list h3.form-list-section-title:after {
  content: '';
  height: 100%;
  width: 1px;
  display: block;
  background: #303e48;
  top: 0;
  position: absolute;
  left: 0;
}
[class*="customer-account"] .account-create .form-list h3.form-list-section-title.connexion-info:before {
  content: '2. ';
}
[class*="customer-account"] .account-create .form-list .name-firstname,
[class*="customer-account"] .account-create .form-list .name-lastname {
  width: 48%;
  float: left;
}
[class*="customer-account"] .account-create .form-list .name-firstname {
  margin-right: 4%;
}
[class*="customer-account"] .account-create .form-list input[type=email] {
  width: 100%;
}
[class*="customer-account"] .account-create .form-list li.fields .field {
  width: 48%;
  float: left;
}
[class*="customer-account"] .account-create .form-list li.fields .field:first-child {
  margin-right: 4%;
}
[class*="customer-account"] .account-create .form-list li.fields .field label[for="confirmation"] {
  width: 100%;
}
[class*="customer-account"] .account-create .form-list li.control {
  clear: both;
  margin-top: 10px;
  margin-bottom: 10px;
}
[class*="customer-account"] .account-create .form-list li.control label {
  font-size: 13px;
  font-family: "Bliss2", Arial, sans-serif;
  color: #303e48;
}
[class*="customer-account"] .account-create .form-list li {
  position: relative;
  overflow: hidden;
}
[class*="customer-account"] .account-create .form-list li .field {
  position: relative;
}
[class*="customer-account"] .account-create .form-list li .dob-year,
[class*="customer-account"] .account-create .form-list li .dob-month,
[class*="customer-account"] .account-create .form-list li .dob-day {
  position: relative;
}
[class*="customer-account"] .account-create .form-list li:not(.control) label:not([for="dob"]):not([for="gender"]) {
  height: 39px;
  line-height: 40px;
  color: #58585a;
  font-size: 13px;
  font-weight: normal;
  transition: visibility 0.15s, opacity 0.15s linear;
  background: #ffffff;
  position: absolute;
  top: 2px;
  left: 1px;
  width: 100%;
  padding-left: 10px;
}
[class*="customer-account"] .account-create .form-list li:not(.control) label:not([for="dob"]):not([for="gender"]).fadeout {
  visibility: hidden;
  opacity: 0;
}
[class*="customer-account"] .account-create .form-list li:not(.control) label[for="gender"], [class*="customer-account"] .account-create .form-list li:not(.control) label[for="dob"] {
  color: #58585a;
  font-size: 13px;
  font-weight: normal;
}
[class*="customer-account"] .account-create .form-list br {
  display: none;
}
[class*="customer-account"] .account-create .form-list input[type="text"], [class*="customer-account"] .account-create .form-list input[type="password"], [class*="customer-account"] .account-create .form-list input[type="email"], [class*="customer-account"] .account-create .form-list select {
  height: 40px;
  line-height: 40px;
  color: #58585a;
  font-size: 13px;
  font-weight: normal;
  border-top: none;
  border-right: none;
  width: 100% !important;
  border-color: #e2e3e4;
  padding: 0 6px;
  background: #ffffff;
}
[class*="customer-account"] .account-create .form-list input[type="text"]:focus, [class*="customer-account"] .account-create .form-list input[type="password"]:focus, [class*="customer-account"] .account-create .form-list input[type="email"]:focus, [class*="customer-account"] .account-create .form-list select:focus {
  outline: none;
}
[class*="customer-account"] .account-create .form-list .step-title {
  font-size: 14px;
  color: #333d47;
  font-weight: 500;
  text-transform: uppercase;
  margin: 40px 0 10px;
  position: relative;
}
[class*="customer-account"] .account-create .form-list .step-title:before {
  content: '1. ';
  font-weight: bold;
  font-size: 20px;
}
[class*="customer-account"] .account-create .form-list .step-title.step-2:before {
  content: '2. ';
}
[class*="customer-account"] .account-create .form-list .step-title.step-3:before {
  content: '3. ';
}
[class*="customer-account"] .account-create .buttons-set {
  max-width: 100%;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}
[class*="customer-account"] .account-create .buttons-set button.button.button-first {
  float: right !important;
}
[class*="customer-account"] .account-create .buttons-set,
[class*="customer-account"] .account-create .fieldset {
  margin-left: 0;
}
[class*="customer-account"] .account-login {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 80px auto;
}
[class*="customer-account"] .account-login .col2-set .col-1 .content, [class*="customer-account"] .account-login .col2-set .col-2 .content {
  min-height: 185px;
}
[class*="customer-account"] .account-login h3.form-list-section-title {
  background-image: none !important;
  padding-left: 11px;
  height: 35px;
  vertical-align: bottom;
  display: inline-block;
  line-height: 40px;
  color: #333d47;
  position: relative;
  font-size: 14px;
  margin-bottom: 30px;
  padding-top: 7px;
}
[class*="customer-account"] .account-login h3.form-list-section-title:after {
  content: '';
  height: 100%;
  width: 1px;
  display: block;
  background: #303e48;
  top: 0;
  position: absolute;
  left: 0;
}
[class*="customer-account"] .account-login p.form-instructions {
  color: #58585a;
  font-size: 13px;
  text-align: justify;
  padding-left: 11px;
  font-style: normal;
}
[class*="customer-account"] .account-login .form-list .name-firstname,
[class*="customer-account"] .account-login .form-list .name-lastname {
  width: 48%;
  float: left;
}
[class*="customer-account"] .account-login .form-list .name-firstname {
  margin-right: 4%;
}
[class*="customer-account"] .account-login .form-list input[type=email] {
  width: 100%;
}
[class*="customer-account"] .account-login .form-list li.fields .field {
  width: 48%;
  float: left;
}
[class*="customer-account"] .account-login .form-list li.fields .field:first-child {
  margin-right: 4%;
}
[class*="customer-account"] .account-login .form-list li.fields .field label[for="confirmation"] {
  width: 100%;
}
[class*="customer-account"] .account-login .form-list li.control {
  clear: both;
  margin-top: 30px;
  margin-bottom: 50px;
}
[class*="customer-account"] .account-login .form-list li.control label {
  font-size: 13px;
  font-family: "Bliss2", Arial, sans-serif;
  color: #303e48;
}
[class*="customer-account"] .account-login .form-list li {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
[class*="customer-account"] .account-login .form-list li .field {
  position: relative;
}
[class*="customer-account"] .account-login .form-list li .dob-year,
[class*="customer-account"] .account-login .form-list li .dob-month,
[class*="customer-account"] .account-login .form-list li .dob-day {
  position: relative;
}
[class*="customer-account"] .account-login .form-list li:not(.control) label:not([for="dob"]) {
  height: 39px;
  line-height: 40px;
  color: #58585a;
  font-size: 13px;
  font-weight: normal;
  transition: visibility 0.15s, opacity 0.15s linear;
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 1px;
  width: 100%;
  padding-left: 10px;
}
[class*="customer-account"] .account-login .form-list li:not(.control) label:not([for="dob"]).fadeout {
  visibility: hidden;
  opacity: 0;
}
[class*="customer-account"] .account-login .form-list br {
  display: none;
}
[class*="customer-account"] .account-login .form-list input[type="text"], [class*="customer-account"] .account-login .form-list input[type="password"], [class*="customer-account"] .account-login .form-list input[type="email"], [class*="customer-account"] .account-login .form-list select {
  height: 40px;
  line-height: 40px;
  color: #58585a;
  font-size: 13px;
  font-weight: normal;
  border-top: none;
  border-right: none;
  width: 100% !important;
  border-color: #e2e3e4;
  padding: 0 6px;
  background: #ffffff;
}
[class*="customer-account"] .account-login .form-list input[type="text"]:focus, [class*="customer-account"] .account-login .form-list input[type="password"]:focus, [class*="customer-account"] .account-login .form-list input[type="email"]:focus, [class*="customer-account"] .account-login .form-list select:focus {
  outline: none;
}
[class*="customer-account"] .account-login .form-list .step-title {
  font-size: 14px;
  color: #333d47;
  font-weight: 500;
  text-transform: uppercase;
  margin: 40px 0 10px;
  position: relative;
}
[class*="customer-account"] .account-login .form-list .step-title:before {
  content: '1. ';
  font-weight: bold;
  font-size: 20px;
}
[class*="customer-account"] .account-login .form-list .step-title.step-2:before {
  content: '2. ';
}
[class*="customer-account"] .account-login .form-list .step-title.step-3:before {
  content: '3. ';
}
[class*="customer-account"] .account-login .col2-set .buttons-set button.button.button-first {
  float: right !important;
  min-width: 0;
}
[class*="customer-account"].customer-account-forgotpassword #form-validate {
  margin: 50px auto;
  width: 100%;
  max-width: 780px;
}
[class*="customer-account"].customer-account-forgotpassword #form-validate .block-title {
  border: none;
  margin-bottom: 20px;
}
[class*="customer-account"].customer-account-forgotpassword #form-validate .block-title strong {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Bliss2", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: uppercase;
  color: #3399CC;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
}
[class*="customer-account"].customer-account-forgotpassword #form-validate .block-title strong > span {
  padding-left: 11px;
  padding-top: 22px;
  text-transform: uppercase;
  color: #303e48;
  font-size: 14px;
  font-weight: normal;
  position: relative;
}
[class*="customer-account"].customer-account-forgotpassword #form-validate .block-title strong > span span {
  font-size: 18px;
  font-weight: 500;
}
[class*="customer-account"].customer-account-forgotpassword #form-validate .block-title strong > span:before {
  content: '';
  width: 1px;
  height: 34px;
  background: #303e48;
  display: block;
  position: absolute;
  left: 0;
  bottom: 2px;
}
[class*="customer-account"].customer-account-forgotpassword #form-validate .form-list li {
  position: relative;
}
[class*="customer-account"].customer-account-forgotpassword #form-validate .form-list li .input-box input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  color: #303e48;
  font-size: 13px;
  font-weight: normal;
  border-top: none;
  border-right: none;
  border-color: #dedfe1;
  padding: 0 6px;
  background: #ffffff;
  outline: none;
}
[class*="customer-account"].customer-account-forgotpassword #form-validate label {
  height: 39px;
  line-height: 40px;
  color: #58585a;
  font-size: 13px;
  font-weight: normal;
  transition: visibility 0.15s, opacity 0.15s linear;
  background: #ffffff;
  position: absolute;
  top: 2px;
  width: 100%;
  left: 1px;
  padding-left: 7px;
}
[class*="customer-account"].customer-account-forgotpassword #form-validate label.fadeout {
  visibility: hidden;
  opacity: 0;
}
[class*="customer-account"].customer-account-forgotpassword .fieldset,
[class*="customer-account"].customer-account-forgotpassword .buttons-set {
  max-width: 100%;
  margin-left: 0;
}
[class*="customer-account"].customer-account-forgotpassword .fieldset .input-box input.input-text {
  width: 365px;
}
[class*="customer-account"].customer-account-forgotpassword .buttons-set {
  margin-top: 40px;
}
[class*="customer-account"] address {
  line-height: 20px;
}
[class*="customer-account"] .box-account h3 {
  font-weight: normal !important;
}
@media all and (max-width: 770px) {
  [class*="customer-account"] .form-list {
    width: 100% !important;
  }
}
@media all and (min-width: 770px) {
  [class*="customer-account"] .col2-left-layout .col-left {
    width: 25%;
    padding: 0 15px;
  }
  [class*="customer-account"] .col2-left-layout .col-main {
    width: 75%;
    padding: 0 15px;
  }
}
@media all and (max-width: 1280px) {
  [class*="customer-account"] .main-container {
    padding: 0 20px;
  }
  [class*="customer-account"] .sidebar .block-title {
    display: block !important;
  }
  [class*="customer-account"] .sidebar .block-title strong {
    background: transparent !important;
    border: none !important;
  }
  [class*="customer-account"] .sidebar .block-content {
    border: none !important;
  }
  [class*="customer-account"] .box-head a {
    float: none !important;
    display: block;
  }
}

[class*="customer-account"] .account-create .block-cercle-avantages {
  width: 38%;
  max-width: none;
  padding-left: 50px;
  display: inline-block;
  vertical-align: top;
}
[class*="customer-account"] .account-create form {
  width: 60%;
  max-width: 915px;
  display: inline-block;
  padding-right: 50px;
  vertical-align: top;
}

body.customer-inside-account .main-container .main {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
body.customer-inside-account .main-container .main .welcome-msg {
  width: calc(100% - 260px);
  float: left;
}
body.customer-inside-account .main-container .main .liste-soins-institut {
  width: 100%;
  display: inline-block;
  max-width: 235px;
  vertical-align: top;
  float: right;
  margin-top: -45px;
  margin-bottom: 20px;
}
body.customer-inside-account .main-container .main .liste-soins-institut .liste-soins-institut-block:first-child {
  margin-bottom: 32px;
}
body.customer-inside-account .main-container .main .liste-soins-institut .liste-soins-institut-block img {
  display: inline-block;
  vertical-align: middle;
}
body.customer-inside-account .main-container .main .liste-soins-institut .liste-soins-institut-block p {
  color: #a3a5a8;
  font-size: 15px;
  padding-left: 18px;
  display: inline-block;
  vertical-align: middle;
}
body.customer-inside-account .main-container .main .liste-soins-institut .liste-soins-institut-block p a {
  color: #a3a5a8;
  text-decoration: none;
  font-weight: 300;
}
body.customer-inside-account .main-container .main .liste-soins-institut .liste-soins-institut-block p strong {
  display: block;
  text-transform: uppercase;
  color: #303e48;
}
body.customer-inside-account .main-container .main .box-account.box-reviews {
  display: none;
}
body.customer-inside-account .main-container .main .box-account.box-reviews #my_recent_reviews a {
  color: #303e48;
}
body.customer-inside-account .main-container h3.form-list-section-title {
  background-image: none !important;
  padding-left: 11px;
  height: 35px;
  vertical-align: bottom;
  display: inline-block;
  line-height: 40px;
  color: #303e48;
  position: relative;
  font-size: 14px;
  margin-bottom: 30px;
  padding-top: 7px;
}
body.customer-inside-account .main-container h3.form-list-section-title:after {
  content: '';
  height: 100%;
  width: 1px;
  display: block;
  background: #303e48;
  top: 0;
  position: absolute;
  left: 0;
}
body.customer-inside-account .main-container .form-list .form-list .field, body.customer-inside-account .main-container .form-list .form-list .wide, body.customer-inside-account .main-container .form-list .form-list .control {
  margin-bottom: 0;
}
body.customer-inside-account .main-container .form-list .input-box {
  padding-top: 0;
}
body.customer-inside-account .main-container .form-list .name-firstname,
body.customer-inside-account .main-container .form-list .name-lastname {
  width: 48%;
  float: left;
}
body.customer-inside-account .main-container .form-list .name-firstname {
  margin-right: 4%;
}
body.customer-inside-account .main-container .form-list input[type=email] {
  width: 100%;
}
body.customer-inside-account .main-container .form-list li.fields .field {
  width: 48%;
  float: left;
}
body.customer-inside-account .main-container .form-list li.fields .field:first-child {
  margin-right: 4%;
}
body.customer-inside-account .main-container .form-list li.fields .field label[for="confirmation"] {
  width: 100%;
}
body.customer-inside-account .main-container .form-list li.control {
  clear: both;
  margin-top: 10px;
  margin-bottom: 10px;
}
body.customer-inside-account .main-container .form-list li.control label {
  font-size: 13px;
  font-family: "Bliss2", Arial, sans-serif;
  color: #303e48;
}
body.customer-inside-account .main-container .form-list li {
  position: relative;
  overflow: hidden;
}
body.customer-inside-account .main-container .form-list li .field {
  position: relative;
}
body.customer-inside-account .main-container .form-list li .dob-year,
body.customer-inside-account .main-container .form-list li .dob-month,
body.customer-inside-account .main-container .form-list li .dob-day {
  position: relative;
}
body.customer-inside-account .main-container .form-list li:not(.control) label:not([for="dob"]):not([for="gender"]) {
  height: 39px;
  line-height: 40px;
  color: #58585a;
  font-size: 13px;
  font-weight: normal;
  transition: visibility 0.15s, opacity 0.15s linear;
  background: #ffffff;
  position: absolute;
  top: 0;
  width: 100%;
  left: 1px;
  padding-left: 7px;
}
body.customer-inside-account .main-container .form-list li:not(.control) label:not([for="dob"]):not([for="gender"]).fadeout {
  visibility: hidden;
  opacity: 0;
}
body.customer-inside-account .main-container .form-list li:not(.control) label[for="gender"], body.customer-inside-account .main-container .form-list li:not(.control) label[for="dob"] {
  font-weight: normal;
  color: #58585a;
  font-size: 13px;
}
body.customer-inside-account .main-container .form-list br {
  display: none;
}
body.customer-inside-account .main-container .form-list input[type="text"], body.customer-inside-account .main-container .form-list input[type="password"], body.customer-inside-account .main-container .form-list input[type="email"], body.customer-inside-account .main-container .form-list select {
  height: 40px;
  line-height: 40px;
  color: #58585a;
  font-size: 13px;
  font-weight: normal;
  border-top: none;
  border-right: none;
  width: 100% !important;
  border-color: #e2e3e4;
  padding: 0 6px;
  background: #ffffff;
}
body.customer-inside-account .main-container .form-list input[type="text"]:focus, body.customer-inside-account .main-container .form-list input[type="password"]:focus, body.customer-inside-account .main-container .form-list input[type="email"]:focus, body.customer-inside-account .main-container .form-list select:focus {
  outline: none;
}
body.customer-inside-account .main-container .addresses-primary ol, body.customer-inside-account .main-container .addresses-additional ol {
  padding-left: 10px;
  font-style: normal !important;
  font-family: "Bliss2", Arial, sans-serif !important;
}

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

.customer-account-logoutsuccess .main {
  min-height: 500px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.customer-account-logoutsuccess .main .page-title {
  margin: 50px auto 40px auto;
}

[class*="customer-account"] .main-container a.forgot-password-link {
  color: #a3a5a8;
}
[class*="customer-account"] .main-container a.forgot-password-link:hover {
  color: #2f3d47;
}

[class*="customer-account"] .account-create .form-list li:not(.control) label[for="day"], [class*="customer-account"] .account-create .form-list li:not(.control) label[for="month"], [class*="customer-account"] .account-create .form-list li:not(.control) label[for="year"] {
  top: 0 !important;
}

.customer-account-edit .my-account form .box-head {
  margin-top: 0;
  padding: 14px 0;
  border: 1px solid #cccccc;
  border-left: none;
  border-right: none;
  margin-bottom: 20px;
}
.customer-account-edit .my-account form .box-head h2 {
  padding: 0;
  font-size: 16px;
  border: none;
  font-weight: 500;
  margin: 0;
  color: #333d47;
  font-family: "Bliss2", Arial, sans-serif;
  text-transform: uppercase;
}

.cms-le-cercle .breadcrumbs {
  margin: 30px auto 20px auto;
  width: 100%;
  max-width: 1280px;
}
.cms-le-cercle .breadcrumbs ul li {
  list-style-type: none;
  font-style: normal;
  font-size: 12px;
  margin-left: 0;
  font-family: "Bliss2", Arial, sans-serif;
}
.cms-le-cercle .breadcrumbs ul li a, .cms-le-cercle .breadcrumbs ul li strong {
  float: left;
  color: #636363;
  font-style: normal;
}
.cms-le-cercle .cercle-banner {
  width: 100%;
  height: auto;
}
.cms-le-cercle .cercle-wrapper {
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
  font-family: "Bliss2", Arial, sans-serif;
}
.cms-le-cercle .cercle-wrapper h2.cercle-title {
  text-align: center;
  font-size: 30px;
  color: #303e48;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 17px;
  font-family: "Bliss2", Arial, sans-serif;
}
.cms-le-cercle .cercle-wrapper p {
  font-style: normal;
  font-family: "Bliss2", Arial, sans-serif;
  text-align: center;
  color: #303e48;
}
.cms-le-cercle .cercle-wrapper p.cercle-subtitle {
  font-size: 18px;
  font-weight: normal;
  margin-top: 0;
  line-height: 18px;
  margin-bottom: 13px;
}
.cms-le-cercle .cercle-wrapper p.cercle-description {
  font-size: 14px;
  font-weight: 300;
  margin-top: 0;
  line-height: 15px;
  margin-bottom: 50px;
}
.cms-le-cercle .cercle-wrapper .block.block-subscribe {
  width: 100%;
  max-width: 625px;
  display: inline-block;
  padding-right: 50px;
  vertical-align: top;
  border-right: 1px solid #dedfe1;
}
.cms-le-cercle .cercle-wrapper .block.block-cercle-avantages {
  width: 100%;
  max-width: 360px;
  padding-left: 50px;
  display: inline-block;
  vertical-align: top;
}
.cms-le-cercle .cercle-wrapper .block .block-title {
  border: none;
  margin-bottom: 20px;
}
.cms-le-cercle .cercle-wrapper .block .block-title strong > span {
  padding-left: 11px;
  padding-top: 22px;
  text-transform: uppercase;
  color: #303e48;
  font-size: 14px;
  font-weight: normal;
  position: relative;
}
.cms-le-cercle .cercle-wrapper .block .block-title strong > span:before {
  content: '';
  width: 1px;
  height: 34px;
  background: #303e48;
  display: block;
  position: absolute;
  left: 0;
  bottom: 2px;
}
.cms-le-cercle .cercle-wrapper .block .block-title strong > span span {
  font-size: 18px;
  font-weight: 500;
}
.cms-le-cercle .cercle-wrapper .block .block-content .input-box {
  position: relative;
  margin-bottom: 50px;
}
.cms-le-cercle .cercle-wrapper .block .block-content .input-box label {
  position: absolute;
  top: 2px;
  left: 8px;
  cursor: text;
  height: 39px;
  line-height: 40px;
  color: #303e48;
  font-size: 13px;
  font-weight: normal;
  transition: visibility 0.15s, opacity 0.15s linear;
  background: #ffffff;
}
.cms-le-cercle .cercle-wrapper .block .block-content .input-box label.fadeout {
  visibility: hidden;
  opacity: 0;
}
.cms-le-cercle .cercle-wrapper .block .block-content .input-box input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  color: #303e48;
  font-size: 13px;
  font-weight: normal;
  border-top: none;
  border-right: none;
  border-color: #dedfe1;
  padding: 0 6px;
  background: #ffffff;
}
.cms-le-cercle .cercle-wrapper .block .block-content .input-box input:focus {
  outline: none;
}
.cms-le-cercle .cercle-wrapper .block .block-content .actions {
  margin-top: 0;
}
.cms-le-cercle .cercle-wrapper .block .block-content .actions button.button.button-first {
  float: right !important;
}
.cms-le-cercle .cercle-wrapper .block .block-content ul {
  list-style-type: none;
}
.cms-le-cercle .cercle-wrapper .block .block-content ul li {
  list-style-type: none;
  margin-bottom: 50px;
}
.cms-le-cercle .cercle-wrapper .block .block-content ul li:last-child {
  margin-bottom: 0;
}
.cms-le-cercle .cercle-wrapper .block .block-content ul li img {
  width: 86px;
  display: inline-block;
  vertical-align: middle;
  height: auto;
  margin-right: 20px;
}
.cms-le-cercle .cercle-wrapper .block .block-content ul li p {
  display: inline-block;
  width: 160px;
  vertical-align: middle;
  color: #a3a5a8;
  font-size: 14px;
  font-weight: 300;
  text-transform: none;
  text-align: left;
  line-height: 20px;
  margin: 0;
}
.cms-le-cercle .cercle-wrapper .block .block-content ul li p span {
  color: #303e48;
  font-weight: normal;
  font-size: 15px;
  text-transform: uppercase;
  display: block;
}
.cms-le-cercle .cercle-wrapper .block .block-content ul li p a {
  color: #a3a5a8;
  text-decoration: none;
}
.cms-le-cercle .cercle-wrapper .block .block-content ul li p a:hover {
  text-decoration: none;
}

.cms-le-cercle .cercle-wrapper .block.block-sub-cercle {
  margin-top: 30px;
  border-right: none;
}
.cms-le-cercle .cercle-wrapper .block.block-sub-cercle .block-title strong {
  font-weight: 500 !important;
}
.cms-le-cercle .cercle-wrapper .block.block-sub-cercle .block-title strong span {
  font-weight: 500;
}
.cms-le-cercle .cercle-wrapper .block.block-sub-cercle .block-content {
  padding-left: 10px;
  font-weight: 300;
}
.cms-le-cercle .cercle-wrapper .block.block-sub-cercle .block-content strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 400;
}
.cms-le-cercle .cercle-wrapper .block.block-sub-cercle .block-content ul li {
  margin-bottom: 10px;
  margin-left: 0;
  font-style: normal;
  font-family: "Bliss2", Arial, sans-serif;
}
.cms-le-cercle .cercle-wrapper .block.block-sub-cercle .block-content ul li span {
  padding-left: 7px;
  display: block;
}

.partner-banner {
  width: 100%;
}
.partner-banner img {
  width: 100%;
  height: auto;
}

.partner-content-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.partner-content-wrapper .partner-content-title h2 {
  margin: 60px 0 16px 0;
  font-size: 30px;
  color: #303e48;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}
.partner-content-wrapper .partner-content-title h3 {
  text-align: center;
  font-size: 18px;
  color: #303e48;
  margin: 0 0 50px 0;
  text-transform: none;
}
.partner-content-wrapper .partner-content-blocks {
  display: table;
  width: 100%;
}
.partner-content-wrapper .partner-content-blocks .partner-content-block {
  display: inline-block;
  margin-bottom: 50px;
  margin-right: -0.25em;
  width: 30%;
  vertical-align: top;
}
.partner-content-wrapper .partner-content-blocks .partner-content-block:nth-child(3n+2) {
  margin: 0 5% 50px 5%;
}
.partner-content-wrapper .partner-content-blocks .partner-content-block h4 {
  font-size: 22px;
  color: #303e48;
  font-weight: normal;
  line-height: 24px;
  padding-left: 30px;
  text-transform: none;
  min-height: 80px;
  position: relative;
}
.partner-content-wrapper .partner-content-blocks .partner-content-block h4 span {
  display: block;
  font-size: 16px;
  color: #a3a5a8;
  font-weight: 300;
  line-height: 17px;
  margin-bottom: 10px;
}
.partner-content-wrapper .partner-content-blocks .partner-content-block h4:before {
  content: '';
  position: absolute;
  width: 1px;
  height: calc(100% + 20px);
  background: #303e48;
  display: block;
  top: 10px;
  left: 10px;
}
.partner-content-wrapper .partner-content-blocks .partner-content-block img {
  width: 100%;
  margin-bottom: 30px;
}
.partner-content-wrapper .partner-content-blocks .partner-content-block .partner-content-block-description ul li {
  font-family: "Bliss2", Arial, sans-serif;
  margin-left: 0;
  padding-left: 31px;
  list-style-type: none;
  font-style: normal;
  color: #303e48;
  font-size: 15px;
  font-weight: 300;
  position: relative;
  line-height: 17px;
  margin-bottom: 10px;
}
.partner-content-wrapper .partner-content-blocks .partner-content-block .partner-content-block-description ul li:before {
  content: "";
  line-height: 5px;
  width: 5px;
  height: 5px;
  background-color: #a3a5a8;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}

.partner-contact-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 80px auto;
}
.partner-contact-wrapper fieldset {
  width: 100%;
  border: 1px solid #8dbac1;
  padding: 0 20px 40px 20px;
}
.partner-contact-wrapper fieldset legend {
  text-align: center;
  display: inline-block;
  padding: 0 35px;
  font-size: 28px;
  color: #8dbac1;
  text-transform: uppercase;
  font-weight: 500;
}
.partner-contact-wrapper fieldset p {
  text-align: center;
  font-style: normal !important;
}
.partner-contact-wrapper fieldset .partner-contact-block {
  width: 25%;
  float: left;
  padding: 0 20px;
}
.partner-contact-wrapper fieldset .partner-contact-block h5 {
  color: #303e48;
  font-size: 14px;
  font-weight: normal;
  padding-left: 10px;
  height: 34px;
  display: table-cell;
  vertical-align: bottom;
  line-height: 12px;
  position: relative;
}
.partner-contact-wrapper fieldset .partner-contact-block h5 span {
  font-size: 20px;
  font-weight: 500;
}
.partner-contact-wrapper fieldset .partner-contact-block h5:before {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #303e48;
}
.partner-contact-wrapper fieldset .partner-contact-block p {
  text-align: left;
  margin: 20px 0 0 0;
  padding-left: 29px;
}
.partner-contact-wrapper fieldset .partner-contact-block p span {
  font-size: 11px;
  color: #a3a5a8;
  line-height: 16px;
  display: block;
}
.partner-contact-wrapper fieldset .partner-contact-block button {
  margin: 20px 0 0 10px;
}

.partner-contact-wrapper fieldset .partner-contact-block {
  width: 25%;
  float: left;
  padding: 0 10px;
}
.partner-contact-wrapper fieldset .partner-contact-block h5 {
  font-size: 12px;
}
.partner-contact-wrapper fieldset .partner-contact-block h5 span {
  font-size: 18px;
}
.partner-contact-wrapper fieldset .partner-contact-block p {
  padding-left: 27px;
}
.partner-contact-wrapper fieldset .partner-contact-block button {
  margin: 20px 0 0 10px;
  padding: 11px 20px;
}

body.page-le-mag .breadcrumbs {
  display: none;
}
body.page-le-mag .landing-banner {
  width: 100%;
  margin-bottom: 30px;
}
body.page-le-mag h1.lemag-title, body.page-le-mag [class*="customer-account"] .dashboard .box-account .box-head h2.lemag-title, [class*="customer-account"] .dashboard .box-account .box-head body.page-le-mag h2.lemag-title {
  text-align: center;
  color: #303e48;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: normal;
  line-height: 34px;
  margin-bottom: 5px;
}
body.page-le-mag h2.lemag-subtitle {
  font-size: 18px;
  color: #303e48;
  font-weight: normal;
  text-align: center;
  line-height: 21px;
  margin-bottom: 12px;
  text-transform: none;
}
body.page-le-mag p.lemag-texttitle {
  color: #303e48;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  max-width: 60%;
  font-style: normal;
  margin: 0 auto 30px auto;
  font-family: "Bliss2", Arial, sans-serif;
}

.presentation {
  width: 100%;
  margin: 0 auto;
}
.presentation .lemag-text-imageleft {
  width: 100%;
  max-width: 1280px;
  overflow: hidden;
  margin-bottom: 30px;
}
.presentation .lemag-text-imageleft .image {
  width: 41%;
  max-width: 525px;
  margin-right: 7%;
  float: left;
}
.presentation .lemag-text-imageleft .image img {
  width: 100%;
}
.presentation .lemag-text-imageleft .content {
  float: left;
  width: 52%;
  max-width: 665px;
  position: relative;
  text-align: left;
}
.presentation .lemag-text-imageleft .content:before {
  width: 150px;
  height: 1px;
  background: #303e48;
  content: '';
  position: absolute;
  top: 10px;
  left: -170px;
}
.presentation .lemag-text-imageleft .content h3 {
  color: #a3a5a8;
  line-height: 16px;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
  text-transform: none;
}
.presentation .lemag-text-imageleft .content h2 {
  font-size: 26px;
  color: #303e48;
  font-weight: normal;
  text-transform: none;
  line-height: 23px;
  margin-bottom: 12px;
}
.presentation .lemag-text-imageleft .content .text {
  color: #303e48;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 156px;
  font-family: "Bliss2", Arial, sans-serif;
  height: 40px !important;
}
.presentation .lemag-text-imagetop {
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
  max-width: 1280px;
}
.presentation .lemag-text-imagetop h3 {
  color: #a3a5a8;
  line-height: 16px;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
  text-transform: none;
  padding-left: 30px;
}
.presentation .lemag-text-imagetop h3:before {
  height: 90px;
  width: 1px;
  background: #303e48;
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
}
.presentation .lemag-text-imagetop h2 {
  font-size: 26px;
  color: #303e48;
  font-weight: normal;
  text-transform: none;
  line-height: 23px;
  margin-bottom: 12px;
  padding-left: 30px;
}
.presentation .lemag-text-imagetop .image {
  width: 100%;
  margin-bottom: 30px;
}
.presentation .lemag-text-imagetop .image img {
  width: 100%;
}
.presentation .lemag-text-imagetop .content {
  width: 100%;
  position: relative;
}
.presentation .lemag-text-imagetop .content .text {
  color: #303e48;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 15px;
}

body.page-le-mag .presentation .actions .sharing-links {
  float: left;
  list-style-type: none;
  margin-left: 0;
}
body.page-le-mag .presentation .actions .sharing-links li {
  float: left;
  padding: 0;
}
body.page-le-mag .presentation .actions .sharing-links a {
  text-indent: -9999px;
  display: block;
  width: 26px;
  height: 21px;
}
body.page-le-mag .presentation .actions .sharing-links a:hover {
  opacity: 0.8;
}
body.page-le-mag .presentation .actions .sharing-links a.link-wishlist {
  background-position: 0px -225px;
}
body.page-le-mag .presentation .actions .sharing-links a.link-compare {
  background-position: 0px -250px;
}
body.page-le-mag .presentation .actions .sharing-links a.link-email-friend {
  background-position: 0px -322px;
}
body.page-le-mag .presentation .actions .sharing-links a.link-facebook {
  background-position: 3px -376px;
}
body.page-le-mag .presentation .actions .sharing-links a.link-facebook:hover {
  background-position: -32px -376px;
}
body.page-le-mag .presentation .actions .sharing-links a.link-twitter {
  background-position: 3px -347px;
}
body.page-le-mag .presentation .actions .sharing-links a.link-twitter:hover {
  background-position: -31px -347px;
}
body.page-le-mag .presentation .actions .sharing-links a.link-googleplus {
  background-position: 3px -405px;
}
body.page-le-mag .presentation .actions .sharing-links a.link-googleplus:hover {
  background-position: -31px -405px;
}
body.page-le-mag .presentation .actions button.button.button-first {
  float: right !important;
}

.dynamicsitemap-index-index .col-main {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.dynamicsitemap-index-index .col-main .ones-column h1.page-title, .dynamicsitemap-index-index .col-main .ones-column [class*="customer-account"] .dashboard .box-account .box-head h2.page-title, [class*="customer-account"] .dashboard .box-account .box-head .dynamicsitemap-index-index .col-main .ones-column h2.page-title {
  margin: 30px 0 50px 0;
  color: #303e48;
  font-weight: 500;
}
.dynamicsitemap-index-index .col-main .ones-column .smh2 {
  color: #303e48;
  font-size: 20px;
  padding-left: 10px;
  position: relative;
  line-height: 34px;
}
.dynamicsitemap-index-index .col-main .ones-column .smh2:before {
  content: '';
  width: 1px;
  height: 34px;
  position: absolute;
  background: #303e48;
  left: 0;
  top: -8px;
}
.dynamicsitemap-index-index .col-main .ones-column .sitempan {
  clear: both;
  margin: 30px 0;
}
.dynamicsitemap-index-index .col-main .ones-column .sitempan a {
  text-decoration: none !important;
}
.dynamicsitemap-index-index .col-main .ones-column .sitempan .siteul {
  -webkit-column-count: 3;
  /* Chrome, Safari, Opera */
  -moz-column-count: 3;
  /* Firefox */
  column-count: 3;
  clear: both;
  margin: 30px 0;
}
.dynamicsitemap-index-index .col-main .ones-column .sitempan .siteul a {
  color: #58585a;
}
.dynamicsitemap-index-index .col-main .ones-column .sitempan .siteul:last-child li:last-child {
  display: none;
}
.dynamicsitemap-index-index .col-main .ones-column .sitempan .sitecatul {
  overflow: hidden;
  margin: 30px 0;
}
.dynamicsitemap-index-index .col-main .ones-column .sitempan .sitecatul li.cat {
  width: calc(100% / 3);
  float: left;
  margin-bottom: 15px;
  min-width: 310px;
}
.dynamicsitemap-index-index .col-main .ones-column .sitempan .sitecatul li.cat > a {
  font-size: 14px;
  text-transform: uppercase;
  color: #303e48;
  margin-bottom: 10px;
  font-weight: bold;
  display: block;
}
.dynamicsitemap-index-index .col-main .ones-column .sitempan .sitecatul li.cat ul li a {
  color: #58585a;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
}
.dynamicsitemap-index-index .col-main .ones-column .sitempan .sitecatul li.cat ul li a.hasChildren {
  color: #303e48;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
}

.dynamicsitemap-index-index .col-main {
  padding: 0 15px;
}

/* ====================================
 Page ORIGINE ========================*/
.top-banner img {
  margin: auto auto 30px;
}

.content-wrapper {
  margin: -5px auto 0 auto;
  width: 980px;
}
@media screen and (max-width: 975px) {
  .content-wrapper {
    width: 80% !important;
  }
}
@media screen and (max-width: 750px) {
  .content-wrapper {
    margin: 0 auto 0 auto;
  }
}
.content-wrapper strong {
  color: #333d47;
}
.content-wrapper p {
  width: 735px !important;
  display: block !important;
  margin: auto;
  font-size: 16px !important;
}
@media screen and (max-width: 975px) {
  .content-wrapper p {
    width: 100% !important;
  }
}
@media screen and (max-width: 750px) and (orientation: landscape) {
  .content-wrapper p {
    font-size: 13px !important;
  }
}
@media screen and (max-width: 750px) and (orientation: portrait) {
  .content-wrapper p {
    font-size: 14px !important;
    margin-top: 5px;
  }
}
.content-wrapper .quote {
  position: relative;
  margin-top: -10px;
  margin-bottom: -15px;
}
@media screen and (max-width: 750px) {
  .content-wrapper .quote img {
    width: 10%;
  }
}
.content-wrapper .quote p {
  margin: 40px auto;
  font-size: 24px !important;
  font-style: italic;
  color: #333d47;
  text-align: center !important;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 975px) {
  .content-wrapper .quote p {
    width: 100% !important;
  }
}
@media screen and (max-width: 800px) {
  .content-wrapper .quote p {
    font-size: 20px !important;
  }
}
@media screen and (max-width: 750px) and (orientation: landscape) {
  .content-wrapper .quote p {
    font-size: 15px !important;
  }
}
@media screen and (max-width: 750px) and (orientation: portrait) {
  .content-wrapper .quote p {
    font-size: 16px !important;
  }
}
.content-wrapper img {
  margin: 40px auto 100px;
}
@media screen and (max-width: 768px) {
  .content-wrapper img {
    margin: 40px auto 40px;
  }
}
.content-wrapper #eau-cellulaire {
  margin-top: 34px;
  margin-bottom: -35px;
}

.content-wrapper-bottom {
  display: flex;
  justify-content: space-between;
  width: 800px;
  margin: 25px auto;
}
@media screen and (max-width: 975px) {
  .content-wrapper-bottom {
    width: 100% !important;
  }
}
@media screen and (max-width: 800px) {
  .content-wrapper-bottom {
    flex-direction: column;
    margin: 0 auto auto;
  }
}
@media screen and (max-width: 750px) {
  .content-wrapper-bottom {
    flex-direction: column;
    width: 80% !important;
  }
}
.content-wrapper-bottom p {
  width: 382px !important;
  font-size: 16px !important;
}
@media screen and (max-width: 975px) {
  .content-wrapper-bottom p {
    width: 50% !important;
  }
}
@media screen and (max-width: 800px) {
  .content-wrapper-bottom p {
    width: 80% !important;
    margin: auto;
    order: 2;
  }
}
@media screen and (max-width: 750px) {
  .content-wrapper-bottom p {
    width: 100% !important;
    order: 2;
    font-size: 14px !important;
  }
}
.content-wrapper-bottom #block-quote {
  width: 382px;
  display: flex;
  align-items: center;
  border-top: 1px solid #dedfe1;
  position: relative;
}
@media screen and (max-width: 975px) {
  .content-wrapper-bottom #block-quote {
    width: 45% !important;
  }
}
@media screen and (max-width: 800px) {
  .content-wrapper-bottom #block-quote {
    width: 55%;
    margin: auto;
    margin-bottom: 30px;
    margin-top: 30px;
    border: none;
  }
}
@media screen and (max-width: 750px) {
  .content-wrapper-bottom #block-quote {
    width: 100% !important;
    order: 1;
  }
}
@media screen and (max-width: 800px) {
  .content-wrapper-bottom #block-quote .quote {
    width: 80% !important;
    margin: auto !important;
  }
}
@media screen and (max-width: 750px) {
  .content-wrapper-bottom #block-quote .quote {
    margin: auto;
  }
}
@media screen and (max-width: 750px) {
  .content-wrapper-bottom #block-quote .quote img {
    width: 10%;
  }
}
.content-wrapper-bottom #block-quote p {
  font-size: 32px !important;
  text-align: center;
  font-style: italic;
  color: #333d47;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 800px) {
  .content-wrapper-bottom #block-quote p {
    font-size: 24px !important;
  }
}
@media screen and (max-width: 750px) and (orientation: landscape) {
  .content-wrapper-bottom #block-quote p {
    font-size: 20px !important;
  }
}
@media screen and (max-width: 750px) and (orientation: portrait) {
  .content-wrapper-bottom #block-quote p {
    font-size: 16px !important;
  }
}

@media screen and (max-width: 800px) {
  #origine-top-quote1 {
    top: -70px !important;
    left: 90px !important;
  }
}

@media screen and (max-width: 800px) {
  #origine-bottom-quote1 {
    top: 30px !important;
    right: 25px !important;
  }
}

@media screen and (max-width: 800px) {
  #origine-top-quote2 {
    top: -75px !important;
    left: -35px !important;
  }
}

@media screen and (max-width: 800px) {
  #origine-bottom-quote2 {
    top: 0 !important;
    right: 25px !important;
  }
}

@media screen and (max-width: 800px) {
  #origine-top-quote3 {
    top: -30px !important;
    left: 0 !important;
  }
}

@media screen and (max-width: 800px) {
  #origine-bottom-quote3 {
    top: 120px !important;
    right: 105px !important;
  }
}

@media screen and (max-width: 750px) {
  .display-desktop {
    display: none;
  }
}

/* Suppression des marges et padding par défaut : Page de présentation -> Origine */
body.notre-histoire.presentation.bloc {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#a_l_origine.presentation.bloc {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* ============================================ */
/* ====================================
 Page PHILOSOPHIE ========================*/
.content-wrapper-2-columns {
  display: flex;
  flex-direction: column;
  width: 740px;
  margin: 25px auto;
}
@media screen and (max-width: 950px) {
  .content-wrapper-2-columns {
    width: 80% !important;
  }
}
@media screen and (max-width: 750px) {
  .content-wrapper-2-columns {
    width: 80% !important;
    flex-direction: column;
  }
}
.content-wrapper-2-columns .content-column-left {
  width: 100%;
}
@media screen and (max-width: 950px) {
  .content-wrapper-2-columns .content-column-left {
    width: 100% !important;
  }
}
@media screen and (max-width: 750px) {
  .content-wrapper-2-columns .content-column-left {
    width: 100% !important;
  }
}
.content-wrapper-2-columns .content-column-left h1, .content-wrapper-2-columns .content-column-left [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .content-wrapper-2-columns .content-column-left h2 {
  width: 100%;
  text-align: left;
  font-size: 15px;
  color: #333d47;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .content-wrapper-2-columns .content-column-left h1, .content-wrapper-2-columns .content-column-left [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .content-wrapper-2-columns .content-column-left h2 {
    font-size: 15px !important;
  }
}
.content-wrapper-2-columns .content-column-left strong {
  color: #333d47;
}
.content-wrapper-2-columns .content-column-left p {
  width: 100% !important;
  font-size: 16px !important;
}
@media screen and (max-width: 750px) {
  .content-wrapper-2-columns .content-column-left p {
    font-size: 14px !important;
  }
}
.content-wrapper-2-columns .content-column-right {
  width: 100%;
  margin-top: 35px;
}
@media screen and (max-width: 950px) {
  .content-wrapper-2-columns .content-column-right {
    width: 100% !important;
  }
}
@media screen and (max-width: 750px) {
  .content-wrapper-2-columns .content-column-right {
    width: 100% !important;
    margin-top: 40px;
  }
}
.content-wrapper-2-columns .content-column-right h1, .content-wrapper-2-columns .content-column-right [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .content-wrapper-2-columns .content-column-right h2 {
  width: 100%;
  text-align: left;
  font-size: 15px;
  color: #333d47;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .content-wrapper-2-columns .content-column-right h1, .content-wrapper-2-columns .content-column-right [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .content-wrapper-2-columns .content-column-right h2 {
    font-size: 15px !important;
  }
}
.content-wrapper-2-columns .content-column-right strong {
  color: #333d47;
}
.content-wrapper-2-columns .content-column-right p {
  width: 100% !important;
  font-size: 16px !important;
  margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
  .content-wrapper-2-columns .content-column-right p {
    font-size: 14px !important;
  }
}
.content-wrapper-2-columns .sep-title {
  width: 60px;
  border-top: 1px solid #dedfe1;
  margin-top: -18px;
  margin-bottom: 30px;
}

.last-uppercase-content-wrapper {
  margin: 20px auto;
}
@media screen and (max-width: 750px) {
  .last-uppercase-content-wrapper {
    width: 80% !important;
  }
}
.last-uppercase-content-wrapper p {
  font-size: 16px !important;
  font-weight: bold;
  color: #333d47;
  text-align: center !important;
  text-transform: uppercase;
}
@media screen and (max-width: 750px) {
  .last-uppercase-content-wrapper p {
    font-size: 13px !important;
  }
}

@media screen and (max-width: 800px) {
  #philosophie-top-quote1 {
    top: -70px !important;
    left: 90px !important;
  }
}

@media screen and (max-width: 800px) {
  #philosophie-bottom-quote1 {
    top: -35px !important;
    right: 75px !important;
  }
}

@media screen and (max-width: 800px) {
  #philosophie-top-quote2 {
    top: -75px !important;
    left: 0 !important;
  }
}

@media screen and (max-width: 800px) {
  #philosophie-bottom-quote2 {
    top: 0 !important;
    right: 165px !important;
  }
}

@media screen and (max-width: 800px) {
  #philosophie-top-quote3 {
    top: -70px !important;
    left: 155px !important;
  }
}

@media screen and (max-width: 800px) {
  #philosophie-bottom-quote3 {
    top: -20px !important;
    right: 175px !important;
  }
}

/* Suppression des marges et padding par défaut : Page de présentation -> La Science Cellulaire */
#science_de_la_jeunesse.presentation.bloc {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* ============================================ */
/* ====================================
 Page EAU FORMULATION UNIQUE ========================*/
.quote-video p {
  margin: 40px auto;
  font-size: 24px !important;
  font-style: italic;
  color: #4f4f4f;
  text-align: center !important;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 750px) and (orientation: portrait) {
  .quote-video p {
    font-size: 16px !important;
  }
}
@media screen and (max-width: 750px) and (orientation: landscape) {
  .quote-video p {
    font-size: 20px !important;
  }
}

.video-button-wrapper {
  width: 200px;
  margin: auto;
  margin-top: 5px;
}
.video-button-wrapper .button.button-first {
  text-align: center !important;
  font-size: 16px !important;
}
@media screen and (max-width: 750px) {
  .video-button-wrapper .button.button-first {
    font-size: 13px !important;
  }
}

.quote-video {
  position: relative;
  margin-top: 10px;
}
@media screen and (max-width: 750px) {
  .quote-video .display-desktop {
    display: none !important;
  }
}

.presentation-video-eau-wrapper {
  width: 785px;
  margin: auto;
  height: auto;
}
.presentation-video-eau-wrapper .video {
  width: 100%;
  height: 440px;
}
@media screen and (max-width: 750px) {
  .presentation-video-eau-wrapper {
    width: 90% !important;
  }
}

.video-eau {
  width: 785px;
  height: 440px;
}
@media screen and (max-width: 700px) and (orientation: portrait) {
  .video-eau {
    position: static !important;
    width: 100% !important;
    height: 185px !important;
    margin: auto !important;
  }
}
@media screen and (max-width: 700px) and (orientation: landscape) {
  .video-eau {
    position: static !important;
    width: 100% !important;
    height: 343px !important;
    margin: auto !important;
  }
}

.video-wrapper {
  height: 576px !important;
}

@media screen and (max-width: 800px) {
  #eau-top-quote1 {
    top: -75px !important;
    left: 10px !important;
  }
}

@media screen and (max-width: 800px) {
  #eau-bottom-quote1 {
    top: -35px !important;
    right: 30px !important;
  }
}

@media screen and (max-width: 800px) {
  #eau-top-quote2 {
    top: 15px !important;
    left: 100px !important;
  }
}

@media screen and (max-width: 800px) {
  #eau-bottom-quote2 {
    top: 85px !important;
    right: 30px !important;
  }
}

/* Suppression des marges et padding par défaut : Page de présentation -> Eau unique */
#eau_de_formulation_unique.presentation.bloc {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* ============================================ */
/* ====================================
 Page LA PEAU EST NOTRE METIER ========================*/
.presentation-header {
  margin-top: 40px;
  margin-bottom: -20px;
  text-align: center;
}
.presentation-header h1, .presentation-header [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .presentation-header h2 {
  text-align: center;
  color: #333d47;
  font-weight: bold;
}
.presentation-header p {
  width: 935px !important;
  text-align: center;
  margin-top: -10px !important;
  line-height: 18px;
}
@media screen and (max-width: 980px) {
  .presentation-header p {
    width: 100% !important;
    padding: 0 10px 0 10px !important;
  }
}
@media screen and (max-width: 750px) {
  .presentation-header p {
    font-size: 14px !important;
    text-align: left !important;
    width: 100%;
  }
}
@media screen and (max-width: 750px) and (orientation: landscape) {
  .presentation-header p {
    font-size: 12px !important;
    text-align: left !important;
    width: 100%;
  }
}

.image-background-01 {
  background: url("/media/wysiwyg/peau/peau-metier-01.jpg");
  width: 1440px;
  height: 450px;
  margin: auto;
}
@media screen and (max-width: 1280px) {
  .image-background-01 {
    background: url("/media/wysiwyg/peau/peau-metier-01-1280.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
  }
}
@media screen and (max-width: 980px) {
  .image-background-01 {
    background: url("/media/wysiwyg/peau/peau-metier-01-980.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 307px;
  }
}
@media screen and (max-width: 768px) {
  .image-background-01 {
    background: url("/media/wysiwyg/peau/peau-metier-01-768.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 241px;
  }
}
@media screen and (max-width: 450px) and (orientation: portrait) {
  .image-background-01 {
    background: url("/media/wysiwyg/peau/peau-metier-01-450.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 113px;
  }
}
.image-background-01 .block-text {
  width: 470px;
  height: 195px;
  float: right;
  margin-right: 160px;
  margin-top: 130px;
  border-left: 1px solid #81736d;
  padding-left: 10px;
}
@media screen and (max-width: 1280px) {
  .image-background-01 .block-text {
    margin-right: 40px;
  }
}
@media screen and (max-width: 980px) {
  .image-background-01 .block-text {
    width: 40%;
    margin-right: 5%;
    margin-top: 5%;
  }
}
@media screen and (max-width: 768px) {
  .image-background-01 .block-text {
    width: 40%;
    height: auto;
    margin-right: 5%;
    margin-top: 2%;
  }
}
@media screen and (max-width: 450px) and (orientation: portrait) {
  .image-background-01 .block-text {
    width: 90%;
    margin-right: 7%;
    margin-top: 35%;
    border-left: none;
    border-bottom: none !important;
    padding-bottom: 10px;
    float: left;
  }
}
@media screen and (max-width: 750px) and (orientation: landscape) {
  .image-background-01 .block-text {
    width: 40%;
    height: auto;
    margin-right: 5%;
    margin-top: 2%;
    border: none;
  }
}
.image-background-01 .block-text strong {
  color: #151515;
}
.image-background-01 .block-text h2, .image-background-01 .block-text h3, .image-background-01 .block-text p {
  color: #505050;
}
.image-background-01 .block-text h2 {
  font-size: 70px;
  margin-bottom: 0 !important;
  margin-top: -20px;
}
@media screen and (max-width: 768px) {
  .image-background-01 .block-text h2 {
    font-size: 30px !important;
    margin-top: 0 !important;
  }
}
.image-background-01 .block-text h3, .image-background-01 .block-text p {
  font-size: 15px !important;
}
@media screen and (max-width: 1440px) {
  .image-background-01 .block-text h3, .image-background-01 .block-text p {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 980px) {
  .image-background-01 .block-text h3, .image-background-01 .block-text p {
    font-size: 11px !important;
  }
}
.image-background-01 .block-text h3 {
  color: #81736d;
  text-transform: uppercase;
  margin-bottom: 0 !important;
  margin-top: -15px;
}
@media screen and (max-width: 768px) {
  .image-background-01 .block-text h3 {
    margin-top: 0 !important;
  }
}

.image-background-02 {
  background: url("/media/wysiwyg/peau/peau-metier-02.jpg");
  width: 1440px;
  height: 450px;
  margin: auto;
  margin-top: -30px;
}
@media screen and (max-width: 1280px) {
  .image-background-02 {
    background: url("/media/wysiwyg/peau/peau-metier-02-1280.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
  }
}
@media screen and (max-width: 980px) {
  .image-background-02 {
    background: url("/media/wysiwyg/peau/peau-metier-02-980.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 307px;
  }
}
@media screen and (max-width: 768px) {
  .image-background-02 {
    background: url("/media/wysiwyg/peau/peau-metier-02-768.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 241px;
  }
}
@media screen and (max-width: 450px) and (orientation: portrait) {
  .image-background-02 {
    background: url("/media/wysiwyg/peau/peau-metier-02-450.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 113px;
  }
}
.image-background-02 .block-text {
  width: 470px;
  height: 135px;
  float: left;
  margin-left: 160px;
  margin-top: 170px;
  border-left: 1px solid #81736d;
  padding-left: 10px;
}
@media screen and (max-width: 980px) {
  .image-background-02 .block-text {
    width: 50%;
    margin-left: 10%;
    margin-top: 10%;
  }
}
@media screen and (max-width: 768px) {
  .image-background-02 .block-text {
    width: 50%;
    height: auto;
    margin-left: 5%;
    margin-top: 15%;
  }
}
@media screen and (max-width: 450px) and (orientation: portrait) {
  .image-background-02 .block-text {
    width: 90%;
    margin-right: 10%;
    margin-top: 35%;
    border-left: none;
    border-bottom: none !important;
    padding-bottom: 10px;
    float: right;
  }
}
@media screen and (max-width: 750px) and (orientation: landscape) {
  .image-background-02 .block-text {
    width: 50%;
    height: auto;
    margin-left: 5%;
    margin-top: 15%;
    border: none;
  }
}
.image-background-02 strong {
  color: #151515;
}
.image-background-02 h2, .image-background-02 h3, .image-background-02 p {
  color: #505050;
}
.image-background-02 h2 {
  font-size: 70px;
  margin-bottom: 0 !important;
  margin-top: -20px;
}
@media screen and (max-width: 768px) {
  .image-background-02 h2 {
    font-size: 30px !important;
    margin-top: 0 !important;
  }
}
.image-background-02 h3, .image-background-02 p {
  font-size: 15px !important;
}
@media screen and (max-width: 1440px) {
  .image-background-02 h3, .image-background-02 p {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 980px) {
  .image-background-02 h3, .image-background-02 p {
    font-size: 11px !important;
  }
}
.image-background-02 h3 {
  color: #81736d;
  text-transform: uppercase;
  margin-bottom: 0 !important;
  margin-top: -15px;
}
@media screen and (max-width: 768px) {
  .image-background-02 h3 {
    margin-top: 0 !important;
  }
}

.image-background-03 {
  background: url("/media/wysiwyg/peau/peau-metier-03.jpg");
  background-repeat: no-repeat;
  width: 1440px;
  height: 450px;
  margin: auto;
  margin-top: -30px;
}
@media screen and (max-width: 1280px) {
  .image-background-03 {
    background: url("/media/wysiwyg/peau/peau-metier-03-1280.jpg");
    width: 100%;
    height: 400px;
  }
}
@media screen and (max-width: 980px) {
  .image-background-03 {
    background: url("/media/wysiwyg/peau/peau-metier-03-980.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 307px;
  }
}
@media screen and (max-width: 768px) {
  .image-background-03 {
    background: url("/media/wysiwyg/peau/peau-metier-03-768.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 241px;
  }
}
@media screen and (max-width: 450px) and (orientation: portrait) {
  .image-background-03 {
    background: url("/media/wysiwyg/peau/peau-metier-03-450.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 113px;
  }
}
.image-background-03 .block-text {
  width: 635px;
  height: 270px;
  float: right;
  margin-right: 75px;
  margin-top: 120px;
  border-left: 1px solid #81736d;
  padding-left: 10px;
}
@media screen and (max-width: 980px) {
  .image-background-03 .block-text {
    width: 50%;
    margin-right: 5%;
    margin-top: 2%;
  }
}
@media screen and (max-width: 768px) {
  .image-background-03 .block-text {
    width: 50%;
    height: auto;
    margin-right: 5%;
    margin-top: 3%;
  }
}
@media screen and (max-width: 750px) and (orientation: portrait) {
  .image-background-03 .block-text {
    width: 90%;
    margin-right: 7%;
    margin-top: 35%;
    border-left: none;
    border-bottom: none !important;
    padding-bottom: 10px;
    float: left;
  }
}
@media screen and (max-width: 750px) and (orientation: landscape) {
  .image-background-03 .block-text {
    width: 70%;
    margin-right: 5%;
    margin-top: 6%;
    border: none;
  }
}
.image-background-03 .block-text strong {
  color: #151515;
}
.image-background-03 .block-text h2, .image-background-03 .block-text h3, .image-background-03 .block-text p {
  color: #505050;
}
.image-background-03 .block-text h2 {
  font-size: 70px;
  margin-bottom: 0 !important;
  margin-top: -20px;
}
@media screen and (max-width: 768px) {
  .image-background-03 .block-text h2 {
    font-size: 30px !important;
    margin-top: 0 !important;
  }
}
.image-background-03 .block-text h3, .image-background-03 .block-text p {
  font-size: 15px !important;
}
@media screen and (max-width: 1440px) {
  .image-background-03 .block-text h3, .image-background-03 .block-text p {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 980px) {
  .image-background-03 .block-text h3, .image-background-03 .block-text p {
    font-size: 11px !important;
  }
}
@media screen and (max-width: 768px) {
  .image-background-03 .block-text h3, .image-background-03 .block-text p {
    font-size: 11px !important;
  }
}
.image-background-03 .block-text h3 {
  color: #81736d;
  text-transform: uppercase;
  margin-bottom: 0 !important;
  margin-top: -15px;
}
@media screen and (max-width: 768px) {
  .image-background-03 .block-text h3 {
    margin-top: 0 !important;
  }
}

.image-background-04 {
  background: url("/media/wysiwyg/peau/peau-metier-04.jpg");
  width: 1440px;
  height: 450px;
  margin: auto;
  margin-top: -30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1280px) {
  .image-background-04 {
    background: url("/media/wysiwyg/peau/peau-metier-04-1280.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
  }
}
@media screen and (max-width: 980px) {
  .image-background-04 {
    background: url("/media/wysiwyg/peau/peau-metier-04-980.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 307px;
  }
}
@media screen and (max-width: 768px) {
  .image-background-04 {
    background: url("/media/wysiwyg/peau/peau-metier-04-768.jpg");
    background-repeat: no-repeat;
    width: 100%;
  }
}
@media screen and (max-width: 450px) and (orientation: portrait) {
  .image-background-04 {
    background: url("/media/wysiwyg/peau/peau-metier-04-450.jpg");
    background-repeat: no-repeat;
    width: 100%;
  }
}
.image-background-04 .block-text {
  width: 470px;
  height: 175px;
  float: left;
  margin-left: 160px;
  margin-top: 170px;
  border-left: 1px solid #81736d;
  padding-left: 10px;
}
@media screen and (max-width: 980px) {
  .image-background-04 .block-text {
    width: 50%;
    margin-right: 10%;
    margin-top: 10%;
  }
}
@media screen and (max-width: 768px) {
  .image-background-04 .block-text {
    width: 50%;
    height: auto;
    margin-left: 4%;
    margin-top: 8%;
  }
}
@media screen and (max-width: 450px) and (orientation: portrait) {
  .image-background-04 .block-text {
    width: 90%;
    margin-right: 10%;
    margin-top: 45%;
    border-left: none;
    float: right;
  }
}
@media screen and (max-width: 750px) and (orientation: landscape) {
  .image-background-04 .block-text {
    width: 50%;
    height: auto;
    margin-left: 4%;
    margin-top: 8%;
    border: none;
  }
}
.image-background-04 strong {
  color: #151515;
}
.image-background-04 h2, .image-background-04 h3, .image-background-04 p {
  color: #505050;
}
.image-background-04 h2 {
  font-size: 70px;
  margin-bottom: 0 !important;
  margin-top: -20px;
}
@media screen and (max-width: 768px) {
  .image-background-04 h2 {
    font-size: 30px !important;
    margin-top: 0 !important;
  }
}
.image-background-04 h3, .image-background-04 p {
  font-size: 15px !important;
}
@media screen and (max-width: 1440px) {
  .image-background-04 h3, .image-background-04 p {
    font-size: 11px !important;
  }
}
@media screen and (max-width: 980px) {
  .image-background-04 h3, .image-background-04 p {
    font-size: 11px !important;
  }
}
.image-background-04 h3 {
  color: #81736d;
  text-transform: uppercase;
  margin-bottom: 0 !important;
  margin-top: -15px;
}
@media screen and (max-width: 768px) {
  .image-background-04 h3 {
    margin-top: 0 !important;
  }
}

/* Suppression des marges et padding par défaut : Page de présentation -> La peau est notre métier */
#la_peau.presentation.bloc {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* ============================================ */
/* ====================================
 Page SCIENCE ========================*/
.content-science-wrapper {
  width: 740px;
  margin: auto;
}
@media screen and (max-width: 770px) {
  .content-science-wrapper {
    width: 90%;
  }
}
.content-science-wrapper h1, .content-science-wrapper [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .content-science-wrapper h2 {
  color: #333d47;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .content-science-wrapper h1, .content-science-wrapper [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .content-science-wrapper h2 {
    font-size: 14px !important;
  }
}
.content-science-wrapper h4 {
  margin-top: 25px;
  margin-bottom: 0;
  color: #333d47;
  font-weight: bold !important;
  font-size: 12px;
}
@media screen and (max-width: 750px) {
  .content-science-wrapper h4 {
    font-size: 14px !important;
    margin-top: 15px !important;
  }
}
.content-science-wrapper h5 {
  color: #333d47;
  font-size: 18px !important;
  text-transform: none;
  font-weight: normal !important;
}
@media screen and (max-width: 750px) {
  .content-science-wrapper h5 {
    font-size: 14px !important;
    margin-top: 5px;
  }
}
.content-science-wrapper p {
  font-size: 16px !important;
}
@media screen and (max-width: 750px) {
  .content-science-wrapper p {
    font-size: 14px !important;
  }
}
.content-science-wrapper strong {
  color: #333d47;
}

#brevet-wrapper-global {
  width: 1285px;
  margin: 0 auto 0 auto;
  border-top: 1px solid #dedfe1;
  padding-top: 30px;
  border-bottom: 1px solid #dedfe1;
  padding-bottom: 30px;
}
@media screen and (max-width: 1280px) {
  #brevet-wrapper-global {
    width: 100%;
    padding: 30px;
  }
}
@media screen and (max-width: 800px) {
  #brevet-wrapper-global {
    margin: 20px auto 0px auto;
  }
}
#brevet-wrapper-global h1, #brevet-wrapper-global [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head #brevet-wrapper-global h2 {
  color: #333d47;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #brevet-wrapper-global h1, #brevet-wrapper-global [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head #brevet-wrapper-global h2 {
    font-size: 16px !important;
  }
}
#brevet-wrapper-global .wrapper-top {
  display: flex;
  justify-content: space-between;
  margin-top: -15px;
}
@media screen and (max-width: 1025px) {
  #brevet-wrapper-global .wrapper-top {
    flex-direction: column;
  }
}
#brevet-wrapper-global .wrapper-top .block-content {
  width: 390px;
}
@media screen and (max-width: 1025px) {
  #brevet-wrapper-global .wrapper-top .block-content {
    width: 60%;
    margin: auto;
  }
}
#brevet-wrapper-global .wrapper-top .block-content .block-content-title {
  display: flex;
  height: 100px;
}
@media screen and (max-width: 750px) {
  #brevet-wrapper-global .wrapper-top .block-content .block-content-title {
    margin-top: 20px;
    height: 80px;
  }
}
#brevet-wrapper-global .wrapper-top .block-content .block-content-title .number {
  font-size: 85px;
  color: #929495;
}
@media screen and (max-width: 750px) {
  #brevet-wrapper-global .wrapper-top .block-content .block-content-title .number {
    font-size: 65px !important;
  }
}
#brevet-wrapper-global .wrapper-top .block-content .block-content-title h2 {
  font-size: 20px;
  color: #abacac;
  font-weight: bold;
  align-self: flex-end;
}
@media screen and (max-width: 750px) {
  #brevet-wrapper-global .wrapper-top .block-content .block-content-title h2 {
    font-size: 12px !important;
    align-self: center;
  }
}
#brevet-wrapper-global .wrapper-top .block-content .block-content-title span {
  font-weight: normal;
}
#brevet-wrapper-global .wrapper-top .block-content .block-content-text {
  font-size: 12px;
  background-image: -moz-linear-gradient(left, #f4f3f0, #e9e9e7);
  background-image: -webkit-linear-gradient(left, #f4f3f0, #e9e9e7);
  background-image: -o-linear-gradient(left, #f4f3f0, #e9e9e7);
  background-image: linear-gradient(to right, #f4f3f0, #e9e9e7);
  border: 5px solid #e0dfdd;
  padding: 2px 15px;
  height: 115px;
  line-height: 14px;
}
@media screen and (max-width: 750px) {
  #brevet-wrapper-global .wrapper-top .block-content .block-content-text {
    height: 235px;
  }
}
@media screen and (max-width: 750px) and (orientation: landscape) {
  #brevet-wrapper-global .wrapper-top .block-content .block-content-text {
    height: 125px;
  }
}
#brevet-wrapper-global .wrapper-top .block-content .block-content-text h3 {
  font-size: 17px;
  font-weight: bold;
  color: #333d47;
}
@media screen and (max-width: 750px) {
  #brevet-wrapper-global .wrapper-top .block-content .block-content-text h3 {
    font-size: 12px !important;
    text-align: center;
  }
}
#brevet-wrapper-global .wrapper-top .block-content .block-content-text p {
  font-size: 12px;
  margin-top: -10px;
}
#brevet-wrapper-global .wrapper-bottom {
  display: flex;
  justify-content: space-around;
  margin-top: 15px;
}
@media screen and (max-width: 1025px) {
  #brevet-wrapper-global .wrapper-bottom {
    flex-direction: column;
    margin-top: 0 !important;
  }
}
#brevet-wrapper-global .wrapper-bottom .block-content {
  width: 395px;
  margin-left: 60px !important;
}
@media screen and (max-width: 1025px) {
  #brevet-wrapper-global .wrapper-bottom .block-content {
    width: 60%;
    margin: auto !important;
  }
}
#brevet-wrapper-global .wrapper-bottom .block-content .block-content-title {
  display: flex;
  height: 100px;
}
@media screen and (max-width: 750px) {
  #brevet-wrapper-global .wrapper-bottom .block-content .block-content-title {
    margin-top: 20px;
    height: 80px;
  }
}
#brevet-wrapper-global .wrapper-bottom .block-content .block-content-title .number {
  font-size: 85px;
  color: #929495;
}
@media screen and (max-width: 750px) {
  #brevet-wrapper-global .wrapper-bottom .block-content .block-content-title .number {
    font-size: 65px !important;
  }
}
#brevet-wrapper-global .wrapper-bottom .block-content .block-content-title h2 {
  font-size: 20px;
  color: #abacac;
  font-weight: bold;
  align-self: flex-end;
}
@media screen and (max-width: 750px) {
  #brevet-wrapper-global .wrapper-bottom .block-content .block-content-title h2 {
    font-size: 12px !important;
    align-self: center;
  }
}
#brevet-wrapper-global .wrapper-bottom .block-content .block-content-text {
  font-size: 12px;
  background-image: -moz-linear-gradient(left, #f4f3f0, #e9e9e7);
  background-image: -webkit-linear-gradient(left, #f4f3f0, #e9e9e7);
  background-image: -o-linear-gradient(left, #f4f3f0, #e9e9e7);
  background-image: linear-gradient(to right, #f4f3f0, #e9e9e7);
  border: 5px solid #e0dfdd;
  padding: 3px 15px;
  height: 260px;
  line-height: 14px;
}
@media screen and (max-width: 1025px) {
  #brevet-wrapper-global .wrapper-bottom .block-content .block-content-text {
    height: 115px;
  }
}
@media screen and (max-width: 750px) {
  #brevet-wrapper-global .wrapper-bottom .block-content .block-content-text {
    height: 235px;
  }
}
@media screen and (max-width: 750px) and (orientation: landscape) {
  #brevet-wrapper-global .wrapper-bottom .block-content .block-content-text {
    height: 125px;
  }
}
#brevet-wrapper-global .wrapper-bottom .block-content .block-content-text h3 {
  font-size: 17px;
  font-weight: bold;
  color: #333d47;
}
@media screen and (max-width: 750px) {
  #brevet-wrapper-global .wrapper-bottom .block-content .block-content-text h3 {
    font-size: 12px;
    text-align: center;
  }
}
#brevet-wrapper-global .wrapper-bottom .block-content .block-content-text p {
  font-size: 12px;
  margin-top: -10px;
}
#brevet-wrapper-global .wrapper-bottom .block-content-last {
  width: 640px;
  margin-right: 65px;
}
@media screen and (max-width: 1025px) {
  #brevet-wrapper-global .wrapper-bottom .block-content-last {
    width: 70%;
    margin: 20px auto;
  }
}
#brevet-wrapper-global .wrapper-bottom .block-content-last .block-content-title {
  display: flex;
  height: 100px;
}
#brevet-wrapper-global .wrapper-bottom .block-content-last .block-content-title .number {
  font-size: 85px;
  color: #f58221;
}
@media screen and (max-width: 750px) {
  #brevet-wrapper-global .wrapper-bottom .block-content-last .block-content-title .number {
    font-size: 65px !important;
    margin-top: 20px;
  }
}
#brevet-wrapper-global .wrapper-bottom .block-content-last .block-content-title h2 {
  font-size: 20px;
  color: #f58221;
  font-weight: bold;
  align-self: flex-end;
}
@media screen and (max-width: 750px) {
  #brevet-wrapper-global .wrapper-bottom .block-content-last .block-content-title h2 {
    font-size: 11px !important;
    align-self: flex-end;
  }
}
#brevet-wrapper-global .wrapper-bottom .block-content-last .block-content-title span {
  font-weight: normal;
}
#brevet-wrapper-global .wrapper-bottom .block-content-last .block-content-text {
  font-size: 12px;
  background-image: -moz-linear-gradient(left, #f58221, #c17744);
  background-image: -webkit-linear-gradient(left, #f58221, #c17744);
  background-image: -o-linear-gradient(left, #f58221, #c17744);
  background-image: linear-gradient(to right, #f58221, #c17744);
  border: 5px solid #de7227;
  padding: 3px 15px;
  height: 260px;
  line-height: 14px;
  position: relative;
}
@media screen and (max-width: 1025px) {
  #brevet-wrapper-global .wrapper-bottom .block-content-last .block-content-text {
    height: 330px;
  }
}
@media screen and (max-width: 750px) {
  #brevet-wrapper-global .wrapper-bottom .block-content-last .block-content-text {
    height: 370px;
  }
}
@media screen and (max-width: 750px) and (orientation: landscape) {
  #brevet-wrapper-global .wrapper-bottom .block-content-last .block-content-text {
    height: 230px;
  }
}
#brevet-wrapper-global .wrapper-bottom .block-content-last .block-content-text h3 {
  font-size: 17px;
  font-weight: bold;
  color: #f8e1d1;
  margin-top: 10px;
}
@media screen and (max-width: 1025px) {
  #brevet-wrapper-global .wrapper-bottom .block-content-last .block-content-text h3 {
    font-size: 12px;
  }
}
#brevet-wrapper-global .wrapper-bottom .block-content-last .block-content-text p {
  width: 345px;
  color: #f8e1d1;
  font-size: 12px;
  margin-top: -10px;
}
@media screen and (max-width: 1025px) {
  #brevet-wrapper-global .wrapper-bottom .block-content-last .block-content-text p {
    width: 40%;
  }
}
@media screen and (max-width: 1025px) and (max-width: 750px) {
  #brevet-wrapper-global .wrapper-bottom .block-content-last .block-content-text p {
    width: 100%;
  }
}

#brevet-wrapper-global .wrapper-bottom .block-content-last .block-content-text img {
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 750px) {
  #brevet-wrapper-global .wrapper-bottom .block-content-last .block-content-text img {
    display: none;
  }
}

/* Suppression des marges et padding par défaut : Page de présentation -> La science de la jeunesse */
#science_de_la_jeunesse.presentation.bloc {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* ============================================ */
/* ====================================
 Page BRONZAGE ========================*/
.presentation-header {
  margin-top: 20px;
  margin-bottom: 5px;
  text-align: center;
}
.presentation-header h1, .presentation-header [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .presentation-header h2 {
  text-align: center;
  color: #333d47;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .presentation-header h1, .presentation-header [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .presentation-header h2 {
    font-size: 25px !important;
  }
}
@media screen and (max-width: 750px) {
  .presentation-header h1, .presentation-header [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .presentation-header h2 {
    font-size: 20px !important;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.presentation-header h2 {
  margin-top: -20px;
  margin-bottom: 30px;
  color: #333d47;
  font-weight: bold !important;
}
@media screen and (max-width: 800px) {
  .presentation-header h2 {
    font-size: 25px !important;
  }
}
@media screen and (max-width: 750px) {
  .presentation-header h2 {
    font-size: 16px !important;
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.presentation-header p {
  width: 935px !important;
  text-align: center !important;
  margin-top: 10px;
}
@media screen and (max-width: 980px) {
  .presentation-header p {
    width: 100% !important;
    padding: 0 10px 0 10px !important;
  }
}
@media screen and (max-width: 750px) and (orientation: landscape) {
  .presentation-header p {
    text-align: left !important;
  }
}
@media screen and (max-width: 450px) and (orientation: portrait) {
  .presentation-header p {
    font-size: 12px !important;
    text-align: left !important;
  }
}

.background-bronzage-01 {
  background: url("/media/wysiwyg/bronzage/bronzage-01.jpg");
  width: 1440px;
  height: 412px;
  margin: -20px auto;
}
@media screen and (max-width: 1280px) {
  .background-bronzage-01 {
    background: url("/media/wysiwyg/bronzage/bronzage-01-1280.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 366px;
  }
}
@media screen and (max-width: 1050px) and (orientation: landscape) {
  .background-bronzage-01 {
    background: url("/media/wysiwyg/bronzage/bronzage-01-1024.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 293px;
  }
}
@media screen and (max-width: 980px) {
  .background-bronzage-01 {
    background: url("/media/wysiwyg/bronzage/bronzage-01-980.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 280px;
  }
}
@media screen and (max-width: 768px) {
  .background-bronzage-01 {
    background: url("/media/wysiwyg/bronzage/bronzage-01-768.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 219px;
  }
}
@media screen and (max-width: 450px) and (orientation: portrait) {
  .background-bronzage-01 {
    background: url("/media/wysiwyg/bronzage/bronzage-01-450.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 128px;
  }
}
.background-bronzage-01 .block-text {
  width: 470px;
  float: right;
  margin-right: 160px;
  margin-top: 150px;
  border-left: 1px solid #db5f14;
  padding-left: 10px;
}
@media screen and (max-width: 1280px) {
  .background-bronzage-01 .block-text {
    margin-right: 100px;
    margin-top: 130px;
  }
}
@media screen and (max-width: 980px) {
  .background-bronzage-01 .block-text {
    width: 40%;
    margin-right: 6%;
    margin-top: 8%;
  }
}
@media screen and (max-width: 768px) {
  .background-bronzage-01 .block-text {
    width: 40%;
    margin-right: 9%;
    margin-top: 5%;
  }
}
@media screen and (max-width: 1100px) and (orientation: landscape) {
  .background-bronzage-01 .block-text {
    margin-right: 0;
    margin-top: 70px;
  }
}
@media screen and (max-width: 750px) {
  .background-bronzage-01 .block-text {
    width: 90%;
    margin-right: 7%;
    margin-top: 45%;
    border: none;
    padding-bottom: 10px;
  }
}
.background-bronzage-01 .block-text p {
  color: #505050;
}
.background-bronzage-01 .block-text h2, .background-bronzage-01 .block-text h3 {
  font-size: 70px;
  margin-bottom: 0 !important;
  color: #db5f14;
}
@media screen and (max-width: 768px) {
  .background-bronzage-01 .block-text h2, .background-bronzage-01 .block-text h3 {
    font-size: 30px !important;
  }
}
.background-bronzage-01 .block-text h3, .background-bronzage-01 .block-text p {
  font-size: 15px !important;
}
@media screen and (max-width: 1440px) {
  .background-bronzage-01 .block-text h3, .background-bronzage-01 .block-text p {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 980px) {
  .background-bronzage-01 .block-text h3, .background-bronzage-01 .block-text p {
    font-size: 12px !important;
  }
}
.background-bronzage-01 .block-text h2 {
  margin-top: -20px;
}
.background-bronzage-01 .block-text h3 {
  text-transform: uppercase;
  margin-bottom: 0 !important;
}

.background-bronzage-02 {
  background: url("/media/wysiwyg/bronzage/bronzage-02.jpg");
  width: 1440px;
  height: 423px;
  margin: auto;
}
@media screen and (max-width: 1280px) {
  .background-bronzage-02 {
    background: url("/media/wysiwyg/bronzage/bronzage-02-1280.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 376px;
  }
}
@media screen and (max-width: 1050px) and (orientation: landscape) {
  .background-bronzage-02 {
    background: url("/media/wysiwyg/bronzage/bronzage-02-1024.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 293px;
  }
}
@media screen and (max-width: 980px) {
  .background-bronzage-02 {
    background: url("/media/wysiwyg/bronzage/bronzage-02-980.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 301px;
  }
}
@media screen and (max-width: 768px) {
  .background-bronzage-02 {
    background: url("/media/wysiwyg/bronzage/bronzage-02-768.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 226px;
  }
}
@media screen and (max-width: 450px) and (orientation: portrait) {
  .background-bronzage-02 {
    background: url("/media/wysiwyg/bronzage/bronzage-02-450.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 132px;
  }
}
.background-bronzage-02 .block-text {
  width: 470px;
  float: left;
  margin-left: 170px;
  margin-top: 80px;
  border-left: 1px solid #db5f14;
  padding-left: 10px;
}
@media screen and (max-width: 980px) {
  .background-bronzage-02 .block-text {
    width: 50%;
    margin-left: 10%;
    margin-top: 3%;
  }
}
@media screen and (max-width: 768px) {
  .background-bronzage-02 .block-text {
    width: 50%;
    margin-left: 5%;
    margin-top: 4%;
  }
}
@media screen and (max-width: 1100px) and (orientation: landscape) {
  .background-bronzage-02 .block-text {
    margin-left: 90px;
    margin-top: 25px;
  }
}
@media screen and (max-width: 750px) {
  .background-bronzage-02 .block-text {
    width: 90%;
    margin-left: 2%;
    margin-top: 45%;
    border: none;
    padding-bottom: 10px;
  }
}
.background-bronzage-02 p {
  color: #505050;
}
.background-bronzage-02 h2, .background-bronzage-02 h3 {
  font-size: 70px;
  margin-bottom: 0 !important;
  color: #db5f14;
}
@media screen and (max-width: 768px) {
  .background-bronzage-02 h2, .background-bronzage-02 h3 {
    font-size: 30px !important;
  }
}
.background-bronzage-02 h3, .background-bronzage-02 p {
  font-size: 15px !important;
}
@media screen and (max-width: 1440px) {
  .background-bronzage-02 h3, .background-bronzage-02 p {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 980px) {
  .background-bronzage-02 h3, .background-bronzage-02 p {
    font-size: 12px !important;
  }
}
.background-bronzage-02 h2 {
  margin-top: -20px;
}
.background-bronzage-02 h3 {
  text-transform: uppercase;
  margin-bottom: 0 !important;
}

.background-bronzage-03 {
  background: url("/media/wysiwyg/bronzage/bronzage-03.jpg");
  background-repeat: no-repeat;
  width: 1440px;
  height: 438px;
  margin: auto;
}
@media screen and (max-width: 1280px) {
  .background-bronzage-03 {
    background: url("/media/wysiwyg/bronzage/bronzage-03-1280.jpg");
    width: 100%;
    height: 389px;
  }
}
@media screen and (max-width: 1050px) and (orientation: landscape) {
  .background-bronzage-03 {
    background: url("/media/wysiwyg/bronzage/bronzage-03-1024.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 311px;
  }
}
@media screen and (max-width: 980px) {
  .background-bronzage-03 {
    background: url("/media/wysiwyg/bronzage/bronzage-03-980.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 298px;
  }
}
@media screen and (max-width: 768px) {
  .background-bronzage-03 {
    background: url("/media/wysiwyg/bronzage/bronzage-03-768.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 234px;
  }
}
@media screen and (max-width: 450px) and (orientation: portrait) {
  .background-bronzage-03 {
    background: url("/media/wysiwyg/bronzage/bronzage-03-450.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 137px;
  }
}
.background-bronzage-03 .block-text {
  width: 470px;
  float: right;
  margin-right: 165px;
  margin-top: 130px;
  border-left: 1px solid #db5f14;
  padding-left: 10px;
}
@media screen and (max-width: 1285px) {
  .background-bronzage-03 .block-text {
    margin-right: 65px;
    margin-top: 100px;
  }
}
@media screen and (max-width: 1285px) and (orientation: landscape) {
  .background-bronzage-03 .block-text {
    margin-right: 75px;
    margin-top: 20px;
    width: 350px;
  }
}
@media screen and (max-width: 980px) {
  .background-bronzage-03 .block-text {
    width: 50%;
    margin-right: -6%;
    margin-top: 8%;
  }
}
@media screen and (max-width: 768px) {
  .background-bronzage-03 .block-text {
    width: 50%;
    margin-right: -4%;
    margin-top: 9%;
  }
}
@media screen and (max-width: 750px) and (orientation: landscape) {
  .background-bronzage-03 .block-text {
    width: 40%;
    margin-right: 1%;
    margin-top: 4%;
    border: none;
  }
}
@media screen and (max-width: 750px) {
  .background-bronzage-03 .block-text {
    width: 90%;
    margin-right: 7%;
    margin-top: 45%;
    border: none;
    padding-bottom: 10px;
  }
}
.background-bronzage-03 .block-text p {
  color: #505050;
}
.background-bronzage-03 .block-text h2, .background-bronzage-03 .block-text h3 {
  font-size: 70px;
  margin-bottom: 0 !important;
  color: #db5f14;
}
@media screen and (max-width: 768px) {
  .background-bronzage-03 .block-text h2, .background-bronzage-03 .block-text h3 {
    font-size: 30px !important;
  }
}
.background-bronzage-03 .block-text h3, .background-bronzage-03 .block-text p {
  font-size: 15px !important;
}
@media screen and (max-width: 1440px) {
  .background-bronzage-03 .block-text h3, .background-bronzage-03 .block-text p {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 980px) {
  .background-bronzage-03 .block-text h3, .background-bronzage-03 .block-text p {
    font-size: 12px !important;
  }
}
@media screen and (max-width: 768px) {
  .background-bronzage-03 .block-text h3, .background-bronzage-03 .block-text p {
    font-size: 11px !important;
  }
}
.background-bronzage-03 .block-text h2 {
  margin-top: -20px;
}
.background-bronzage-03 .block-text h3 {
  text-transform: uppercase;
  margin-bottom: 0 !important;
}

.background-bronzage-04 {
  background: url("/media/wysiwyg/bronzage/bronzage-04.jpg");
  width: 1440px;
  height: 451px;
  margin: auto;
}
@media screen and (max-width: 1280px) {
  .background-bronzage-04 {
    background: url("/media/wysiwyg/bronzage/bronzage-04-1280.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 401px;
  }
}
@media screen and (max-width: 1050px) and (orientation: landscape) {
  .background-bronzage-04 {
    background: url("/media/wysiwyg/bronzage/bronzage-04-1024.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 321px;
  }
}
@media screen and (max-width: 980px) {
  .background-bronzage-04 {
    background: url("/media/wysiwyg/bronzage/bronzage-04-980.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 307px;
  }
}
@media screen and (max-width: 768px) {
  .background-bronzage-04 {
    background: url("/media/wysiwyg/bronzage/bronzage-04-768.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 241px;
  }
}
@media screen and (max-width: 450px) and (orientation: portrait) {
  .background-bronzage-04 {
    background: url("/media/wysiwyg/bronzage/bronzage-04-450.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 141px;
  }
}
.background-bronzage-04 .block-text {
  width: 470px;
  float: left;
  margin-left: 160px;
  margin-top: 120px;
  border-left: 1px solid #db5f14;
  padding-left: 10px;
}
@media screen and (max-width: 1285px) {
  .background-bronzage-04 .block-text {
    margin-top: 80px;
  }
}
@media screen and (max-width: 1285px) and (orientation: landscape) {
  .background-bronzage-04 .block-text {
    margin-top: 60px;
    margin-left: 60px;
  }
}
@media screen and (max-width: 980px) {
  .background-bronzage-04 .block-text {
    width: 50%;
    margin-left: 10%;
    margin-top: 5%;
  }
}
@media screen and (max-width: 768px) {
  .background-bronzage-04 .block-text {
    width: 50%;
    margin-left: 4%;
    margin-top: 8%;
  }
}
@media screen and (max-width: 750px) and (orientation: landscape) {
  .background-bronzage-04 .block-text {
    width: 60%;
    margin-left: 4%;
    margin-top: 7%;
    border: none;
  }
}
@media screen and (max-width: 750px) {
  .background-bronzage-04 .block-text {
    width: 90%;
    margin-left: 2%;
    margin-top: 47%;
    border: none;
  }
}
.background-bronzage-04 p {
  color: #505050;
}
.background-bronzage-04 h2, .background-bronzage-04 h3 {
  font-size: 70px;
  margin-bottom: 0 !important;
  color: #db5f14;
}
@media screen and (max-width: 768px) {
  .background-bronzage-04 h2, .background-bronzage-04 h3 {
    font-size: 30px !important;
  }
}
.background-bronzage-04 h3, .background-bronzage-04 p {
  font-size: 15px !important;
}
@media screen and (max-width: 1440px) {
  .background-bronzage-04 h3, .background-bronzage-04 p {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 980px) {
  .background-bronzage-04 h3, .background-bronzage-04 p {
    font-size: 12px !important;
  }
}
.background-bronzage-04 h2 {
  margin-top: -20px;
}
.background-bronzage-04 h3 {
  text-transform: uppercase;
  margin-bottom: 0 !important;
}

.background-bronzage-05 {
  background: url("/media/wysiwyg/bronzage/bronzage-05.jpg");
  background-repeat: no-repeat;
  width: 1440px;
  height: 438px;
  margin: auto;
}
@media screen and (max-width: 1280px) {
  .background-bronzage-05 {
    background: url("/media/wysiwyg/bronzage/bronzage-05-1280.jpg");
    width: 100%;
    height: 400px;
  }
}
@media screen and (max-width: 1050px) and (orientation: landscape) {
  .background-bronzage-05 {
    background: url("/media/wysiwyg/bronzage/bronzage-05-1024.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 320px;
  }
}
@media screen and (max-width: 980px) {
  .background-bronzage-05 {
    background: url("/media/wysiwyg/bronzage/bronzage-05-980.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 306px;
  }
}
@media screen and (max-width: 768px) {
  .background-bronzage-05 {
    background: url("/media/wysiwyg/bronzage/bronzage-05-768.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 240px;
  }
}
@media screen and (max-width: 450px) and (orientation: portrait) {
  .background-bronzage-05 {
    background: url("/media/wysiwyg/bronzage/bronzage-05-450.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 141px;
  }
}
.background-bronzage-05 .block-text {
  width: 470px;
  float: right;
  margin-right: 165px;
  margin-top: 50px;
  border-left: 1px solid #db5f14;
  padding-left: 10px;
}
@media screen and (max-width: 1285px) {
  .background-bronzage-05 .block-text {
    margin-right: 65px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 1285px) and (orientation: landscape) {
  .background-bronzage-05 .block-text {
    margin-right: 45px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 980px) {
  .background-bronzage-05 .block-text {
    width: 50%;
    margin-right: 5%;
    margin-top: 2%;
  }
}
@media screen and (max-width: 768px) {
  .background-bronzage-05 .block-text {
    width: 50%;
    margin-right: 4%;
    margin-top: 4%;
  }
}
@media screen and (max-width: 750px) and (orientation: landscape) {
  .background-bronzage-05 .block-text {
    width: 50%;
    margin-right: 1%;
    margin-top: 2%;
    border: none;
  }
}
@media screen and (max-width: 750px) {
  .background-bronzage-05 .block-text {
    width: 90%;
    margin-right: 7%;
    margin-top: 47%;
    border: none;
    padding-bottom: 10px;
  }
}
.background-bronzage-05 .block-text p {
  color: #505050;
}
.background-bronzage-05 .block-text h2, .background-bronzage-05 .block-text h3 {
  font-size: 70px;
  margin-bottom: 0 !important;
  color: #db5f14;
}
@media screen and (max-width: 768px) {
  .background-bronzage-05 .block-text h2, .background-bronzage-05 .block-text h3 {
    font-size: 30px !important;
  }
}
.background-bronzage-05 .block-text h3, .background-bronzage-05 .block-text p {
  font-size: 15px !important;
}
@media screen and (max-width: 1440px) {
  .background-bronzage-05 .block-text h3, .background-bronzage-05 .block-text p {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 980px) {
  .background-bronzage-05 .block-text h3, .background-bronzage-05 .block-text p {
    font-size: 12px !important;
  }
}
@media screen and (max-width: 768px) {
  .background-bronzage-05 .block-text h3, .background-bronzage-05 .block-text p {
    font-size: 11px !important;
  }
}
.background-bronzage-05 .block-text h2 {
  margin-top: -20px;
}
.background-bronzage-05 .block-text h3 {
  text-transform: uppercase;
  margin-bottom: 0 !important;
}

.background-bronzage-06 {
  background: url("/media/wysiwyg/bronzage/bronzage-06.jpg");
  width: 1440px;
  height: 440px;
  margin: auto;
}
@media screen and (max-width: 1280px) {
  .background-bronzage-06 {
    background: url("/media/wysiwyg/bronzage/bronzage-06-1280.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 391px;
  }
}
@media screen and (max-width: 1050px) and (orientation: landscape) {
  .background-bronzage-06 {
    background: url("/media/wysiwyg/bronzage/bronzage-06-1024.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 313px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 980px) {
  .background-bronzage-06 {
    background: url("/media/wysiwyg/bronzage/bronzage-06-980.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 299px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .background-bronzage-06 {
    background: url("/media/wysiwyg/bronzage/bronzage-06-768.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 234px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 450px) and (orientation: portrait) {
  .background-bronzage-06 {
    background: url("/media/wysiwyg/bronzage/bronzage-06-450.jpg");
    background-repeat: no-repeat;
    width: 100%;
    height: 137px;
  }
}
.background-bronzage-06 .block-text {
  width: 520px;
  float: left;
  margin-left: 160px;
  margin-top: 30px;
  border-left: 1px solid #db5f14;
  padding-left: 10px;
}
@media screen and (max-width: 1285px) {
  .background-bronzage-06 .block-text {
    margin-left: 90px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 1285px) and (orientation: landscape) {
  .background-bronzage-06 .block-text {
    margin-left: 50px;
    margin-top: -20px;
    width: 560px;
  }
}
@media screen and (max-width: 980px) {
  .background-bronzage-06 .block-text {
    width: 50%;
    margin-left: 5%;
    margin-top: 0%;
  }
}
@media screen and (max-width: 768px) {
  .background-bronzage-06 .block-text {
    width: 100%;
    margin-left: 1%;
    margin-top: -2%;
  }
}
@media screen and (max-width: 750px) and (orientation: landscape) {
  .background-bronzage-06 .block-text {
    width: 100%;
    margin-left: 0;
    margin-top: -2%;
    border: none;
  }
}
@media screen and (max-width: 750px) {
  .background-bronzage-06 .block-text {
    width: 90%;
    margin-left: 2%;
    margin-top: 45%;
    border-left: none;
  }
}
.background-bronzage-06 p {
  color: #505050;
}
.background-bronzage-06 h2, .background-bronzage-06 h3 {
  font-size: 70px;
  margin-bottom: 0 !important;
  color: #db5f14;
}
@media screen and (max-width: 768px) {
  .background-bronzage-06 h2, .background-bronzage-06 h3 {
    font-size: 30px !important;
  }
}
.background-bronzage-06 h3, .background-bronzage-06 p {
  font-size: 15px !important;
}
@media screen and (max-width: 1440px) {
  .background-bronzage-06 h3, .background-bronzage-06 p {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 980px) {
  .background-bronzage-06 h3, .background-bronzage-06 p {
    font-size: 12px !important;
  }
}
.background-bronzage-06 h2 {
  margin-top: -20px;
}
.background-bronzage-06 h3 {
  text-transform: uppercase;
  margin-bottom: 0 !important;
}

#wrapper-global-cellular {
  width: 1285px;
  margin: auto;
  border-bottom: 1px solid #dedfe1;
}
@media screen and (max-width: 1025px) {
  #wrapper-global-cellular {
    width: 100%;
  }
}
#wrapper-global-cellular h1, #wrapper-global-cellular [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head #wrapper-global-cellular h2 {
  font-size: 45px;
  color: #333d47 !important;
  text-align: center;
}
@media screen and (max-width: 980px) {
  #wrapper-global-cellular h1, #wrapper-global-cellular [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head #wrapper-global-cellular h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 750px) {
  #wrapper-global-cellular h1, #wrapper-global-cellular [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head #wrapper-global-cellular h2 {
    font-size: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
#wrapper-global-cellular h2 {
  text-align: center;
  margin-top: -30px;
  margin-bottom: 70px;
  font-size: 28px;
  color: #333d47;
}
@media screen and (max-width: 980px) {
  #wrapper-global-cellular h2 {
    font-size: 20px !important;
    margin-top: -20px;
  }
}
@media screen and (max-width: 750px) {
  #wrapper-global-cellular h2 {
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
#wrapper-global-cellular .wrapper-2-columns {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 1025px) {
  #wrapper-global-cellular .wrapper-2-columns {
    flex-direction: column;
  }
}
#wrapper-global-cellular .wrapper-2-columns .wrapper-column-left {
  width: 510px;
}
@media screen and (max-width: 1025px) {
  #wrapper-global-cellular .wrapper-2-columns .wrapper-column-left {
    width: 90%;
    margin: -40px auto 0 auto;
    text-align: left;
  }
}
#wrapper-global-cellular .wrapper-2-columns .wrapper-column-left p, #wrapper-global-cellular .wrapper-2-columns .wrapper-column-left li {
  font-size: 15px !important;
}
@media screen and (max-width: 1025px) {
  #wrapper-global-cellular .wrapper-2-columns .wrapper-column-left p, #wrapper-global-cellular .wrapper-2-columns .wrapper-column-left li {
    font-size: 14px !important;
  }
}
@media screen and (max-width: 750px) {
  #wrapper-global-cellular .wrapper-2-columns .wrapper-column-left p, #wrapper-global-cellular .wrapper-2-columns .wrapper-column-left li {
    font-size: 12px !important;
  }
}
#wrapper-global-cellular .wrapper-2-columns img {
  width: 645px;
}
@media screen and (max-width: 1025px) {
  #wrapper-global-cellular .wrapper-2-columns img {
    width: 50%;
    margin: auto;
  }
}

#wrapper-global-innovation {
  width: 945px;
  margin: auto;
}
@media screen and (max-width: 1285px) {
  #wrapper-global-innovation {
    width: 70%;
  }
}
@media screen and (max-width: 1285px) {
  #wrapper-global-innovation {
    margin-top: -30px;
  }
}
#wrapper-global-innovation .wrapper-title {
  width: 690px;
  margin: auto auto 30px;
  text-align: center;
  border-bottom: 1px solid #dedfe1;
  padding-bottom: 30px;
}
@media screen and (max-width: 800px) {
  #wrapper-global-innovation .wrapper-title {
    width: 100% !important;
  }
}
#wrapper-global-innovation .wrapper-title h1, #wrapper-global-innovation .wrapper-title [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head #wrapper-global-innovation .wrapper-title h2 {
  font-size: 45px;
  color: #333d47 !important;
  text-align: center;
}
@media screen and (max-width: 980px) {
  #wrapper-global-innovation .wrapper-title h1, #wrapper-global-innovation .wrapper-title [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head #wrapper-global-innovation .wrapper-title h2 {
    font-size: 25px;
  }
}
#wrapper-global-innovation .wrapper-title h2 {
  text-align: center;
  margin-top: -30px;
  margin-bottom: 70px;
  font-size: 28px;
  color: #333d47;
  border-bottom: 1px solid #dedfe1;
  padding-bottom: 20px;
}
@media screen and (max-width: 980px) {
  #wrapper-global-innovation .wrapper-title h2 {
    font-size: 20px !important;
    margin-top: -20px;
  }
}
#wrapper-global-innovation .wrapper-title h3 {
  margin-top: -50px;
  margin-bottom: -10px;
}
@media screen and (max-width: 800px) {
  #wrapper-global-innovation .wrapper-title h3 {
    font-size: 15px !important;
  }
}
#wrapper-global-innovation img {
  margin-top: -10px;
}

.warning {
  display: none;
  color: #333d47 !important;
  font-size: 20px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1025px) and (orientation: landscape) {
  .warning {
    display: block;
  }
}

.cms-l-art-du-bronzage .free, .cms-the-art-of-tanning .free, .cms-l-arte-dell-abbronzatura .free, .cms-el-arte-del-bronceado .free {
  padding: 0 !important;
}

.diagnostic-solaire {
  /* HEADER - COMMON ALL PAGES */
  /* FORMS FACE & BODY */
}
.diagnostic-solaire .banner img {
  width: 100%;
}
.diagnostic-solaire .container-diag {
  width: 100%;
  padding: 0 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.diagnostic-solaire .container-diag h1, .diagnostic-solaire .container-diag [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .diagnostic-solaire .container-diag h2,
.diagnostic-solaire .container-diag .description {
  text-align: center;
}
.diagnostic-solaire .container-diag h1, .diagnostic-solaire .container-diag [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .diagnostic-solaire .container-diag h2 {
  font-weight: bold;
  font-size: 30px;
  color: #333d47;
  margin-bottom: 5px;
}
.diagnostic-solaire .container-diag h2.subtitle {
  font-weight: normal;
  font-size: 18px;
  color: #333d47;
  text-transform: none;
  text-align: center;
}
.diagnostic-solaire .container-diag .description {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 63px;
  font-size: 14px;
  color: #333d47;
  line-height: 1.25;
  font-weight: 300;
}
.diagnostic-solaire .container-diag ul.messages {
  max-width: 1060px;
  margin: 0 auto;
}
@media all and (max-width: 770px) {
  .diagnostic-solaire .banner img {
    display: none;
  }
  .diagnostic-solaire .container-diag {
    width: 100%;
    padding: 0;
  }
  .diagnostic-solaire .container-diag h1, .diagnostic-solaire .container-diag [class*="customer-account"] .dashboard .box-account .box-head h2, [class*="customer-account"] .dashboard .box-account .box-head .diagnostic-solaire .container-diag h2 {
    font-size: 19px;
    margin-top: 23px;
    margin-bottom: 3px;
  }
  .diagnostic-solaire .container-diag h2.subtitle {
    font-size: 13px;
    margin-bottom: 13px;
  }
  .diagnostic-solaire .container-diag .description {
    font-size: 12px;
    margin-bottom: 23px;
    padding: 0 20px;
  }
}
.diagnostic-solaire .container-diagno {
  margin: 0 auto;
  width: 100%;
  border: 1px solid #dfdfdf;
  overflow: hidden;
  max-width: 1060px;
}
.diagnostic-solaire .container-diagno .part-left {
  width: 36%;
  height: 500px;
  background: #f5821f url(../images/soleil-diagno.png) center center no-repeat;
  float: left;
  position: relative;
  z-index: 2;
}
.diagnostic-solaire .container-diagno .part-left .desc-step-container {
  position: absolute;
  top: 0;
  left: 8%;
  height: 500px;
  width: 92%;
  border-left: 1px solid #f9b479;
}
.diagnostic-solaire .container-diagno .part-left .desc-step-container .title-step {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  top: 40px;
  position: absolute;
  left: 8%;
  transition: opacity .25s ease;
  font-weight: 500;
}
.diagnostic-solaire .container-diagno .part-left .desc-step-container .title-step span.title {
  font-size: 14px;
  font-weight: 400;
}
.diagnostic-solaire .container-diagno .part-left .desc-step-container .title-step span.light {
  font-weight: 200;
  font-family: "Bliss2-light", Arial, sans-serif;
}
.diagnostic-solaire .container-diagno .part-left .desc-step-container .number-step {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 10px;
  top: 440px;
  position: absolute;
  left: 8%;
  transition: opacity .25s ease;
  font-weight: 300;
}
.diagnostic-solaire .container-diagno .part-left .desc-step-container .number-step span {
  font-size: 12px;
}
.diagnostic-solaire .container-diagno .part-left .desc-step-container .number-step span span.strongs {
  font-weight: 600;
}
.diagnostic-solaire .container-diagno .part-left .desc-step-container .number-step span .step-numero {
  display: none;
}
.diagnostic-solaire .container-diagno .part-left .desc-step-container .number-step span .step-numero.active {
  display: inline-block;
}
.diagnostic-solaire .container-diagno .part-left .desc-step-container:before {
  position: absolute;
  content: "";
  border-top: 1px solid #ffffff;
  left: 0;
  width: 4%;
  top: 50px;
}
.diagnostic-solaire .container-diagno .part-left .desc-step-container:after {
  position: absolute;
  content: "";
  border-top: 1px solid #ffffff;
  left: 0;
  width: 4%;
  bottom: 50px;
}
.diagnostic-solaire .container-diagno .part-left .step {
  width: 3%;
  position: absolute;
  right: 0;
  height: 58px;
  transition: width ease 0.25s;
  cursor: pointer;
}
.diagnostic-solaire .container-diagno .part-left .step .line {
  position: absolute;
  bottom: 50%;
  height: 1px;
  background-color: #fff;
  width: 100%;
}
.diagnostic-solaire .container-diagno .part-left .step:after {
  content: '';
  width: 0;
  position: absolute;
  height: 1px;
  left: 100%;
  bottom: 50%;
  display: block;
  background: #f5821f;
  transition: width ease 0.25s;
}
.diagnostic-solaire .container-diagno .part-left .step.active {
  width: 6%;
  transition: width ease 0.25s;
}
.diagnostic-solaire .container-diagno .part-left .step.active:after {
  width: 375%;
  transition: width ease 0.25s;
}
.diagnostic-solaire .container-diagno .part-left .step-1 {
  top: 18px;
}
.diagnostic-solaire .container-diagno .part-left .step-2 {
  top: 76px;
}
.diagnostic-solaire .container-diagno .part-left .step-3 {
  top: 134px;
}
.diagnostic-solaire .container-diagno .part-left .step-4 {
  top: 192px;
}
.diagnostic-solaire .container-diagno .part-left .step-5 {
  top: 250px;
}
.diagnostic-solaire .container-diagno .part-left .step-6 {
  top: 308px;
}
.diagnostic-solaire .container-diagno .part-left .step-7 {
  top: 366px;
}
.diagnostic-solaire .container-diagno .part-left .step-8 {
  top: 424px;
}
.diagnostic-solaire .container-diagno .part-left .step-9 {
  top: 482px;
}
.diagnostic-solaire .container-diagno .part-left .step-10 {
  top: 354px;
}
.diagnostic-solaire .container-diagno .part-left .step-11 {
  top: 396px;
}
.diagnostic-solaire .container-diagno .part-left .step-12 {
  top: 438px;
}
.diagnostic-solaire .container-diagno .part-right {
  width: 64%;
  float: left;
  box-sizing: border-box;
  position: relative;
  height: 500px;
}
.diagnostic-solaire .container-diagno .part-right .step,
.diagnostic-solaire .container-diagno .part-right .subject {
  display: none;
  opacity: 0;
  transition: opacity ease 3s;
}
.diagnostic-solaire .container-diagno .part-right .step.active,
.diagnostic-solaire .container-diagno .part-right .subject.active {
  display: block;
  opacity: 1;
  transition: all ease 3s;
}
.diagnostic-solaire .container-diagno .part-right h2 {
  color: #939598;
  font-size: 16px;
  text-transform: none;
  font-weight: 200;
  text-align: left;
  margin-bottom: 5px;
}
.diagnostic-solaire .container-diagno .part-right .subject.active {
  transition: none;
}
.diagnostic-solaire .container-diagno .part-right h3 {
  color: #333d47;
  font-size: 26px;
  text-transform: none;
  font-weight: 500;
  margin-bottom: 50px;
}
.diagnostic-solaire .container-diagno .part-right .step-8 > h3 {
  white-space: nowrap;
}
.diagnostic-solaire .container-diagno .part-right ul {
  margin: 20px 0 0 0;
  padding: 0;
}
.diagnostic-solaire .container-diagno .part-right ul li {
  list-style: none;
  margin-left: 10px;
  margin-bottom: 25px;
}
.diagnostic-solaire .container-diagno .part-right ul li input {
  display: none;
}
.diagnostic-solaire .container-diagno .part-right ul li label {
  font-size: 13px;
  color: #000000;
  display: block;
  padding: 5px 0;
  border: 1px solid #d7d8d8;
  font-style: normal;
  width: 100%;
  text-align: center;
  /* transition: all ease .25s; */
  cursor: pointer;
  line-height: 17px;
  max-width: 305px;
  text-transform: uppercase;
  font-weight: 400;
}
.diagnostic-solaire .container-diagno .part-right ul li label.active, .diagnostic-solaire .container-diagno .part-right ul li label:hover {
  background: #000000;
  color: #ffffff;
  transition: all ease .25s;
}
.diagnostic-solaire .container-diagno .part-right ul li label small {
  margin: 0 auto;
  display: block;
}
.diagnostic-solaire .container-diagno .part-right ul li label.one-line {
  line-height: 35px;
}
.diagnostic-solaire .container-diagno .part-right .fieldset-yes-no {
  position: absolute;
  width: 100%;
  bottom: 143px;
}
.diagnostic-solaire .container-diagno .part-right .fieldset-yes-no label {
  max-width: 205px;
}
.diagnostic-solaire .container-diagno .part-right .fieldset-yes-no label.yes-no {
  font-size: 14px;
  padding: 13px 0;
  line-height: 18px;
}
.diagnostic-solaire .container-diagno .part-right .fieldset-five-questions li {
  margin-bottom: 10px;
}
.diagnostic-solaire .container-diagno .part-right .fieldset-five-questions label {
  font-size: 12px;
  line-height: 14px;
  max-width: 520px;
  padding: 10px 20px;
}
.diagnostic-solaire .container-diagno .part-right span.button {
  font-size: 16px;
  position: absolute;
  right: 107px;
  bottom: 38px;
  max-width: 207px;
  display: block;
  width: 100%;
  padding: 14px 0;
}
.diagnostic-solaire .container-diagno .part-right .status {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s linear;
}
.diagnostic-solaire .container-diagno .part-right .status.error-msg {
  font-size: 12px;
  position: absolute;
  right: 107px;
  bottom: 0px;
  max-width: 207px;
  display: block;
  width: 100%;
  padding: 14px 0;
  color: #DF280A;
  text-transform: uppercase;
  text-align: center;
  visibility: visible;
  opacity: 1;
  font-weight: 300;
}
.diagnostic-solaire .container-diagno .part-right .subject-content {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f5821f;
  top: 0;
  left: -100%;
  z-index: 1;
  border-left: 1px solid #ffffff;
  color: #ffffff;
  font-size: 26px;
  font-weight: 500;
  transition: .6s all ease;
  padding: 20px 20px 20px 0;
}
.diagnostic-solaire .container-diagno .part-right .subject-content.active {
  left: 0;
  transition: .6s all ease;
}
.diagnostic-solaire .container-diagno .part-right .subject-content .container-subject {
  position: absolute;
  padding-left: 106px;
  width: 90%;
  line-height: 1.4;
  top: 160px;
}
.diagnostic-solaire .container-diagno .part-right .subject-content .container-subject .medium {
  color: #fde6d2;
}
.diagnostic-solaire .container-diagno .part-right .subject-content .container-subject span {
  font-size: 16px;
  font-weight: 300;
}
.diagnostic-solaire .container-diagno .part-right .subject-content span.button {
  color: #0096b6;
  background: #ffffff;
  margin-top: 40px;
  position: relative;
  right: initial;
  bottom: initial;
}
.diagnostic-solaire .container-diagno .part-right .subject-content .subject-bar {
  width: 15px;
  display: block;
  position: absolute;
  left: 0;
  height: 1px;
  background: #ffffff;
}
.diagnostic-solaire .container-diagno .part-right .subject-content .subject-bar.active {
  width: 85px;
}
.diagnostic-solaire .container-diagno .part-right .subject-content .container-subject-1 .subject-bar-1 {
  top: 27px;
}
.diagnostic-solaire .container-diagno .part-right .subject-content .container-subject-1 .subject-bar-2 {
  top: 91px;
}
.diagnostic-solaire .container-diagno .part-right .subject-content .container-subject-1 .subject-bar-3 {
  top: 155px;
}
.diagnostic-solaire .container-diagno .part-right .subject-content .container-subject-2 .subject-bar-1 {
  top: -37px;
}
.diagnostic-solaire .container-diagno .part-right .subject-content .container-subject-2 .subject-bar-2 {
  top: 27px;
}
.diagnostic-solaire .container-diagno .part-right .subject-content .container-subject-2 .subject-bar-3 {
  top: 91px;
}
.diagnostic-solaire .container-diagno .part-right .subject-content .container-subject-3 .subject-bar-1 {
  top: -101px;
}
.diagnostic-solaire .container-diagno .part-right .subject-content .container-subject-3 .subject-bar-2 {
  top: -37px;
}
.diagnostic-solaire .container-diagno .part-right .subject-content .container-subject-3 .subject-bar-3 {
  top: 27px;
}
.diagnostic-solaire .container-diagno .part-right .diagnostic-form {
  padding: 17px 17px 17px 96px;
}
.diagnostic-solaire .container-diagno .part-right .diagnostic-form h2, .diagnostic-solaire .container-diagno .part-right .diagnostic-form h3 {
  margin-left: 10px;
}
.diagnostic-solaire .container-diagno .part-right .diagnostic-form h2 {
  margin-bottom: 2px;
}
.diagnostic-solaire .container-diagno .part-right .diagnostic-form .step-2 h3 {
  max-width: 400px;
}
.diagnostic-solaire .container-diagno .part-right .diagnostic-form .step-4 h3 {
  max-width: 450px;
}
.diagnostic-solaire .rappel {
  margin: 10px auto 50px;
  width: 100%;
  max-width: 1060px;
  font-size: 11px;
  color: #acacac;
  line-height: 1.25;
  font-weight: 200;
}
@media all and (max-width: 979px) {
  .diagnostic-solaire .container-diagno .part-right .step-8 > h3 {
    margin-bottom: initial;
  }
}
@media all and (max-width: 770px) {
  .diagnostic-solaire .container-diagno {
    border: 0;
    margin-bottom: 0;
  }
  .diagnostic-solaire .container-diagno .part-right,
  .diagnostic-solaire .container-diagno .part-left {
    width: 100%;
    background-image: none;
  }
  .diagnostic-solaire .container-diagno .part-left {
    height: 86px !important;
    border-left: 1px solid #f59a4c;
    border-right: 1px solid #f59a4c;
  }
  .diagnostic-solaire .container-diagno .part-left .step {
    display: none !important;
  }
  .diagnostic-solaire .container-diagno .part-left .desc-step-container {
    border: none;
    left: 0 !important;
    width: 100% !important;
    height: 86px !important;
  }
  .diagnostic-solaire .container-diagno .part-left .desc-step-container .title-step {
    top: 11px;
    left: 16px;
    line-height: 1.3;
    font-size: 14px;
  }
  .diagnostic-solaire .container-diagno .part-left .desc-step-container .title-step span.title {
    font-size: 16px;
  }
  .diagnostic-solaire .container-diagno .part-left .desc-step-container:after, .diagnostic-solaire .container-diagno .part-left .desc-step-container:before {
    display: none;
  }
  .diagnostic-solaire .container-diagno .part-left .desc-step-container .number-step {
    top: 50px;
    right: 18px;
    left: initial;
  }
  .diagnostic-solaire .container-diagno .part-left .desc-step-container .number-step .hide-mobile {
    display: none !important;
  }
  .diagnostic-solaire .container-diagno .part-right {
    height: initial;
  }
  .diagnostic-solaire .container-diagno .part-right .diagnostic-form {
    padding: 0 10px;
    width: 100%;
    max-width: 360px;
    margin: 16px auto;
  }
  .diagnostic-solaire .container-diagno .part-right .diagnostic-form h2, .diagnostic-solaire .container-diagno .part-right .diagnostic-form h3 {
    margin-left: 0;
  }
  .diagnostic-solaire .container-diagno .part-right .diagnostic-form h2 {
    font-size: 12px;
    margin-bottom: 7px;
  }
  .diagnostic-solaire .container-diagno .part-right .diagnostic-form h3 {
    font-size: 18.5px;
    margin-bottom: 0;
  }
  .diagnostic-solaire .container-diagno .part-right span.button, .diagnostic-solaire .container-diagno .part-right .status.error-msg {
    position: relative;
    margin: 28px auto 18px;
    right: initial;
    bottom: initial;
  }
  .diagnostic-solaire .container-diagno .part-right .status.error-msg {
    margin: -15px auto 0;
    padding: 0;
  }
  .diagnostic-solaire .container-diagno .part-right ul {
    margin-top: 13px;
  }
  .diagnostic-solaire .container-diagno .part-right ul .fieldset-five-questions > li > label,
  .diagnostic-solaire .container-diagno .part-right ul li {
    margin-left: 0;
  }
  .diagnostic-solaire .container-diagno .part-right ul .fieldset-five-questions > li > label label,
  .diagnostic-solaire .container-diagno .part-right ul li label {
    max-width: 340px;
    margin-left: 0;
    font-size: 13.5px;
  }
  .diagnostic-solaire .container-diagno .part-right .fieldset-five-questions li {
    margin-bottom: 10px;
    margin-left: 0;
  }
  .diagnostic-solaire .container-diagno .part-right .fieldset-five-questions label {
    line-height: 16px;
  }
  .diagnostic-solaire .container-diagno .part-right .fieldset-yes-no {
    position: relative;
    bottom: initial;
    margin-top: 40px;
  }
  .diagnostic-solaire .container-diagno .part-right .fieldset-yes-no label {
    max-width: 207px;
    margin: 0 auto;
  }
  .diagnostic-solaire .container-diagno .part-right .fieldset-yes-no label.yes-no {
    font-size: 15px;
  }
  .diagnostic-solaire .container-diagno .part-right .subject-content {
    border-left: 0;
    padding: 0;
  }
  .diagnostic-solaire .container-diagno .part-right .subject-content .container-subject {
    padding-left: 0;
    width: 100%;
    top: 35%;
    transform: translateY(-35%);
    text-align: center;
    padding: 0 20px;
  }
  .diagnostic-solaire .container-diagno .part-right .subject-content .container-subject .subject-bar {
    display: none;
  }
  .diagnostic-solaire .container-diagno .part-right .subject-content .container-subject .container-inner {
    text-align: center;
  }
  .diagnostic-solaire .container-diagno .part-right .subject-content .container-subject .container-inner span.button {
    margin-top: 50px;
  }
  .diagnostic-solaire .rappel {
    font-size: 9px;
    margin-bottom: 20px;
    max-width: 340px;
    text-align: center;
    max-width: 207px;
  }
}

/* FORM BODY */
.onibi-diagnostic-body-index .container-diagno .part-right ul.body-last-question {
  margin: 105px 0 0 0;
}
.onibi-diagnostic-body-index .container-diagno .part-right ul.body-last-question li label {
  padding: 10px 20px;
  max-width: 385px;
}
@media all and (max-width: 770px) {
  .onibi-diagnostic-body-index .container-diagno .part-right ul.body-last-question {
    margin-top: 13px;
  }
}

/* RESULTS PAGES - FACE & BODY */
.diagnostic-result * {
  box-sizing: border-box;
}
.diagnostic-result h2.subtitle {
  margin-bottom: 90px;
}
.diagnostic-result .description {
  display: none;
}
.diagnostic-result .results-list {
  width: 100%;
  overflow: hidden;
  max-width: 1112px;
  margin: 0 auto;
}
.diagnostic-result .results-list .diag-product {
  width: calc(100%/3);
  float: left;
  margin-top: 35px;
  padding: 0 25px;
}
.diagnostic-result .results-list .diag-product .item-title {
  font-size: 26px;
  color: #303e48;
  font-weight: 500;
}
.diagnostic-result .results-list .diag-product .item-subtitle {
  font-size: 16px;
  color: #303e48;
}
.diagnostic-result .results-list .diag-product .products-grid {
  margin: 35px 0;
}
.diagnostic-result .results-list .diag-product .products-grid li.item {
  border: 5px solid #ffffff;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  padding: 1%;
  margin-right: 0;
  width: 100%;
  float: left;
  clear: none;
  display: block;
  position: relative;
  vertical-align: top;
  margin-bottom: 10px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .diagnostic-result .results-list .diag-product .products-grid li.item {
    width: 33%;
  }
}
.diagnostic-result .results-list .diag-product .products-grid li.item .product-info {
  padding-bottom: 0 !important;
  min-height: 0 !important;
}
.diagnostic-result .results-list .diag-product .products-grid li.item .product-info .product-name {
  font-size: 14px;
  color: #303e48;
  font-weight: 800;
}
.diagnostic-result .results-list .diag-product .products-grid li.item .product-info .product-name .product-title {
  display: block;
  min-height: 45px;
}
.diagnostic-result .results-list .diag-product .products-grid li.item .product-info .product-name .product-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #a3a5a8;
  text-transform: none;
  min-height: 60px;
}
.diagnostic-result .results-list .diag-product .products-grid li.item .product-info .product-name .product-subtitle span.product-subtitle-contenance {
  font-weight: 100;
}
.diagnostic-result .results-list .diag-product .products-grid li.item .ratings {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 1;
  z-index: 3;
  min-height: 0;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  -ms-transition: opacity 0.25s ease;
  -o-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  margin: 25px 0;
}
.diagnostic-result .results-list .diag-product .products-grid li.item .ratings .rating-box {
  width: 91px;
  height: 15px;
  background-position: 0 -616px;
}
.diagnostic-result .results-list .diag-product .products-grid li.item .ratings .rating-box .rating {
  height: 15px;
  background-position: 0 -599px;
}
.diagnostic-result .results-list .diag-product .products-grid li.item .actions {
  position: absolute;
  bottom: 0;
  width: 100%;
  opacity: 0;
  z-index: 1;
  min-height: 0;
  -webkit-transition: opacity 0.25s ease;
  -moz-transition: opacity 0.25s ease;
  -ms-transition: opacity 0.25s ease;
  -o-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.diagnostic-result .results-list .diag-product .products-grid li.item .actions .button {
  width: 48%;
  padding: 10px 0;
}
.diagnostic-result .results-list .diag-product .products-grid li.item .actions .button.button-second:hover {
  padding: 9px 0;
}
.diagnostic-result .results-list .diag-product .products-grid li.item .actions .availability.out-of-stock {
  width: 48%;
  padding: 10px 0;
  float: right;
}
.diagnostic-result .results-list .diag-product .products-grid li.item:hover {
  border-color: #e7e8ea;
}
.diagnostic-result .results-list .diag-product .products-grid li.item:hover .ratings {
  opacity: 0;
  z-index: 1;
}
.diagnostic-result .results-list .diag-product .products-grid li.item:hover .actions {
  opacity: 1;
  z-index: 3;
}
.diagnostic-result .results-list .diag-product .products-grid li.item:nth-child(even) {
  margin-right: 0;
}
.diagnostic-result .results-list .diag-product .products-grid li.item a {
  border: none;
  outline: none;
  text-decoration: none;
  color: #303e48;
  text-transform: uppercase;
  text-align: center;
}
.diagnostic-result .results-list .diag-product .products-grid li.item a:hover {
  color: #303e48;
}
.diagnostic-result .results-list .diag-product .products-grid li.item a img {
  width: auto;
  margin: 0 auto;
  max-width: 100%;
}
.diagnostic-result .results-list .diag-product .products-grid li.item .price-box {
  padding-bottom: 60px;
}
.diagnostic-result .results-list .diag-product .products-grid li.item .price-box .price {
  font-weight: bold;
  font-size: 24px;
  color: #303e48;
}
.diagnostic-result .results-list .left-product, .diagnostic-result .results-list .center-product {
  border-right: 2px solid #e6e6e6;
}
.diagnostic-result .go-back {
  margin: 25px 0 75px;
  width: 100%;
  text-align: center;
}
.diagnostic-result .horizontal-line {
  width: 100%;
  display: block;
  height: 1px;
  background-color: #b4b5b7;
}
.diagnostic-result .horizontal-line.last {
  top: 35px;
  position: relative;
}
.diagnostic-result .add-diag {
  width: 100%;
  max-width: 965px;
  margin: 58px auto 80px;
}
.diagnostic-result .add-diag h2 {
  color: #303e48;
  text-align: center;
  margin-bottom: 42px;
}
.diagnostic-result .add-diag .text-imageleft {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.diagnostic-result .add-diag .text-imageleft .image {
  width: 50%;
  float: left;
  position: relative;
}
.diagnostic-result .add-diag .text-imageleft .image img {
  width: 100%;
  padding-right: 12px;
}
.diagnostic-result .add-diag .text-imageleft .image:before {
  width: 86px;
  height: 1px;
  background: #525d68;
  content: '';
  position: absolute;
  top: 13px;
  right: 0;
}
.diagnostic-result .add-diag .content {
  float: right;
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  padding-left: 23px;
}
.diagnostic-result .add-diag .content h3 {
  color: #a3a5a8;
  line-height: 16px;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
  text-transform: none;
  margin-top: 3px;
}
.diagnostic-result .add-diag .content .text {
  color: #303e48;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  height: 40px;
  margin-top: 28px;
}
.diagnostic-result .add-diag .content .actions {
  position: absolute;
  bottom: 0;
  right: 0;
}
.diagnostic-result .add-diag .content .actions .disabled {
  background-color: #cccccc;
  border-color: #cccccc;
  opacity: 1;
}
.diagnostic-result .presentation {
  margin-bottom: 30px;
}
@media screen and (max-width: 770px) {
  .diagnostic-result .main-container {
    padding: 0 20px;
  }
  .diagnostic-result .banner {
    display: none;
  }
  .diagnostic-result .results-list .diag-product {
    width: 100%;
    float: none;
    max-width: 375px;
    margin: 0 auto;
  }
  .diagnostic-result .results-list .diag-product .item-title {
    font-size: 19px;
    text-align: center;
    margin-top: 30px;
  }
  .diagnostic-result .results-list .diag-product .item-subtitle {
    font-size: 14px;
    text-align: center;
  }
  .diagnostic-result .results-list .diag-product .products-grid li.item .product-info .product-name .product-title {
    min-height: initial;
    margin-top: 25px;
    font-weight: 600;
    font-size: 15px;
  }
  .diagnostic-result .results-list .diag-product .products-grid li.item .product-info .product-name .product-subtitle {
    min-height: initial;
    max-width: 150px;
    margin: 7px auto;
    color: #939598;
  }
  .diagnostic-result .results-list .diag-product .products-grid li.item .price-box {
    padding-bottom: 115px;
  }
  .diagnostic-result .results-list .diag-product .products-grid li.item .price-box .price {
    font-size: 30px;
  }
  .diagnostic-result .results-list .diag-product .products-grid li.item .ratings {
    margin: 25px 0 60px 0;
  }
  .diagnostic-result .results-list .diag-product .products-grid li.item .actions .button {
    font-size: 13px;
    display: block;
    margin: 0 auto 5px auto;
    width: 90%;
  }
  .diagnostic-result .results-list .diag-product .products-grid {
    margin: 20px 0;
  }
  .diagnostic-result .results-list .left-product, .diagnostic-result .results-list .center-product {
    border-right: none;
    border-bottom: 1px solid #e6e6e6;
  }
  .diagnostic-result .go-back {
    margin: 0px 0 37px;
  }
  .diagnostic-result .go-back button.button.button-first {
    width: 100%;
    max-width: 375px;
    font-size: 16px;
  }
  .diagnostic-result .add-diag {
    margin: 30px auto;
    width: 100vw;
    margin-left: -20px;
  }
  .diagnostic-result .add-diag h2 {
    font-size: 19px;
  }
  .diagnostic-result .add-diag .text-imageleft {
    padding-top: 50px;
  }
  .diagnostic-result .add-diag .text-imageleft .image {
    width: 100%;
  }
  .diagnostic-result .add-diag .text-imageleft .image img {
    padding-right: 0;
  }
  .diagnostic-result .add-diag .text-imageleft .image:before {
    display: none;
  }
  .diagnostic-result .add-diag .content {
    position: initial;
    width: 100%;
    padding: 0 20px;
  }
  .diagnostic-result .add-diag .content h3 {
    position: absolute;
    top: 0;
    left: 30px;
  }
  .diagnostic-result .add-diag .content h3:before {
    content: '';
    width: 1px;
    height: 90px;
    left: -15px;
    bottom: -90px;
    display: block;
    position: absolute;
    background: #333d47;
  }
  .diagnostic-result .add-diag .content .text {
    font-size: 12px;
  }
  .diagnostic-result .add-diag .content .actions {
    position: initial;
    float: right;
    margin-top: 25px;
    font-size: 11px;
    padding: 6px 18px;
  }
}
.diagnostic-result .diagnostic-popin-bkg {
  display: none;
  background-color: black;
  opacity: 0.4;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999998;
  width: 100%;
  height: 100%;
}
.diagnostic-result #diagnostic-popin-sendbymail,
.diagnostic-result #diagnostic-popin-sendfriend,
.diagnostic-result #diagnostic-popin-sendbymail-confirm,
.diagnostic-result #diagnostic-popin-sendfriend-confirm {
  display: none;
  z-index: 99999999;
  margin: 0 auto;
  background-color: #ffffff;
  max-width: 750px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}
.diagnostic-result #diagnostic-popin-sendbymail p,
.diagnostic-result #diagnostic-popin-sendfriend p,
.diagnostic-result #diagnostic-popin-sendbymail-confirm p,
.diagnostic-result #diagnostic-popin-sendfriend-confirm p {
  color: #333d47;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  margin: 45px;
}
.diagnostic-result #diagnostic-popin-sendbymail #sendform,
.diagnostic-result #diagnostic-popin-sendbymail #sendfriendform,
.diagnostic-result #diagnostic-popin-sendfriend #sendform,
.diagnostic-result #diagnostic-popin-sendfriend #sendfriendform,
.diagnostic-result #diagnostic-popin-sendbymail-confirm #sendform,
.diagnostic-result #diagnostic-popin-sendbymail-confirm #sendfriendform,
.diagnostic-result #diagnostic-popin-sendfriend-confirm #sendform,
.diagnostic-result #diagnostic-popin-sendfriend-confirm #sendfriendform {
  padding: 40px;
}
.diagnostic-result #diagnostic-popin-sendbymail #sendform p,
.diagnostic-result #diagnostic-popin-sendbymail #sendfriendform p,
.diagnostic-result #diagnostic-popin-sendfriend #sendform p,
.diagnostic-result #diagnostic-popin-sendfriend #sendfriendform p,
.diagnostic-result #diagnostic-popin-sendbymail-confirm #sendform p,
.diagnostic-result #diagnostic-popin-sendbymail-confirm #sendfriendform p,
.diagnostic-result #diagnostic-popin-sendfriend-confirm #sendform p,
.diagnostic-result #diagnostic-popin-sendfriend-confirm #sendfriendform p {
  margin: 0;
}
.diagnostic-result #diagnostic-popin-sendbymail #sendform input[type="text"],
.diagnostic-result #diagnostic-popin-sendbymail #sendfriendform input[type="text"],
.diagnostic-result #diagnostic-popin-sendfriend #sendform input[type="text"],
.diagnostic-result #diagnostic-popin-sendfriend #sendfriendform input[type="text"],
.diagnostic-result #diagnostic-popin-sendbymail-confirm #sendform input[type="text"],
.diagnostic-result #diagnostic-popin-sendbymail-confirm #sendfriendform input[type="text"],
.diagnostic-result #diagnostic-popin-sendfriend-confirm #sendform input[type="text"],
.diagnostic-result #diagnostic-popin-sendfriend-confirm #sendfriendform input[type="text"] {
  margin: 45px 45px 45px 0;
  height: 40px;
  line-height: 40px;
  color: #58585a;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid #e2e3e4;
  border-top: none;
  border-right: none;
  padding: 0 6px;
}
.diagnostic-result #diagnostic-popin-sendbymail #sendform textarea,
.diagnostic-result #diagnostic-popin-sendbymail #sendfriendform textarea,
.diagnostic-result #diagnostic-popin-sendfriend #sendform textarea,
.diagnostic-result #diagnostic-popin-sendfriend #sendfriendform textarea,
.diagnostic-result #diagnostic-popin-sendbymail-confirm #sendform textarea,
.diagnostic-result #diagnostic-popin-sendbymail-confirm #sendfriendform textarea,
.diagnostic-result #diagnostic-popin-sendfriend-confirm #sendform textarea,
.diagnostic-result #diagnostic-popin-sendfriend-confirm #sendfriendform textarea {
  max-width: 100%;
  min-height: 200px;
  border: 1px solid #e2e3e4;
}
.diagnostic-result #diagnostic-popin-sendbymail #sendform .important-message,
.diagnostic-result #diagnostic-popin-sendbymail #sendfriendform .important-message,
.diagnostic-result #diagnostic-popin-sendfriend #sendform .important-message,
.diagnostic-result #diagnostic-popin-sendfriend #sendfriendform .important-message,
.diagnostic-result #diagnostic-popin-sendbymail-confirm #sendform .important-message,
.diagnostic-result #diagnostic-popin-sendbymail-confirm #sendfriendform .important-message,
.diagnostic-result #diagnostic-popin-sendfriend-confirm #sendform .important-message,
.diagnostic-result #diagnostic-popin-sendfriend-confirm #sendfriendform .important-message {
  color: #d50032;
  font-size: 13px;
  font-weight: 400;
}
.diagnostic-result #diagnostic-popin-sendbymail #sendform #advice-required-entry-lastname,
.diagnostic-result #diagnostic-popin-sendbymail #sendfriendform #advice-required-entry-lastname,
.diagnostic-result #diagnostic-popin-sendfriend #sendform #advice-required-entry-lastname,
.diagnostic-result #diagnostic-popin-sendfriend #sendfriendform #advice-required-entry-lastname,
.diagnostic-result #diagnostic-popin-sendbymail-confirm #sendform #advice-required-entry-lastname,
.diagnostic-result #diagnostic-popin-sendbymail-confirm #sendfriendform #advice-required-entry-lastname,
.diagnostic-result #diagnostic-popin-sendfriend-confirm #sendform #advice-required-entry-lastname,
.diagnostic-result #diagnostic-popin-sendfriend-confirm #sendfriendform #advice-required-entry-lastname {
  position: absolute;
  top: 230px;
}
.diagnostic-result #diagnostic-popin-sendbymail #sendform #advice-required-entry-firstname,
.diagnostic-result #diagnostic-popin-sendbymail #sendfriendform #advice-required-entry-firstname,
.diagnostic-result #diagnostic-popin-sendfriend #sendform #advice-required-entry-firstname,
.diagnostic-result #diagnostic-popin-sendfriend #sendfriendform #advice-required-entry-firstname,
.diagnostic-result #diagnostic-popin-sendbymail-confirm #sendform #advice-required-entry-firstname,
.diagnostic-result #diagnostic-popin-sendbymail-confirm #sendfriendform #advice-required-entry-firstname,
.diagnostic-result #diagnostic-popin-sendfriend-confirm #sendform #advice-required-entry-firstname,
.diagnostic-result #diagnostic-popin-sendfriend-confirm #sendfriendform #advice-required-entry-firstname {
  position: absolute;
  right: 40%;
  top: 230px;
}
.diagnostic-result #diagnostic-popin-sendbymail #sendform #advice-required-entry-email,
.diagnostic-result #diagnostic-popin-sendbymail #sendfriendform #advice-required-entry-email,
.diagnostic-result #diagnostic-popin-sendfriend #sendform #advice-required-entry-email,
.diagnostic-result #diagnostic-popin-sendfriend #sendfriendform #advice-required-entry-email,
.diagnostic-result #diagnostic-popin-sendbymail-confirm #sendform #advice-required-entry-email,
.diagnostic-result #diagnostic-popin-sendbymail-confirm #sendfriendform #advice-required-entry-email,
.diagnostic-result #diagnostic-popin-sendfriend-confirm #sendform #advice-required-entry-email,
.diagnostic-result #diagnostic-popin-sendfriend-confirm #sendfriendform #advice-required-entry-email {
  position: absolute;
  top: 360px;
}
.diagnostic-result #diagnostic-popin-sendbymail .newsletter-subscription,
.diagnostic-result #diagnostic-popin-sendfriend .newsletter-subscription,
.diagnostic-result #diagnostic-popin-sendbymail-confirm .newsletter-subscription,
.diagnostic-result #diagnostic-popin-sendfriend-confirm .newsletter-subscription {
  display: flex;
  line-height: 20px;
}
.diagnostic-result #diagnostic-popin-sendbymail .newsletter-subscription #popin-subscribe,
.diagnostic-result #diagnostic-popin-sendfriend .newsletter-subscription #popin-subscribe,
.diagnostic-result #diagnostic-popin-sendbymail-confirm .newsletter-subscription #popin-subscribe,
.diagnostic-result #diagnostic-popin-sendfriend-confirm .newsletter-subscription #popin-subscribe {
  margin: 4px 15px 0 45px;
}
.diagnostic-result #diagnostic-popin-sendbymail .newsletter-subscription label,
.diagnostic-result #diagnostic-popin-sendfriend .newsletter-subscription label,
.diagnostic-result #diagnostic-popin-sendbymail-confirm .newsletter-subscription label,
.diagnostic-result #diagnostic-popin-sendfriend-confirm .newsletter-subscription label {
  max-width: 520px;
  color: #939393;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.diagnostic-result #diagnostic-popin-sendbymail #popin-send-button,
.diagnostic-result #diagnostic-popin-sendbymail #popin-sendfriend-button,
.diagnostic-result #diagnostic-popin-sendfriend #popin-send-button,
.diagnostic-result #diagnostic-popin-sendfriend #popin-sendfriend-button,
.diagnostic-result #diagnostic-popin-sendbymail-confirm #popin-send-button,
.diagnostic-result #diagnostic-popin-sendbymail-confirm #popin-sendfriend-button,
.diagnostic-result #diagnostic-popin-sendfriend-confirm #popin-send-button,
.diagnostic-result #diagnostic-popin-sendfriend-confirm #popin-sendfriend-button {
  float: right !important;
  margin: 35px 0;
}
.diagnostic-result #diagnostic-popin-sendbymail .close,
.diagnostic-result #diagnostic-popin-sendfriend .close,
.diagnostic-result #diagnostic-popin-sendbymail-confirm .close,
.diagnostic-result #diagnostic-popin-sendfriend-confirm .close {
  cursor: pointer;
  position: absolute;
  right: 40px;
  top: 40px;
  width: 21px;
  height: 21px;
  z-index: 3;
  background: url(../images/cross-close.png) center center no-repeat;
}
.diagnostic-result #diagnostic-popin-sendfriend {
  max-width: 820px;
}
.diagnostic-result #diagnostic-popin-sendfriend #sendfriendform input[type="text"] {
  max-width: 275px;
}
.diagnostic-result .diagnostic-action {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 75px;
}
.diagnostic-result .diagnostic-action button#getbyemail,
.diagnostic-result .diagnostic-action button#sendtofriend,
.diagnostic-result .diagnostic-action button#print {
  width: 320px;
  height: 70px;
  border: 1px solid #1a93ad;
  background-color: #ffffff;
  color: #1a93ad;
  text-transform: uppercase;
}
.diagnostic-result .diagnostic-action button#getbyemail:hover,
.diagnostic-result .diagnostic-action button#sendtofriend:hover,
.diagnostic-result .diagnostic-action button#print:hover {
  background-color: #1a93ad;
  color: #ffffff;
}
.diagnostic-result .diagnostic-action button#getbyemail span,
.diagnostic-result .diagnostic-action button#sendtofriend span,
.diagnostic-result .diagnostic-action button#print span {
  font-size: 18px;
  font-weight: 700;
}
.diagnostic-result .diagnostic-popin-title {
  height: 100px;
  background-image: linear-gradient(to right, #ebeef0 0%, #ffffff 100%);
}
.diagnostic-result .diagnostic-popin-title h3 {
  font-size: 26px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  padding: 40px;
  color: #333d47;
}

/* PRINT POPIN DIAGNOSTIC*/
.diagnostic-print-header {
  border-bottom: 1px solid #000000;
  margin-bottom: 45px;
}
.diagnostic-print-header .diagnostic-print-header-container .logo {
  padding: 25px;
  max-width: 237px;
}

.diagnostic-print-footer .diagnostic-print-footer-container {
  text-align: center;
  margin-top: 50px;
}
.diagnostic-print-footer .diagnostic-print-footer-container img {
  margin: 0 auto;
  width: 80%;
  height: 20px;
  margin-bottom: 20px;
}
.diagnostic-print-footer .diagnostic-print-footer-container p {
  font-size: 17px;
}
.diagnostic-print-footer .diagnostic-print-footer-container p span {
  font-weight: 700;
}

.onibi-diagnostic-body-print.diagnostic-result .results-list,
.onibi-diagnostic-face-print.diagnostic-result .results-list {
  text-align: center;
}
.onibi-diagnostic-body-print.diagnostic-result .results-list .diag-product,
.onibi-diagnostic-face-print.diagnostic-result .results-list .diag-product {
  min-height: 550px;
}
.onibi-diagnostic-body-print.diagnostic-result .results-list .diag-product .products-grid,
.onibi-diagnostic-face-print.diagnostic-result .results-list .diag-product .products-grid {
  margin: 35px 0 0 0;
}
.onibi-diagnostic-body-print.diagnostic-result .results-list .diag-product .products-grid li.item.item-print:hover,
.onibi-diagnostic-face-print.diagnostic-result .results-list .diag-product .products-grid li.item.item-print:hover {
  border: none;
  transition: none;
  border: #ffffff;
}
.onibi-diagnostic-body-print.diagnostic-result .results-list .diag-product .products-grid li.item.item-print .ratings,
.onibi-diagnostic-face-print.diagnostic-result .results-list .diag-product .products-grid li.item.item-print .ratings {
  display: none;
}
.onibi-diagnostic-body-print.diagnostic-result .results-list .diag-product .products-grid li.item.item-print .price-box,
.onibi-diagnostic-face-print.diagnostic-result .results-list .diag-product .products-grid li.item.item-print .price-box {
  padding-bottom: 0 !important;
}
.onibi-diagnostic-body-print.diagnostic-result .results-list .diag-product .header-item .item-title,
.onibi-diagnostic-face-print.diagnostic-result .results-list .diag-product .header-item .item-title {
  font-size: 20px;
  min-height: 2cm;
}
.onibi-diagnostic-body-print.diagnostic-result .horizontal-line,
.onibi-diagnostic-face-print.diagnostic-result .horizontal-line {
  display: none;
}
.onibi-diagnostic-body-print .wrapper,
.onibi-diagnostic-face-print .wrapper {
  width: 21cm;
  min-height: 29.7cm;
  margin: 1cm auto;
  background: white;
  box-sizing: border-box;
  text-align: center;
}
.onibi-diagnostic-body-print .wrapper .button-first,
.onibi-diagnostic-face-print .wrapper .button-first {
  margin: 60px auto 0;
}

/* HOMEPAGE DIAGNOSTIC*/
.onibi-diagnostic-index-index .container-diag .description {
  margin-bottom: 100px;
}
.onibi-diagnostic-index-index .container-diag .bloc-two-diags {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto 80px;
  overflow: hidden;
}
.onibi-diagnostic-index-index .container-diag .bloc-two-diags .divcont {
  width: 46%;
  display: inline-block;
  position: relative;
}
.onibi-diagnostic-index-index .container-diag .bloc-two-diags .divcont .line {
  position: absolute;
  top: 0;
  left: 10px;
  height: 86px;
  width: 1px;
  background-color: #333;
  z-index: 10;
}
.onibi-diagnostic-index-index .container-diag .bloc-two-diags .divcont h3 {
  color: #303e48;
  font-size: 26px;
  text-transform: initial;
  padding-left: 30px;
  margin: 5px 0;
}
.onibi-diagnostic-index-index .container-diag .bloc-two-diags .divcont img {
  width: 100%;
}
.onibi-diagnostic-index-index .container-diag .bloc-two-diags .divcont .actions {
  margin-top: 45px;
  text-align: center;
}
.onibi-diagnostic-index-index .container-diag .bloc-two-diags .divcont .actions .button.button.button-first {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
.onibi-diagnostic-index-index .container-diag .bloc-two-diags .diag-face {
  float: left;
}
.onibi-diagnostic-index-index .container-diag .bloc-two-diags .diag-body {
  float: right;
}
@media all and (max-width: 979px) {
  .onibi-diagnostic-index-index .container-diag .description {
    margin-bottom: 80px;
  }
  .onibi-diagnostic-index-index .container-diag .bloc-two-diags .divcont h3 {
    font-size: 23px;
  }
}
@media all and (max-width: 770px) {
  .onibi-diagnostic-index-index .container-diag .description {
    margin-top: 11px;
    margin-bottom: 35px;
  }
  .onibi-diagnostic-index-index .container-diag .bloc-two-diags {
    margin-bottom: 50px;
  }
  .onibi-diagnostic-index-index .container-diag .bloc-two-diags .divcont {
    width: 100%;
  }
  .onibi-diagnostic-index-index .container-diag .bloc-two-diags .divcont .line {
    height: 68px;
    left: 17px;
    top: 6px;
  }
  .onibi-diagnostic-index-index .container-diag .bloc-two-diags .divcont h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .onibi-diagnostic-index-index .container-diag .bloc-two-diags .divcont .actions {
    margin-top: 20px;
  }
  .onibi-diagnostic-index-index .container-diag .bloc-two-diags .divcont .actions .button.button.button-first {
    font-size: 12.5px;
    padding: 8.5px 28px;
  }
  .onibi-diagnostic-index-index .container-diag .bloc-two-diags .diag-body {
    margin-top: 60px;
  }
}
@media all and (max-width: 479px) {
  .onibi-diagnostic-index-index .container-diag .bloc-two-diags .divcont .actions .button.button.button-first {
    font-size: 11px;
    padding: 6px 20px;
  }
}

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