@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Dancing+Script:400,700|Poppins:300,400,500,600,700");
/*
// ----------------------------------------------
// Usage example:
// For IE set $mq-support to false.
// Set the fixed value.
// Then use mixins to test whether styles should be applied.
// ----------------------------------------------

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

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

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

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

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

// ----------------------------------------------
*/
/*! 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 {
  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,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

address {
  font-style: normal;
}

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

img {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

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

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

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

body,
button,
input,
select,
table,
textarea {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  color: #636363;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
}

a {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  color: #8bbb13;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

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

a:focus {
  outline-color: #82af12;
  color: #000101;
}

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

/* ============================================ *
 * Typography
 * ============================================ */
h1, .h1 {
  margin: 0;
  margin-bottom: 0.7em;
  color: #008b9a;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: none;
}

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

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

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

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

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

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

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

.availability .label {
  display: none;
}

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

.availability.in-stock span:before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: #82d237;
  display: inline-block;
  border-radius: 20px;
  margin: 0 10px 0 0;
}

.availability.out-of-stock span:before {
  content: '';
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 20px;
  margin: 0 10px 0 0;
  background-color: #f88425;
}

/* -------------------------------------------- *
 * Page Titles
 */
.page-title h1,
.page-title h2,
.product-name h1,
.product-name .h1 {
  font-size: 24px;
  font-weight: 600;
  color: #636363;
  padding-bottom: 3px;
  margin-bottom: 15px;
  text-transform: none;
}

/* -------------------------------------------- *
 * 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: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: none;
  color: #008b9a;
  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: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin: 7px 0;
}
.block-account li strong,
.block-cms-menu li strong {
  font-weight: 400;
  color: #008b9a;
}
.block-account li a,
.block-cms-menu li a {
  color: #636363;
}
.block-account li a:hover,
.block-cms-menu li a:hover {
  color: #008b9a;
}

/* ============================================ *
 * 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: #008b9a;
  display: inline-block;
  padding: 7px 15px;
  border: 0;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: normal;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
}
.button:hover,
.cart-table .product-cart-actions .button:hover,
#co-shipping-method-form .buttons-set .button:hover,
.footer .button:hover {
  background: #007481;
  cursor: pointer;
}
.button:active,
.cart-table .product-cart-actions .button:active,
#co-shipping-method-form .buttons-set .button:active,
.footer .button:active {
  background: #005d67;
  color: #FFFFFF;
}
.button:focus,
.cart-table .product-cart-actions .button:focus,
#co-shipping-method-form .buttons-set .button:focus,
.footer .button:focus {
  background-color: #005d67;
  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: #008b9a;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.button2 span:hover,
.button2 span span:hover {
  text-decoration: none;
  color: #00464e;
}

/* -------------------------------------------- *
 * 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: 20px;
  text-align: center;
}
.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 {
  margin-left: 5px;
  min-width: 140px;
  height: 44px;
  border-radius: 22px;
  border: 3px solid #ed6d66;
  background: #ed6d66;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 0 26px;
  transition: all 200ms ease-in;
}
.buttons-set button.button:hover {
  background: #fff;
  color: #ed6d66;
}
.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, .skip-account .icon, .skip-cart .icon, .product-view .sharing-links a, .review-summary-table .rating-box .rating-number:after, .ratings-table .rating-box, .ratings-table .rating-box .rating {
  background-image: url(https://www.babymoov.com/skin/frontend/bbm/default/images/icon_sprite.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
}

/*@include if-min-resolution(2) {
    .icon-sprite {
        background-image: url(https://www.babymoov.com/skin/frontend/bbm/default/images/icon_sprite@2x.png);
        background-size: 100px 1000px;
    }
}*/
/* -------------------------------------------- *
 * Breadcrumbs
 */
.breadcrumbs {
  overflow: hidden;
  margin: -15px 0 15px;
}

.breadcrumbs li {
  float: left;
  font-size: 12px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: uppercase;
}

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

.breadcrumbs a:hover {
  color: #008b9a;
}

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

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

/* -------------------------------------------- *
 * 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: #008b9a;
  border-color: #008b9a;
}

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

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

.btn-previous:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid #008b9a;
  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;
  max-width: 1230px;
  margin: 0 auto;
  padding: 15px;
}
.main-container:after,
.footer-container:after {
  content: '';
  display: table;
  clear: both;
}

.main-container,
.footer-container {
  padding: 30px;
}

.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;
}
.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: 1230px;
  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: 1170px;
  margin-left: auto;
  margin-right: auto;
  line-height: 11px;
  min-height: 40px;
  padding-top: 14.5px;
  padding-bottom: 14.5px;
  background-image: url("https://www.babymoov.com/skin/frontend/bbm/default/images/demo-logo.png");
  background-position: left;
  background-repeat: no-repeat;
}
.global-site-notice p {
  margin-bottom: 0;
}

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

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

/* -------------------------------------------- *
 * Messages
 */
.success {
  color: #82d237;
}

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

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

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

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

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

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

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

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

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

.payment-methods .form-list {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin: 5px 15px 15px;
  padding: 15px;
  border: 1px solid #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: "Helvetica Neue", Verdana, Arial, sans-serif;
}

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

.price-notice {
  color: #A0A0A0;
}

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

.price-box .price,
.price {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

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

.price-box .minimal-price-link {
  padding-left: 1em;
  color: #008b9a;
  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: #008b9a;
  padding-left: 1em;
}
.price-box .special-price .price-label {
  color: #D84D3C;
}

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

span.weee {
  display: block;
}

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

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

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

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

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

.truncated .truncated_full_value .item-options {
  display: none;
  position: absolute;
  z-index: 300;
  width: 200px;
  padding: 8px;
  border: 1px solid #008b9a;
  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 #008b9a;
  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;
  border: 1px solid #EDEDED;
}

.no-touch .product-image:hover {
  border-color: #008b9a;
}

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

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

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

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

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

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

.std .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: "Raleway", "Helvetica Neue", Verdana, 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: "Helvetica Neue", Verdana, 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: #008b9a;
  font-family: "Helvetica Neue", Verdana, 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;
}
.pages .next:hover,
.pages .previous:hover {
  border: 1px solid #008b9a;
}

.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 #008b9a;
  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 #00464e;
  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 #008b9a;
  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 #00464e;
  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 #008b9a;
  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 #00464e;
  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 #008b9a;
  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 #00464e;
  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;
}

/* Design for 404 page */
._404_container {
  display: flex;
  justify-content: center;
  width: 100%;
}
._404_container .search_container {
  display: inline-block;
  margin-top: 57px;
}
._404_container #search {
  outline: none;
}
._404_container h2 {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  text-transform: initial;
}
._404_container ._404_illustration {
  width: 50%;
}
._404_container ._404_illustration img {
  width: 100%;
  max-width: 570px;
}
._404_container ._404_text_error_container {
  width: 50%;
  display: flex;
}
._404_container ._404_text_error {
  margin: auto;
  text-align: center;
  width: 80%;
}
._404_container .search_container {
  width: auto;
  margin: auto;
}

/* ============================================ *
 * Checkout - Stepper Layout
 * ============================================ */
.checkout_stepper-block {
  display: table;
  margin: 0 auto 60px auto;
}
.checkout_stepper-block .checkout_step-block {
  display: table-cell;
  width: 220px;
  text-align: center;
  position: relative;
}
.checkout_stepper-block .checkout_step-block:before {
  content: '';
  position: absolute;
  top: 25px;
  left: 100%;
  width: 110px;
  height: 2px;
  background-color: #c9c9cb;
  -webkit-transform: translate(-55px, 0);
  transform: translate(-55px, 0);
}
.checkout_stepper-block .checkout_step-block:last-child:before {
  display: none;
}
.checkout_stepper-block .checkout_step-block .checkout_step-number {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #c9c9cb;
  border-radius: 25px;
  margin: 0 auto 10px auto;
}
.checkout_stepper-block .checkout_step-block .checkout_step-label {
  color: #b1b3b4;
  font-size: 16px;
  font-weight: 400;
}
.checkout_stepper-block .checkout_step-block.checkout_step-active .checkout_step-number {
  background: #1f8f94;
}
.checkout_stepper-block .checkout_step-block.checkout_step-active .checkout_step-label {
  color: #1f8f94;
}

/* ============================================ *
 * Animation code
 * ============================================ */
@keyframes popTop {
  0% {
    top: -100px;
  }
  10% {
    top: 0;
  }
  90% {
    top: 0;
  }
  100% {
    top: -100px;
  }
}
/* ============================================ *
 * Atos payment method page
 * ============================================ */
.atos-payment-standard-redirect {
  background: #F3F3F3;
}
.atos-payment-standard-redirect .col-main {
  margin: auto;
}

.atos_header {
  background: url("/skin/frontend/bbm/default/images/logos/logo_bbm-large.png") center center no-repeat;
  height: 80px;
}

.atos_redirect-title {
  color: #51575a;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  padding: 40px 20px;
}

.atos_redirect-payment-method input {
  display: inline-block;
  margin: 20px;
}
.atos_redirect-payment-method img {
  display: inline;
}

/* ============================================ *
 * 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: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: none;
  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-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: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
}

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

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

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

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

select[multiple] {
  width: 270px;
  border: 1px solid #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 #008b9a;
}

.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 .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;
}

.footer-section-nl .input-box {
  position: relative;
}
.footer-section-nl input[type=email] {
  width: 100%;
  height: 44px;
  border-radius: 22px;
  border: 3px solid #008b9a;
  background-color: #fff;
  color: #008b9a;
  font-size: 16px;
  outline: none;
  padding: 0 46px 0 8px;
}
.footer-section-nl .btn_nl-subscribe {
  position: absolute;
  top: 2px;
  right: 0;
  height: 44px;
  width: 40px;
  padding: 0;
  background-color: #008b9a;
  border-radius: 0 22px 22px 0;
}
.footer-section-nl .btn_nl-subscribe span {
  font-size: 22px;
  color: #fff;
}

.account-create form .form-list, .account-create form .buttons-set {
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
}
.account-create form .field {
  margin: 0 0 19px 0;
}
.account-create form .name-middlename {
  display: none;
}
.account-create form label:first-child {
  width: 100%;
}
.account-create form .control {
  margin: 45px 0 41px 0;
}
.account-create form .control label {
  background: transparent;
}
.account-create form .control label:hover {
  background: transparent;
}
.account-create form .control input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  height: 15px;
  width: 15px;
  background: #fff;
  border: solid 2px #d7d7d9;
}
.account-create form .control input[type=checkbox]:checked {
  background: #138c94;
}
.account-create .form-instructions {
  display: block;
  margin: 21px auto 51px auto;
}

.customer-account-login .account-login .col2-set {
  margin: 80px 0 0 0;
}
.customer-account-login .account-login .col2-set .content h2 {
  text-align: center;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #0d9aa3;
  text-transform: none;
  margin: 0 0 33px 0;
}
.customer-account-login .account-login .col2-set .content ul {
  width: 100%;
  max-width: 370px;
  margin: 56px auto 0 auto;
}
.customer-account-login .account-login .col2-set .content ul li {
  margin: 0 0 20px 0;
}
.customer-account-login .account-login .col2-set .content ul li .forgot-passw {
  float: right;
  color: #5c5e63;
}
.customer-account-login .account-login .form-instructions {
  margin: 0 auto;
  display: block;
}
.customer-account-login .account-login #center-button {
  margin: 0 auto;
  display: block;
}

.customer-account-forgotpassword form .fieldset {
  margin: 0 auto 0 auto;
}
.customer-account-forgotpassword .form-instructions {
  margin: 21px 0 56px 0;
}

.account-create h1, .account-login h1, .customer-account-forgotpassword h1 {
  text-align: center;
  text-transform: none;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 30px;
  border: none;
  margin: 56px 0 0 0;
}
.account-create .form-instructions, .account-login .form-instructions, .customer-account-forgotpassword .form-instructions {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-size: 14px;
  text-align: center;
  color: #51575a;
  font-weight: 400;
  max-width: 400px;
}
.account-create label, .account-login label, .customer-account-forgotpassword label {
  font-size: 14px;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  margin: 0 0 8px 0;
}
.account-create form .buttons-set, .account-login form .buttons-set, .customer-account-forgotpassword form .buttons-set {
  margin: 0 auto;
  padding: 30px 0 0 0;
}
.account-create form .buttons-set button, .account-login form .buttons-set button, .customer-account-forgotpassword form .buttons-set button {
  float: right;
}
.account-create form .buttons-set a, .account-login form .buttons-set a, .customer-account-forgotpassword form .buttons-set a {
  color: #51575a;
  font-size: 15px;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}
.account-create form .buttons-set a small, .account-login form .buttons-set a small, .customer-account-forgotpassword form .buttons-set a small {
  background: url(https://www.babymoov.com/skin/frontend/bbm/default/images/pictos/picto_arrow-down-black.png) no-repeat;
  height: 10px;
  width: 12px;
  display: inline-block;
  transform: rotate(90deg);
  margin: 0 10px 0 0;
}
.account-create .requredmessage, .account-login .requredmessage, .customer-account-forgotpassword .requredmessage {
  color: #5c5e63;
  float: right;
  margin: 60px 0 0 0;
}
.account-create #center-button span a, .account-login #center-button span a, .customer-account-forgotpassword #center-button span a {
  color: #fff;
  outline: none;
  font-size: 16px;
}
.account-create #center-button:hover a, .account-login #center-button:hover a, .customer-account-forgotpassword #center-button:hover a {
  color: #ed6d66;
  text-decoration: none;
}

.account-create .messages li ul li, .account-login .messages li ul li, .customer-account-forgotpassword .messages li ul li {
  color: #636363;
  border-left: none;
  background: transparent;
  text-align: center;
  margin: 30px 0 0 0;
}
.account-create .messages li ul li::before, .account-login .messages li ul li::before, .customer-account-forgotpassword .messages li ul li::before {
  display: none;
}

/* ============================================ *
 * 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;
  white-space: nowrap;
}

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

.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 #c9c9cb;
  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 #c9c9cb;
}
.zebra-table td,
.zebra-table th {
  border-bottom: 1px solid #c9c9cb;
  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%;
}

.clearer:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden;
}

.dis-table {
  display: table;
  width: 100%;
}
.dis-table .dis-tableRow {
  display: table-row;
}
.dis-table .dis-tableCell {
  display: table-cell;
}

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

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

.breadcrumbs a, .breadcrumbs strong {
  text-transform: none;
  font-size: 12px;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.breadcrumbs a:hover {
  color: #636363;
  text-decoration: none;
}
.breadcrumbs li:last-child strong {
  color: #138c94;
  font-weight: 600;
}

/* ============================================ *
 * Remove for ppd mobile menu never push on master
 * ============================================ */
#returnTopMobile {
  display: none;
}

/* ============================================ *
 * Header
 * ============================================ */
.page-header {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 30px;
}
.page-header:after {
  content: '';
  display: table;
  clear: both;
}

.page-header-container {
  position: relative;
}
.page-header-container .page-header-top-content {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e1e1e1;
  padding: 40px 0;
}
.page-header-container .page-header-top-content:after {
  content: '';
  display: table;
  clear: both;
}

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

.page-header {
  position: relative;
  z-index: 9;
}

/* ============================================ *
 * Language switcher + welcome message
 * ============================================ */
.header-language-background {
  padding: 15px;
  background: #f3f3f3;
  text-transform: uppercase;
  height: 50px;
}
.header-language-background .header-language-container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.header-language-background .header-language-container ul li {
  float: left;
  font-size: 14px;
  color: #ffffff;
  text-transform: none;
  margin: 0 15px 0 0;
  padding: 0 0 10px 40px;
  font-weight: 500;
  position: relative;
  z-index: 10;
}
.header-language-background .header-language-container ul li .picto_customer-service {
  background: url("https://www.babymoov.com/skin/frontend/bbm/default/images/pictos/picto_custommer-service_new-pink.png") 0 0 no-repeat;
  width: 35px;
  height: 35px;
  position: absolute;
  left: 0;
  top: -6px;
}
.header-language-background .header-language-container ul li .picto_pieces {
  background: url("https://www.babymoov.com/skin/frontend/bbm/default/images/pictos/picto_pieces-pink.png") 0 0 no-repeat;
  width: 35px;
  height: 35px;
  position: absolute;
  left: 0;
  top: -6px;
}
.header-language-background .header-language-container ul li .picto_garantie {
  background: url("https://www.babymoov.com/skin/frontend/bbm/default/images/pictos/picto_garantie-pink.png") 0 0 no-repeat;
  width: 35px;
  height: 35px;
  position: absolute;
  left: 0;
  top: -6px;
}
.header-language-background .header-language-container ul li a {
  color: #51575a;
}
.header-language-background .header-language-container h4 {
  color: #008b9a;
  font-weight: 500;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}
.header-language-background .header-language-container ul {
  z-index: 99;
}
.header-language-background .header-language-container ul.language-selection_box {
  position: absolute;
  top: -6px;
  right: 0;
  background: url("https://www.babymoov.com/skin/frontend/bbm/default/images/pictos/picto_arrow-down-black.png") 80px 12px no-repeat;
  background-size: 10px 7px;
  border: 1px solid #f3f3f3;
  padding: 5px 20px 5px 5px;
  width: 100px;
}
.header-language-background .header-language-container ul.language-selection_box:hover {
  background: #ffffff url("https://www.babymoov.com/skin/frontend/bbm/default/images/pictos/picto_arrow-up-grey.png") 79px 13px no-repeat;
  border: 1px solid #F3F3F3;
}
.header-language-background .header-language-container ul.language-selection_box:hover li {
  display: block;
}
.header-language-background .header-language-container ul.language-selection_box:hover li span {
  color: #8f9294;
}
.header-language-background .header-language-container ul.language-selection_box:hover li span:hover {
  text-decoration: underline;
}
.header-language-background .header-language-container ul.language-selection_box li {
  float: none;
  margin: 0;
  display: none;
  padding: 0;
}
.header-language-background .header-language-container ul.language-selection_box li:first-child {
  display: block;
}
.header-language-background .header-language-container ul.language-selection_box li:first-child a {
  pointer-events: none;
}
.header-language-background .header-language-container ul.language-selection_box li a img {
  display: inline;
  margin: 0 5px 0 0;
}
.header-language-background .header-language-container ul.language-selection_box li a span {
  color: #51575a;
  font-size: 13px;
}
.header-language-background .header-language-container .link__pro-space {
  float: left;
  font-size: 13px;
  color: #8f9294;
  text-transform: none;
  font-weight: bold;
}
.header-language-background .header-language-container .link__blog-wrapper {
  float: right;
  margin: -8px 120px 0 0;
}
.header-language-background .header-language-container .link__blog-wrapper .link__blog {
  margin: 0 0 0 10px;
  max-width: 100px;
  display: inline-block;
}
.header-language-background .header-language-container .link__blog-wrapper .link__blog:first-child {
  margin: 0;
}
.header-language-background .header-language-container .link__blog-wrapper .link__blog img {
  display: block;
  width: 100%;
}
.header-language-background .header-language-container .box__store-switcher {
  float: right;
}
.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 {
  margin-top: -30px;
  width: 100%;
  margin-right: 170px;
}
.logo img {
  max-width: 100%;
}
.logo .small {
  display: block;
}
.logo .large {
  display: none;
}
.logo .logo_babymoov, .logo .logo_badabulle {
  background-size: contain !important;
  width: 100%;
}
.logo .logo_babymoov.logo_babymoov, .logo .logo_badabulle.logo_babymoov {
  margin-right: 20px;
}
.logo .logo_babymoov.logo_badabulle, .logo .logo_badabulle.logo_badabulle {
  margin-left: 20px;
}

.logo:hover {
  opacity: 0.8;
}

.logo {
  max-width: 500px;
  min-height: 90px;
  display: flex;
  /*justify-content: space-between;*/
}
.logo .small {
  display: none;
}
.logo .large {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
}

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

.skip-links {
  border: 0;
}

/* -------------------------------------------- *
 * Skip - Link
 */
.skip-link {
  position: relative;
  float: left;
  width: 20%;
  height: 44px;
  background: #FFFFFF;
  color: #636363;
  line-height: 42px;
  text-align: center;
}

a.skip-link {
  text-decoration: none;
  outline: none;
}
a.skip-link.skip-locator {
  float: none;
}
a.skip-link img {
  display: inline;
}

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

.skip-link {
  width: 20%;
}

/* -------------------------------------------- *
 * 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 .icon {
  margin-right: 3px;
}

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

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

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

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

/* ============================================ *
 * Global Header Navigation
 * ============================================ */
.account-cart-wrapper {
  position: absolute;
  top: 40px;
  right: 0;
  min-width: 152px;
  display: table;
}
.account-cart-wrapper .header-account,
.account-cart-wrapper .header-minicart,
.account-cart-wrapper .header-storloc {
  display: table-cell;
  position: relative;
  text-align: center;
  padding: 0 10px;
  min-width: 60px;
}
.account-cart-wrapper .header-account .skip-link,
.account-cart-wrapper .header-account .skip-locator,
.account-cart-wrapper .header-minicart .skip-link,
.account-cart-wrapper .header-minicart .skip-locator,
.account-cart-wrapper .header-storloc .skip-link,
.account-cart-wrapper .header-storloc .skip-locator {
  width: 40px;
  height: 40px;
  display: block;
}
.account-cart-wrapper .header-account .skip-link {
  background: url("/skin/frontend/bbm/default/images/pictos/picto_account.png") bottom center no-repeat;
}
.account-cart-wrapper .header-account .skip-link.skip-active, .account-cart-wrapper .header-account .skip-link:hover {
  background: url("/skin/frontend/bbm/default/images/pictos/picto_account-active.png") bottom center no-repeat;
}
.account-cart-wrapper .header-minicart .skip-link {
  background: url("/skin/frontend/bbm/default/images/pictos/picto_mini-cart.png") bottom center no-repeat;
}
.account-cart-wrapper .header-minicart .skip-link.skip-active, .account-cart-wrapper .header-minicart .skip-link:hover {
  background: url("/skin/frontend/bbm/default/images/pictos/picto_mini-cart-active.png") bottom center no-repeat;
}
.account-cart-wrapper .header-minicart .skip-link .count {
  position: absolute;
  top: 14px;
  right: 5px;
  background: #f89e99;
  font-size: 10px;
  color: #fff;
  line-height: 1;
  min-width: 12px;
  height: 10px;
}
.account-cart-wrapper .header-storloc .skip-locator {
  background: url("/skin/frontend/bbm/default/images/pictos/picto_locator.png") bottom center no-repeat;
}
.account-cart-wrapper .header-storloc .skip-locator:hover {
  background: url("/skin/frontend/bbm/default/images/pictos/picto_locator-active.png") bottom center no-repeat;
}

.skip-nav {
  background: url("/skin/frontend/bbm/default/images/pictos/picto_burger-menu.png") bottom center no-repeat;
}
.skip-nav:hover, .skip-nav.skip-active {
  background: url("/skin/frontend/bbm/default/images/pictos/picto_burger-menu-active.png") bottom center no-repeat;
}

.skip-search {
  background: url("/skin/frontend/bbm/default/images/pictos/picto_search.png") bottom center no-repeat;
}
.skip-search:hover, .skip-search.skip-active {
  background: url("/skin/frontend/bbm/default/images/pictos/picto_search-active.png") bottom center no-repeat;
}

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

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

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

.skip-nav {
  width: 20%;
}

.skip-nav {
  display: none;
}

/* ============================================ *
 * Nav - Skip Content
 * ============================================ */
#header-nav {
  display: block;
  /* Force visibility */
}
#header-nav .home-link {
  width: 40px;
  border-right: 1px solid #e1e1e1;
  margin: 0 0 5px;
  padding: 7px 10px 5px 0;
}
#header-nav .home-link .home-link_picto {
  width: 24px;
  height: 24px;
  background-size: 24px 24px;
  margin-top: -5px;
}
#header-nav .home-link .home-link_text {
  display: none;
}

/* ============================================ *
 * Nav Primary
 * ============================================ */
.nav-primary {
  display: block;
  margin-top: 15px;
}

/* ============================================ *
 * General Navigation Styles
 * ============================================ */
.nav-primary a {
  text-decoration: none;
  position: relative;
  display: block;
  color: #636363;
  line-height: 30px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.nav-primary li {
  position: relative;
}
.nav-primary li.level1 a {
  border-bottom: 1px solid #CCCCCC;
}

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

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

/* ============================================ *
 * Small Viewports - Accordion Style Menu
 * ============================================ */
/* ============================================ *
 * 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 a.level0 {
  padding: 0 25px;
}
.nav-primary li.level0,
.nav-primary a.level0 {
  display: inline-block;
}
.nav-primary li:last-child > a {
  border-bottom: none;
}
.nav-primary a:hover,
.nav-primary li:hover > a {
  color: #008b9a;
}
.nav-primary .menu-active {
  z-index: 200;
}
.nav-primary li.level0 ul {
  background: #fff;
  position: absolute;
  left: 0;
  top: 30px;
  /* Height of ".nav-primary a.level0" */
  z-index: 10;
  width: 250px;
  padding-left: 10px;
  padding-right: 10px;
  display: none;
  /* Hide until displayed. */
}
.nav-primary li.level1 ul {
  left: 60px;
  top: 15px;
}
.nav-primary li.level0 ul.level0.position-test {
  display: block;
}
.nav-primary li.level0 ul.level0.spill {
  right: 0;
  left: auto;
}
.nav-primary li.level0 ul.level0.spill li.level1 ul {
  left: auto;
  right: 50px;
  top: 20px;
}
.nav-primary li.level0 li.parent > a {
  position: relative;
}
.nav-primary li.level0 li.parent > a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #ccc;
  border-right: none;
  right: 5px;
  top: 50%;
  margin-top: -3px;
}

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

.nav-box_wrapper {
  padding: 13px 30px 0 30px;
  position: relative;
  z-index: 10;
}

.nav-box {
  max-width: 1170px;
  margin: 0 auto;
  border-bottom: 1px solid #e1e1e1;
}
.nav-box:after {
  content: '';
  display: table;
  clear: both;
}

.nav-container .nav .nav-link_first-lvl {
  float: left;
  vertical-align: top;
  margin: 0 30px -5px 0;
  padding-bottom: 10px;
  border-bottom: 3px solid transparent;
}
.nav-container .nav .nav-link_first-lvl > a {
  color: #51575a;
  font-size: 15px;
  display: block;
  padding: 3px 0;
}
.nav-container .nav .nav-link_first-lvl > a:hover {
  text-decoration: none;
}
.nav-container .nav .nav-link_first-lvl > a:hover img {
  transform: rotate(180deg);
  opacity: 1;
}
.nav-container .nav .nav-link_first-lvl > a > img {
  opacity: 0;
  margin: 0 0 0 10px;
  display: none;
}
.nav-container .nav .nav-link_first-lvl .home-link {
  display: inline-flex;
  padding: 30px 0;
  align-items: baseline;
}
.nav-container .nav .nav-link_first-lvl .home-link .home-link_picto {
  background: url("/skin/frontend/bbm/default/images/pictos/picto_nav-home.svg") no-repeat;
  width: 22px;
  height: 21px;
  display: block;
  background-size: 22px 21px;
}
.nav-container .nav .nav-link_first-lvl .home-link .home-link_text {
  color: #008b9a;
  padding-left: 15px;
}
.nav-container .nav .nav-link_first-lvl .subnav-wrapper {
  display: none;
  position: absolute;
  top: 54px;
  left: 0;
  width: 100%;
  background: #f3f3f3;
  padding: 30px 0;
  flex-wrap: wrap;
}
.nav-container .nav .nav-link_first-lvl:not(.home-picto):hover {
  border-bottom: 3px solid #138c94;
}
.nav-container .nav .nav-link_first-lvl:not(.home-picto):hover a {
  color: #008b9a;
}
.nav-container .nav .nav-link_first-lvl:not(.home-picto):hover .subnav-wrapper {
  display: inline-flex;
}
.nav-container .nav .nav-link_first-lvl .subnav-container {
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
  padding: 0 70px;
}
.nav-container .nav .nav-link_first-lvl .subnav-container .subnav {
  padding: 30px 10px 30px 0;
  width: 25%;
  float: left;
}
.nav-container .nav .nav-link_first-lvl .subnav-container .subnav .nav-link_second-lvl {
  line-height: 34px;
}
.nav-container .nav .nav-link_first-lvl .subnav-container .subnav .nav-link_second-lvl a {
  color: #51575a;
  font-size: 14px;
  font-weight: 400;
}
.nav-container .nav .nav-link_first-lvl .subnav-container .subnav .nav-link_second-lvl a:hover {
  text-decoration: underline;
}
.nav-container .nav .nav-link_first-lvl .subnav-container .subnav .nav-link_second-lvl a img {
  display: inline;
  margin: 0 10px 0 0;
  -webkit-transform: inherit;
  transform: inherit;
}
.nav-container .nav .nav-link_first-lvl .subnav-container .subnav .nav-link_second-lvl .nav-link_third-lvl a {
  color: #51575a;
  font-size: 14px;
  font-weight: 400;
}
.nav-container .nav .nav-link_first-lvl .subnav-container .subnav .nav-link_second-lvl .nav-link_third-lvl a:hover {
  text-decoration: underline;
}
.nav-container .nav .nav-link_first-lvl .subnav-container .subnav .nav-link_second-lvl .nav-link_third-lvl a img {
  display: inline;
  margin: 0 10px 0 0;
  -webkit-transform: inherit;
  transform: inherit;
}
.nav-container .nav .nav-link_first-lvl .push-promo_wrapper {
  width: 50%;
  float: right;
}
.nav-container .nav .nav-link_first-lvl .push-promo_wrapper a {
  display: block;
}
.nav-container .nav .nav-link_first-lvl .push-promo_wrapper a img {
  display: inline-block;
  -webkit-transform: inherit;
  transform: inherit;
  margin: 0;
  width: 100%;
}

.nav-link-box {
  float: right;
}
.nav-link-box ul li {
  display: inline-block;
  margin: 3px 0 0 30px;
  color: #51575a;
  font-size: 15px;
}
.nav-link-box ul li a {
  color: #51575a;
}

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

.skip-search {
  display: none;
}

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

#header-search {
  display: inline-block;
  padding: 0;
}

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

#search_mini_form label {
  display: none;
}

#search {
  width: 200px;
  height: 40px;
  padding: 0 40px;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  color: #b1b3b4;
  border: 2px solid #b1b3b4;
  border-radius: 20px;
  transition: all 200ms ease-in;
  outline: none;
}

#search.search-active {
  color: #51575a;
  width: 310px;
}
#search.search-active ~ .search-button {
  display: block;
}

#search_mini_form .search-input-picto {
  position: absolute;
  top: 10px;
  left: 10px;
}
#search_mini_form .search-button {
  position: absolute;
  top: 0;
  right: 0;
  height: 40px;
  width: 40px;
  padding: 0;
  background-color: #f69e9b;
  border-radius: 0 20px 20px 0;
  display: none;
}
#search_mini_form .search-button span {
  font-size: 22px;
  color: #fff;
}

/**/
/* Magento*/
/**/
/* NOTICE OF LICENSE*/
/**/
/* This source file is subject to the Academic Free License (AFL 3.0)*/
/* that is bundled with this package in the file LICENSE_AFL.txt.*/
/* It is also available through the world-wide-web at this URL:*/
/* http://opensource.org/licenses/afl-3.0.php*/
/* If you did not receive a copy of the license and are unable to*/
/* obtain it through the world-wide-web, please send an email*/
/* to license@magento.com so we can send you a copy immediately.*/
/**/
/* DISCLAIMER*/
/**/
/* Do not edit or add to this file if you wish to upgrade Magento to newer*/
/* versions in the future. If you wish to customize Magento for your*/
/* needs please refer to http://www.magento.com for more information.*/
/**/
/* @category    design*/
/* @package     rwd_default*/
/* @copyright   Copyright (c) 2006-2017 X.commerce, Inc. and affiliates (http://www.magento.com)*/
/* @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)*/
/**/
/* ============================================ *
 * Header - Account
 * ============================================ */
/* -------------------------------------------- *
 * Skip Link - Account
 */
.skip-account:not(.skip-active):hover .icon {
  background-position: -46px -44px;
}
.skip-account .icon {
  background-position: 4px -44px;
}

/* ---------------------------------------------*/
.skip-account {
  float: none;
  width: auto;
  vertical-align: top;
  display: inline-block;
  padding: 0 10px;
  text-transform: uppercase;
}

#header-account.skip-active {
  background: #fff;
  display: block;
  position: absolute;
  z-index: 200;
  top: 69px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 340px;
}

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

#header-account a:hover {
  color: #008b9a;
}

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

#header-account a:hover {
  color: #008b9a;
}

.account_popin-wrapper {
  position: relative;
  background: #ffffff;
  border: 1px solid #e1e1e1;
}
.account_popin-wrapper:after, .account_popin-wrapper:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.account_popin-wrapper:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  border-width: 16px;
  margin-left: -16px;
}
.account_popin-wrapper:before {
  border-color: rgba(225, 225, 225, 0);
  border-bottom-color: #e1e1e1;
  border-width: 17px;
  margin-left: -17px;
}

.account_popin-title {
  color: #008b9a;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}

#header-account .account_log-form {
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  padding: 30px 30px 10px 30px;
}
#header-account .account_log-form input[type=email],
#header-account .account_log-form input[type=password] {
  height: 44px;
  border-radius: 5px;
  border: 1px solid #c9c9cb;
  background-color: #fff;
  margin: 0 0 15px 0;
}
#header-account .account_log-form a {
  float: right;
  color: #51575a;
  font-size: 12px;
  font-weight: 400;
  text-decoration: underline;
}
#header-account .account_log-form a:hover {
  text-decoration: none;
}
#header-account .account_log-form .buttons-set {
  margin: 0;
  padding: 15px 0;
}
#header-account .account_log-form .buttons-set .button {
  width: 100%;
  height: 44px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 22px;
  background-color: #008b9a;
  border: 3px solid #008b9a;
  text-transform: none;
  margin: 0;
}
#header-account .account_log-form .buttons-set .button:hover {
  background-color: #fff;
  color: #008b9a;
}
#header-account .account_log-form:after {
  content: '';
  display: table;
  clear: both;
}
#header-account .link_account-create-block {
  padding: 30px;
}
#header-account .link_account-create-block .btn_account-create {
  width: 100%;
  padding: 7px;
  color: #008b9a;
  font-size: 16px;
  font-weight: 600;
  border-radius: 22px;
  background-color: #fff;
  border: 3px solid #008b9a;
  text-transform: none;
  margin: 0;
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}
#header-account .link_account-create-block .btn_account-create:hover {
  background-color: #008b9a;
  color: #fff;
  text-decoration: none;
}

/**/
/* Magento*/
/**/
/* NOTICE OF LICENSE*/
/**/
/* This source file is subject to the Academic Free License (AFL 3.0)*/
/* that is bundled with this package in the file LICENSE_AFL.txt.*/
/* It is also available through the world-wide-web at this URL:*/
/* http://opensource.org/licenses/afl-3.0.php*/
/* If you did not receive a copy of the license and are unable to*/
/* obtain it through the world-wide-web, please send an email*/
/* to license@magento.com so we can send you a copy immediately.*/
/**/
/* DISCLAIMER*/
/**/
/* Do not edit or add to this file if you wish to upgrade Magento to newer*/
/* versions in the future. If you wish to customize Magento for your*/
/* needs please refer to http://www.magento.com for more information.*/
/**/
/* @category    design*/
/* @package     rwd_default*/
/* @copyright   Copyright (c) 2006-2017 X.commerce, Inc. and affiliates (http://www.magento.com)*/
/* @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)*/
/**/
/* ============================================ *
 * 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: #fff;
  display: block;
  position: absolute;
  z-index: 200;
  top: 69px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 340px;
}

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

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

/* Using extra .skip-link selector to increase specificity*/
.skip-cart.no-count .count {
  display: none;
}

.skip-cart {
  color: #008b9a;
  text-transform: uppercase;
}
.skip-cart:hover {
  text-decoration: none;
}
.skip-cart .count {
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  position: static;
  background: none;
  margin-left: 0;
  font-size: 14px;
  width: auto;
}

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

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

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

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

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

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

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

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

.mini-cart-list li {
  position: relative;
  min-height: 90px;
  padding: 15px 15px 15px 90px;
  border-top: 1px solid #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 .details { }*/
.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;
}

.cart_popin-wrapper {
  position: relative;
  background: #ffffff;
  border: 1px solid #e1e1e1;
}
.cart_popin-wrapper:after, .cart_popin-wrapper:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.cart_popin-wrapper:after {
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  border-width: 16px;
  margin-left: -16px;
}
.cart_popin-wrapper:before {
  border-color: rgba(225, 225, 225, 0);
  border-bottom-color: #e1e1e1;
  border-width: 17px;
  margin-left: -17px;
}

.cart_popin-title {
  color: #008b9a;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}

.cart_product-list-block {
  border-top: 1px solid #e1e1e1;
}

/* ============================================ *
 * Footer
 * ============================================ */
/* -------------------------------------------- *
 * Footer
 */
.footer-box {
  background: #F3F3F3;
  padding: 30px 0;
}

.footer,
.footer button {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}

.footer {
  clear: both;
  width: 100%;
  /* -------------------------------------------- *
   * Social icons
   */
}
.footer .block-title {
  border-bottom: 0;
  padding: 3px 0;
}
.footer .block-title strong {
  font-weight: normal;
}
.footer .block-title,
.footer address {
  color: #008b9a;
}
.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: #008b9a;
}
.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(https://www.babymoov.com/skin/frontend/bbm/default/images/social_icons.png);
  background-repeat: no-repeat;
  width: 13px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 7px;
}
@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 4 / 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
  .footer .links.social-media em {
    background-image: url(https://www.babymoov.com/skin/frontend/bbm/default/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;
}

.box-reinsurance {
  position: relative;
  text-align: center;
  padding: 30px 0 0 0;
  margin: 30px 0 0 0;
  border-top: 1px solid #e1e1e1;
}
.box-reinsurance li {
  display: inline-block;
  width: 20%;
  vertical-align: top;
}
.box-reinsurance li img {
  display: inline-block;
  margin: 0 0 20px 0;
}

.box-store-locator {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  padding: 0 0 0 220px;
}
.box-store-locator .box-store-search {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 100%;
  background: #008b9a;
  padding: 20px;
}
.box-store-locator .box-store-search .store-search-title {
  color: #fff;
  font-size: 22px;
  margin: 0 0 10px 0;
  position: relative;
}
.box-store-locator .box-store-search .store-search-title:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 20px;
  height: 2px;
  background: #9bc336;
}
.box-store-locator .box-store-search .store-search-txt {
  color: #fff;
  font-size: 13px;
  padding: 0 0 20px 0;
}
.box-store-locator .box-store-search .store-search-btn {
  border-radius: 22px;
  border: 3px solid #89bd23;
  background: #89bd23;
  color: #fff;
  font-size: 16px;
  transition: all 200ms ease-in;
  padding: 7px 20px;
}
.box-store-locator .box-store-search .store-search-btn:hover {
  background: #fff;
  color: #89bd23;
  text-decoration: none;
}

.box-footer-section {
  display: table-cell;
  width: 25%;
  padding: 0 30px;
  border-left: 1px solid #c9c9cb;
}
.box-footer-section:first-child {
  padding: 0 30px 0 0;
  border-left: none;
}
.box-footer-section:last-child {
  padding: 0 0 0 30px;
}

.box-footer-section:last-child {
  padding: 40px 0 0 0;
  display: block;
  width: 100%;
  border: none;
}
.box-footer-section:last-child .footer-section {
  float: left;
  width: 50%;
}
.box-footer-section:after {
  content: '';
  display: table;
  clear: both;
}

.footer-section {
  padding: 0 0 40px 0;
}
.footer-section .footer-section-title {
  text-transform: none;
  color: #51575a;
  font-size: 22px;
  position: relative;
  margin: 0 0 30px 0;
}
.footer-section .footer-section-title:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 20px;
  height: 2px;
  background: #9bc336;
}
.footer-section .footer-section-list li {
  padding: 0 0 5px 0;
}
.footer-section .footer-section-list li a {
  color: #51575a;
}
.footer-section .footer-section-list li a.link-tel {
  font-weight: bold;
  color: #89bd23;
}
.footer-section .footer-section-list li a.link-mail {
  font-weight: bold;
}
.footer-section .footer-section-list.social-network-list li {
  display: inline-block;
}
.footer-section .footer-section-list.social-network-list li a {
  width: 40px;
  height: 40px;
  line-height: 45px;
  text-align: center;
  border: 1px solid #cacccd;
  border-radius: 40px;
  display: inline-block;
  margin: 0 5px 5px 0;
  opacity: 0.6;
  transition: all 200ms ease-in;
}
.footer-section .footer-section-list.social-network-list li a:hover {
  opacity: 1;
}
.footer-section .footer-section-list.social-network-list li a img {
  display: inline;
}
.footer-section .footer-section-list.social-network-list li a.social-network-link__linkedin {
  font-weight: 800;
  line-height: 40px;
}
.footer-section .footer-section-list.social-network-list li a.social-network-link__linkedin:hover {
  opacity: 1;
  text-decoration: none;
}
.footer-section .footer-section-list.social-network-list li:last-child a {
  margin: 0 0 5px 0;
}
.footer-section.footer-section-nl {
  border-radius: 5px;
  background-color: #89bd23;
  padding: 24px;
}
.footer-section.footer-section-nl .footer-section-title {
  color: #fff;
  margin: 0 0 10px 0;
}
.footer-section.footer-section-nl .footer-section-title:before {
  display: none;
}
.footer-section.footer-section-nl .footer-section-txt {
  color: #fff;
}

/**/
/* Magento*/
/**/
/* NOTICE OF LICENSE*/
/**/
/* This source file is subject to the Academic Free License (AFL 3.0)*/
/* that is bundled with this package in the file LICENSE_AFL.txt.*/
/* It is also available through the world-wide-web at this URL:*/
/* http://opensource.org/licenses/afl-3.0.php*/
/* If you did not receive a copy of the license and are unable to*/
/* obtain it through the world-wide-web, please send an email*/
/* to license@magento.com so we can send you a copy immediately.*/
/**/
/* DISCLAIMER*/
/**/
/* Do not edit or add to this file if you wish to upgrade Magento to newer*/
/* versions in the future. If you wish to customize Magento for your*/
/* needs please refer to http://www.magento.com for more information.*/
/**/
/* @category    design*/
/* @package     rwd_default*/
/* @copyright   Copyright (c) 2006-2017 X.commerce, Inc. and affiliates (http://www.magento.com)*/
/* @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)*/
/**/
/* ================================================= *
 * General Product List Styles (not module-specific)
 * ================================================= */
/* -------------------------------------------- *
 * Product List General
 */
.category-title h1,
body.catalogsearch-result-index .page-title h1 {
  border-bottom: none;
}

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

/* Prevent button overlapping when buttons have long text, such as non-English translations*/
.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: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: none;
  font-size: 13px;
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.4;
}
h2.product-name a,
h3.product-name a,
h4.product-name a,
h5.product-name a,
p.product-name a {
  color: #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: #008b9a;
  text-decoration: none;
}

.products-grid .product-name,
.products-list .product-name {
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 14px;
  font-family: "Raleway", "Helvetica Neue", Verdana, 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%;
}

/* If the height of the .product-info element changes, this value should be adjusted*/
.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 */
/* Container: 480 - (2 * 20 trim) = 440*/
/* Math: (440 - (20 gutter)) / 2 items = 210*/
.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("https://www.babymoov.com/skin/frontend/bbm/default/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.products-grid .product-image.loading {
  position: relative;
}
.products-grid .product-image.loading:before, .products-grid .product-image.loading:after {
  display: block;
}

/* ---------------------------------------------*/
/* Config: Three columns + flexible gutter */
/* Container: 600 - (2 * 30 trim wide) = 540*/
/* Math: (540 - (2 * 30 gutter)) / 3 items = 160*/
.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;
}

/* This mixin outputs the styles to allow for grids with more than 3 columns*/
/* ---------------------------------------------*/
/* Allow this mixin to be used for more specific purposes, such as grids contained within widgets*/
/* 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;
}

/* Allow this mixin to be used for more specific purposes, such as grids contained within widgets*/
/* 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;
}

/* Allow this mixin to be used for more specific purposes, such as grids contained within widgets*/
/* 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: 22px;
}
.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: 22px;
}

.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 {
  /* Vertically center product name*/
}
.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%;
}

/* ============================================ *
 * Module - Promo Banner Lite
 * ============================================ */
.promo-banner_wrapper .promo-banner_wording {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  padding: 12px 20px;
}

.add-to-cart-wrapper .ampromo-desc {
  display: none;
}

.product-options p a img {
  display: none;
}

/* ============================================ *
 * Catalog - List
 * ============================================ */
.category-image img {
  width: 100%;
  max-width: 100%;
}
.category-image img:hidden {
  display: none;
}

/* ============================================ *
 * Layered Navigation
 * ============================================ */
.block-layered-nav .block-subtitle--filter {
  /* Will be shown at smaller viewports*/
  display: none;
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: none;
  -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 #008b9a;
  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 {
  /* Accordions are fully expanded until a smaller resolution.*/
}
.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: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: none;
  -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 #008b9a;
  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 dl dd {
  margin-bottom: 10px;
  margin-top: 10px;
}
.block-layered-nav dl dd ol > li > span, .block-layered-nav dl dd ol > li > a {
  padding: 5px 15px;
  display: block;
}
.block-layered-nav dl dd ol > li > a .count {
  color: #A0A0A0;
}

.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: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: none;
}
.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;
}

.listTitleContainer {
  height: 250px;
  overflow: hidden;
  position: relative;
  margin-bottom: 70px;
}
.listTitleContainer p {
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 50px;
  font-weight: 500;
  text-transform: none;
  color: #fff;
  margin-bottom: 0;
}
.listTitleContainer .pictoCategory {
  position: absolute;
  top: 42%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  left: 350px;
}

.listTitleContainer-tab {
  display: table;
  width: 100%;
  height: 250px;
}

.listTitleContainer-cell {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
  overflow: hidden;
}

.listTitleContainer-cell_left {
  width: 370px;
  vertical-align: bottom;
  padding: 20px;
}

.listTitleContainer-cell_right {
  width: 800px;
}
.listTitleContainer-cell_right img {
  width: 100%;
}

.pager {
  float: left;
}
.pager .amount strong {
  font-weight: 500;
  color: #ed6d66;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
}

.toolbar {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.toolbar .logos {
  display: flex;
  margin-bottom: 5px;
  width: 50%;
}
.toolbar .logos .logo_babymoov, .toolbar .logos .logo_badabulle {
  background-size: contain !important;
  width: calc(100% / 3);
}
.toolbar .toolbarElement {
  margin-left: auto;
  margin-top: 10px;
}
.toolbar .dash {
  margin-right: 15px;
  float: left;
  color: #000;
  font-weight: 500;
}
.toolbar .sorter label {
  color: #51575a;
  font-size: 14px;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: none;
  font-weight: 500;
}
.toolbar .sorter select {
  border: none;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 500;
  outline: none;
  background: url("https://www.babymoov.com/skin/frontend/bbm/default/images/pictos/picto_arrow-down-black.png");
  background-repeat: no-repeat;
  background-position: right;
  -webkit-appearance: none;
  width: 100px;
  cursor: pointer;
  height: 30px;
}
.toolbar .sorter select option {
  outline: none;
  background: none;
  cursor: pointer;
}
.toolbar .sorter .orderBy {
  margin-left: 30px;
}
.toolbar .sorter .sort-by-switcher--desc:hover {
  background-position: 4px -567px;
}
.toolbar .sorter .sort-by-switcher--asc:hover {
  background-position: 4px -542px;
}

.categorySideBarContainer {
  border: solid 1px #cacccd;
}
.categorySideBarContainer h2 {
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #fff;
  font-weight: 500;
  padding: 14px 0 14px 20px;
  text-transform: none;
  *
        font-size: 20px;
}
.categorySideBarContainer li {
  margin-bottom: 20px;
}
.categorySideBarContainer li:first-child {
  margin-top: 20px;
}
.categorySideBarContainer .arrow_left {
  display: inline-block;
  background: url("https://www.babymoov.com/skin/frontend/bbm/default/images/pictos/picto_right-blue-arrow.png");
  background-repeat: no-repeat;
  height: 10px;
  width: 7px;
  margin-left: 30px;
}
.categorySideBarContainer a {
  display: inline-block;
  color: #51575a;
  font-size: 15px;
  text-decoration: none;
  margin-left: 12px;
}
.categorySideBarContainer a:hover {
  text-decoration: none;
}
.categorySideBarContainer .children-category {
  padding-left: 25px;
}
.categorySideBarContainer .children-category a {
  font-weight: 600;
}

.block-layered-nav--no-filters {
  padding-top: 50px;
}
.block-layered-nav--no-filters .block-title {
  background-color: #F4F4F4;
  padding-left: 10px;
  padding-bottom: 10px;
  margin-bottom: 0;
  border-top: none;
}
.block-layered-nav--no-filters .block-title strong {
  font-size: 20px;
  text-transform: none;
  font-weight: 500;
}
.block-layered-nav--no-filters .block-content {
  margin-top: 0;
}
.block-layered-nav--no-filters .block-content #narrow-by-list dt {
  border-top: none;
  padding-top: 10px;
  padding-bottom: 10px;
}
.block-layered-nav--no-filters .block-content dl dt, .block-layered-nav--no-filters .block-content dl dt:hover {
  background-color: #ffffff;
}
.block-layered-nav--no-filters .block-content h2 {
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #fff;
  font-weight: 500;
  padding: 14px 0 14px 20px;
  text-transform: none;
  font-size: 20px;
}
.block-layered-nav--no-filters .block-content a {
  display: inline-block;
  color: #51575a;
  font-size: 15px;
  text-decoration: none;
  margin-left: 12px;
}
.block-layered-nav--no-filters .block-content a:hover {
  text-decoration: none;
}

.block-layered-nav:not(.block-layered-nav--no-filters) {
  padding-top: 50px;
}
.block-layered-nav:not(.block-layered-nav--no-filters) .block-title {
  background-color: #F4F4F4;
  padding-left: 10px;
  padding-bottom: 10px;
  margin-bottom: 0;
  border-top: none;
}
.block-layered-nav:not(.block-layered-nav--no-filters) .block-title strong {
  font-size: 20px;
  text-transform: none;
  font-weight: 500;
}
.block-layered-nav:not(.block-layered-nav--no-filters) .block-content {
  margin-top: 0;
  padding-top: 20px;
  border: 1px solid #CCCCCC;
  border-top: none;
}
.block-layered-nav:not(.block-layered-nav--no-filters) .block-content .currently .block-subtitle {
  padding-left: 10px;
}
.block-layered-nav:not(.block-layered-nav--no-filters) .block-content .currently .btn-remove {
  float: left;
  border: none;
  margin-right: 5px;
}
.block-layered-nav:not(.block-layered-nav--no-filters) .block-content .currently .btn-remove:after {
  color: #CCCCCC;
  font-weight: bold;
  vertical-align: middle;
}
.block-layered-nav:not(.block-layered-nav--no-filters) .block-content .currently .btn-remove:hover {
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #CCCCCC;
}
.block-layered-nav:not(.block-layered-nav--no-filters) .block-content .actions {
  display: none;
}

.push-img {
  width: 100%;
  max-width: 270px;
  margin-top: 29px;
}

.seofooter {
  padding-top: 68px;
  border-top: solid 1px #cacccd;
  margin-top: 60px;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.seofooter h1 {
  color: #0d9aa3;
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 20px 0;
}
.seofooter h2 {
  color: #0d9aa3;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 20px 0;
}
.seofooter h3 {
  color: #0d9aa3;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px 0;
}
.seofooter h4 {
  color: #51575a;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px 0;
}
.seofooter p {
  color: #51575a;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin: 0 0 20px 0;
}
.seofooter p a {
  color: #8bbb13;
}
.seofooter a {
  color: #8bbb13;
}

.main .category-products .products-grid li {
  margin-top: 50px;
}
.main .category-products .products-grid li img {
  height: auto;
  margin: 0 auto;
  max-width: 270px;
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #fff;
}
.main .category-products .products-grid li h4, .main .category-products .products-grid li p, .main .category-products .products-grid li .shortDescription {
  text-align: left;
}

.product-content {
  position: relative;
}
.product-content:before {
  content: "";
  display: block;
  padding: 100% 0 0 0;
}
.product-content .hover_img {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #fff;
}
.product-content .hoverProduct {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 0;
  left: 0;
  background: #fff;
  overflow: hidden;
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}
.product-content .cta-product {
  opacity: 0;
}

.products-grid li:hover .hoverProduct, .products-grid li:hover .cta-product {
  opacity: 1;
}

.slider_cat-product:hover .cta-product {
  opacity: 1;
}

.reduction_pourcent span {
  color: #fff;
  text-align: center;
  line-height: 50px;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}

.new_product, .reduction_pourcent, .favorite img {
  position: absolute;
  width: 100%;
  height: 100%;
}

.new_product,
.reduction_pourcent,
.favorite {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  z-index: 4;
}

.infosproducts,
.infosproducts > a,
.infosproducts > a:hover {
  font-size: 14px;
  font-weight: 400;
  color: #636363;
  text-decoration: none;
  cursor: pointer;
}
.infosproducts h4,
.infosproducts > a h4,
.infosproducts > a:hover h4 {
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #51575a;
  text-transform: none;
  margin-bottom: 12px;
  margin-top: 20px;
}
.infosproducts p,
.infosproducts > a p,
.infosproducts > a:hover p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 16px;
}
.infosproducts .price-box,
.infosproducts > a .price-box,
.infosproducts > a:hover .price-box {
  text-align: left;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
}
.infosproducts .price-box .special-price .price,
.infosproducts > a .price-box .special-price .price,
.infosproducts > a:hover .price-box .special-price .price {
  color: #ed6d66;
  font-weight: 600;
  font-size: 16px;
}
.infosproducts .price-box .old-price .price,
.infosproducts > a .price-box .old-price .price,
.infosproducts > a:hover .price-box .old-price .price {
  font-weight: 600;
  color: #008b9a;
  font-size: 16px;
}
.infosproducts .rating-box,
.infosproducts > a .rating-box,
.infosproducts > a:hover .rating-box {
  float: left;
}
.infosproducts .attribute_color-filter-block,
.infosproducts > a .attribute_color-filter-block,
.infosproducts > a:hover .attribute_color-filter-block {
  position: absolute;
  top: -25px;
}
.infosproducts .attribute_color-filter-block .attribute_color-filter,
.infosproducts > a .attribute_color-filter-block .attribute_color-filter,
.infosproducts > a:hover .attribute_color-filter-block .attribute_color-filter {
  width: 20px;
  height: 20px;
  background: #ccc;
  border-radius: 20px;
  border: 2px solid #fff;
  display: inline-block;
  margin: -15px 0 5px;
}
.infosproducts .attribute_color-filter-block .attribute_color-filter:last-child,
.infosproducts > a .attribute_color-filter-block .attribute_color-filter:last-child,
.infosproducts > a:hover .attribute_color-filter-block .attribute_color-filter:last-child {
  margin-right: 0;
}
.infosproducts .attribute_color-filter-block .attribute_color-filter,
.infosproducts > a .attribute_color-filter-block .attribute_color-filter,
.infosproducts > a:hover .attribute_color-filter-block .attribute_color-filter {
  box-shadow: 0 0 2px #a6d1d4;
}

/* ============================================ *
 * Catalog - Product
 * ============================================ */
.product-view .product-essential .extra-info .ratings .rating-box,
.product-view .product-essential .extra-info .ratings .amount {
  float: left;
}
.product-view .product-essential .extra-info .ratings .rating-box {
  margin-top: 4px;
  margin-right: 10px;
}
.product-view .product-essential .extra-info .ratings:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .product-essential:after {
  content: '';
  display: table;
  clear: both;
}
.product-view .product-shop .product-name .h1,
.product-view .product-img-box .product-name h1 {
  color: #008b9a;
  margin-bottom: 10px;
  border: 0;
}
.product-view .product-name {
  display: none;
  float: left;
}
.product-view .product-name .h1 {
  float: left;
  color: #008B9A;
  font-size: 36px;
  font-weight: 600;
}
.product-view .product-shop {
  width: 50%;
  float: right;
}
.product-view .product-shop .extra-info {
  float: left;
  padding-right: 15px;
  clear: left;
  width: 100%;
}
.product-view .product-shop .extra-info ul li {
  padding-left: 1em;
  text-indent: -.7em;
}
.product-view .product-shop .extra-info ul li:before {
  content: "• ";
  color: #008b9a;
}
.product-view .product-shop .product_sell-box {
  margin-bottom: 10px;
}
.product-view .product-shop .product_sell-options {
  display: table-cell;
  text-align: left;
  width: 50%;
  max-width: 260px;
}
.product-view .product-shop .product_sell-options .attribute_color-filter-block .attribute_color-filter {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: #ccc;
  border-radius: 20px;
  border: 4px solid #fff;
  display: inline-block;
  margin: 0 5px 0 0;
}
.product-view .product-shop .product_sell-options .attribute_color-filter-block .attribute_color-filter:last-child {
  margin: 0;
}
.product-view .product-shop .product_sell-options .attribute_color-filter-block .attribute_color-filter {
  box-shadow: 0 0 2px #a6d1d4;
}
.product-view .product-shop .product_GAV {
  display: table;
  margin: 40px 0 0 0;
}
.product-view .product-shop .product_GAV img {
  display: table-cell;
  vertical-align: middle;
}
.product-view .product-shop .product_GAV p {
  display: table-cell;
  color: #95cc61;
  font-size: 13px;
  font-weight: 500;
  padding: 0 20px;
  vertical-align: middle;
}
.product-view .product-shop .price-info {
  display: table-cell;
  padding: 20px 0 20px 15px;
  text-align: right;
  width: 50%;
  max-width: 260px;
  border-left: 1px solid #c9c9cb;
  position: relative;
  vertical-align: top;
}
.product-view .product-shop .extra-info-avis {
  display: inline-flex;
  align-items: center;
  width: 100%;
}
.product-view .product-shop .extra-info-avis .sku {
  color: #828282;
  font-size: 12px;
  padding-bottom: 3px;
  margin: 17px 0;
}
.product-view .product-shop .extra-info {
  max-width: 100%;
  margin-bottom: 20px;
}
.product-view .product-shop .short-description {
  margin-bottom: 10px;
  clear: both;
  color: #51575a;
  font-size: 16px;
  font-weight: 500;
}
.product-view .product-shop .ratings {
  margin-bottom: 8px;
}
.product-view .product-shop .availability {
  font-size: 13px;
  color: #51575a;
  font-weight: 500;
  text-transform: lowercase;
  position: relative;
}
.product-view .product-shop .availability.in-stock {
  padding: 0 20px 0 0;
}
.product-view .product-shop .availability.in-stock:after {
  content: "•";
  color: #82d237;
  font-size: 36px;
  position: absolute;
  top: -18px;
  right: 0;
}
.product-view .product-shop .add-to-cart {
  padding: 0;
  margin: 0;
  border: none;
  padding-top: 10px;
}
.product-view .product-shop .add-to-cart-buttons {
  float: none;
  margin: 0;
}
.product-view .product-shop .hatch_btn-open-popin,
.product-view .product-shop .button.btn-cart {
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 600;
  border-radius: 21px;
  margin: 20px 0 0 10px;
  max-width: 220px;
  text-align: center;
  transition: all 200ms ease-in;
  float: none;
  text-transform: none;
}
.product-view .product-shop .hatch_btn-open-popin {
  padding: 8px 20px 8px 30px;
}
.product-view .product-shop .button.btn-cart {
  padding: 0;
}
.product-view .product-shop .link_storeloc-page {
  padding: 8px 20px;
}
.product-view .product-shop .button.btn-cart {
  color: #fff;
  border: 3px solid #ed6d66;
  background-color: #ed6d66;
}
.product-view .product-shop .button.btn-cart:hover {
  color: #ed6d66;
  background-color: #fff;
}
.product-view .product-shop .hatch_btn-open-popin {
  color: #ed6d66;
  border: 3px solid #ed6d66;
  background-color: #fff;
  background-image: url("/skin/frontend/bbm/default/images/pictos/picto_sellers-cart.png");
  background-repeat: no-repeat;
  background-position: 10px center;
}
.product-view .product-shop .hatch_btn-open-popin:hover {
  color: #fff;
  background-color: #ed6d66;
  background-image: url("/skin/frontend/bbm/default/images/pictos/picto_sellers-cart-hover.png");
}
.product-view .product-shop .link_storeloc-page {
  color: #138c94;
  display: block;
  text-align: left;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0 0 40px;
  padding: 8px 0 8px 30px;
}
.product-view .product-shop .link_storeloc-page:hover {
  text-decoration: underline;
}
.product-view .product-shop .link_storeloc-page:before {
  content: "";
  position: absolute;
  top: 5px;
  left: -5px;
  background: url("/skin/frontend/bbm/default/images/pictos/picto_our-store-pin.png") center center no-repeat;
  width: 18px;
  height: 24px;
}
.product-view .product-shop .product_add-to-wishlist {
  display: block;
  text-align: left;
  position: relative;
  color: #51575a;
  font-size: 14px;
  font-weight: 500;
  margin: 20px 0 0 40px;
  padding: 8px 0 8px 30px;
  text-decoration: underline;
}
.product-view .product-shop .product_add-to-wishlist:hover {
  text-decoration: none;
}
.product-view .product-shop .product_add-to-wishlist:before {
  content: "♥";
  position: absolute;
  top: -5px;
  left: -5px;
  font-size: 30px;
}
.product-view .product-shop .price-box {
  margin-top: 0;
}
.product-view .product-shop .price-box .product_reco-price {
  color: #51575a;
  font-size: 14px;
  font-weight: 700;
}
.product-view .product-shop .price-box .old-price,
.product-view .product-shop .price-box .special-price,
.product-view .product-shop .price-box .regular-price {
  padding-right: 0;
  line-height: 1.2;
}
.product-view .product-shop .price-box .regular-price .price,
.product-view .product-shop .price-box .special-price .price,
.product-view .product-shop .price-box .full-product-price .price {
  color: #008B9A;
  font-size: 30px;
  font-weight: 600;
}
.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 .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 .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: 50%;
  float: right;
  clear: right;
}

.product-img-box {
  width: 50%;
  float: left;
  position: relative;
  padding: 0 50px 0 100px;
}
.product-img-box .product-name h1 {
  border: 0;
}
.product-img-box .product-image {
  margin-bottom: 10px;
  border: none;
  float: left;
  width: 100%;
}
.product-img-box .product-image img {
  vertical-align: middle;
  max-width: 100%;
  width: 100%;
  max-height: 470px;
  margin: 0 auto;
}

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

.more-views {
  width: 74px;
  position: absolute;
  top: 0;
  left: 0;
}
.more-views .product-image-thumbs {
  max-height: 475px;
  overflow-x: hidden;
  overflow-y: auto;
}

.product-image-thumbs li {
  margin: 15px 0 0 0;
}
.product-image-thumbs li a {
  display: inline-block;
  text-align: center;
  outline: none;
  border: 2px solid #dbdbdb;
  opacity: 0.8;
  transition: all 200ms ease-in;
}
.product-image-thumbs li a:hover {
  opacity: 1;
}
.product-image-thumbs li:first-child {
  margin: 0;
}

.product_awards-list li {
  float: left;
}
.product_awards-list li img {
  height: 64px;
}

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

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

.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-bottom: 3px;
  margin-bottom: 10px;
  border-bottom: 1px solid #CCCCCC;
}
.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: 10px;
}
.product-view .qty-wrapper {
  float: none;
  top: 80px;
}
.product-view .qty-wrapper label {
  float: none;
  line-height: 40px;
}
.product-view .qty-wrapper .qty {
  height: 40px;
  margin-left: 10px;
}
.product-view .add-to-cart-buttons {
  float: left;
  margin-right: 10px;
  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: 40px;
  font-size: 16px;
  padding: 0px 30px;
  float: left;
  min-width: 160px;
  width: 100%;
  white-space: normal;
}
.product-view .alert-price,
.product-view .alert-stock {
  clear: both;
}
.product-view .alert-price a:before, .product-view .alert-stock a:before {
  content: "✉";
  position: absolute;
  top: 5px;
  left: -10px;
  font-size: 30px;
}
.product-view .alert-price a, .product-view .alert-stock a {
  display: block;
  text-align: left;
  position: relative;
  color: #51575a !important;
  font-size: 14px;
  font-weight: 500;
  margin: 20px 0 0 40px;
  padding: 8px 0 8px 30px;
  text-decoration: underline;
}

/* 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: 0px;
  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 0px;
  margin-left: 7px;
  border-right: 1px solid #CCCCCC;
}
.product-view .add-to-links li:first-child a {
  margin-left: 0px;
}
.product-view .add-to-links li:last-child a {
  border-right: 0px;
}

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

.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: #008b9a;
}
.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-view .product-shop .product-name {
  display: block;
}

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

.product-view .ratings .rating-links {
  float: left;
  margin-top: 0;
}
.product-view .ratings .rating-links a {
  font-size: 13px;
  font-weight: 500;
}
.product-view .ratings .rating-links a.product_reviews {
  color: #51575a;
}
.product-view .ratings .rating-links a.product_add-review {
  color: #008b9a;
  text-decoration: underline;
}
.product-view .ratings .rating-links a.product_add-review:hover {
  text-decoration: none;
}

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

/* -------------------------------------------- *
 * Catalog - Grouped Product List
 */
.grouped-items-table-wrapper {
  border: solid 1px #c9c9cb;
  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: #008b9a;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.grouped-items-table .qty-wrapper {
  padding-top: 7px;
}
.grouped-items-table .qty-label {
  margin-left: 7px;
}
.grouped-items-table td {
  padding: 4px;
}
.grouped-items-table td:last-child {
  width: 30%;
  text-align: left;
}
.grouped-items-table .price-box {
  text-align: right;
}

/* -------------------------------------------- *
 * Catalog - Product Options
 */
.product-options {
  width: 100%;
  margin: 10px 0 10px;
  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 {
  display: inline-block;
  width: 45%;
}

.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-box label {
  color: #51575a;
  font-size: 13px;
  font-weight: 500;
}

.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%;
  height: 44px;
  border-radius: 5px;
  border: 1px solid #c9c9cb;
  background-color: #fff;
}

.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: $c-module-background;
    padding: 15px 20px;
    border: 1px solid $c-fieldset-border;
    border-top: 0;
    margin-bottom: $box-spacing;
}*/
.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: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  text-transform: none;
  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 {
  margin-top: 20px;
}
.box-up-sell .ratings {
  display: none;
}

/* -------------------------------------------- *
 * Product page - Tabs System
 */
.product-tabs {
  margin: 40px 0;
  position: relative;
}

.product-tabs_control-box {
  width: 100%;
  display: flex;
  position: relative;
}
.product-tabs_control-box .product-tabs_control-btn {
  border: 1px solid #e4e4e5;
  border-collapse: collapse;
  flex-grow: 1;
  display: block;
  text-align: center;
  width: 100%;
  height: 50px;
  outline: none;
  color: #51575a;
  font-size: 16px;
  font-weight: 500;
  background: #f3f3f3;
  transition: all 200ms ease-in;
}
.product-tabs_control-box .product-tabs_control-btn.active {
  background: #008b9a;
  color: #fff;
}
.product-tabs_control-box .tab-menu_deploy-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  opacity: 0;
  display: none;
}

.tabcontent {
  border-right: 1px solid #e4e4e5;
  border-bottom: 1px solid #e4e4e5;
  border-left: 1px solid #e4e4e5;
  padding: 70px;
}
.tabcontent:after {
  display: table;
  clear: both;
  content: " ";
}

.descriptive_content {
  border-top: 1px solid #e4e4e5;
  padding-top: 60px;
}
.descriptive_content:first-child {
  border-top: none;
  padding-top: 0;
}
.descriptive_content h2 {
  color: #008b9a;
  font-weight: 600;
}
.descriptive_content h3 {
  color: #008b9a;
  font-weight: 600;
}
.descriptive_content h4 {
  color: #51575a;
  font-weight: 500;
}
.descriptive_content p {
  color: #51575a;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.descriptive_content ul li,
.descriptive_content ol li {
  padding-left: 1em;
  text-indent: -.7em;
}
.descriptive_content ul li:before,
.descriptive_content ol li:before {
  content: "• ";
  color: #008b9a;
}
.descriptive_content.descriptive_only-txt h2 {
  font-size: 36px;
  margin: 0 0 30px 0;
}
.descriptive_content.descriptive_only-txt h3 {
  font-size: 26px;
  margin: 0 0 20px 0;
}
.descriptive_content.descriptive_only-txt h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
}
.descriptive_content.descriptive_only-txt p {
  margin: 0 0 60px 0;
}
.descriptive_content.descriptive_txt-and-img:nth-child(odd) .txt-and-img_block-txt {
  order: 2;
}
.descriptive_content.descriptive_txt-and-img:nth-child(odd) .txt-and-img_block-img {
  order: 1;
  text-align: left;
}
.descriptive_content.descriptive_txt-and-img:nth-child(even) .txt-and-img_block-txt {
  order: 1;
}
.descriptive_content.descriptive_txt-and-img:nth-child(even) .txt-and-img_block-img {
  order: 2;
  text-align: right;
}
.descriptive_content.descriptive_txt-and-img .txt-and-img_block {
  margin: 0 0 60px 0;
  display: flex;
}
.descriptive_content.descriptive_txt-and-img .txt-and-img_block .txt-and-img_block-txt,
.descriptive_content.descriptive_txt-and-img .txt-and-img_block .txt-and-img_block-img {
  display: table-cell;
  vertical-align: middle;
}
.descriptive_content.descriptive_txt-and-img .txt-and-img_block .txt-and-img_block-txt {
  width: 40%;
  margin: auto;
}
.descriptive_content.descriptive_txt-and-img .txt-and-img_block .txt-and-img_block-txt h2 {
  font-size: 26px;
  margin: 0 0 20px 0;
}
.descriptive_content.descriptive_txt-and-img .txt-and-img_block .txt-and-img_block-img {
  width: 60%;
  margin: auto;
  padding: 0 20px;
}
.descriptive_content.descriptive_txt-and-img .txt-and-img_block .txt-and-img_block-img ul li {
  list-style: disc outside none;
}
.descriptive_content.descriptive_txt-and-img .txt-and-img_block .txt-and-img_block-img img {
  display: inline;
  max-width: 100%;
}
.descriptive_content.descriptive_txt-and-img .txt-and-img_block:after {
  content: '';
  display: table;
  clear: both;
}
.descriptive_content.descriptive_only-img h2 {
  font-size: 26px;
  margin: 0 0 60px 0;
}
.descriptive_content.descriptive_only-img img {
  width: 100%;
}

.features_content:first-child {
  border-top: none !important;
  padding-top: 0;
}
.features_content h2 {
  color: #008b9a;
  font-weight: 600;
}
.features_content h3 {
  color: #008b9a;
  font-weight: 600;
}
.features_content h4 {
  color: #51575a;
  font-weight: 500;
}
.features_content p {
  color: #51575a;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.features_content:after {
  display: table;
  content: '';
  clear: both;
}
.features_content.features_txt, .features_content.features_img {
  width: 50%;
  float: left;
}
.features_content.features_txt:after, .features_content.features_img:after {
  display: table;
  content: '';
  clear: both;
}
.features_content.features_txt h2 {
  font-size: 36px;
}
.features_content ul li {
  padding: 0 0 5px 0;
}
.features_content ul li:before {
  content: "• ";
  color: #008B9A;
  padding: 0 5px 0 0;
}
.features_content.features_main-txt {
  /*float: left;
  margin:   70px 0 0 0;*/
  padding: 60px 0 0 0;
  border-top: solid 1px #e4e4e5;
}
.features_content.features_content img {
  max-width: 470px;
  width: 100%;
  float: right;
}

.video_content {
  margin: 60px 0 0 0;
}
.video_content:first-child {
  margin: 0;
}
.video_content h2 {
  color: #008b9a;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 40px 0;
  text-transform: none;
}
.video_content .video-frame_container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video_content .video-frame_container iframe,
.video_content .video-frame_container object,
.video_content .video-frame_container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#Reviews {
  background: #f3f3f3;
}
#Reviews h2 {
  color: #0d9aa3;
  font-size: 36px;
  font-weight: 600;
  margin: 0 0 40px 0;
  text-align: center;
}

.review_content .review_form-block {
  float: left;
  width: 40%;
  background: #1b8d9a;
  border-radius: 5px;
  padding: 50px 30px;
}
.review_content .review_form-block h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  text-transform: none;
  text-align: center;
  margin: 0 0 30px 0;
}
.review_content .review_form-block .value {
  position: relative;
  text-align: center;
  margin: 0 0 20px 0;
  padding: 10px 0;
}
.review_content .review_form-block .value input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.review_content .review_form-block .value label {
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
.review_content .review_form-block .value input[type="radio"]:nth-child(1):checked ~ .rating_1 {
  color: #efba73;
}
.review_content .review_form-block .value input[type="radio"]:nth-child(2):checked ~ .rating_1,
.review_content .review_form-block .value input[type="radio"]:nth-child(2):checked ~ .rating_2 {
  color: #efba73;
}
.review_content .review_form-block .value input[type="radio"]:nth-child(3):checked ~ .rating_1,
.review_content .review_form-block .value input[type="radio"]:nth-child(3):checked ~ .rating_2,
.review_content .review_form-block .value input[type="radio"]:nth-child(3):checked ~ .rating_3 {
  color: #efba73;
}
.review_content .review_form-block .value input[type="radio"]:nth-child(4):checked ~ .rating_1,
.review_content .review_form-block .value input[type="radio"]:nth-child(4):checked ~ .rating_2,
.review_content .review_form-block .value input[type="radio"]:nth-child(4):checked ~ .rating_3,
.review_content .review_form-block .value input[type="radio"]:nth-child(4):checked ~ .rating_4 {
  color: #efba73;
}
.review_content .review_form-block .value input[type="radio"]:nth-child(5):checked ~ .rating_1,
.review_content .review_form-block .value input[type="radio"]:nth-child(5):checked ~ .rating_2,
.review_content .review_form-block .value input[type="radio"]:nth-child(5):checked ~ .rating_3,
.review_content .review_form-block .value input[type="radio"]:nth-child(5):checked ~ .rating_4,
.review_content .review_form-block .value input[type="radio"]:nth-child(5):checked ~ .rating_5 {
  color: #efba73;
}
.review_content .review_form-block .form-list .input-text {
  border-radius: 5px;
  background-color: #fff;
  color: #51575a;
  font-size: 14px;
  font-weight: 400;
  height: 45px;
  padding: 10px;
  outline: none;
}
.review_content .review_form-block .form-list textarea {
  border-radius: 5px;
  background-color: #fff;
  resize: none;
  color: #51575a;
  font-size: 14px;
  font-weight: 400;
  height: 130px;
  padding: 10px;
  outline: none;
  width: 100%;
  max-width: 100%;
}
.review_content .review_comment-block {
  float: right;
  width: 60%;
  padding: 0 0 0 30px;
}
.review_content:after {
  content: '';
  display: table;
  clear: both;
}

#product-review-table thead {
  display: none;
}
#product-review-table tbody tr th:first-child {
  display: none;
}
#product-review-table tbody tr td {
  border: none;
}

.review_user-comment-block {
  border-radius: 5px;
  background-color: #fff;
  margin: 15px 0 0 0;
}
.review_user-comment-block:first-child {
  margin: 0;
}
.review_user-comment-block dd {
  padding: 30px;
}

.support_content-title {
  color: #008b9a;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 80px 0;
}

.support_link-list {
  display: table;
  margin: 0 auto;
}
.support_link-list li {
  display: table-cell;
  padding: 0 50px;
}
.support_link-list li a {
  width: 136px;
  height: 136px;
  border-radius: 68px;
  display: table-cell;
  text-align: center;
  background: #0d9aa3;
  transition: all 200ms ease-in;
  vertical-align: middle;
}
.support_link-list li a:hover {
  background: #ed6d66;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.support_link-list li a img {
  display: inline;
}
.support_link-list li p {
  text-align: center;
  font-size: 15px;
  margin: 20px 0 0 0;
  max-width: 136px;
}

.support_faq-container {
  padding: 80px 0;
  margin: 80px 0;
  border-top: 1px solid #c9c9cb;
  border-bottom: 1px solid #c9c9cb;
}
.support_faq-container h2 {
  color: #0d9aa3;
  font-size: 26px;
  font-weight: 600;
}
.support_faq-container h3 {
  color: #51575a;
  font-size: 24px;
  font-weight: 500;
}
.support_faq-container p {
  font-size: 14px;
  line-height: 22px;
  color: #51575a;
  font-weight: 400;
}

.associate-product_table {
  width: 100%;
}
.associate-product_table th,
.associate-product_table td {
  border-bottom: 1px solid #c9c9cb;
  color: #51575a;
  font-weight: 500;
  text-align: center;
}
.associate-product_table th {
  font-size: 18px;
  padding: 0 0 15px 0;
}
.associate-product_table td {
  font-size: 14px;
  position: relative;
  padding: 60px 0;
  min-height: 160px;
  max-width: 300px;
}
.associate-product_table td.associate-product_price-cell .availability.in-stock {
  display: none;
}
.associate-product_table td:first-child {
  padding: 60px 0 60px 130px;
  text-align: left;
}
.associate-product_table td:last-child {
  text-align: right;
}
.associate-product_table td img {
  position: absolute;
  top: 30px;
  left: 0;
}
.associate-product_table td select {
  width: 85px;
  height: 44px;
  border-radius: 5px;
  border: 1px solid #c9c9cb;
  background-color: #fff;
  padding: 0 10px;
}
.associate-product_table td .btn_add-to-cart {
  border-radius: 22px;
  background: #ed6d66;
  border: 2px solid #ed6d66;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  outline: none;
  transition: all 200ms ease-in;
}
.associate-product_table td .btn_add-to-cart:hover {
  background: #fff;
  color: #ed6d66;
  text-decoration: none;
}
.associate-product_table td .product_out-of-stock {
  border-radius: 22px;
  background: #8f9294;
  border: 2px solid #8f9294;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  outline: none;
}
.associate-product_table td .alert-price,
.associate-product_table td .alert-stock {
  clear: both;
}
.associate-product_table td .alert-price a:before, .associate-product_table td .alert-stock a:before {
  content: "✉";
  position: absolute;
  top: -3px;
  left: 60px;
  font-size: 30px;
}
.associate-product_table td .alert-price a, .associate-product_table td .alert-stock a {
  display: block;
  position: relative;
  color: #51575a !important;
  font-size: 14px;
  font-weight: 500;
  margin: 20px 0 0 40px;
  padding: 8px 0 8px 30px;
  text-decoration: underline;
}

/* -------------------------------------------- *
 * Sharing link
 */
.sharing_link-list li {
  float: right;
  margin: 0 0 0 10px;
}
.sharing_link-list li:last-child {
  margin: 0;
}
.sharing_link-list li a img {
  opacity: 0.8;
  transition: all 200ms ease-in;
}
.sharing_link-list li a:hover img {
  opacity: 1;
}

/* -------------------------------------------- *
 * HATCH - Redirect to store partner
 */
.widget-hatch_popin-layer {
  position: fixed;
  top: 0;
  left: 100%;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 0;
  transition: opacity 200ms ease-in;
}

.widget-hatch_popin-active .widget-hatch_popin-layer {
  left: 0;
  opacity: 1;
}

.widget-hatch_popin-block {
  position: absolute;
  top: -280px;
  right: -1000px;
  background: #fff;
  z-index: 101;
  opacity: 0;
  transition: all 200ms ease-in;
  min-width: 460px;
}

.widget-hatch_popin-active .widget-hatch_popin-block {
  right: 0;
  opacity: 1;
}

.widget-hatch_popin-title {
  color: #138c94;
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px solid #c9c9cb;
  text-align: center;
  padding: 0 40px 20px 40px;
  margin: 0;
}

.widget-hatch_popin-content {
  position: relative;
  padding: 60px;
  overflow: auto;
}

.widget-hatch_close-popin {
  color: #cacccd;
  font-weight: bold;
  font-size: 18px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.widget-hatch_popin-content > div {
  max-height: 340px;
}

.widget-hatch_popin-content div > div {
  display: none;
}

.widget-hatch_popin-content div a {
  border-bottom: 1px solid #c9c9cb;
  padding: 20px;
  display: block;
  width: 460px;
  position: relative;
  transition: all 200ms ease-in;
}
.widget-hatch_popin-content div a:before {
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 20px;
  background-color: #ed6d66;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 4px 20px;
  border: 2px solid #ed6d66;
}
.widget-hatch_popin-content div a:hover {
  background: #f3f3f3;
}
.widget-hatch_popin-content div a:hover:before {
  background-color: #fff;
  color: #ed6d66;
}
.widget-hatch_popin-content div a div {
  border: none !important;
}
.widget-hatch_popin-content div a div:nth-child(3) {
  display: none;
}

#anchor_custommer-service {
  margin: 60px 0 0 0;
}
#anchor_custommer-service:after {
  content: '';
  display: table;
  clear: both;
}
#anchor_custommer-service h2 {
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 26px;
  color: #0d9aa3;
  font-weight: 600;
  margin: 0 0 35px 0;
}

.illustration-sav {
  float: left;
  width: 50%;
}
.illustration-sav img {
  width: 100%;
}

.infos-sav {
  width: 50%;
  float: left;
  padding: 0 0 0 60px;
}
.infos-sav h3 {
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 25px 0;
}
.infos-sav p {
  margin: 0 0 45px 0;
}

.link_sendmessage-support, .link_call-support {
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 21px;
  margin: 20px 0 0 0;
  max-width: 220px;
  text-align: center;
  transition: all 200ms ease-in;
  border: 3px solid #8bbb13;
}

.link_sendmessage-support {
  color: #fff;
  background: #8bbb13;
}

.link_call-support {
  color: #8bbb13;
  background: #fff;
}

.link_sendmessage-support:hover {
  color: #8bbb13;
  background: #fff;
  text-decoration: none;
}

.link_call-support:hover {
  color: #fff;
  background: #8bbb13;
  text-decoration: none;
}

.attribute-182 {
  display: none;
}

#popup {
  position: fixed;
  left: 0;
  top: -100px;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  width: 100%;
  z-index: 100;
  animation-name: popTop;
  animation-duration: 3s;
}
#popup .popup_add-to-cart-notif {
  color: #fff;
  text-align: center;
  font-weight: 600;
}

#popup_add-to-cart {
  position: fixed;
  background: #fff;
  padding: 20px;
  z-index: 100;
  max-width: 340px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#popup_add-to-cart .popup_add-to-cart-notif {
  padding-right: 14px;
}
#popup_add-to-cart .popup_add-to-cart-notif img {
  padding-right: 20px;
  max-width: 150px;
}
#popup_add-to-cart h3 {
  color: #138c94;
  font-weight: 600;
}
#popup_add-to-cart .price {
  margin-top: 10px;
}
#popup_add-to-cart .button-actions {
  text-align: center;
}
#popup_add-to-cart .button-actions .button {
  height: 44px;
  border-radius: 22px;
  background: #ed6d66;
  border: 2px solid #ed6d66;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
  padding: 10px 30px;
  text-transform: none;
}
#popup_add-to-cart .button-actions .button:hover {
  background: #fff;
  color: #ed6d66;
  text-decoration: none;
}
#popup_add-to-cart .button-actions a {
  color: #008b9a;
  margin: 20px 0 0 0;
  font-size: 16px;
  display: inline-block;
  font-weight: 600;
}
#popup_add-to-cart .close_add-to-cart {
  -webkit-appearance: none;
  border: none;
  background: none;
}
#popup_add-to-cart .close_add-to-cart:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 35px;
  content: "\00d7";
  text-align: center;
}

#filter_add-to-cart {
  background-color: rgba(43, 46, 56, 0.9);
  position: fixed;
  z-index: 50;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
}

#popup_add-to-cart {
  max-width: none;
}
#popup_add-to-cart .popup_add-to-cart-notif img {
  max-width: none;
}
#popup_add-to-cart table {
  display: table-cell;
  vertical-align: middle;
}
#popup_add-to-cart .button-actions {
  display: table-cell;
  vertical-align: middle;
  padding-left: 30px;
}

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

/**/
/* Magento*/
/**/
/* NOTICE OF LICENSE*/
/**/
/* This source file is subject to the Academic Free License (AFL 3.0)*/
/* that is bundled with this package in the file LICENSE_AFL.txt.*/
/* It is also available through the world-wide-web at this URL:*/
/* http://opensource.org/licenses/afl-3.0.php*/
/* If you did not receive a copy of the license and are unable to*/
/* obtain it through the world-wide-web, please send an email*/
/* to license@magento.com so we can send you a copy immediately.*/
/**/
/* DISCLAIMER*/
/**/
/* Do not edit or add to this file if you wish to upgrade Magento to newer*/
/* versions in the future. If you wish to customize Magento for your*/
/* needs please refer to http://www.magento.com for more information.*/
/**/
/* @category    design*/
/* @package     rwd_default*/
/* @copyright   Copyright (c) 2006-2017 X.commerce, Inc. and affiliates (http://www.magento.com)*/
/* @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)*/
/**/
/* ============================================ *
 * Checkout - Layout
 * ============================================ */
.checkout_product-cart-block {
  float: left;
  width: 65%;
}

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

.checkout_payment-summary-block {
  float: right;
  clear: right;
  width: 30%;
  border: 1px solid #cacccd;
  background-color: #fff;
}
.checkout_payment-summary-block .checkout-types {
  border-top: 1px solid #cacccd;
  text-align: center;
  max-width: 100%;
  background: #f3f3f3;
  padding: 30px 20px;
}

.cart-forms .discount,
.cart-forms .giftcard,
.cart-forms .shipping {
  padding: 20px;
}

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

.checkout-cart-index #postcode {
  width: 100%;
}

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

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

.checkout_free-delivery-block {
  margin: 35px 0;
}

.checkout_free-delivery-block,
.checkout_free-returns-block {
  background-color: #f3f3f3;
  width: 100%;
  display: flex;
}
.checkout_free-delivery-block .checkout_free-delivery-blc-image,
.checkout_free-delivery-block .checkout_free-returns-blc-image,
.checkout_free-returns-block .checkout_free-delivery-blc-image,
.checkout_free-returns-block .checkout_free-returns-blc-image {
  width: 25%;
  padding: 40px 0;
}
.checkout_free-delivery-block .checkout_free-delivery-blc-image .checkout_free-delivery-image,
.checkout_free-delivery-block .checkout_free-delivery-blc-image .checkout_free-returns-image,
.checkout_free-delivery-block .checkout_free-returns-blc-image .checkout_free-delivery-image,
.checkout_free-delivery-block .checkout_free-returns-blc-image .checkout_free-returns-image,
.checkout_free-returns-block .checkout_free-delivery-blc-image .checkout_free-delivery-image,
.checkout_free-returns-block .checkout_free-delivery-blc-image .checkout_free-returns-image,
.checkout_free-returns-block .checkout_free-returns-blc-image .checkout_free-delivery-image,
.checkout_free-returns-block .checkout_free-returns-blc-image .checkout_free-returns-image {
  margin: 0 auto;
}
.checkout_free-delivery-block .checkout_free-delivery-content,
.checkout_free-delivery-block .checkout_free-returns-content,
.checkout_free-returns-block .checkout_free-delivery-content,
.checkout_free-returns-block .checkout_free-returns-content {
  width: 75%;
  padding: 25px 25px 25px 15px;
}
.checkout_free-delivery-block .checkout_free-delivery-content .checkout_free-delivery-title,
.checkout_free-delivery-block .checkout_free-delivery-content .checkout_free-returns-title,
.checkout_free-delivery-block .checkout_free-returns-content .checkout_free-delivery-title,
.checkout_free-delivery-block .checkout_free-returns-content .checkout_free-returns-title,
.checkout_free-returns-block .checkout_free-delivery-content .checkout_free-delivery-title,
.checkout_free-returns-block .checkout_free-delivery-content .checkout_free-returns-title,
.checkout_free-returns-block .checkout_free-returns-content .checkout_free-delivery-title,
.checkout_free-returns-block .checkout_free-returns-content .checkout_free-returns-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
}
.checkout_free-delivery-block .checkout_free-delivery-content .checkout_free-delivery-title .checkout_free-delivery-subtitle,
.checkout_free-delivery-block .checkout_free-delivery-content .checkout_free-delivery-title .checkout_free-returns-subtitle,
.checkout_free-delivery-block .checkout_free-delivery-content .checkout_free-returns-title .checkout_free-delivery-subtitle,
.checkout_free-delivery-block .checkout_free-delivery-content .checkout_free-returns-title .checkout_free-returns-subtitle,
.checkout_free-delivery-block .checkout_free-returns-content .checkout_free-delivery-title .checkout_free-delivery-subtitle,
.checkout_free-delivery-block .checkout_free-returns-content .checkout_free-delivery-title .checkout_free-returns-subtitle,
.checkout_free-delivery-block .checkout_free-returns-content .checkout_free-returns-title .checkout_free-delivery-subtitle,
.checkout_free-delivery-block .checkout_free-returns-content .checkout_free-returns-title .checkout_free-returns-subtitle,
.checkout_free-returns-block .checkout_free-delivery-content .checkout_free-delivery-title .checkout_free-delivery-subtitle,
.checkout_free-returns-block .checkout_free-delivery-content .checkout_free-delivery-title .checkout_free-returns-subtitle,
.checkout_free-returns-block .checkout_free-delivery-content .checkout_free-returns-title .checkout_free-delivery-subtitle,
.checkout_free-returns-block .checkout_free-delivery-content .checkout_free-returns-title .checkout_free-returns-subtitle,
.checkout_free-returns-block .checkout_free-returns-content .checkout_free-delivery-title .checkout_free-delivery-subtitle,
.checkout_free-returns-block .checkout_free-returns-content .checkout_free-delivery-title .checkout_free-returns-subtitle,
.checkout_free-returns-block .checkout_free-returns-content .checkout_free-returns-title .checkout_free-delivery-subtitle,
.checkout_free-returns-block .checkout_free-returns-content .checkout_free-returns-title .checkout_free-returns-subtitle {
  font-weight: 400;
  font-size: 16px;
}
.checkout_free-delivery-block .checkout_free-delivery-content .checkout_free-delivery-more a,
.checkout_free-delivery-block .checkout_free-delivery-content .checkout_free-returns-more a,
.checkout_free-delivery-block .checkout_free-returns-content .checkout_free-delivery-more a,
.checkout_free-delivery-block .checkout_free-returns-content .checkout_free-returns-more a,
.checkout_free-returns-block .checkout_free-delivery-content .checkout_free-delivery-more a,
.checkout_free-returns-block .checkout_free-delivery-content .checkout_free-returns-more a,
.checkout_free-returns-block .checkout_free-returns-content .checkout_free-delivery-more a,
.checkout_free-returns-block .checkout_free-returns-content .checkout_free-returns-more a {
  color: #51575a;
  text-decoration: underline;
}

.modal-checkout {
  display: none;
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-checkout .modal-checkout_content {
  position: fixed;
  background: #fff;
  padding: 20px;
  z-index: 200;
  width: 40%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal-checkout .modal-checkout_content .modal-checkout_close {
  color: #aaa;
  float: right;
  font-size: 23px;
  margin-top: -23px;
  margin-right: -10px;
  cursor: pointer;
}
.modal-checkout .modal-checkout_content .modal-checkout_title {
  font-size: 22px;
}
.modal-checkout .modal-checkout_content .modal-checkout_block-text {
  margin: 20px 0;
}

.checkout_payment-methods-block,
.checkout_contact-block {
  float: right;
  clear: right;
  width: 30%;
  text-align: center;
}
.checkout_payment-methods-block .checkout_payment-methods-title,
.checkout_payment-methods-block .checkout_contact-title,
.checkout_contact-block .checkout_payment-methods-title,
.checkout_contact-block .checkout_contact-title {
  color: #51575a;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.checkout_payment-methods-block {
  border-bottom: 1px solid #cacccd;
  padding: 45px 0 30px;
}
.checkout_payment-methods-block .checkout_payment-methods-images {
  margin: 0 auto;
}
.checkout_payment-methods-block .checkout_payment-methods-images .checkout_payment-methods-image {
  display: inline-block;
  padding-right: 10px;
}
.checkout_payment-methods-block .checkout_payment-methods-images .checkout_payment-methods-image:last-child {
  padding-right: 0;
}

.checkout_contact-block {
  padding: 20px 0;
}
.checkout_contact-block .checkout_contact-text {
  margin: 0 25px;
}
.checkout_contact-block .checkout_contact-text span {
  font-weight: 600;
}
.checkout_contact-block .checkout_contact-button {
  margin-top: 20px;
  border: 3px solid #8bbb13;
  background: transparent;
  border-radius: 20px;
  padding: 5px 20px;
  width: 70%;
}
.checkout_contact-block .checkout_contact-button a:focus {
  color: #82af12;
}

/* ============================================ *
 * Checkout - Cart
 * ============================================ */
.cart .page-title {
  margin-bottom: 15px;
  border-bottom: 1px solid #EDEDED;
}
.cart .page-title:after {
  content: '';
  display: table;
  clear: both;
}
.cart .page-title h1 {
  float: left;
  border-bottom: none;
  margin-bottom: 6px;
  margin-right: 10px;
}

.checkout-types {
  /* We always want this shipping method to display on its own line */
}
.checkout-types li {
  vertical-align: top;
}
.checkout-types li:after {
  content: '';
  display: table;
  clear: both;
}
.checkout-types li img {
  display: inline;
  vertical-align: top;
}
.checkout-types li:first-child {
  margin-left: 0;
}
.checkout-types .method-checkout-cart-methods-multishipping {
  display: none;
}
.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 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #ed6d66;
  border-radius: 22px;
  background-color: #ed6d66;
  padding: 10px 30px;
  text-transform: none;
  margin: 0 0 20px 0;
}
.cart-totals .checkout-types .btn-checkout:hover {
  background: #fff;
  color: #ed6d66;
}
.cart-totals .checkout-types .btn-continue {
  font-size: 15px;
  font-weight: 400;
  color: #51575a;
  text-transform: none;
  text-decoration: none;
}
.cart-totals .checkout-types .btn-continue span {
  font-size: 18px;
  font-weight: 600;
  color: #51575a;
  text-decoration: none;
  text-transform: none;
  margin: 0 5px 0 0;
}
.cart-totals .checkout-types .btn-continue:hover {
  text-decoration: underline;
}

.cart-table {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.cart-table th,
.cart-table td,
.cart-table tbody td {
  /* Adding tbody for extra selector weight*/
  border-bottom: none;
  vertical-align: top;
}
.cart-table h2 {
  color: #51575a;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
.cart-table thead th,
.cart-table tbody td {
  color: #51575a;
  font-size: 14px;
  font-weight: 400;
  background-color: transparent;
  padding: 20px;
  vertical-align: middle;
  position: relative;
}
.cart-table thead th .product-cart_remove-btn,
.cart-table tbody td .product-cart_remove-btn {
  color: #5c5e63;
  font-size: 12px;
  font-weight: 400;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.cart-table thead th {
  color: #51575a;
  font-size: 18px;
  font-weight: 500;
}
.cart-table .product-cart-info,
.cart-table .product-cart-actions {
  padding-left: 15px;
}
.cart-table tr {
  border-bottom: 1px solid #c9c9cb;
}
.cart-table tfoot tr {
  background: none;
  border: none;
}
.cart-table tfoot tr > td:after {
  content: '';
  display: table;
  clear: both;
}
.cart-table tfoot td {
  padding: 0;
}
.cart-table span.or {
  font-size: 9px;
  padding: 0 5px;
  text-transform: uppercase;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.cart-table .product-cart-image .cart-links,
.cart-table .product-cart-info .btn-remove {
  display: none;
}
.cart-table .product-cart_refresh-btn {
  background: none;
  border: none;
  padding: 5px;
  margin: 0 0 0 5px;
  opacity: 0.6;
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}
.cart-table .product-cart_refresh-btn:hover {
  opacity: 1;
}
.cart-table .product-cart_refresh-cart-btn {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  background-color: #ed6d66;
  padding: 10px 20px;
  opacity: 0.6;
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
  border: none;
}
.cart-table .product-cart_refresh-cart-btn:hover {
  opacity: 1;
}
.cart-table .product-cart-image {
  padding-left: 0;
  padding-right: 0;
}
.cart-table .product-cart-image img {
  width: 100px;
  margin: 0 0 0 20px;
}
.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 .product-cart-total.last,
.cart-table .product-cart-price.last {
  text-align: right;
  font-weight: 600;
}
.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 #008b9a;
  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 #008b9a;
  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: 44px;
  width: 60px;
  border-radius: 5px;
  border: 1px solid #d7d7d9;
  margin: 0 0 10px 0;
  padding: 0 10px;
  outline: none;
  background: #fff url("/skin/frontend/bbm/default/images/pictos/picto_arrow-down-black.png") right 10px center no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
}
.cart-table .product-cart-actions .button {
  margin-bottom: 5px;
}
.cart-table .item-options {
  padding-left: 15px;
}
.cart-table .item-options dt {
  background: none;
}

/* ============================================ *
 * Checkout - Estimate Shipping and Tax
 * ============================================ */
.checkout_summary-title {
  background-color: #138c94;
  padding: 20px 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.shipping h2 {
  color: #51575a;
  font-size: 18px;
  font-weight: 500;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #c9c9cb;
  margin: 0 0 20px 0;
}
.shipping select {
  height: 44px;
  border-radius: 5px;
  border: 1px solid #d7d7d9;
  margin: 0 0 10px 0;
  padding: 0 10px;
  outline: none;
  background: #fff url("/skin/frontend/bbm/default/images/pictos/picto_arrow-down-black.png") right 10px center no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
}
.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 .input-box {
  padding-top: 0;
}
.shipping .form-list input {
  height: 44px;
  border-radius: 5px;
  border: 1px solid #d7d7d9;
  background: #fff;
  margin: 0 0 10px 0;
}
.shipping .form-list input.validation-failed {
  border-color: #DF280A;
}
.shipping .form-list label {
  color: #51575a;
  font-size: 14px;
  font-weight: 500;
  display: block;
}
.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: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-style: normal;
}
.shipping #co-shipping-method-form .buttons-set .button {
  float: left;
  margin-left: 0;
}
.shipping #co-shipping-method-form .sp-methods dd label {
  border: 1px solid #CCCCCC;
  background-color: #ededed;
  min-width: 220px;
}
.shipping #co-shipping-method-form .sp-methods dd label:hover {
  background-color: gainsboro;
}

/* =============================================*/
/* Totals*/
/* =============================================*/
.checkout_cart-totals-table-wrapper {
  padding: 0 20px 20px 20px;
}
.checkout_cart-totals-table-wrapper #shopping-cart-totals-table tbody {
  border: none;
}
.checkout_cart-totals-table-wrapper #shopping-cart-totals-table tbody tr td:first-child {
  text-align: left;
}
.checkout_cart-totals-table-wrapper #shopping-cart-totals-table tbody tr:nth-child(3) td {
  padding-bottom: 25px;
}
.checkout_cart-totals-table-wrapper #shopping-cart-totals-table tbody tr:nth-child(2), .checkout_cart-totals-table-wrapper #shopping-cart-totals-table tbody tr:nth-child(4) {
  display: none;
}
.checkout_cart-totals-table-wrapper #shopping-cart-totals-table tfoot tr td {
  padding-top: 20px;
}
.checkout_cart-totals-table-wrapper #shopping-cart-totals-table tfoot tr td:first-child {
  text-align: left;
}
.checkout_cart-totals-table-wrapper #shopping-cart-totals-table tfoot tr strong {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 17px;
}

.cart .cart-totals {
  text-align: right;
}
.cart .cart-totals:after {
  content: '';
  display: table;
  clear: both;
}
.cart .cart-totals table {
  font-size: 16px;
  width: 100%;
}
.cart .cart-totals table td {
  padding: 10px 10px 0 0;
}
.cart .cart-totals table td:first-child {
  min-width: 120px;
}
.cart .cart-totals table td:last-child {
  padding: 10px 0 0 0;
}
.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 tbody {
  border-top: 1px solid #cacccd;
}
.cart .cart-totals table tfoot {
  border-top: 1px solid #cacccd;
}
.cart .cart-totals table tfoot strong span,
.cart .cart-totals table tfoot span.price {
  font-family: "Helvetica Neue", Verdana, Arial, sans-serif;
}
.cart .cart-totals table tfoot strong {
  font-weight: 400;
}

/* =============================================*/
/* Discount codes and gift cards*/
/* =============================================*/
.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 {
  color: #51575a;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 10px 0;
}
#discount-coupon-form label,
.cart .giftcard label {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
  min-width: 105px;
  display: inline-block;
  margin-right: 10px;
}
#discount-coupon-form .field-wrapper,
.cart .giftcard .field-wrapper {
  display: inline-block;
  position: relative;
}
#discount-coupon-form .validation-advice,
.cart .giftcard .validation-advice {
  display: inline;
}
#discount-coupon-form .button-wrapper,
.cart .giftcard .button-wrapper {
  display: inline-block;
  vertical-align: bottom;
  position: absolute;
  top: 0;
  left: 100%;
  -webkit-transform: translate(-44px, 0);
  transform: translate(-44px, 0);
}
#discount-coupon-form .button-wrapper > button,
.cart .giftcard .button-wrapper > button {
  height: 44px;
  border-radius: 0 5px 5px 0;
  background-color: #ed6d66;
  padding: 0 12px;
}
#discount-coupon-form .button-wrapper > button span,
.cart .giftcard .button-wrapper > button span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}
#discount-coupon-form .input-text,
.cart .giftcard .input-text {
  height: 44px;
  max-width: 300px;
  border-radius: 5px;
  border: 1px solid #d7d7d9;
  padding: 0 50px 0 10px;
}
#discount-coupon-form .discount-form,
.cart .giftcard .discount-form {
  display: inline-block;
  vertical-align: top;
}
#discount-coupon-form .promo-block,
.cart .giftcard .promo-block {
  display: inline-block;
  padding-top: 0;
  padding-left: 15px;
  width: 60%;
  width: 100%;
  padding-top: 25px;
  padding-left: 0;
}
#discount-coupon-form .promo-block img,
.cart .giftcard .promo-block img {
  max-width: 100%;
  height: auto;
}

.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: #008b9a;
}
.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 - 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: #008b9a;
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -13px;
}

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

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

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

.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: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: none;
  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 .checkout_stepper-block {
  margin: 0 auto 30px auto;
}
.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;
}

.onestep_success-block-wrapper {
  background-color: #f3f3f3;
  padding: 100px 20px;
  text-align: center;
}
.onestep_success-block-wrapper .onestep_success-title {
  text-align: center;
  color: #008b9a;
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 40px 0;
}
.onestep_success-block-wrapper .onestep_success-wording {
  text-align: center;
  color: #51575a;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin: 0 0 20px 0;
}
.onestep_success-block-wrapper .onestep_order-block {
  text-align: center;
  color: #51575a;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.onestep_success-block-wrapper .onestep_order-block a {
  display: block;
  text-align: center;
  color: #138c94;
  font-size: 20px;
  font-weight: 600;
  padding: 10px 0 0 0;
}
.onestep_success-block-wrapper .onestep_order-block a:hover {
  text-decoration: underline;
}

/* ============================================ *
 * 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(https://www.babymoov.com/skin/frontend/bbm/default/images/bg_x.png) center no-repeat transparent;
  z-index: 10;
}
.swatch-link.has-image .swatch-label {
  position: relative;
}
.swatch-link.has-image img {
  position: absolute;
  top: 0;
  left: 0;
}

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

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

#narrow-by-list dd .configurable-swatch-list li {
  margin: 0 0 0 3px;
  width: 47%;
}
#narrow-by-list dd .swatch-link {
  border: none;
  line-height: 25px;
  margin-right: 2px;
  text-align: left;
}
#narrow-by-list dd .swatch-link.has-image {
  line-height: inherit;
}
#narrow-by-list dd .swatch-link:hover .swatch-label {
  border-color: #008b9a;
}
#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: #008b9a;
}

.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 */
.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: #008b9a;
  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: center;
  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 .account-login a {
  color: #5c5e63;
}
.customer-account-login #login-form .rgpd-block {
  padding: 20px 45px 0 10px;
}
.customer-account-login #login-form .rgpd-block a {
  color: #5c5e63;
}
.customer-account-login #login-form .link_account-create-block .btn_account-create {
  padding: 7px 50px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 22px;
  background-color: #ed6d66;
  border: 3px solid #ed6d66;
  text-transform: none;
  margin: 0;
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
  text-transform: uppercase;
  line-height: 23px;
}
.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: 0;
}
.customer-account-login .col2-set .col-2 {
  padding-left: 60px;
  border-left: 1px solid #EDEDED;
}

.customer-account-create .scaffold-form label:first-child {
  width: 100%;
}

.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: "Helvetica Neue", Verdana, Arial, sans-serif;
}
.remember-me-popup .remember-me-popup-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  font-size: 12px;
}
.remember-me-popup .remember-me-popup-close-button {
  display: none;
}

.customer-account-create .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 {
  border: 0;
  text-align: left;
}
body.customer-account .my-account .title-buttons {
  position: relative;
  text-align: right;
}
body.customer-account .my-account .title-buttons h1 {
  text-align: left;
}
body.customer-account .my-account .title-buttons .button {
  position: absolute;
  right: 0;
  top: 0;
}
body.customer-account .my-account .title-buttons a,
body.customer-account .my-account .title-buttons span.separator {
  position: relative;
  top: -42px;
}
body.customer-account .my-account .fieldset h2,
body.customer-account .my-account .addresses-list h2,
body.customer-account .my-account .order-details h2 {
  width: 100%;
  display: inline-block;
}
body.customer-account .my-account .addresses-list h3 {
  font-size: 14px;
  font-weight: 600;
}
body.customer-account .my-account .fieldset {
  margin-top: 30px;
  margin-bottom: 30px;
}
body.customer-account .data-table {
  margin-top: 5px;
}
body.customer-account .data-table td a {
  font-family: "Raleway", "Helvetica Neue", Verdana, 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 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 .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: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
  margin-right: 5px;
}
.dashboard .box-reviews li .details .ratings .rating-box {
  float: left;
  margin: 3px 0 0 0;
}

/* ============================================ *
 * 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: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: uppercase;
}

.order-info-box {
  margin-bottom: 40px;
  margin-top: 20px;
}
.order-info-box + .order-info-box {
  padding-bottom: 40px;
  border-bottom: 1px solid #EDEDED;
}
.order-info-box .col-1 {
  padding-right: 0;
  width: 48%;
}
.order-info-box .col-2 {
  width: 52%;
}
.order-info-box .col-1,
.order-info-box .col-2 {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.order-info-box .box-title {
  width: 150px;
  padding-right: 10px;
  float: left;
}
.order-info-box .box-title h2 {
  font-size: 14px;
  font-family: "Raleway", "Helvetica Neue", Verdana, 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: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
}

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

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

.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;
}

body.customer-account .main {
  margin-top: 50px;
  /*address*/
  /*edit address*/
  /*wishlist*/
  /*newletter*/
  /*command*/
  /*infos command*/
  /* dashboard*/
  /*side bar*/
}
body.customer-account .main .col-main {
  padding: 0 0 0 90px;
}
body.customer-account .main h2 {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
}
body.customer-account .main h3 {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
}
body.customer-account .main ol {
  width: 100%;
  float: left;
}
body.customer-account .main .separator {
  color: #008b9a;
}
body.customer-account .main .success-msg li {
  border: none;
  background: #c9c9cb;
}
body.customer-account .main .success-msg li::before {
  display: none;
}
body.customer-account .main .edit {
  text-align: right;
  position: absolute;
  bottom: 10px;
  right: 23px;
}
body.customer-account .main .my-account {
  /*form*/
}
body.customer-account .main .my-account h2 {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 26px;
  color: #008b9a;
}
body.customer-account .main .my-account .col2-set .col-1,
body.customer-account .main .my-account .col2-set .col-2 {
  padding-right: 0;
}
body.customer-account .main .my-account .page-title h1 {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 30px;
}
body.customer-account .main .my-account .box-head {
  border: none;
}
body.customer-account .main .my-account .box-account {
  border: none;
  margin: 80px 0 0 0;
}
body.customer-account .main .my-account .box-account .box {
  border: solid 1px #c9c9cb;
  min-height: 200px;
  padding: 30px;
  position: relative;
}
body.customer-account .main .my-account .box-account .box .box-content p, body.customer-account .main .my-account .box-account .box .box-content address {
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  padding: 0 0 5px 0;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}
body.customer-account .main .my-account .box-account .box .box-content a {
  font-weight: 500;
  color: #008b9a;
  padding: 0 0 5px 0;
  display: block;
}
body.customer-account .main .my-account .box-account .box-head a {
  text-transform: none;
  color: #51575a;
  font-weight: 500;
  float: right;
  padding: 0;
  font-size: 14px;
}
body.customer-account .main .my-account .box-account:nth-child(4) {
  margin: 0;
}
body.customer-account .main .my-account .buttons-set {
  border-top: solid 1px #c9c9cb;
  margin: 35px 0 0 0;
  padding: 30px 0 0 0;
  float: left;
  width: 100%;
}
body.customer-account .main .my-account .buttons-set .back-link span {
  width: 12px;
  height: 9px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background: url("https://www.babymoov.com/skin/frontend/bbm/default/images/pictos/picto_arrow-down-black.png");
  display: inline-block;
}
body.customer-account .main .my-account .buttons-set .back-link a {
  font-size: 15px;
  font-weight: 500;
  color: #636363;
  padding: 0 0 0 15px;
}
body.customer-account .main .my-account .buttons-set button {
  float: right;
}
body.customer-account .main .my-account .buttons-set button span {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  text-transform: none;
  font-size: 16px;
}
body.customer-account .main .my-account .borderInfoAddress {
  border: solid 1px #c9c9cb;
}
body.customer-account .main .my-account .borderInfoAddress .col-1, body.customer-account .main .my-account .borderInfoAddress .col-2 {
  padding: 0;
}
body.customer-account .main .my-account .borderInfoAddress .col-1 .box, body.customer-account .main .my-account .borderInfoAddress .col-2 .box {
  border: none;
}
body.customer-account .main .my-account .borderInfoAddress #billing::after {
  content: '';
  display: block;
  background: #c9c9cb;
  height: 80%;
  width: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
body.customer-account .main .my-account .scaffold-form {
  margin: 80px 0 0 0;
}
body.customer-account .main .my-account .scaffold-form li {
  margin: 0;
}
body.customer-account .main .my-account .scaffold-form h2 {
  border-bottom: 1px solid #c9c9cb;
  padding: 0 0 35px 0;
}
body.customer-account .main .my-account .scaffold-form #passwtitle {
  border-bottom: none;
  border-top: solid 1px #c9c9cb;
  padding: 30px 0 0 0;
  color: #636363;
}
body.customer-account .main .my-account .scaffold-form #passwFieldContainer {
  float: left;
  width: 100%;
  margin: 0;
}
body.customer-account .main .my-account .scaffold-form #requiredField {
  float: right;
  margin: 44px 0 0 0;
  font-size: 12px;
  color: #5c5e63;
}
body.customer-account .main .my-account .scaffold-form ul {
  margin: 20px 0 0 0;
}
body.customer-account .main .my-account .scaffold-form ul .field {
  width: 50%;
  float: left;
}
body.customer-account .main .my-account .scaffold-form ul .field.check {
  width: 100%;
}
body.customer-account .main .my-account .scaffold-form ul label {
  font-size: 14px;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
}
body.customer-account .main .my-account .scaffold-form ul label::after {
  color: #636363;
}
body.customer-account .main .my-account .scaffold-form ul input {
  height: 44px;
  border-radius: 5px;
  width: 100%;
  max-width: 365px;
}
body.customer-account .main .my-account .scaffold-form ul select {
  height: 44px;
  border-radius: 5px;
  background: url("https://www.babymoov.com/skin/frontend/bbm/default/images/pictos/picto_arrow-down-blue.png") no-repeat right 10px center;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 0 0 0 8px;
}
body.customer-account .main .my-account .scaffold-form ul li:last-child {
  margin: 40px 0 0 0;
}
body.customer-account .main .my-account .scaffold-form ul input[type=checkbox] {
  width: auto;
  height: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  height: 15px;
  width: 15px;
  background: #fff;
  border: solid 2px #d7d7d9;
  border-radius: 0px;
}
body.customer-account .main .my-account .scaffold-form ul input[type=checkbox]:checked {
  background: #138c94;
}
body.customer-account .main .my-account .scaffold-form ul label {
  background: none;
}
body.customer-account .main .addresses-list {
  margin: 40px 0 0 0;
}
body.customer-account .main .addresses-primary,
body.customer-account .main .addresses-additional {
  width: 100%;
  padding: 40px 0 0 0;
}
body.customer-account .main .addresses-primary .item,
body.customer-account .main .addresses-additional .item {
  padding: 30px;
  width: 50%;
  display: table-cell;
  position: relative;
  margin: 0;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}
body.customer-account .main .addresses-primary .item:nth-of-type(2n-1)::after,
body.customer-account .main .addresses-additional .item:nth-of-type(2n-1)::after {
  content: '';
  display: block;
  background: #c9c9cb;
  height: 80%;
  width: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
body.customer-account .main .addresses-primary div.row,
body.customer-account .main .addresses-additional div.row {
  display: table-row;
}
body.customer-account .main .addresses-primary ol,
body.customer-account .main .addresses-additional ol {
  display: table;
}
body.customer-account .main .addresses-primary .legend,
body.customer-account .main .addresses-additional .legend {
  padding: 0 0 40px 0;
  border-bottom: solid 1px #c9c9cb;
  margin: 0 0 40px 0;
}
body.customer-account .main .addresses-primary .TopicAddress,
body.customer-account .main .addresses-additional .TopicAddress {
  font-size: 24px;
  font-weight: 500;
  color: #51575a;
}
body.customer-account .main .addresses-primary .item h3,
body.customer-account .main .addresses-additional .item h3 {
  font-size: 16px;
  font-weight: 600;
}
body.customer-account .main .addresses-primary p,
body.customer-account .main .addresses-primary address,
body.customer-account .main .addresses-additional p,
body.customer-account .main .addresses-additional address {
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  padding: 0 0 5px 0;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}
body.customer-account .main .addresses-primary a,
body.customer-account .main .addresses-additional a {
  font-weight: 500;
  color: #008b9a;
  padding: 0 0 5px 0;
}
body.customer-account .main form.editAddress {
  margin: 40px 0 0 0;
}
body.customer-account .main form.editAddress .topicEditAddress {
  border-bottom: none;
  font-size: 24px;
  font-weight: 500;
  color: #51575a;
  padding: 0px;
}
body.customer-account .main form.editAddress .topicEditAddress:nth-of-type(1) {
  padding: 40px 0 0 0;
  margin: 40px 0 0 0;
  border-top: solid 1px #c9c9cb;
}
body.customer-account .main form.editAddress .legend {
  padding: 0 0 40px 0;
  border-bottom: solid 1px #c9c9cb;
  margin: 0 0 40px 0;
}
body.customer-account .main .my-wishlist #wishlist-view-form {
  margin: 80px 0 0 0;
}
body.customer-account .main .my-wishlist #wishlist-view-form h2 {
  border-bottom: 1px solid #c9c9cb;
  padding: 0 0 35px 0;
}
body.customer-account .main .my-wishlist #wishlist-view-form table {
  margin: 60px 0 0 0;
  border: 1px solid #c9c9cb;
}
body.customer-account .main .my-wishlist #wishlist-view-form table thead tr {
  height: 60px;
  background: #f3f3f3;
  border-bottom: 1px solid #c9c9cb;
}
body.customer-account .main .my-wishlist #wishlist-view-form table thead tr th {
  border: none;
  font-size: 16px;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  text-transform: none;
}
body.customer-account .main .my-wishlist #wishlist-view-form table tbody tr {
  border-bottom: solid 1px #c9c9cb;
}
body.customer-account .main .my-wishlist #wishlist-view-form table tbody td {
  vertical-align: middle;
}
body.customer-account .main .my-wishlist #wishlist-view-form table tbody td .price-box span {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
}
body.customer-account .main .my-wishlist #wishlist-view-form table tbody td .product-image {
  border: none;
}
body.customer-account .main .my-wishlist #wishlist-view-form table tbody td h3 {
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
}
body.customer-account .main .my-wishlist #wishlist-view-form table tbody td h3 a {
  color: #636363;
}
body.customer-account .main .my-wishlist #wishlist-view-form table tbody td .cart-cell .buttons-set {
  border: none;
  margin: 0;
  padding: 0;
  float: none;
  width: auto;
}
body.customer-account .main .my-wishlist #wishlist-view-form table tbody td .cart-cell .buttons-set .button {
  margin: 0;
}
body.customer-account .main .my-wishlist #wishlist-view-form table tbody td:last-child {
  position: relative;
}
body.customer-account .main .my-wishlist #wishlist-view-form table tbody td:last-child a {
  position: absolute;
  bottom: 5px;
  left: -80px;
  background: none;
  text-indent: 0;
  color: #636363;
  font-size: 12px;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  width: auto;
  text-transform: none;
}
body.customer-account .main .my-wishlist #wishlist-view-form table tbody .wishlist-cell4 .cart-cell .buttons-set {
  width: 200px;
  float: right;
}
body.customer-account .main .my-wishlist #wishlist-view-form table tbody .customer-wishlist-item-cart {
  width: auto;
}
body.customer-account .main .my-wishlist #wishlist-view-form .buttons-set {
  border: none;
  padding: 15px 0 0 0;
}
body.customer-account .main .my-wishlist #wishlist-view-form .buttons-set .btn-share {
  float: left;
  border: none;
  border-radius: 0;
  background: none;
  color: #636363;
  font-weight: 500;
  position: relative;
}
body.customer-account .main .my-wishlist #wishlist-view-form .buttons-set .btn-share span {
  font-size: 14px;
}
body.customer-account .main .my-wishlist #wishlist-view-form .buttons-set .btn-share span:hover {
  text-decoration: underline;
}
body.customer-account .main .my-wishlist #wishlist-view-form .buttons-set .btn-share:before {
  width: 15px;
  height: 13px;
  content: " ";
  background: url("https://www.babymoov.com/skin/frontend/bbm/default/images/pictos/picto_wishlist.png");
  position: absolute;
  left: 0;
  top: 14px;
  display: block;
}
body.customer-account .main #newsletterTitle {
  margin: 80px 0 0 0;
}
body.customer-account .main #newsletterTitle h2 {
  display: inline-block;
  margin: 0;
  padding: 0;
  border: none;
}
body.customer-account .main #newsletterTitle ul {
  border-top: 1px solid #c9c9cb;
  padding: 30px 0 0px 0;
  margin: 30px 0 0 0;
}
body.customer-account .main #newsletterTitle ul input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  height: 15px;
  width: 15px;
  background: #fff;
  border: solid 2px #d7d7d9;
  border-radius: 0px;
}
body.customer-account .main #newsletterTitle ul input[type=checkbox]:checked {
  background: #138c94;
}
body.customer-account .main #newsletterTitle ul label {
  background: none;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
}
body.customer-account .main .commandContainer {
  margin: 80px 0 0 0;
}
body.customer-account .main .commandContainer .dash {
  float: left;
  padding: 0 14px 0 0;
}
body.customer-account .main .commandContainer .dash span {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
}
body.customer-account .main .commandContainer .limiter label {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: none;
}
body.customer-account .main .commandContainer .limiter select {
  border: none;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 500;
  outline: none;
  background: url(https://www.babymoov.com/skin/frontend/bbm/default/images/pictos/picto_arrow-down-black.png);
  background-repeat: no-repeat;
  background-position: right;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  width: 40px;
}
body.customer-account .main .commandContainer h2 {
  border-bottom: 1px solid #c9c9cb;
  padding: 0 0 35px 0;
}
body.customer-account .main .commandContainer .pager {
  float: right;
  margin: 30px 0 0 0;
}
body.customer-account .main .commandContainer table {
  margin: 15px 0 0 0;
  float: left;
  width: 100%;
  border: 1px solid #c9c9cb;
}
body.customer-account .main .commandContainer table thead {
  height: 61px;
  background: #f3f3f3;
}
body.customer-account .main .commandContainer table th {
  vertical-align: middle;
  font-size: 16px;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  text-transform: none;
}
body.customer-account .main .commandContainer table .status {
  min-width: 100px;
}
body.customer-account .main .commandContainer table .view {
  min-width: 50px;
}
body.customer-account .main .commandContainer table td {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  vertical-align: middle;
}
body.customer-account .main .commandContainer table td em {
  font-style: normal;
}
body.customer-account .main .commandContainer table td .nobr a {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  text-transform: none;
  color: #008b9a;
}
body.customer-account .main .commandContainer table td .price {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}
body.customer-account .main .info-command {
  margin: 40px 0 0 0;
}
body.customer-account .main .info-command .legend small {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #636363;
  margin: 5px 0 0 0;
}
body.customer-account .main .info-command .order-info {
  border-top: solid 1px #c9c9cb;
  border-bottom: solid 1px #c9c9cb;
  padding: 22px 0;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  margin: 44px 0;
}
body.customer-account .main .info-command .order-info dt {
  font-size: 16px;
  font-weight: 600;
}
body.customer-account .main .info-command .order-info li {
  font-weight: 400;
  border-bottom: none;
}
body.customer-account .main .info-command .order-info p {
  margin: 14px 0 0 0;
  text-transform: none;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
}
body.customer-account .main .info-command .Topic-info-command {
  font-size: 24px;
  font-weight: 500;
  color: #51575a;
}
body.customer-account .main .info-command .order-info-box {
  border: solid 1px #c9c9cb;
}
body.customer-account .main .info-command .order-info-box .col-1:after {
  content: '';
  display: block;
  background: #c9c9cb;
  height: 80%;
  width: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
body.customer-account .main .info-command .order-info-box .col-1, body.customer-account .main .info-command .order-info-box .col-2 {
  padding: 30px;
  position: relative;
}
body.customer-account .main .info-command .order-info-box .col-1 .box-title, body.customer-account .main .info-command .order-info-box .col-2 .box-title {
  width: 100%;
}
body.customer-account .main .info-command .order-info-box .col-1 .box-content, body.customer-account .main .info-command .order-info-box .col-2 .box-content {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}
body.customer-account .main .order-items table {
  margin: 15px 0 0 0;
  float: left;
  width: 100%;
  border: 1px solid #c9c9cb;
}
body.customer-account .main .order-items table thead {
  height: 61px;
  background: #f3f3f3;
}
body.customer-account .main .order-items table th {
  vertical-align: middle;
  font-size: 16px;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  text-transform: none;
}
body.customer-account .main .order-items table .status {
  min-width: 100px;
}
body.customer-account .main .order-items table .view {
  min-width: 50px;
}
body.customer-account .main .order-items table tr {
  border: none;
  background: transparent;
}
body.customer-account .main .order-items table td {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  vertical-align: middle;
}
body.customer-account .main .order-items table td em {
  font-style: normal;
}
body.customer-account .main .order-items table td .nobr a {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  text-transform: none;
}
body.customer-account .main .order-items table td .price {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}
body.customer-account .main .order-items table .a-right strong {
  font-weight: 400;
  color: #636363;
}
body.customer-account .main .order-items table .a-right .nobr {
  color: #fff;
}
body.customer-account .main .order-items table .a-right .nobr span {
  color: #636363;
}
body.customer-account .main .order-items table .grand_total.last strong {
  font-weight: bold;
}
body.customer-account .main .order-items table h3 {
  font-weight: 400;
  font-size: 14px;
}
body.customer-account .main .order-items table .grand_total.last {
  text-transform: uppercase;
}
body.customer-account .main .dashboard h2 {
  font-size: 24px;
  color: #636363;
  margin: 0 0 15px 0;
}
body.customer-account .main .dashboard .welcome-msg {
  margin: 80px 0 0 0;
}
body.customer-account .main .dashboard .welcome-msg p {
  font-size: 14px;
}
body.customer-account .main .dashboard .welcome-msg .hello {
  font-size: 26px;
  color: #008b9a;
  font-weight: 600;
  margin: 0 0 26px 0;
}
body.customer-account .main .dashboard .welcome-msg .hello strong {
  font-weight: 600;
}
body.customer-account .main .dashboard .box-recent {
  margin: 0;
}
body.customer-account .main .dashboard .box-recent .commandContainer {
  margin: 0;
}
body.customer-account .main .dashboard table {
  margin: 0;
}
body.customer-account .main .dashboard .col2-set .col-1,
body.customer-account .main .dashboard .col2-set .col-2 {
  padding-top: 0;
}
body.customer-account .main .sidebar {
  margin: 125px 0 0 0;
}
body.customer-account .main .sidebar .account-menu_deploy-btn {
  display: none;
}
body.customer-account .main .sidebar .account-menu_link-list-block li {
  border-top: solid 1px #c9c9cb;
  padding: 18px 0 18px 23px;
  margin: 0;
}
body.customer-account .main .sidebar .account-menu_link-list-block li a {
  color: #51575a;
  font-size: 16px;
}
body.customer-account .main .sidebar .account-menu_link-list-block li a strong {
  font-size: 16px;
  font-weight: 600;
  color: #51575a;
}
body.customer-account .main .sidebar .account-menu_link-list-block li:last-child {
  border-bottom: solid 1px #c9c9cb;
}
body.customer-account .main .title-buttons .link-print {
  color: #51575a;
  text-decoration: underline;
  font-weight: 500;
}
body.customer-account .main .order-details h2 {
  font-size: 24px;
  font-weight: 500;
  color: #51575a;
}

/* ============================================ *
 * Contacts
 * ============================================ */
.contacts-index-index .buttons-set {
  margin-left: 30px;
  max-width: 435px;
}
.contacts-index-index .buttons-set p.required {
  float: left;
}

/* ============================================ *
 * 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: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 10px;
  text-transform: uppercase;
}
#customer-reviews .review-heading .pager .amount {
  display: none;
}
#customer-reviews h2 {
  color: #008b9a;
  font-size: 12px;
  text-transform: uppercase;
}
#customer-reviews h2 span {
  color: #636363;
}
#customer-reviews h3 {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: #51575a;
  font-weight: 600;
  margin: 0 0 10px 0;
}
#customer-reviews h3 span {
  color: #008b9a;
}
#customer-reviews .review_user-comment-txt {
  color: #51575a;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 10px 0;
}
#customer-reviews .fieldset {
  padding-top: 25px;
  width: 470px;
}
#customer-reviews .fieldset h4 {
  border-bottom: 1px solid #CCCCCC;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  padding-bottom: 5px;
  text-transform: uppercase;
}
#customer-reviews .fieldset h4 em {
  display: none;
}
#customer-reviews .fieldset .form-list {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  margin: 10px 0;
  text-transform: uppercase;
  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: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 10px;
}
#customer-reviews dl dt {
  margin: 10px 0;
  text-transform: uppercase;
}
#customer-reviews dl dd {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 14px;
  margin: 10px 0;
}
#customer-reviews dl dd .ratings-table {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  width: 100%;
}
#customer-reviews dl dd .ratings-table tr {
  margin-right: 15px;
}
#customer-reviews dl dd .ratings-table .review-label {
  width: 300px;
  max-width: 70%;
}
#customer-reviews dl dd table {
  margin: 15px 0;
}
#customer-reviews dl dd .review-meta {
  color: #51575a;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
}
#customer-reviews dl dd .review-meta .review_user-comment-name {
  font-weight: 500;
  color: #0d9aa3;
}

.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: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
.ratings-table th {
  padding-right: 10px;
}
.ratings-table .rating-box {
  background-position: 0 -615px;
  background-repeat: repeat-x;
  height: 13px;
  overflow: hidden;
  text-indent: -9999px;
  width: 65px;
}
.ratings-table .rating-box .rating {
  background-position: 0 -600px;
  background-repeat: repeat-x;
  float: left;
  height: 13px;
  text-indent: -9999px;
}

/* ============================================ *
 * Review View Page
 * ============================================ */
.review-product-view .product-review .product-details h2 {
  border-bottom: none;
}
.review-product-view .product-review .product-img-box {
  width: auto;
  max-width: 50%;
}
.review-product-view .product-review .product-img-box > a {
  width: 100%;
}
.review-product-view .product-review .product-img-box .product-image {
  width: 100%;
}

#response_bbm-comment {
  background: rgba(0, 139, 154, 0.1);
  margin: 22px 0 0 0;
}
#response_bbm-comment h3 {
  color: #008b9a;
}
#response_bbm-comment .review-meta {
  display: none;
}

/* ============================================ *
 * 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: #007481;
}
.slideshow-pager span.cycle-pager-active:before {
  background-color: #005d67;
}
.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 #007481 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 #007481;
}

.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: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  width: 100%;
}
#wishlist-table.clean-table th {
  border-bottom: 1px solid #c9c9cb;
}
#wishlist-table.clean-table td {
  padding: 15px;
  vertical-align: top;
}
#wishlist-table.clean-table thead th {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
#wishlist-table .product-name {
  font-size: 16px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin-bottom: 0;
  text-transform: uppercase;
}
#wishlist-table .product-name a {
  color: #8bbb13;
}
#wishlist-table .wishlist-sku {
  font-size: 11px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin: 5px 0;
}
#wishlist-table textarea {
  border: 1px solid #C0C0C0;
  width: 100%;
  height: 45px;
  font-size: 11px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
#wishlist-table textarea::-webkit-input-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:-moz-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea::-moz-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:-ms-input-placeholder {
  text-transform: uppercase;
}
#wishlist-table textarea:focus {
  border: 1px solid #008b9a;
}
#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: "Raleway", "Helvetica Neue", Verdana, 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: #008b9a;
  margin-bottom: 3px;
}
#wishlist-table .truncated .details {
  background: none;
  color: #008b9a;
}
#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;
}

/**/
/* Magento*/
/**/
/* NOTICE OF LICENSE*/
/**/
/* This source file is subject to the Academic Free License (AFL 3.0)*/
/* that is bundled with this package in the file LICENSE_AFL.txt.*/
/* It is also available through the world-wide-web at this URL:*/
/* http://opensource.org/licenses/afl-3.0.php*/
/* If you did not receive a copy of the license and are unable to*/
/* obtain it through the world-wide-web, please send an email*/
/* to license@magento.com so we can send you a copy immediately.*/
/**/
/* DISCLAIMER*/
/**/
/* Do not edit or add to this file if you wish to upgrade Magento to newer*/
/* versions in the future. If you wish to customize Magento for your*/
/* needs please refer to http://www.magento.com for more information.*/
/**/
/* @category    design*/
/* @package     rwd_default*/
/* @copyright   Copyright (c) 2006-2017 X.commerce, Inc. and affiliates (http://www.magento.com)*/
/* @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)*/
/**/
/* ============================================ *
 * Checkout - Mini cart
 * ============================================ */
.header-minicart {
  display: inline-block;
  /*hide jcarousel controls until carousel is properly integrated with design*/
}
.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("https://www.babymoov.com/skin/frontend/bbm/default/images/opc-ajax-loader.gif");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
.header-minicart .minicart-wrapper.loading {
  position: relative;
}
.header-minicart .minicart-wrapper.loading:before, .header-minicart .minicart-wrapper.loading:after {
  display: block;
}
.header-minicart .block-cart {
  display: none;
}
.header-minicart .block-subtitle {
  color: #50A4CF;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.4;
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
}
.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: 0;
  max-height: 376px;
  overflow: auto;
}
.header-minicart .mini-products-list li {
  padding: 20px 0;
  margin: 0;
  position: relative;
}
.header-minicart .mini-products-list li.last {
  border: none;
}
.header-minicart .mini-products-list li .product-details {
  position: relative;
  margin-left: 100px;
  padding: 0 20px 0 0;
}
.header-minicart .mini-products-list li .product-details .minicart_product-remove {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.header-minicart .mini-products-list li .product-details .minicart_product-remove a {
  background: #fff;
  color: #c8c9ca;
  font-size: 10px;
  display: block;
  border-radius: 14px;
  border: 1px solid #c8c9ca;
  width: 14px;
  height: 14px;
  line-height: 12px;
  text-align: center;
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}
.header-minicart .mini-products-list li .product-details .minicart_product-remove a:hover {
  background: #c8c9ca;
  color: #fff;
}
.header-minicart .product-details {
  text-align: left;
}
.header-minicart .product-details .product-name {
  padding-top: 0;
  font-weight: bold;
  text-align: left;
}
.header-minicart .product-details .product-name a {
  color: #51575a;
  font-size: 15px;
  font-weight: 600;
}
.header-minicart .product-details .minicart_product-price {
  color: #51575a;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 10px 0;
}
.header-minicart .product-details .minicart_product-quantity input.qty {
  width: 50px;
  padding: 10px;
  height: 30px;
}
.header-minicart .product-details .minicart_product-quantity button.quantity-button {
  height: 30px;
  margin: -2px 0 0 -4px;
}
.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: #008b9a;
  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 {
  background-color: #fff;
  text-align: center;
  line-height: 2em;
  display: table;
  width: 100%;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}
.header-minicart .subtotal .label {
  border-right: 1px solid #e1e1e1;
  display: table-cell;
  width: 50%;
  text-align: center;
  text-transform: uppercase;
  color: #51575a;
  font-size: 15px;
  font-weight: 600;
  padding: 10px;
}
.header-minicart .subtotal .price {
  display: table-cell;
  width: 50%;
  text-align: center;
  color: #51575a;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px;
}
.header-minicart .minicart-actions {
  padding: 20px 10px;
  margin-top: 0;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.header-minicart .minicart-actions .checkout-button {
  height: 44px;
  border-radius: 22px;
  background-color: #008b9a;
  border: 3px solid #008b9a;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
  padding: 10px 30px;
  text-transform: none;
}
.header-minicart .minicart-actions .checkout-button:hover {
  background-color: #fff;
  color: #008b9a;
}
.header-minicart .minicart-actions .cart-link {
  color: #008b9a;
  margin: 20px 0 0 0;
  font-size: 13px;
  display: inline-block;
}
.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: #fff;
  border: 1px solid #008b9a;
  left: 0;
  padding-left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.search-autocomplete ul li {
  border-bottom: 1px solid #F4F4F4;
  color: #8bbb13;
  cursor: pointer;
  font-size: 12px;
  padding: 4px 6px;
  text-align: left;
}
.search-autocomplete ul li:hover {
  color: #7aa411;
}
.search-autocomplete ul li.selected {
  background-color: #008b9a;
  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 #008b9a;
  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;
}

/* ============================================ *
 * Search - Grid
 * ============================================ */
.catalogsearch-result-index .col3-layout .col-wrapper {
  width: 100%;
  margin: 40px 0 0 0;
}
.catalogsearch-result-index .col3-layout .col-wrapper .col-left {
  display: none;
}
.catalogsearch-result-index .col3-layout .col-wrapper .col-main {
  width: 100%;
}
.catalogsearch-result-index .col3-layout .col-wrapper .col-main .page-title h1 {
  text-transform: none;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 30px;
  font-weight: 500;
}
.catalogsearch-result-index .col3-layout .col-wrapper .col-main .NoResult-illustration {
  margin: 66px 0 0 0;
}
.catalogsearch-result-index .col3-layout .col-wrapper .col-main .NoResult-illustration img {
  width: 100%;
}
.catalogsearch-result-index .col3-layout .col-wrapper .col-main .toolbar .sorter .orderBy {
  display: none;
}

/* ============================================ *
 * Account - Reviews
 * ============================================ */
.product-review .product-img-box p.label {
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin-top: 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.product-review .product-img-box .rating-box {
  margin: 15px 0;
}
.product-review .product-details h2 {
  border-bottom: 1px solid #CCCCCC;
  color: #008b9a;
  font-size: 16px;
  font-weight: 600;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  padding-bottom: 10px;
}
.product-review .ratings-table {
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
.product-review .ratings-table th {
  padding-right: 10px;
}
.product-review .ratings-table tr {
  float: left;
  font-size: 12px;
  margin-right: 10px;
  text-transform: uppercase;
}
.product-review .ratings-description dt {
  border-bottom: 1px solid #CCCCCC;
  font-size: 16px;
  font-weight: 400;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin-top: 20px;
  padding: 10px 0;
  text-transform: uppercase;
}
.product-review .ratings-description dd {
  color: #737373;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 13px;
}

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

/* ============================================ *
 * CMS Pages
 * ============================================ */
.cms-page-view .page-title h1,
.cms-page-view .page-title h3,
.cms-page-view .page-head h1,
.cms-page-view .page-head h3,
.cms-no-route .page-title h1,
.cms-no-route .page-title h3,
.cms-no-route .page-head h1,
.cms-no-route .page-head h3 {
  border: none;
}
.cms-page-view .std img,
.cms-no-route .std img {
  max-width: 100%;
}
.cms-page-view .std 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-no-route .std h1 {
  color: #008b9a;
}
.cms-page-view .std h2,
.cms-no-route .std h2 {
  color: #008b9a;
}
.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: "Helvetica Neue", Verdana, Arial, sans-serif;
}

#accordion .toggle-tabs {
  display: none;
}
#accordion > dl > dt {
  margin: 0;
  margin-bottom: 10px;
  color: #636363;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.4;
  text-rendering: optimizeSpeed;
  text-transform: none;
  -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 #008b9a;
  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 {
  border: none;
}

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

.custom-cms-page_wrapper .custom-cms-page_block-title {
  width: 50%;
  margin: 70px auto;
}
.custom-cms-page_wrapper .custom-cms-page_block-title .custom-cms-page_main-title {
  color: #0d9aa3;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-title .custom-cms-page_main-subtitle {
  color: #51575a;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  line-height: 22px;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt {
  width: 80%;
  margin: 70px auto;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt li {
  list-style-type: disc;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt h1 {
  color: #0d9aa3;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt h2 {
  color: #0d9aa3;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt h3 {
  color: #0d9aa3;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt h4 {
  color: #51575a;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt p {
  color: #51575a;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt-hover-img {
  margin: 70px 0;
  padding: 70px 35px;
  overflow: hidden;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt-hover-img .custom-cms-page_block-txt-hover {
  float: right;
  width: 50%;
  padding: 60px;
  background: #fff;
  position: relative;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt-hover-img .custom-cms-page_block-txt-hover :before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -4px);
  transform: translate(-50%, -4px);
  width: 70px;
  height: 4px;
  background: #0d9aa3;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt-hover-img .custom-cms-page_block-txt-hover h1 {
  color: #0d9aa3;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt-hover-img .custom-cms-page_block-txt-hover h2 {
  color: #0d9aa3;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt-hover-img .custom-cms-page_block-txt-hover h3 {
  color: #0d9aa3;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt-hover-img .custom-cms-page_block-txt-hover h4 {
  color: #51575a;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt-hover-img .custom-cms-page_block-txt-hover p {
  color: #51575a;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt-hover-img .custom-cms-page_block-txt-hover ul {
  list-style-type: disc;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt-and-img {
  display: table;
  width: 100%;
  margin: 70px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt-and-img .custom-cms-page_block-img {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt-and-img .custom-cms-page_block-img img {
  display: inline;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt-and-img .custom-cms-page_block-txt {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt-and-img .custom-cms-page_block-txt h1 {
  color: #0d9aa3;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt-and-img .custom-cms-page_block-txt h2 {
  color: #0d9aa3;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt-and-img .custom-cms-page_block-txt h3 {
  color: #0d9aa3;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt-and-img .custom-cms-page_block-txt h4 {
  color: #51575a;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-txt-and-img .custom-cms-page_block-txt p {
  color: #51575a;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .block_txt-with-img-first .custom-cms-page_block-img {
  text-align: left;
}
.custom-cms-page_wrapper .block_txt-with-img-first .custom-cms-page_block-txt {
  padding: 0 30px 0 60px;
}
.custom-cms-page_wrapper .block_txt-with-img-second .custom-cms-page_block-img {
  text-align: right;
}
.custom-cms-page_wrapper .block_txt-with-img-second .custom-cms-page_block-txt {
  padding: 0 60px 0 30px;
}
.custom-cms-page_wrapper .custom-cms-page_block-video {
  margin: 70px auto;
}
.custom-cms-page_wrapper .custom-cms-page_block-video h1 {
  color: #0d9aa3;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-video h2 {
  color: #0d9aa3;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-video h3 {
  color: #0d9aa3;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-video .block-video_main-video {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.custom-cms-page_wrapper .custom-cms-page_block-video .block-video_main-video iframe,
.custom-cms-page_wrapper .custom-cms-page_block-video .block-video_main-video object,
.custom-cms-page_wrapper .custom-cms-page_block-video .block-video_main-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.custom-cms-page_wrapper .custom-cms-page_block-video .block-video_main-video {
  width: 100%;
  margin: 0 0 40px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-video .block-video_secondary-video {
  width: 48%;
  float: left;
}
.custom-cms-page_wrapper .custom-cms-page_block-video:after {
  content: '';
  display: table;
  clear: both;
}
.custom-cms-page_wrapper .custom-cms-page_block-slider {
  background: #f3f3f3;
  margin: 0 auto 90px auto;
  position: relative;
}
.custom-cms-page_wrapper .custom-cms-page_block-slider h1 {
  color: #0d9aa3;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-slider h2 {
  color: #0d9aa3;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-slider h3 {
  color: #0d9aa3;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block-slider .slideContainer {
  max-width: 100%;
  margin: 0 auto;
}
.custom-cms-page_wrapper .custom-cms-page_block-slider .slideContainer .desk_img {
  display: block;
}
.custom-cms-page_wrapper .custom-cms-page_block-slider .slideContainer .resp_img {
  display: none;
}
.custom-cms-page_wrapper .custom-cms-page_block-slider .slick-prev {
  left: -60px;
  width: auto;
  height: auto;
}
.custom-cms-page_wrapper .custom-cms-page_block-slider .slick-next {
  right: -60px;
  width: auto;
  height: auto;
}
.custom-cms-page_wrapper .custom-cms-page_block-slider .slick-prev:before,
.custom-cms-page_wrapper .custom-cms-page_block-slider .slick-next:before {
  font-size: 40px;
  color: #0d9aa3;
  transition: all 200ms ease-in;
}
.custom-cms-page_wrapper .custom-cms-page_block_4-img-with-txt {
  max-width: 1200px;
  padding: 0 30px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
}
.custom-cms-page_wrapper .custom-cms-page_block_4-img-with-txt .block_1 {
  text-align: center;
}
.custom-cms-page_wrapper .custom-cms-page_block_4-img-with-txt .block_1 h2 {
  color: #0d9aa3;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 20px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block_4-img-with-txt .block_2 {
  display: table;
  width: 100%;
  margin: 30px 0 90px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block_4-img-with-txt .block_2 .block-txt {
  display: table-cell;
  width: 46%;
  padding: 37px 70px 40px 35px;
}
.custom-cms-page_wrapper .custom-cms-page_block_4-img-with-txt .block_2 .block-txt h3 {
  color: #0d9aa3;
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
}
.custom-cms-page_wrapper .custom-cms-page_block_4-img-with-txt .block_2 .block-img {
  display: table-cell;
  width: 54%;
  vertical-align: middle;
}
.custom-cms-page_wrapper .custom-cms-page_block_4-img-with-txt .block_2 .block-img img {
  max-width: 100%;
}
.custom-cms-page_wrapper .custom-cms-page_block_4-img-with-txt .block_3 {
  width: 100%;
  text-align: center;
}
.custom-cms-page_wrapper .custom-cms-page_block_4-img-with-txt .block_3 div {
  display: inline-block;
  vertical-align: top;
}
.custom-cms-page_wrapper .custom-cms-page_block_4-img-with-txt .block_3 div img {
  width: 100%;
}
.custom-cms-page_wrapper .custom-cms-page_block_4-img-with-txt .block_3 .block-img-2, .custom-cms-page_wrapper .custom-cms-page_block_4-img-with-txt .block_3 .block-img-4 {
  width: 23%;
}
.custom-cms-page_wrapper .custom-cms-page_block_4-img-with-txt .block_3 .block-img-2 {
  float: left;
  margin-top: -30px;
}
.custom-cms-page_wrapper .custom-cms-page_block_4-img-with-txt .block_3 .block-img-4 {
  float: right;
}
.custom-cms-page_wrapper .custom-cms-page_block_4-img-with-txt .block_3 .block-img-3 {
  width: 50%;
}
.custom-cms-page_wrapper .frame-custom-cms-page_block_3-img-with-bkg {
  margin-bottom: 180px;
}
.custom-cms-page_wrapper .frame-custom-cms-page_block_3-img-with-bkg .custom-cms-page_block_3-img-with-bkg {
  margin-top: 60px;
  background: #f3f3f3;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 150px;
  padding: 60px 0 0 0;
}
.custom-cms-page_wrapper .frame-custom-cms-page_block_3-img-with-bkg .custom-cms-page_block_3-img-with-bkg .block_1 {
  display: table;
  width: 100%;
  max-width: 1200px;
  padding: 0 30px 30px 30px;
  margin: 0 auto;
}
.custom-cms-page_wrapper .frame-custom-cms-page_block_3-img-with-bkg .custom-cms-page_block_3-img-with-bkg .block_1 .block-img {
  display: table-cell;
  width: 54%;
  vertical-align: middle;
}
.custom-cms-page_wrapper .frame-custom-cms-page_block_3-img-with-bkg .custom-cms-page_block_3-img-with-bkg .block_1 .block-img img {
  max-width: 100%;
}
.custom-cms-page_wrapper .frame-custom-cms-page_block_3-img-with-bkg .custom-cms-page_block_3-img-with-bkg .block_1 .block-txt {
  display: table-cell;
  width: 40%;
  vertical-align: middle;
  padding: 0 75px 0 50px;
}
.custom-cms-page_wrapper .frame-custom-cms-page_block_3-img-with-bkg .custom-cms-page_block_3-img-with-bkg .block_1 .block-txt h3 {
  color: #0d9aa3;
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 32px;
}
.custom-cms-page_wrapper .frame-custom-cms-page_block_3-img-with-bkg .custom-cms-page_block_3-img-with-bkg .block_1 .block-txt p {
  margin-bottom: 20px;
}
.custom-cms-page_wrapper .frame-custom-cms-page_block_3-img-with-bkg .custom-cms-page_block_3-img-with-bkg .block_2 {
  max-width: 1200px;
  padding: 0 30px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.custom-cms-page_wrapper .frame-custom-cms-page_block_3-img-with-bkg .custom-cms-page_block_3-img-with-bkg .block_2 div {
  width: 32%;
  /*width: calc(100% / 3);*/
}
.custom-cms-page_wrapper .frame-custom-cms-page_block_3-img-with-bkg .custom-cms-page_block_3-img-with-bkg .block_2 div img {
  width: 100%;
  margin-bottom: -100px;
}
.custom-cms-page_wrapper .frame-custom-cms-page_block_3-img-with-bkg .custom-cms-page_block_3-img-with-bkg .block_2 .block-txt {
  display: flex;
  z-index: 10;
  position: relative;
  width: 32%;
}
.custom-cms-page_wrapper .frame-custom-cms-page_block_3-img-with-bkg .custom-cms-page_block_3-img-with-bkg .block_2 .block-txt p {
  align-self: center;
  /*background: #fdd;*/
  width: calc(100%);
  margin-left: 35px;
  padding-right: 20px;
}
.custom-cms-page_wrapper .frame-custom-cms-page_block_3-img-with-bkg .custom-cms-page_block_3-img-with-bkg .block_2 .block-img-2 {
  margin-left: -110px;
  width: 40.5%;
}
.custom-cms-page_wrapper .frame-custom-cms-page_block_3-img-with-bkg .custom-cms-page_block_3-img-with-bkg .block_2 .block-img-3 {
  float: right;
}
.custom-cms-page_wrapper .custom-cms-page_block-testimony {
  margin-bottom: 90px;
  max-width: 1200px;
  padding: 0 30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}
.custom-cms-page_wrapper .custom-cms-page_block-testimony .block-img {
  display: table-cell;
  width: 30%;
  vertical-align: middle;
}
.custom-cms-page_wrapper .custom-cms-page_block-testimony .block-img img {
  max-width: 100%;
}
.custom-cms-page_wrapper .custom-cms-page_block-testimony .block-txt {
  width: 70%;
  padding: 70px 25px 0 40px;
  display: flex;
  align-items: baseline;
}
.custom-cms-page_wrapper .custom-cms-page_block-testimony .block-txt h3 {
  color: #0d9aa3;
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
}
.custom-cms-page_wrapper .custom-cms-page_block-testimony .block-txt .block-testimony {
  padding-left: 5px;
}
.custom-cms-page_wrapper .custom-cms-page_block-testimony .block-txt .block-testimony .testimony {
  display: flex;
  align-items: flex-end;
}
.custom-cms-page_wrapper .custom-cms-page_block-testimony .block-txt .block-testimony .testimony .testimony-content {
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 20px;
}
.custom-cms-page_wrapper .custom-cms-page_block-testimony .block-txt .block-testimony .author {
  font-weight: 600;
}
.custom-cms-page_wrapper .custom-cms-page_block-testimony .block-txt .block-testimony .status {
  font-style: italic;
}
.custom-cms-page_wrapper .custom-cms-page_block-video {
  max-width: 1200px;
  padding: 0 30px;
}
.custom-cms-page_wrapper .custom-cms-page_block_6_thumbnails {
  max-width: 1200px;
  padding: 0 30px;
  margin: 30px auto;
}
.custom-cms-page_wrapper .custom-cms-page_block_6_thumbnails .block_1 {
  text-align: center;
}
.custom-cms-page_wrapper .custom-cms-page_block_6_thumbnails .block_1 h2 {
  color: #0d9aa3;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 50px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block_6_thumbnails .blockContainer {
  float: none;
}
.custom-cms-page_wrapper .custom-cms-page_block_6_thumbnails .blockHomepage {
  width: calc(100% / 3);
}
.custom-cms-page_wrapper .custom-cms-page_block_video_and_bkg {
  max-width: 1200px;
  padding: 0 30px;
  margin: 30px auto;
  display: flex;
}
.custom-cms-page_wrapper .custom-cms-page_block_video_and_bkg .VideoContainer {
  margin: 0 auto;
  max-width: 1240px;
  width: 95%;
  display: flex;
  padding: 30px 0;
}
.custom-cms-page_wrapper .custom-cms-page_block_video_and_bkg .VideoContainer .VideoContent {
  width: 59%;
  float: left;
}
.custom-cms-page_wrapper .custom-cms-page_block_video_and_bkg .VideoContainer .VideoContent .videoWrapper {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.custom-cms-page_wrapper .custom-cms-page_block_video_and_bkg .VideoContainer .VideoContent .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.custom-cms-page_wrapper .custom-cms-page_block_video_and_bkg .VideoContainer .VideoInfo {
  width: 36%;
  margin: auto;
}
.custom-cms-page_wrapper .custom-cms-page_block_video_and_bkg .VideoContainer .VideoInfo h3 {
  font-size: 40px;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 600;
  color: #fff;
  text-transform: none;
}
.custom-cms-page_wrapper .custom-cms-page_block_video_and_bkg .VideoContainer .VideoInfo p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.custom-cms-page_wrapper .custom-cms-page_block_carousel {
  padding-top: 30px;
  display: flex;
}
.custom-cms-page_wrapper .custom-cms-page_block_carousel .categoryContainer {
  margin-top: 0;
}
.custom-cms-page_wrapper .custom-cms-page_block_carousel .categoryContainer .slick-slide .product-content {
  margin: 36px 0 0 0;
}
.custom-cms-page_wrapper .custom-cms-page_block_carousel .categoryContainer .slick-slide .product-content:before {
  padding: 0;
}
.custom-cms-page_wrapper .custom-cms-page_block_carousel .categoryContainer .slick-dots li.slick-active button:before {
  font-size: 15px;
  color: #008b9a;
}
.custom-cms-page_wrapper .custom-cms-page_block_static_block {
  max-width: 1200px;
  padding: 0 30px;
}

.bbm-full-width-main .page > .main-container {
  max-width: 100%;
  padding: 22px 0 0 0;
}
.bbm-full-width-main .page > .main-container .breadcrumbs {
  max-width: 1230px;
  padding: 0 30px;
  margin: 0 auto;
}
.bbm-full-width-main .page > .main-container .blockContainer {
  float: none;
}

.bbm-full-width-main .page > .main-container ~ .main-container {
  position: relative;
  max-width: 1230px;
  margin: 0 auto;
  padding: 30px;
}

/* ============================================ *
 * Pricing Conditions
 * ============================================ */
.price-box .minimal-price-link .label {
  color: #CF5050;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.map-info {
  white-space: nowrap;
}

.catalog-product-view .map-info {
  white-space: normal;
}
.catalog-product-view .map-info > span {
  float: right;
  margin-bottom: 5px;
}
.catalog-product-view .map-info .price-box.map-info > a {
  float: right;
  width: 100%;
}

/* ============================================ *
 * Cookies
 * ============================================ */
.notice-cookie {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
  left: 0;
  background: rgba(13, 154, 163, 0.9);
}
.notice-cookie .notice-inner {
  padding: 20px 25px 20px 25px;
  background: none;
  position: relative;
}
.notice-cookie .notice-inner:after {
  content: '';
  display: table;
  clear: both;
}
.notice-cookie .notice-text {
  float: left;
  text-align: left;
}
.notice-cookie .notice-text p {
  line-height: 1.3;
  float: left;
  padding: 0;
  font-size: 14px;
}
.notice-cookie .notice-text p a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}
.notice-cookie #close-cookie {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
  margin-left: 10px;
  font-size: 32px;
}
.notice-cookie #aggree {
  display: inline;
  color: #fff;
  text-decoration: underline;
  font-size: 14px;
}
.notice-cookie .actions {
  display: none;
  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 {
  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 {
  /* Allow this mixin to be used for more specific purposes, such as grids contained within widgets*/
  /* Config: Columns + flexible gutter */
  /* Undo three-column config */
  /* Set column config */
  /* Allow this mixin to be used for more specific purposes, such as grids contained within widgets*/
  /* 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: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
}
body[class*="checkout-multishipping-"] .checkout-progress > li.active {
  background-color: #DDDDDD;
}
body[class*="checkout-multishipping-"] .checkout-progress > li.last {
  border-right: 0px;
}
body[class*="checkout-multishipping-"] .page-title {
  float: left;
  width: 100%;
  margin-bottom: 15px;
}
body[class*="checkout-multishipping-"] .page-title h1 {
  border: 0 none;
  float: left;
  margin-top: 2px;
  margin-right: 2%;
}
body[class*="checkout-multishipping-"] .page-title .button {
  float: right;
}
body[class*="checkout-multishipping-"] .multiple-checkout > h2 {
  text-transform: none;
  font-size: 17px;
  margin-bottom: 15px;
}
body[class*="checkout-multishipping-"] .messages {
  float: left;
  width: 100%;
}
body[class*="checkout-multishipping-"] .col-2.col-wide {
  width: 66%;
}
body[class*="checkout-multishipping-"] .col-1.col-narrow {
  width: 30%;
}
body[class*="checkout-multishipping-"] .actions {
  margin-bottom: 10px;
}
body[class*="checkout-multishipping-"] .grand-total {
  text-align: right;
  font-size: 16px;
  font-weight: bold;
}
body[class*="checkout-multishipping-"] #checkout-review-submit {
  float: right;
}
body[class*="checkout-multishipping-"] #review-buttons-container {
  float: right;
  text-align: right;
}

.checkout-multishipping-addresses .btn-remove2 {
  text-indent: -5555px;
  display: block;
  width: 22px;
  height: 22px;
}

.checkout-multishipping-shipping .gift-messages {
  margin-top: 20px;
}
.checkout-multishipping-shipping .gift-messages-form {
  margin-top: 15px;
}
.checkout-multishipping-shipping .gift-messages-form h4 {
  margin-top: 15px;
  margin-bottom: 5px;
}
.checkout-multishipping-shipping .gift-messages-form .form-list {
  margin-top: 10px;
  margin-bottom: 25px;
}
.checkout-multishipping-shipping .gift-messages-form .item {
  margin-top: 15px;
}

.checkout-multishipping-shipping .col-1 .box-title h2, .checkout-multishipping-shipping .col-1 .box-title h3, .checkout-multishipping-shipping .col-1 .box-title h4, .checkout-multishipping-shipping .col-2 .box-title h2, .checkout-multishipping-shipping .col-2 .box-title h3, .checkout-multishipping-shipping .col-2 .box-title h4,
.checkout-multishipping-billing .col-1 .box-title h2,
.checkout-multishipping-billing .col-1 .box-title h3,
.checkout-multishipping-billing .col-1 .box-title h4,
.checkout-multishipping-billing .col-2 .box-title h2,
.checkout-multishipping-billing .col-2 .box-title h3,
.checkout-multishipping-billing .col-2 .box-title h4,
.checkout-multishipping-overview .col-1 .box-title h2,
.checkout-multishipping-overview .col-1 .box-title h3,
.checkout-multishipping-overview .col-1 .box-title h4,
.checkout-multishipping-overview .col-2 .box-title h2,
.checkout-multishipping-overview .col-2 .box-title h3,
.checkout-multishipping-overview .col-2 .box-title h4 {
  font-weight: normal;
  width: 100%;
  background: #F4F4F4;
  border-bottom: 1px solid #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;
}

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

.onestepcheckout-index-index .checkout_stepper-block {
  margin: 0 auto 30px auto;
}

.onestepcheckout-index-index #returnTop {
  display: none;
}
.onestepcheckout-index-index #header .account-cart-wrapper {
  display: none;
}
.onestepcheckout-index-index #header .logo {
  margin: 0 auto;
}
.onestepcheckout-index-index #header-nav {
  display: none;
}
.onestepcheckout-index-index #header-nav .nav-box {
  border: none;
}
.onestepcheckout-index-index #header-search {
  display: none;
}

.onestepcheckout-column-right.onestep-column_double-size {
  width: 66%;
}
.onestepcheckout-column-right.onestep-column_double-size .onestepcheckout-numbers {
  border-top: 1px solid #c9c9cb;
  padding: 30px 30px 30px 0;
}

.onestep_login-block-wrapper {
  background-color: #f3f3f3;
  padding: 30px 0;
}
.onestep_login-block-wrapper .onestep_login-block {
  max-width: 1230px;
  margin: 0 auto;
  padding: 15px;
  display: flex;
}
.onestep_login-block-wrapper .onestep_login-block .onestepcheckout-login-link {
  color: #51575a;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}
.onestep_login-block-wrapper .onestep_login-block .onestepcheckout-login-link a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 22px;
  background: #ed6d66;
  border: 2px solid #ed6d66;
  margin: 0 0 0 30px;
}
.onestep_login-block-wrapper .onestep_login-block .onestepcheckout-login-link a:hover {
  color: #ed6d66;
  background: #fff;
  text-decoration: none;
}
.onestep_login-block-wrapper .onestep_login-block .onestepcheckout-description {
  margin: 0 0 0 100px;
  color: #51575a;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.onestepcheckout-numbers {
  color: #51575a;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0 30px 30px 0;
}
.onestepcheckout-numbers span {
  color: #138c94;
  font-size: 25px;
  margin: 0 10px 0 0;
}

table.onestepcheckout-summary td.name {
  position: relative;
  padding: 30px 0 30px 140px;
  height: 160px;
}
table.onestepcheckout-summary td.name .onestep_product-image {
  position: absolute;
  top: 50%;
  left: 20px;
  margin: -50px 0 50px 0;
}
table.onestepcheckout-summary td.name .onestep_product-name {
  font-size: 16px;
  font-weight: 600;
}
table.onestepcheckout-summary td.name .onestep_product-custom-options {
  font-size: 14px;
  font-weight: 400;
}
table.onestepcheckout-summary td.unit-price {
  font-size: 14px;
  font-weight: 400;
}
table.onestepcheckout-summary td.qty .onestep_qty-edit-block {
  border: 1px solid #c9c9cb;
  border-radius: 5px;
  display: inline-block;
  position: relative;
}
table.onestepcheckout-summary td.qty .onestep_qty-edit-block a {
  display: inline-block;
  padding: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #636363;
  background: #fafafa;
}
table.onestepcheckout-summary td.qty .onestep_qty-edit-block a:hover {
  text-decoration: none;
  background: #f0f0f0;
}
table.onestepcheckout-summary td.qty .onestep_qty-edit-block a.subsqty {
  border-right: 1px solid #c9c9cb;
  border-radius: 5px 0 0 5px;
}
table.onestepcheckout-summary td.qty .onestep_qty-edit-block a.addsqty {
  border-left: 1px solid #c9c9cb;
  border-radius: 0 5px 5px 0;
}
table.onestepcheckout-summary td.qty .onestep_qty-edit-block span {
  display: inline-block;
  padding: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #636363;
}
table.onestepcheckout-summary td.total {
  font-size: 14px;
  font-weight: 600;
}

.shipment-methods div.DPD {
  position: relative;
  padding: 20px 20px 20px 100px;
  background: url("/skin/frontend/bbm/default/images/logos/logo_colissimo.png") 30px 15px no-repeat;
}
.shipment-methods input[type="radio"] {
  position: absolute;
  top: 30px;
  left: 0;
}

.atos-logo img {
  float: left;
  margin: 0 10px 0 0;
}
.atos-logo img:last-child {
  margin: 0;
}

.onestepcheckout-skin-generic .onestepcheckout-column-middle {
  padding: 0 30px;
  width: 66%;
  border-right: none;
  min-height: 210px;
}
.onestepcheckout-skin-generic .onestepcheckout-column-middle .onestepcheckout-shipping-method-block .shipment-methods .DPD {
  font-size: 16px;
  font-weight: 600;
  margin: 0 70px 3px 0;
}
.onestepcheckout-skin-generic .onestepcheckout-column-middle .onestepcheckout-shipping-method-block .shipment-methods .DPD label {
  width: 100%;
  font-weight: 400;
}
.onestepcheckout-skin-generic .onestepcheckout-column-middle .onestepcheckout-shipping-method-block .shipment-methods .DPD label strong {
  float: right;
  margin-top: -25px;
  margin-right: -70px;
}
.onestepcheckout-skin-generic .onestepcheckout-column-right {
  width: 66%;
}
.onestepcheckout-skin-generic .onestepcheckout-column-right .onestepcheckout-column-padleft .onestepcheckout-numbers-3 {
  border-top: 1px solid #c9c9cb;
  padding: 30px 30px 30px 0;
}
.onestepcheckout-skin-generic .onestepcheckout-column-right .onestepcheckout-column-padleft .payment-methods #checkout-payment-method-load {
  margin-top: 25px;
}
.onestepcheckout-skin-generic .onestepcheckout-column-right .onestepcheckout-column-padleft .payment-methods #checkout-payment-method-load dt {
  clear: both;
}
.onestepcheckout-skin-generic .onestepcheckout-column-right .onestepcheckout-column-padleft .payment-methods #checkout-payment-method-load dt label[for=p_method_atos_standard] {
  display: none;
}
.onestepcheckout-skin-generic .onestepcheckout-column-right .onestepcheckout-column-padleft .payment-methods #checkout-payment-method-load .payment-method {
  margin: -40px 0 30px 30px;
  height: 50px;
}
.onestepcheckout-skin-generic .onestepcheckout-column-right .onestepcheckout-column-padleft .payment-methods #checkout-payment-method-load .payment-method .form-list:first-child {
  width: 40%;
  float: left;
}
.onestepcheckout-skin-generic .onestepcheckout-column-right .onestepcheckout-column-padleft .payment-methods #checkout-payment-method-load .payment-method #payment_form_atos_standard {
  float: right;
  width: 60%;
  margin-top: 10px;
  height: 85px;
  display: block !important;
}
.onestepcheckout-skin-generic .onestepcheckout-column-right .onestepcheckout-column-padleft .payment-methods #checkout-payment-method-load .payment-method #payment_form_atos_standard li {
  line-height: 1.3;
  padding-left: 80px;
}
.onestepcheckout-skin-generic .onestepcheckout-column-right .onestepcheckout-column-padleft .payment-methods #checkout-payment-method-load .payment-method #payment_form_atos_standard li:before {
  position: absolute;
  content: "Paiement sécurisé";
  top: -25px;
  font-size: 16px;
  font-weight: 600;
}
.onestepcheckout-skin-generic .onestepcheckout-column-right .onestepcheckout-column-padleft .payment-methods #checkout-payment-method-load .payment-method #payment_form_atos_standard li:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 50%;
  border: 2px solid #c9c9cb;
  border-radius: 50%;
  padding: 29px 30px;
  width: 35px;
  height: 35px;
  background: url("https://www.babymoov.com/skin/frontend/bbm/default/images/pictos/picto_padlock.png") center center no-repeat;
}
.onestepcheckout-skin-generic .onestepcheckout-column-right .onestepcheckout-column-padleft .payment-methods #checkout-payment-method-load .payment-method #payment_form_checkmo {
  padding-top: 10px;
}
.onestepcheckout-skin-generic .onestepcheckout-column-right .onestepcheckout-column-padleft .payment-methods #checkout-payment-method-load #container_payment_method_atos_standard {
  display: block !important;
}
.onestepcheckout-skin-generic .validate-one-required-by-name:checked:after {
  position: absolute;
  top: -2px;
  left: -2px;
  line-height: 1;
  height: 15px;
  width: 15px;
  content: " ";
  border: 2px solid #d7d7d9;
  background-color: #138c94;
  border-radius: 50%;
}

.bbm-productregistration-index-index h1 {
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  color: #51575a;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  margin-top: 58px;
}
.bbm-productregistration-index-index p {
  text-align: center;
}

#bbm_product_registration:after {
  content: '';
  display: table;
  clear: both;
}
#bbm_product_registration fieldset {
  padding: 40px 0;
}
#bbm_product_registration fieldset:nth-child(odd) {
  background: #f3f3f3;
}
#bbm_product_registration fieldset div {
  width: 100%;
  padding: 0 30px;
  max-width: 650px;
  margin: 0 auto 20px auto;
  min-height: 44px;
}
#bbm_product_registration fieldset div label {
  font-weight: 400;
  font-size: 14px;
  padding: 14px 0 0 0;
}
#bbm_product_registration fieldset div input {
  width: 100%;
  max-width: 270px;
  height: 44px;
  padding: 10px 20px;
  float: right;
}
#bbm_product_registration fieldset div:last-child {
  margin: 0 auto;
}
#bbm_product_registration button {
  border-radius: 22px;
  border: 3px solid #008b9a;
  background: #008b9a;
  color: #fff;
  font-size: 16px;
  transition: all 200ms ease-in;
  padding: 7px 20px;
  width: 100%;
  max-width: 200px;
  margin: 30px auto 0 auto;
  display: block;
  font-weight: bold;
}
#bbm_product_registration button:hover {
  background: #fff;
  color: #008b9a;
  text-decoration: none;
}

#loader-img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1000;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
}

#loader-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: .73;
  filter: alpha(opacity=73);
  width: 100%;
  height: 100%;
  z-index: 999;
}

.storelocator {
  margin: 30px 0;
}
.storelocator h1, .storelocator p {
  text-align: center;
  color: #51575a;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}
.storelocator h1 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: none;
}

.stores {
  position: relative;
  width: 35%;
  float: left;
  height: 500px;
}

#maps {
  position: relative;
}
#maps .brand_filter {
  border-left: 1px solid #e8e5df;
  border-bottom: 1px solid #e8e5df;
  width: 65%;
  position: absolute;
  height: 60px;
  top: 0;
  right: 0;
  background: white;
  z-index: 10;
  padding: 19px 0;
}
#maps .gm-style {
  height: 90% !important;
  top: auto !important;
  bottom: 0px;
}

#map_canvas {
  width: 65%;
  height: 560px;
  float: right;
}

#store-list-container {
  height: 500px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.store-list {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 500px;
  overflow-y: scroll;
}

.store-row {
  padding-left: 10px;
}

.store-info-container {
  display: inline-block;
  padding: 1em 0;
  width: 70%;
  vertical-align: middle;
}
.store-info-container a:hover {
  color: #51575a;
}

.store-image {
  height: 100%;
  display: inline-block;
  padding: 1em;
  vertical-align: middle;
  text-align: center;
}
.store-image img {
  width: 100%;
  display: inline;
  max-width: 49px;
  height: auto;
}

.store-counter {
  border-bottom: 1px solid rgba(147, 149, 152, 0.45);
  color: #272c30;
  padding: 10px;
  display: block;
  text-align: center;
}

.store-table {
  width: 100%;
  overflow: hidden;
  padding: 0 30px;
}

.store-inner {
  border-bottom: 1px solid rgba(147, 149, 152, 0.45);
  padding: 29px 0 29px 0;
}

.store-table:last-child .store-inner {
  border-bottom: 0;
}

.pickup .store-table {
  border-bottom: none;
}

.first {
  border-bottom: 1px solid rgba(147, 149, 152, 0.45);
}

.span-geoloc {
  cursor: pointer;
  display: inline-block;
  background: #d93434;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d93434), to(#b82b2b));
  background-image: linear-gradient(to bottom, #d93434, #b82b2b);
  /*-webkit-border-radius: 4;-moz-border-radius: 4; border-radius: 4px;*/
  font-family: Arial;
  color: #ffffff;
  font-size: 12px;
  padding: 5px 10px 5px 10px;
  text-decoration: none;
  clear: both;
  float: right;
  margin-top: 5px;
}
.span-geoloc:hover {
  background: #fc3c3c;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fc3c3c), to(#d93434));
  background-image: linear-gradient(to bottom, #fc3c3c, #d93434);
  text-decoration: none;
}

span.locate {
  margin-right: 30px;
  text-transform: none;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.store-name {
  font-size: 16px;
  text-transform: none;
  font-weight: 600;
  margin-bottom: 0;
}

.store-phone {
  margin-top: 15px;
}
.store-phone a {
  color: #51575a;
}
.store-phone a:hover {
  color: #51575a;
}

.store-description {
  width: 350px;
  padding-top: 10px;
  clear: both;
  overflow-y: auto;
  max-height: 100px;
}

.store-info {
  max-height: 400px;
  min-width: 300px;
}

.store-image-infoWindow {
  width: 33px;
}

.store-image-div-infoWindow {
  float: left;
}

.store-name-infoWindow {
  width: 150px;
  float: left;
  margin-left: 15px;
}
.store-name-infoWindow h3 {
  font-size: 14px;
}

#search .input-text {
  width: 300px;
  padding: 5px;
}

#store-search {
  margin-bottom: 10px;
  width: 100%;
  overflow: hidden;
}
#store-search .label-address {
  float: left;
  clear: both;
  line-height: 30px;
  margin-right: 5px;
}
#store-search .store-search-address {
  float: left;
  width: 100%;
  margin: 50px 0;
}
#store-search .search-address {
  width: 100%;
  overflow: hidden;
  float: none;
  clear: both;
  text-align: center;
}
#store-search .search-address .input-box-storeloc {
  position: relative;
  height: 44px;
  display: inline-block;
  margin: 0 30px 0 0;
}
#store-search .search-address .search-button-storeloc {
  position: absolute;
  top: 0;
  right: 0;
  height: 44px;
  width: 44px;
  padding: 0;
  background: #89bd23;
  border-radius: 0 20px 20px 0;
  display: none;
}
#store-search .search-address .search-button-storeloc span {
  font-size: 22px;
  color: #fff;
}
#store-search .search-address #address:focus ~ .search-button-storeloc {
  display: block;
}
#store-search .search-address #address:focus {
  width: 310px;
}
#store-search .search-address .search-input-picto-storeloc {
  position: absolute;
  top: 10px;
  left: 10px;
}
#store-search .search-address #address {
  width: 200px;
  height: 44px;
  padding: 0 0 0 40px;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  color: #b1b3b4;
  border: 2px solid #b1b3b4;
  border-radius: 20px;
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
  outline: none;
}
#store-search .search-address .actions {
  width: 176px;
  display: inline-block;
  position: relative;
}
#store-search .search-address .actions .locate-img-pin {
  position: absolute;
  right: 10px;
  top: 10px;
}
#store-search .search-address .actions .button {
  height: 44px;
  border-radius: 20px;
  background: #89bd23;
  width: 100%;
  display: inline-block;
}

#storelocator-container {
  border: 1px solid rgba(147, 149, 152, 0.45);
  width: 100%;
}
#storelocator-container::after {
  content: " ";
  display: block;
  clear: both;
  height: 1px;
}

#panel {
  float: left;
  margin-top: 15px;
}

.pac-container .pac-item {
  text-align: left;
}

.store-search-filter-city, .store-search-filter-country, .store-search-address {
  display: inline-block;
}

.store-search-filter-city, .store-search-filter-country {
  margin-left: 1em;
  line-height: 30px;
}

.popin-storelocator-information {
  position: absolute;
  top: 30%;
  left: 50%;
  margin-left: -175px;
  width: 350px;
  z-index: 9999;
  background-color: #fff;
  opacity: .73;
  filter: alpha(opacity=73);
  border: 1px solid #777;
  padding: 1em;
}

#loader-img-popin {
  text-align: center;
  margin: 10px 0;
}
#loader-img-popin > img {
  margin: 0 auto;
}

.store-view .store-image {
  max-width: 100%;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  float: none;
}
.store-view .store-image img {
  max-width: 100%;
}
.store-view .store-name {
  font-size: 34px;
  font-weight: 100;
  text-decoration: none;
}
.store-view .store-description {
  width: 100%;
  max-height: 100%;
}
.store-view .store-info {
  min-height: 200px;
  max-height: 100%;
  -webkit-transition: height 0.8s;
  transition: height 0.8s;
  padding: 10px 0;
}
.store-view .tab-container {
  padding: 10px 0;
}
.store-view .store-tab ul li {
  float: left;
  border-top: 1px solid #c5c5c5;
  border-bottom: 1px solid #c5c5c5;
  display: inline-block;
  width: 33.33%;
  text-align: center;
  text-transform: uppercase;
  height: 40px;
  line-height: 40px;
  cursor: pointer;
}
.store-view .store-tab ul li:hover span {
  background-color: #c5c5c5;
  color: #ffffff;
  display: inline-block;
  width: 100%;
}
.store-view .store-info .store-tab ul li.active span {
  background-color: #c5c5c5;
  color: #ffffff;
  display: inline-block;
  width: 100%;
}
.store-view .store-tab ul li.first, .store-view .store-tab ul li.last {
  border-left: 1px solid #c5c5c5;
  border-right: 1px solid #c5c5c5;
}
.store-view .choose-direction ul li {
  cursor: pointer;
}
.store-view .services ul li {
  float: left;
  width: 50%;
}
.store-view .services ul li .picto-service {
  float: left;
  margin-right: 5px;
}
.store-view .services ul li .service-info {
  float: left;
  line-height: 50px;
}
.store-view .services ul li .service-info div.service-description {
  line-height: 13px;
}
.store-view .services ul li .service-info p.label {
  font-size: 13px;
  font-weight: bold;
}
.store-view .store-opening {
  text-align: center;
}

#store-contact {
  padding: 15px 0;
}

.store-view .col-address, .store-view .store-phone, .store-view .store-url, .store-view .store-fax {
  font-size: 21px;
  font-weight: 100;
}
.store-view .col-address a, .store-view .store-phone a, .store-view .store-url a, .store-view .store-fax a {
  font-weight: 200;
}

#storelocator-popin {
  position: fixed;
  z-index: 10;
  width: 90%;
  left: 50%;
  top: 50%;
  border: 1px solid #c5c5c5;
  background-color: #ffffff;
  padding: 15px;
  max-width: 1000px;
}
#storelocator-popin .close-storelocator-popin {
  float: right;
  position: absolute;
  right: 20px;
  top: 5px;
  z-index: 9999999;
  font-size: 30px;
  cursor: pointer;
}

/*reseller / brandname*/
.web-reseller .reseller-title {
  text-align: center;
  padding: 117px 0 0 0;
}
.web-reseller .reseller-title h2 {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #51575a;
  text-transform: none;
}
.web-reseller .reseller-title p {
  color: #51575a;
}
.web-reseller .reseller-title .reseller-buttons-wrapper {
  margin: 50px 0 0 0;
}
.web-reseller .reseller-title .reseller-buttons-wrapper .reseller-button {
  padding: 7px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 22px;
  text-transform: none;
  margin: 0 20px;
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
  text-decoration: none;
  line-height: 23px;
  background-color: #fff;
  border: 2px solid #ed6d66;
  cursor: pointer;
}
.web-reseller .reseller-title .reseller-buttons-wrapper .reseller-button.reseller_bbm {
  color: #ed6d66;
}
.web-reseller .reseller-title .reseller-buttons-wrapper .reseller-button.reseller_bbm:hover, .web-reseller .reseller-title .reseller-buttons-wrapper .reseller-button.reseller_bbm.select {
  color: #fff;
  background-color: #ed6d66;
  border-color: #ed6d66;
}
.web-reseller .reseller-title .reseller-buttons-wrapper .reseller-button.reseller_bdb {
  color: #ed6d66;
}
.web-reseller .reseller-title .reseller-buttons-wrapper .reseller-button.reseller_bdb:hover, .web-reseller .reseller-title .reseller-buttons-wrapper .reseller-button.reseller_bdb.select {
  color: #fff;
  background-color: #ed6d66;
  border-color: #ed6d66;
}
.web-reseller .reseller-blocks-wrapper .reseller-block {
  display: none;
}
.web-reseller .reseller-blocks-wrapper .reseller-block.select {
  display: block;
}
.web-reseller .reseller-blocks-wrapper .reseller-brandname {
  margin: 50px 0 0 0;
}
.web-reseller .reseller-blocks-wrapper .reseller-brandname li {
  float: left;
  width: 25%;
  padding: 0 15px 30px 15px;
}
.web-reseller .reseller-blocks-wrapper .reseller-brandname li a {
  position: relative;
  display: block;
  height: 110px;
  border: 1px solid #e1e1e1;
  width: 100%;
}
.web-reseller .reseller-blocks-wrapper .reseller-brandname li a:hover {
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35);
}
.web-reseller .reseller-blocks-wrapper .reseller-brandname li a img {
  max-width: 80%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media all and (max-width: 1060px) {
  .web-reseller .reseller-blocks-wrapper .reseller-brandname li {
    width: 33.333333%;
  }
}
@media all and (max-width: 850px) {
  .web-reseller .reseller-blocks-wrapper .reseller-brandname li {
    width: 50%;
  }
}
.web-reseller .reseller-blocks-wrapper .reseller-brandname:after {
  content: '';
  display: table;
  clear: both;
}

/*style map infowindow*/
.gm-style-iw {
  width: 200px;
}
.gm-style-iw .store-info .store-image-div-infoWindow {
  display: none;
}
.gm-style-iw .store-info .store-name-infoWindow h3 {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: none;
}
.gm-style-iw .store-info .store-name-infoWindow p {
  text-align: left;
  font-size: 14px;
}

/*store css*/
.store-view {
  margin: 70px 0 0 0;
}
.store-view .info-map-store-container {
  border: 1px solid rgba(147, 149, 152, 0.45);
}
.store-view .info-map-store-container .hours .store-opening {
  text-align: left;
}
.store-view .store-name {
  text-align: center;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 46px 0;
  color: #51575a;
}
.store-view .info-store-container {
  float: left;
  width: 35%;
  height: 500px;
  overflow-y: auto;
  padding: 36px 0 0 0;
}
.store-view .info-store-container .pin-illu {
  float: left;
  max-width: 100px;
  width: 100%;
}
.store-view .info-store-container .pin-illu img {
  float: right;
}
.store-view .info-store-container .link-google-map {
  float: left;
  width: 100%;
  text-align: center;
  margin: 20px 0 0 0;
}
.store-view .info-store-container .link-google-map a {
  color: #89bd23;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
}
.store-view .info-store-container .info-store {
  float: left;
  padding: 0 0 0 29px;
}
.store-view .info-store-container .info-store h2 {
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
.store-view .info-store-container .info-store h3 {
  padding: 15px 0 0 0;
  text-transform: none;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
}
.store-view .info-store-container .info-store p, .store-view .info-store-container .info-store a {
  font-size: 14px;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}
.store-view .info-store-container .info-store .store-phone {
  margin: 0;
  color: #51575a;
  outline: none;
}
.store-view .map {
  float: left;
  width: 65%;
}

@media all and (max-width: 770px) {
  .stores {
    width: 100%;
    height: auto;
  }

  .store-list {
    width: 100%;
  }

  #map_canvas {
    width: 100%;
    margin-right: 0;
    height: 300px;
  }

  .store-search-filter-city, .store-search-filter-country, .store-search-address {
    float: left;
    clear: both;
    width: 100%;
    margin-bottom: 1em;
    margin-left: 0;
  }

  .store-image img {
    width: 100%;
    max-width: 33px;
    display: inline;
  }
}
@media all and (min-width: 770px) and (max-width: 1100px) {
  .stores {
    width: 100%;
  }

  #map_canvas {
    width: 100%;
    margin-right: 0;
    height: 300px;
  }

  .store-search-filter-city, .store-search-filter-country, .store-search-address {
    float: left;
    clear: both;
    width: 100%;
    margin-bottom: 1em;
    margin-left: 0;
  }
}
.shop_count {
  padding: 19px 0;
  border-bottom: solid 1px rgba(147, 149, 152, 0.45);
}
.shop_count p {
  text-align: center;
}

/*style scroll bar*/
/*************** SCROLLBAR BASE CSS ***************/
.scroll-wrapper {
  overflow: hidden !important;
  padding: 0 !important;
  position: relative;
}

.scroll-wrapper > .scroll-content {
  border: none !important;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important;
  height: auto;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none !important;
  overflow: scroll !important;
  padding: 0;
  position: relative !important;
  top: 0;
  width: auto !important;
}

.scroll-wrapper > .scroll-content::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.scroll-element {
  display: none;
}

.scroll-element, .scroll-element div {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
  display: block;
}

.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
  cursor: default;
}

.scroll-textarea {
  border: 1px solid #cccccc;
  border-top-color: #999999;
}

.scroll-textarea > .scroll-content {
  overflow: hidden !important;
}

.scroll-textarea > .scroll-content > textarea {
  border: none !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100% !important;
  margin: 0;
  max-height: none !important;
  max-width: none !important;
  overflow: scroll !important;
  outline: none;
  padding: 2px;
  position: relative !important;
  top: 0;
  width: 100% !important;
}

.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
  height: 0;
  width: 0;
}

/*************** SCROLLBAR DYNAMIC ***************/
.scrollbar-dynamic > .scroll-element,
.scrollbar-dynamic > .scroll-element div {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-dynamic > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-dynamic > .scroll-element.scroll-x {
  bottom: 2px;
  height: 7px;
  left: 0;
  min-width: 100%;
  width: 100%;
}

.scrollbar-dynamic > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 7px;
  top: 0;
  width: 7px;
}

.scrollbar-dynamic > .scroll-element .scroll-element_outer {
  opacity: 0.3;
  border-radius: 12px;
}

.scrollbar-dynamic > .scroll-element .scroll-element_size {
  background-color: #cccccc;
  opacity: 0;
  border-radius: 12px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.scrollbar-dynamic > .scroll-element .scroll-bar {
  background-color: #6c6e71;
  border-radius: 7px;
}

/* scrollbar height/width & offset from container borders */
.scrollbar-dynamic > .scroll-element.scroll-x .scroll-bar {
  bottom: 0;
  height: 7px;
  min-width: 24px;
  top: auto;
}

.scrollbar-dynamic > .scroll-element.scroll-y .scroll-bar {
  left: auto;
  min-height: 24px;
  right: 0;
  width: 7px;
}

.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_outer {
  bottom: 0;
  top: auto;
  left: 2px;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
}

.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_outer {
  left: auto;
  right: 0;
  top: 2px;
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
}

.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_size {
  left: -4px;
}

.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_size {
  top: -4px;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-dynamic > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -11px;
}

.scrollbar-dynamic > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -11px;
}

.one_slide {
  position: relative;
}

.slideContainer img {
  width: 100%;
}
.slideContainer .desk_img {
  display: block;
}
.slideContainer .resp_img {
  display: none;
}

.slick-dots li button:before {
  color: #008b9a;
}

.blockContainer {
  float: left;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.blockHomepage img {
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}

.blockHomepage:hover img {
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.35);
}

.blockHomepage {
  width: calc(100% / 3);
  position: relative;
  padding: 10px 10px 10px 10px;
}
.blockHomepage img {
  width: 100%;
  height: 100%;
}
.blockHomepage .hover {
  display: none;
}
.blockHomepage .hover:hover {
  display: block;
}
.blockHomepage .hover:hover img {
  display: none;
}

.blocktitle {
  color: #51575a;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}

#block_homepage_second {
  width: calc(100% * 2/3);
}
#block_homepage_second .TitleContainer {
  left: 0;
  -webkit-transform: translateX(7%);
  transform: translateX(7%);
}

.TitleContainer {
  position: absolute;
  width: 90%;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.85);
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
}
.TitleContainer p, .TitleContainer h3 {
  color: #51575a;
}
.TitleContainer p {
  font-size: 16px;
  padding-top: 31px;
}
.TitleContainer h3 {
  text-transform: none;
  font-size: 36px;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
}

/*partie TABS*/
.categoryContainer {
  float: left;
  width: 100%;
  margin-top: 120px;
}
.categoryContainer h1 {
  display: none;
}

.tabs-bar {
  width: 100%;
  margin-bottom: 45px;
}
.tabs-bar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  max-width: 830px;
  margin: 0 auto;
  border-bottom: 1px solid #cacccd;
  padding-bottom: 20px;
}
.tabs-bar a {
  font-size: 24px;
  color: #51575a;
  padding-bottom: 21px;
}
.tabs-bar a:hover {
  text-decoration: none;
  color: #51575a;
}
.tabs-bar a:focus {
  outline: none;
}

.active-links {
  border-bottom: 3px solid #138c94;
  color: #138c94 !important;
  font-weight: 600;
}

.tabsSlider {
  overflow-y: hidden;
  height: 0;
}

.active-tabs {
  overflow: hidden;
  height: auto;
}
.active-tabs .slick-dotted.slick-slider {
  margin-bottom: 100px;
}
.active-tabs .slick-dots {
  bottom: -54px;
  display: block;
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.active-tabs .slick-next {
  background: url("/skin/frontend/bbm/default/images/pictos/picto_right-arrow-grey.png") no-repeat;
  content: "";
  display: block;
  height: 18px;
  width: 12px;
  right: -42px;
}
.active-tabs .slick-prev {
  background: url("/skin/frontend/bbm/default/images/pictos/picto_left-arrow-grey.png") no-repeat;
  content: "";
  display: block;
  height: 18px;
  width: 12px;
  left: -42px;
}
.active-tabs .slick-prev::before, .active-tabs .slick-next::before {
  display: none;
}
.active-tabs .slick-prev, .active-tabs .slick-next {
  font-family: none;
}

.cms-index-index .slick-slide {
  outline: none;
  position: relative;
}
.cms-index-index .slick-slide .product-content {
  margin: 36px 0 0 0;
}
.cms-index-index .slick-slide .new_product, .cms-index-index .slick-slide .reduction_pourcent, .cms-index-index .slick-slide .favorite {
  top: 1px;
}

.slider_cat-product {
  margin: 0 15px;
}

/*output.phtml*/
.cms-index-index .imgProduct {
  height: auto;
  margin: 0 auto;
  max-width: 270px;
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
}

.infosproducts {
  margin-top: 45px;
  position: relative;
}
.infosproducts h4 {
  text-transform: none;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 16px;
}
.infosproducts .price-box {
  margin-top: 20px;
}
.infosproducts .price-box span {
  color: #138c94;
  font-weight: 600;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
}

.slick-slide:hover .hoverProduct {
  background: rgba(0, 0, 0, 0.1);
  opacity: 1;
}

/*partie blog*/
.blogContainer {
  width: 100%;
  float: left;
}
.blogContainer .blogTitle {
  text-align: center;
  font-family: "Dancing Script", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 135px;
  font-weight: 700;
  color: #f89e99;
  text-transform: none;
}
.blogContainer .blogTitle a {
  font-family: "Dancing Script", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 135px;
  font-weight: 700;
  color: #f89e99;
  text-transform: none;
}
.blogContainer .blogTitle a:hover {
  text-decoration: none;
}
.blogContainer .identifier {
  display: none;
}

.blogContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-bottom: 300px;
}
.blogContent div {
  position: relative;
  width: 100%;
  max-width: 370px;
}
.blogContent div img:nth-child(2) {
  display: none;
}
.blogContent img {
  width: 100%;
}
.blogContent .infoBlog {
  width: 95%;
  max-width: 370px;
  background: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  top: 80%;
  border: 1px solid #e1e1e1;
}
.blogContent .infoBlog .topicBlog {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: auto;
  top: -22px;
  padding: 9px;
  background: #ed6d66;
  color: #fff;
}
.blogContent .infoBlog .subtitle {
  padding: 50px 0 27px 0;
  text-align: center;
  font-family: "Dancing Script", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  width: 100%;
  max-width: 208px;
  margin: 0 auto;
}
.blogContent .infoBlog .descriptionBlog {
  width: 100%;
  max-width: 280px;
  text-align: center;
  margin: 0 auto 30px auto;
}
.blogContent .identifier-child:nth-child(2) .topicBlog {
  background: #5ea7f8;
}
.blogContent .identifier-child:nth-child(3) .topicBlog {
  background: #95cc61;
}

/*block instagram*/
.instaWidgetContainer {
  padding: 40px 30px;
  clear: both;
  max-width: 1230px;
  margin: 0 auto;
}
.instaWidgetContainer h2 {
  font-size: 24px;
  font-weight: 500;
  color: #51575a;
  text-align: center;
  margin: 20px;
}
.instaWidgetContainer h2 span {
  color: #f89e99;
}
.instaWidgetContainer a {
  display: inline-block;
  position: relative;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

/*block video */
.VideoBlock {
  background: #0d9aa3 url("/skin/frontend/bbm/default/images/bg/bg_B_logo.png") 40px 20px no-repeat;
  background-size: contain;
  margin: 40px 0 0 0;
  position: relative;
}
.VideoBlock .VideoContainer {
  margin: 0 auto;
  max-width: 1240px;
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 84px 0;
}
.VideoBlock .VideoContent {
  width: 59%;
  float: left;
}
.VideoBlock .VideoInfo {
  width: 36%;
  margin: auto;
}
.VideoBlock .VideoInfo h3 {
  font-size: 40px;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 600;
  color: #fff;
  text-transform: none;
}
.VideoBlock .VideoInfo p {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.VideoBlock .videoWrapper {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  /* correspond to 16:9*/
}
.VideoBlock iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.faq-index-index .main-container h1 {
  text-align: center;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 600;
  font-size: 40px;
  color: #51575a;
  text-transform: uppercase;
}
.faq-index-index .main-container ul {
  margin: 60px 0 60px 135px;
  display: none;
}
.faq-index-index .main-container ul .arrow-down--blue {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  background: url("https://www.babymoov.com/skin/frontend/bbm/images/pictos/picto_arrow-down-blue.png") center center no-repeat;
  cursor: pointer;
  margin-right: 20px;
  margin-bottom: 33px;
}
.faq-index-index .main-container ul h4 {
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #51575a;
  cursor: pointer;
  font-size: 18px;
  text-transform: none;
  font-weight: 500;
  margin-bottom: 33px;
  display: inline-block;
  width: calc(100% - 36px);
  vertical-align: middle;
}
.faq-index-index .main-container ul div {
  display: none;
  line-height: 22px;
  margin-bottom: 57px;
  margin-left: 33px;
}
.faq-index-index .main-container ul div span {
  font-weight: bold;
}
.faq-index-index .main-container ul div a {
  color: #008b9a;
}
.faq-index-index .main-container ul div a:hover {
  text-decoration: underline;
}

div.mgt-developer-toolbar-tab-container ul.mgt-developer-toolbar-tab-container {
  display: block;
}

.TopicTitle {
  width: 100%;
  height: auto;
  border-top: solid 1px #e1e1e1;
  border-bottom: solid 1px #e1e1e1;
  padding: 20px 0px 20px 0px;
}
.TopicTitle:last-child {
  margin: 0 0 30px 0;
}
.TopicTitle::after {
  display: block;
  content: "";
  clear: both;
  height: 0;
}
.TopicTitle h3 {
  padding-top: 10px;
  padding-left: 41px;
  display: inline-block;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
}

.showTopic {
  height: 45px;
  width: 45px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: solid 2px #cacccd;
  position: relative;
  float: left;
  cursor: pointer;
  transition: 0.3s;
}
.showTopic .bar {
  position: absolute;
  height: 20px;
  width: 4px;
  background: #51575a;
  top: 50%;
  left: 50%;
  margin-left: -2px;
  margin-top: -10px;
  border-radius: 2px;
}
.showTopic .bar:nth-child(2) {
  transform: rotate(90deg);
}

.returnUpContainer {
  position: fixed;
  height: 50px;
  z-index: 3;
  top: 85%;
  right: 15%;
}

/* classe active pour les elements de la faq*/
.activeShowtopic {
  transform: rotate(45deg);
  transition: 0.3s;
}

.showTopic.activeShowtopic .bar {
  background: #138c94 !important;
}

.activeColor {
  color: #138c94 !important;
}

.showQuestion {
  display: block !important;
}

.showResponse {
  display: block !important;
}

.reverseArrow {
  transform: rotate(180deg);
}

.questionActive {
  margin-bottom: 28px !important;
  color: #138c94 !important;
}

.std .contact_container .title_contact {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: #51575a;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-transform: none;
  margin-top: 58px;
}
.std .contact_container .info_contact {
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-align: center;
  font-style: normal;
  font-size: 15px;
  line-height: 22px;
}
.std .contact_container .by_mail,
.std .contact_container .by_phone {
  float: right;
  width: 50%;
  text-align: center;
  margin: 86px 0 0 0;
  width: 100%;
  float: none;
  position: relative;
}
.std .contact_container .by_mail h2,
.std .contact_container .by_phone h2 {
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 600;
  font-size: 26px;
  color: #0d9aa3;
  text-transform: none;
  margin: 0 0 33px 0;
}
.std .contact_container .by_mail p,
.std .contact_container .by_phone p {
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-style: normal;
  line-height: 22px;
}
.std .contact_container .by_mail:before {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -10%);
  transform: translate(-50%, -10%);
  height: 239px;
  width: 1px;
  background: #c9c9cb;
  width: 80%;
  height: 1px;
  top: -40px;
}
.std .contact_container .by_phone a {
  color: #8bbb13;
  font-size: 16px;
  display: block;
  width: 100%;
  max-width: 320px;
  height: 44px;
  border: solid 3px #8bbb13;
  border-radius: 22px;
  line-height: 40px;
  margin: 50px auto 0 auto;
  text-decoration: none;
}
.std .contact_container .by_phone a:hover {
  background: #8bbb13;
  color: #fff;
}
.std .contact_container .gav_legal-notice {
  color: #51575a;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  padding: 0 0 20px 0;
  font-style: normal;
}
.std .contact_container #easiformarea {
  float: left;
  margin-top: 50px;
  margin-bottom: 60px;
  width: 100%;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid #c9c9cb;
  padding: 0 0 40px 0;
  margin-top: 40px;
}
.std .contact_container #easiformarea .mandatoryfieldmention {
  text-align: left;
  font-weight: 400;
}
.std .contact_container #easiformarea #easiform {
  text-align: left;
  font-weight: 400;
}
.std .contact_container #easiformarea .easiform {
  width: 100%;
}
.std .contact_container #easiformarea .easiform .contact-section_title {
  text-align: center;
  font-weight: 600;
  margin: 0 30px 60px 30px;
}
.std .contact_container #easiformarea .easiform .info_general,
.std .contact_container #easiformarea .easiform .haveyouchildren,
.std .contact_container #easiformarea .easiform .product1,
.std .contact_container #easiformarea .easiform .product2,
.std .contact_container #easiformarea .easiform .product3,
.std .contact_container #easiformarea .easiform .subscribeNL {
  float: left;
  width: 100%;
  padding: 70px 0 70px 0;
  background: transparent;
  position: relative;
}
.std .contact_container #easiformarea .easiform .info_general .civility,
.std .contact_container #easiformarea .easiform .haveyouchildren .civility,
.std .contact_container #easiformarea .easiform .product1 .civility,
.std .contact_container #easiformarea .easiform .product2 .civility,
.std .contact_container #easiformarea .easiform .product3 .civility,
.std .contact_container #easiformarea .easiform .subscribeNL .civility {
  border-right: solid 1px #c9c9cb;
}
.std .contact_container #easiformarea .easiform .info_general .civility, .std .contact_container #easiformarea .easiform .info_general .address,
.std .contact_container #easiformarea .easiform .haveyouchildren .civility,
.std .contact_container #easiformarea .easiform .haveyouchildren .address,
.std .contact_container #easiformarea .easiform .product1 .civility,
.std .contact_container #easiformarea .easiform .product1 .address,
.std .contact_container #easiformarea .easiform .product2 .civility,
.std .contact_container #easiformarea .easiform .product2 .address,
.std .contact_container #easiformarea .easiform .product3 .civility,
.std .contact_container #easiformarea .easiform .product3 .address,
.std .contact_container #easiformarea .easiform .subscribeNL .civility,
.std .contact_container #easiformarea .easiform .subscribeNL .address {
  float: left;
  width: 50%;
  padding: 0 0 0 70px;
  width: 100%;
  float: none;
  padding: 0 20px;
  border: none;
}
.std .contact_container #easiformarea .easiform .hideNextSection,
.std .contact_container #easiformarea .easiform .showNextSection {
  color: #008b9a;
  font-weight: 600;
  background: none;
  border: none;
  opacity: 0.8;
  position: absolute;
  top: 0;
  right: 30px;
  width: 100%;
  right: 0;
  text-align: left;
}
.std .contact_container #easiformarea .easiform .hideNextSection:hover,
.std .contact_container #easiformarea .easiform .showNextSection:hover {
  opacity: 1;
}
.std .contact_container #easiformarea .easiform .hideNextSection.disabledBtn,
.std .contact_container #easiformarea .easiform .showNextSection.disabledBtn {
  display: none;
}
.std .contact_container #easiformarea .easiform .hideNextSection.enabledBtn,
.std .contact_container #easiformarea .easiform .showNextSection.enabledBtn {
  display: inline-block;
}
.std .contact_container #easiformarea .easiform .hideNextSection:before,
.std .contact_container #easiformarea .easiform .showNextSection:before {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 30px;
  color: #fff;
  background: #008b9a;
  margin: 0 20px 0 0;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 20px;
  margin: 0 5px 0 0;
}
.std .contact_container #easiformarea .easiform .hideNextSection:before {
  content: '-';
}
.std .contact_container #easiformarea .easiform .showNextSection:before {
  content: '+';
}
.std .contact_container #easiformarea .easiform .info_general {
  background: #f3f3f3;
}
.std .contact_container #easiformarea .easiform .form-information_limitation {
  display: block;
  text-align: center;
  padding: 0 30px 60px 30px;
  color: #008b9a;
  font-weight: 600;
  clear: both;
}
.std .contact_container #easiformarea .easiform .subscribeNL {
  padding: 0;
}
.std .contact_container #easiformarea .easiform .subscribeNL #easi_fielddiv_CS_OptinBabymoovGroup {
  padding: 0 0 60px 0;
}
.std .contact_container #easiformarea .easiform .subscribeNL #easi_labelspan_CS_OptinBabymoovGroup {
  padding: 0 30px 0 70px;
  vertical-align: top;
  padding: 0 0 20px 0;
}
.std .contact_container #easiformarea .easiform .subscribeNL #easi_labelspan_CS_OptinBabymoovGroup #easi_fieldlabel_CS_OptinBabymoovGroup {
  max-width: 280px;
  font-weight: 600;
  padding: 0;
}
.std .contact_container #easiformarea .easiform .subscribeNL #easi_fieldspan_CS_OptinBabymoovGroup {
  position: relative;
  vertical-align: top;
  padding: 0;
}
.std .contact_container #easiformarea .easiform .subscribeNL #easi_fieldspan_CS_OptinBabymoovGroup #fld_CS_OptinBabymoovGroup {
  max-width: 100%;
}
.std .contact_container #easiformarea .easiform .subscribeNL .mandatoryfieldmention {
  width: auto;
  padding: 0;
}
.std .contact_container #easiformarea .easiform .subscribeNL .validatebutton {
  float: right;
  width: 140px;
  height: 40px;
  line-height: 40px;
  border-radius: 22px;
  border: 2px solid #8bbb13;
  background-color: #8bbb13;
  color: #fff;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}
.std .contact_container #easiformarea .easiform .subscribeNL .validatebutton:hover {
  background: #fff;
  color: #8bbb13;
}
.std .contact_container #easiformarea .easiform .subscribeNL button.validatebutton {
  display: none;
}
.std .contact_container #easiformarea .easiform .message_container {
  float: left;
  width: 100%;
  background: #f3f3f3;
  padding: 70px 0 170px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.std .contact_container #easiformarea .easiform .message_container .show_file div:nth-child(2) {
  float: left;
  width: 50%;
  display: none;
}
.std .contact_container #easiformarea .easiform .message_container .show_file div:nth-child(2) label {
  line-height: 0;
}
.std .contact_container #easiformarea .easiform .message_container .show_file div:nth-child(2) span {
  width: 100%;
  display: block;
}
.std .contact_container #easiformarea .easiform .message_container .show_file #easi_fielddiv_Description {
  float: none;
}
.std .contact_container #easiformarea .easiform .message_container .show_file #validatebutton {
  float: right;
  height: 44px;
  width: 134px;
  background: #8bbb13;
  border: none;
  border-radius: 21px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  max-width: 80%;
  float: none;
  display: block;
  margin: 0 auto 20px auto;
}
.std .contact_container #easiformarea .easiform .message_container .show_file #validatebutton:hover {
  background: transparent;
  color: #8bbb13;
  border: solid 3px #8bbb13;
}
.std .contact_container #easiformarea .easiform .message_container .show_file div:nth-child(3) {
  float: left;
  width: 174px;
  height: 44px;
  background: transparent;
  border: solid 3px #008b9a;
  border-radius: 21px;
  padding: .5em;
  text-align: center;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
  width: 100%;
  max-width: 80%;
  float: none;
  display: block;
  margin: 0 auto 20px auto;
}
.std .contact_container #easiformarea .easiform .message_container .show_file div:nth-child(3):hover {
  background: #008b9a;
}
.std .contact_container #easiformarea .easiform .message_container .show_file div:nth-child(3):hover p {
  color: #fff;
}
.std .contact_container #easiformarea .easiform .message_container .show_file div:nth-child(3) input {
  margin: 0;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.std .contact_container #easiformarea .easiform .message_container .show_file div:nth-child(3) p {
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #008b9a;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 0 0 0;
}
.std .contact_container #easiformarea .easiform .message_container div:nth-child(1) {
  width: 100%;
  max-width: 570px;
  margin: 0 auto;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  padding: 0 0 20px 0;
}
.std .contact_container #easiformarea .easiform .message_container div:nth-child(1) span:first-child {
  display: block;
  text-align: center;
  margin: 0 auto;
}
.std .contact_container #easiformarea .easiform .message_container div:nth-child(1) span:first-child label {
  font-size: 26px;
  font-weight: 600;
  color: #0d9aa3;
  margin: 0 0 42px 0;
}
.std .contact_container #easiformarea .easiform .message_container div:nth-child(1) span:nth-child(2) {
  display: block;
  width: 100%;
}
.std .contact_container #easiformarea .easiform .message_container div:nth-child(1) span:nth-child(2) textarea {
  width: 100%;
  margin: 0 auto;
  display: block;
  max-width: 570px;
  height: 250px;
  padding: 35px;
  resize: none;
  max-width: 90%;
}
.std .contact_container #easiformarea .easiform .message_container #easi_fielddiv_Description .mandatory {
  position: absolute;
  left: 50%;
  top: 0;
  margin: 0 0 0 -120px;
}
.std .contact_container #easiformarea .easiform .message_container #easi_fielddiv_CS_FormNewsletterSubscription {
  position: absolute;
  bottom: -90px;
  left: 0;
  padding: 0;
}
.std .contact_container #easiformarea .easiform .message_container #easi_fielddiv_CS_FormNewsletterSubscription span:first-child {
  display: inline-block;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 90%;
  margin: 0 auto;
  display: block;
}
.std .contact_container #easiformarea .easiform .message_container #easi_fielddiv_CS_FormNewsletterSubscription span:first-child label {
  font-size: 14px;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 500;
  color: #636363;
  margin: 0 0 10px 0;
}
.std .contact_container #easiformarea .easiform .message_container #easi_fielddiv_CS_FormNewsletterSubscription span:nth-child(2) {
  display: inline-block;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
  display: block;
}
.std .contact_container #easiformarea .easiform .message_container #easi_fielddiv_CS_FormNewsletterSubscription span:nth-child(2) select {
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 500;
  outline: none;
  background: #fff url(/skin/frontend/bbm/default/images/pictos/picto_arrow-down-black.png) right 10px center no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  cursor: pointer;
  max-width: 100%;
}
.std .contact_container #easiformarea input, .std .contact_container #easiformarea select {
  width: 100%;
  max-width: 270px;
  height: 44px;
  padding: 10px 20px;
  max-width: 100%;
}
.std .contact_container #easiformarea input#fld_CS_CustomerRef, .std .contact_container #easiformarea input#fld_CS_CustomerRef2, .std .contact_container #easiformarea input#fld_CS_CustomerRef3, .std .contact_container #easiformarea select#fld_CS_CustomerRef, .std .contact_container #easiformarea select#fld_CS_CustomerRef2, .std .contact_container #easiformarea select#fld_CS_CustomerRef3 {
  display: none;
}
.std .contact_container #easiformarea input.ref-number_type1, .std .contact_container #easiformarea input.ref-number_type2, .std .contact_container #easiformarea input.ref-number_type3, .std .contact_container #easiformarea select.ref-number_type1, .std .contact_container #easiformarea select.ref-number_type2, .std .contact_container #easiformarea select.ref-number_type3 {
  width: 130px;
  display: inline-block;
}
.std .contact_container #easiformarea .form-element_wrapper {
  clear: both;
  overflow: visible !important;
}
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_AttachedFiles,
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles2,
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles3 {
  padding-top: 10px;
  width: 100%;
  max-width: 80%;
  float: none;
  display: block;
  margin: 0 auto 20px auto;
}
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_AttachedFiles div,
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles2 div,
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles3 div {
  padding: 0;
}
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_AttachedFiles div span label,
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles2 div span label,
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles3 div span label {
  padding: 0 30px 0 0;
}
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_AttachedFiles span label,
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles2 span label,
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles3 span label {
  padding: 0 30px 0 0;
}
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_AttachedFiles .fld-error,
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles2 .fld-error,
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles3 .fld-error {
  top: 84px;
  top: 120px;
}
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_AttachedFiles input,
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles2 input,
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles3 input {
  margin: 0;
  display: block;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_AttachedFiles p,
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles2 p,
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles3 p {
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  color: #85c6ca;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  display: inline-block;
  width: auto;
  padding: 10px 30px 6px 30px;
  margin: 0;
  background: #fff;
  border: 3px solid #85c6ca;
  border-radius: 22px;
  cursor: pointer;
  width: 100%;
  text-align: center;
}
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_AttachedFiles p:hover,
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles2 p:hover,
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles3 p:hover {
  background: #008b9a;
  border: 3px solid #008b9a;
  color: #fff;
}
.std .contact_container #easiformarea .form-element_wrapper div {
  float: left;
  position: relative;
  width: 100%;
  padding: 0 30px 20px 0;
  padding: 0 0 20px 0;
}
.std .contact_container #easiformarea .form-element_wrapper div#pj-advices {
  padding: 15px 0 0 0;
  font-style: italic;
  opacity: 0.8;
  padding: 10px 20px 20px 20px;
}
.std .contact_container #easiformarea .form-element_wrapper div span {
  display: inline-block;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 100%;
}
.std .contact_container #easiformarea .form-element_wrapper div span label {
  font-size: 14px;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 500;
}
.std .contact_container #easiformarea .form-element_wrapper div span select {
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-weight: 500;
  outline: none;
  background: #fff url("/skin/frontend/bbm/default/images/pictos/picto_arrow-down-black.png") right 10px center no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  cursor: pointer;
}
.std .contact_container #easiformarea .form-element_wrapper div span.product-ref_type1, .std .contact_container #easiformarea .form-element_wrapper div span.product-ref_type2, .std .contact_container #easiformarea .form-element_wrapper div span.product-ref_type3 {
  width: 50px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  display: inline-block;
  border-radius: 5px;
  border: 1px solid #c9c9cb;
  background-color: #f3f3f3;
  margin: 0 20px 0 0;
}
.std .contact_container #easiformarea .form-element_wrapper div span.product-ref-tooltip-content, .std .contact_container #easiformarea .form-element_wrapper div span.attached-file-tooltip-content {
  position: absolute;
  top: 40px;
  right: -8px;
  width: 300px;
  display: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  width: 260px;
}
.std .contact_container #easiformarea .form-element_wrapper div span#easi_labelspan_AttachedFiles, .std .contact_container #easiformarea .form-element_wrapper div span#easi_labelspan_CS_AttachedFiles2, .std .contact_container #easiformarea .form-element_wrapper div span#easi_labelspan_CS_AttachedFiles3 {
  padding: 0 0 20px 0;
}
.std .contact_container #easiformarea .form-element_wrapper div .mandatory {
  position: absolute;
  left: -10px;
  top: 10px;
  top: 0;
}
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_Salutation .mandatory, .std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_Brands .mandatory, .std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_PurchaseType .mandatory, .std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_Brands2 .mandatory, .std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_PurchaseType2 .mandatory, .std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_Brands3 .mandatory, .std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_PurchaseType3 .mandatory {
  top: -5px;
}
.std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_CustomerRef, .std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_AttachedFiles, .std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_CustomerRef2, .std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles2, .std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_CustomerRef3, .std .contact_container #easiformarea .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles3 {
  z-index: 1;
}
.std .contact_container #easiformarea .product-ref_tooltip {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 30px !important;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #c9c9cb;
  border-radius: 30px;
  color: #0d9aa3;
  font-size: 15px;
  font-weight: 600;
  transition: all 200ms ease-in;
  margin-top: -10px;
  z-index: 2;
  top: 40px;
  right: 0;
}
.std .contact_container #easiformarea .product-ref_tooltip:hover {
  background-color: #0d9aa3;
  border: 1px solid #0d9aa3;
  color: #fff;
}
.std .contact_container #easiformarea .attached-file_tooltip {
  position: absolute;
  top: 16px;
  right: 30px;
  width: 30px !important;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #c9c9cb;
  border-radius: 30px;
  color: #0d9aa3;
  font-size: 15px;
  font-weight: 600;
  transition: all 200ms ease-in;
  margin-top: -10px;
  z-index: 1;
  right: 0;
  top: 22px;
}
.std .contact_container #easiformarea .attached-file_tooltip:hover {
  background-color: #0d9aa3;
  border: 1px solid #0d9aa3;
  color: #fff;
}
.std .contact_container #easiformarea .product-ref_tooltip:hover span.product-ref-tooltip-content, .std .contact_container #easiformarea .product-ref_tooltip:hover span.attached-file-tooltip-content,
.std .contact_container #easiformarea .attached-file_tooltip:hover span.product-ref-tooltip-content,
.std .contact_container #easiformarea .attached-file_tooltip:hover span.attached-file-tooltip-content {
  display: block;
}
.std .contact_container #easiformarea .gav-tooltip_wrapper {
  position: relative;
  background: #fff;
  width: 100% !important;
  padding: 20px;
  border-radius: 8px;
  color: #51575a;
  text-align: left;
  font-weight: normal;
}
.std .contact_container #easiformarea .gav-tooltip_wrapper:after {
  bottom: 100%;
  right: 12px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #ffffff;
  border-width: 10px;
  margin-left: -10px;
}
.std .contact_container #easiformarea .gav-tooltip_wrapper .gav-tooltip_content {
  width: 100%;
  color: #51575a;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}
.std .contact_container #easiformarea .gav-tooltip_wrapper .gav-tooltip_content strong {
  font-weight: 600;
  font-size: 16px;
}
.std .contact_container #easiformarea .civility_select,
.std .contact_container #easiformarea .brand_select1,
.std .contact_container #easiformarea .brand_select2,
.std .contact_container #easiformarea .brand_select3,
.std .contact_container #easiformarea .purchase-type_select1,
.std .contact_container #easiformarea .purchase-type_select2,
.std .contact_container #easiformarea .purchase-type_select3 {
  cursor: pointer;
  display: inline-block !important;
  width: 50% !important;
  margin-top: 10px;
}
.std .contact_container #easiformarea .civility_select:before,
.std .contact_container #easiformarea .brand_select1:before,
.std .contact_container #easiformarea .brand_select2:before,
.std .contact_container #easiformarea .brand_select3:before,
.std .contact_container #easiformarea .purchase-type_select1:before,
.std .contact_container #easiformarea .purchase-type_select2:before,
.std .contact_container #easiformarea .purchase-type_select3:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #c9c9cb;
  border-radius: 20px;
  background-color: #ffffff;
  transition: all 200ms ease-in;
  margin: 0 10px 0 0;
  vertical-align: middle;
  cursor: pointer;
}
.std .contact_container #easiformarea .civility_select:hover:before, .std .contact_container #easiformarea .civility_select.fake-radio-selected:before,
.std .contact_container #easiformarea .brand_select1:hover:before,
.std .contact_container #easiformarea .brand_select1.fake-radio-selected:before,
.std .contact_container #easiformarea .brand_select2:hover:before,
.std .contact_container #easiformarea .brand_select2.fake-radio-selected:before,
.std .contact_container #easiformarea .brand_select3:hover:before,
.std .contact_container #easiformarea .brand_select3.fake-radio-selected:before,
.std .contact_container #easiformarea .purchase-type_select1:hover:before,
.std .contact_container #easiformarea .purchase-type_select1.fake-radio-selected:before,
.std .contact_container #easiformarea .purchase-type_select2:hover:before,
.std .contact_container #easiformarea .purchase-type_select2.fake-radio-selected:before,
.std .contact_container #easiformarea .purchase-type_select3:hover:before,
.std .contact_container #easiformarea .purchase-type_select3.fake-radio-selected:before {
  width: 20px;
  height: 20px;
  border: 6px solid #0d9aa3;
}
.std .contact_container #easiformarea #fld_CS_Brands,
.std .contact_container #easiformarea #fld_CS_PurchaseType,
.std .contact_container #easiformarea #fld_CS_Brand2,
.std .contact_container #easiformarea #fld_CS_PurchaseType2,
.std .contact_container #easiformarea #fld_CS_Brand3,
.std .contact_container #easiformarea #fld_CS_PurchaseType3 {
  display: none;
}
.std .contact_container #easiformarea.gav-form #fld_Salutation {
  display: none;
}
.std .contact_container #easiformarea.gav-form .info_general,
.std .contact_container #easiformarea.gav-form .haveyouchildren,
.std .contact_container #easiformarea.gav-form .product1,
.std .contact_container #easiformarea.gav-form .product2,
.std .contact_container #easiformarea.gav-form .product3,
.std .contact_container #easiformarea.gav-form .subscribeNL {
  padding: 30px 0;
}
.std .contact_container #easiformarea.gav-form input {
  border-radius: 5px;
  border: 1px solid #c9c9cb;
  background-color: #ffffff;
  font-weight: 600;
}
.std .contact_container #easiformarea.gav-form .form-element_wrapper div span select {
  border-radius: 5px;
  border: 1px solid #c9c9cb;
  background-color: #ffffff;
  font-weight: 600;
}
.std .contact_container #easiformarea.gav-form .form-element_wrapper div span label {
  font-weight: 600;
}
.std .contact_container #easiformarea.gav-form .form-element_wrapper div {
  padding: 0 30px 50px 0;
  padding: 0 0 50px 0;
}
.std .contact_container #easiformarea.gav-form .form-element_wrapper div p.country-help {
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-align: left;
  font-style: normal;
  font-size: 14px;
  line-height: 22px;
  margin: 40px 0 0 0;
}
.std .contact_container #easiformarea.gav-form .form-element_wrapper div#easi_fielddiv_AttachedFiles,
.std .contact_container #easiformarea.gav-form .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles2,
.std .contact_container #easiformarea.gav-form .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles3 {
  max-width: 100%;
  margin: 0 auto;
  clear: both;
}
.std .contact_container #easiformarea.gav-form .form-element_wrapper div#easi_fielddiv_AttachedFiles .attached-file_fileName1,
.std .contact_container #easiformarea.gav-form .form-element_wrapper div#easi_fielddiv_AttachedFiles .attached-file_fileName2,
.std .contact_container #easiformarea.gav-form .form-element_wrapper div#easi_fielddiv_AttachedFiles .attached-file_fileName3,
.std .contact_container #easiformarea.gav-form .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles2 .attached-file_fileName1,
.std .contact_container #easiformarea.gav-form .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles2 .attached-file_fileName2,
.std .contact_container #easiformarea.gav-form .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles2 .attached-file_fileName3,
.std .contact_container #easiformarea.gav-form .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles3 .attached-file_fileName1,
.std .contact_container #easiformarea.gav-form .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles3 .attached-file_fileName2,
.std .contact_container #easiformarea.gav-form .form-element_wrapper div#easi_fielddiv_CS_AttachedFiles3 .attached-file_fileName3 {
  clear: both;
  padding: 20px 0 0 0;
}
.std .contact_container #easiformarea.gav-form .easiform .subscribeNL .validatebutton {
  float: none;
  display: block;
  margin: 0 auto 20px auto;
  clear: both;
}
.std .contact_container #easiformarea.gav-form .easiform .subscribeNL .validatebutton#validatebutton {
  display: none;
}
.std .contact_container #easiformarea.gav-form .easiform .subscribeNL .mandatoryfieldmention {
  float: none;
  text-align: center;
}
.std .contact_container #easiformarea.gav-form .easiform .subscribeNL .mandatory {
  left: 60px;
  top: 0;
  top: 0;
}
.std .contact_container .fld-error {
  text-align: left;
  width: 100% !important;
  position: absolute;
  top: 50px;
  left: 0;
  color: #df280a;
  font-size: 12px;
  font-weight: 400;
  top: 70px;
}
.std .contact_container .field-data_error {
  border: 1px solid #df280a !important;
}

.gav-form_fake-dropdown-wrapper {
  display: block;
  margin: 20px auto;
  max-width: 280px;
  height: 44px;
  position: relative;
}
.gav-form_fake-dropdown-wrapper .gav-form_fake-dropdown-list {
  border-radius: 5px;
  border: 1px solid #c9c9cb;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 46px;
  z-index: 1;
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}
.gav-form_fake-dropdown-wrapper .gav-form_fake-dropdown-list .gav-form_fake-dropdown-list-item {
  list-style-type: none;
  display: none;
  margin: 0;
}
.gav-form_fake-dropdown-wrapper .gav-form_fake-dropdown-list .gav-form_fake-dropdown-list-item a {
  display: block;
  height: 44px;
  color: #51575a;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 44px;
  padding: 0 20px;
  border-top: 1px solid #e1e1e1;
  font-style: normal;
}
.gav-form_fake-dropdown-wrapper .gav-form_fake-dropdown-list .gav-form_fake-dropdown-list-item a:hover {
  background: #e1e1e1;
  text-decoration: none;
}
.gav-form_fake-dropdown-wrapper .gav-form_fake-dropdown-list .gav-form_fake-dropdown-list-item.fake-dropdown_current-page {
  display: block;
}
.gav-form_fake-dropdown-wrapper .gav-form_fake-dropdown-list .gav-form_fake-dropdown-list-item.fake-dropdown_current-page span {
  display: block;
  height: 44px;
  color: #51575a;
  font-family: "Poppins", "Helvetica Neue", Verdana, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 44px;
  padding: 0 36px 0 20px;
  font-style: normal;
  position: relative;
  cursor: pointer;
}
.gav-form_fake-dropdown-wrapper .gav-form_fake-dropdown-list .gav-form_fake-dropdown-list-item.fake-dropdown_current-page span:after {
  content: '';
  position: absolute;
  top: 18px;
  right: 20px;
  width: 12px;
  height: 10px;
  background: url(/skin/frontend/bbm/default/images/pictos/picto_arrow-down-blue.png) center center no-repeat;
  display: block;
}
.gav-form_fake-dropdown-wrapper .gav-form_fake-dropdown-list.fake-dropdown-list_displayed {
  height: 320px;
  overflow: auto;
}
.gav-form_fake-dropdown-wrapper .gav-form_fake-dropdown-list.fake-dropdown-list_displayed .gav-form_fake-dropdown-list-item {
  display: block;
}
.gav-form_fake-dropdown-wrapper .gav-form_fake-dropdown-list.fake-dropdown-list_displayed .gav-form_fake-dropdown-list-item.fake-dropdown_current-page span:after {
  transform: rotate(-180deg);
}

/* --- Easiware style --- */
#easiformWaiting {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.8) 50% 50% no-repeat;
}

.easiformWaitingCont {
  width: 100%;
  height: 100%;
  display: table;
}

.easiformWaitingMsg {
  color: #000000;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  padding-top: 5%;
}

/*cta design homepage*/
.ctaBlock {
  max-width: 180px;
  width: 100%;
  background: #fff;
  border-radius: 22px;
  border: solid 3px #008b9a;
  margin: 0 auto 30px auto;
  height: 44px;
  text-align: center;
  line-height: 40px;
  font-weight: 600;
  color: #008b9a;
  font-size: 16px;
  display: block;
  outline: none;
}
.ctaBlock:hover {
  color: #fff;
  text-decoration: none;
  background: #008b9a;
}

/*cta products */
.cta-product {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
  display: block;
  max-width: 180px;
  width: 100%;
  background: #ed6d66;
  border-radius: 22px;
  border: solid 3px #ed6d66;
  height: 44px;
  line-height: 40px;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  text-align: center;
  outline: none;
}
.cta-product:hover {
  text-decoration: none;
  background: #fff;
  color: #ed6d66;
  outline: none;
}

.ctaVideo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
  display: block;
  max-width: 180px;
  width: 100%;
  background: #ed6d66;
  border-radius: 22px;
  border: solid 3px #ed6d66;
  height: 44px;
  line-height: 40px;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  text-align: center;
  outline: none;
  position: static;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  margin: 40px 0 0 0;
}
.ctaVideo:hover {
  text-decoration: none;
  background: #fff;
  color: #ed6d66;
  outline: none;
}

/*cta slider home*/
.ctaSlider {
  max-width: 246px;
  background: #008b9a;
  border-radius: 22px;
  margin: 0 auto;
  height: 44px;
  width: 100%;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  line-height: 44px;
  display: block;
}
.ctaSlider:hover {
  text-decoration: none;
  background: #fff;
  color: #008b9a;
  cursor: pointer;
}

/*return top*/
.returnUp {
  background: url(https://www.babymoov.com/skin/frontend/bbm/default/images/pictos/picto_return_top.png) center center no-repeat;
  cursor: pointer;
  height: 50px;
  width: 50px;
  position: fixed;
  z-index: 3;
  bottom: 20px;
  right: 20px;
}

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

@import url("https://fonts.googleapis.com/css?family=Dancing+Script:400,700|Poppins:300,400,500,600,700");
/*
// ----------------------------------------------
// Usage example:
// For IE set $mq-support to false.
// Set the fixed value.
// Then use mixins to test whether styles should be applied.
// ----------------------------------------------

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

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

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

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

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

// ----------------------------------------------
*/
/* ============================================ *
 * Homepage
 * ============================================ */
/* -------------------------------------------- *
 * Primary Banner
 */
body.cms-home .main-container {
  padding-top: 20px;
}
body.cms-home .slideshow-container {
  margin-top: 0;
}

.slideshow .banner-msg {
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  top: 30%;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.slideshow .banner-msg h2 {
  color: #FFFFFF;
  font-size: 24px;
  text-shadow: 1px 1px 3px #555555;
}

.slideshow .banner-msg h2 strong {
  font-weight: bold;
  display: block;
  font-size: 36px;
}

/* -------------------------------------------- *
 * Promotion Banner Section
 */
.promos {
  margin: 0 0 10px 0;
  padding: 0;
  width: 100%;
}

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

/* Specifying the body only in order to override the .std ul li styling */
body .promos > li {
  margin: 0 0 10px 0;
  list-style: none;
  text-align: center;
  position: relative;
  border: 1px solid #CCCCCC;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.promos > li:last-child {
  margin-bottom: 0;
}

.promos img {
  max-width: 100%;
  width: 100%;
}

.promos a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: block;
}

.promos span {
  color: #FFFFFF;
  text-transform: uppercase;
  position: absolute;
  display: block;
  width: 100%;
  top: 10%;
  font-weight: 500;
  font-size: 20px;
  font-family: "Raleway", "Helvetica Neue", Verdana, Arial, sans-serif;
  text-shadow: 1px 1px 3px #555555;
}

.promos strong {
  font-weight: 600;
  font-size: 26px;
  display: block;
}

.promos span {
  font-size: 16px;
}

.promos strong {
  font-size: 17px;
}

/* Config: Three columns + flexible gutter */
body .promos > li {
  float: left;
  width: 31.74603%;
  margin-right: 2.38095%;
}

.promos > li:nth-child(3n) {
  margin-right: 0;
}

.promos span {
  font-size: 18px;
}

.promos strong {
  font-size: 24px;
}

/* -------------------------------------------- *
 * New Products Section
 */
/* Hiding the reviews content via CSS because we can't modify the template, */
/* since it may be used in other places where those elements are needed */
.cms-index-index .products-grid .ratings,
.cms-index-index .products-grid .actions,
.cms-index-noroute .products-grid .ratings,
.cms-index-noroute .products-grid .actions {
  display: none;
}

.cms-index-index h2.subtitle {
  padding: 6px 0;
  text-align: center;
  color: #008b9a;
  font-weight: 600;
  border-bottom: 1px solid #CCCCCC;
  border-top: 1px solid #CCCCCC;
}

.cms-index-noroute h2.subtitle {
  display: none;
}

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

