/*
// ----------------------------------------------
// 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.
 */
/* line 36, ../../default/scss/vendor/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

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

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

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */
/* line 74, ../../default/scss/vendor/_normalize.scss */
[hidden] {
  display: none;
}

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

/*
 * Removes default margin.
 */
/* line 98, ../../default/scss/vendor/_normalize.scss */
body {
  font-family: Arial, sans-serif;
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*
 * Removes inner padding and border in Firefox 4+.
 */
/* line 374, ../../default/scss/vendor/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

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

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

/* ============================================ *
 * Global
 * ============================================ */
/* line 30, ../../default/scss/layout/_global.scss */
html,
body {
  height: 100%;
  color: #1d1d1b;
}
/* line 34, ../../default/scss/layout/_global.scss */
html h1,
body h1 {
  color: #e83e30;
}

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

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

/* line 50, ../../default/scss/layout/_global.scss */
#mobnav-trigger {
  color: #FFF;
}

/* line 51, ../../default/scss/layout/_global.scss */
.header.container,
.footer.container,
.main.container {
  max-width: 1200px;
}

/* line 55, ../../default/scss/layout/_global.scss */
.main-container {
  background: #e9e9e9;
  background: -webkit-linear-gradient(top, #e9e9e9, #FFFFFF);
  background: linear-gradient(to bottom, #e9e9e9, #ffffff);
}

/* line 57, ../../default/scss/layout/_global.scss */
.main {
  background: #FFF;
  padding: 0;
  min-height: 500px;
}

/* line 59, ../../default/scss/layout/_global.scss */
.catalogsearch-result-index .col-left {
  width: 22%;
  margin: 2% 0;
}

/* line 63, ../../default/scss/layout/_global.scss */
.catalog-category-view .col-left {
  width: 22%;
  margin: 0;
}

/* line 68, ../../default/scss/layout/_global.scss */
.my-account .page-title,
.category-title,
.page-title,
.product-entity {
  width: 100%;
  height: 80px;
  overflow: hidden;
  border: 0;
  clear: both;
}
/* line 78, ../../default/scss/layout/_global.scss */
.my-account .page-title h1,
.category-title h1,
.page-title h1,
.product-entity h1 {
  line-height: 80px;
}

@media only screen and (max-width: 770px) {
  /* line 82, ../../default/scss/layout/_global.scss */
  .before_content {
    padding: 2%;
    overflow: hidden;
  }
}
/* line 89, ../../default/scss/layout/_global.scss */
::-webkit-input-placeholder {
  font-style: italic;
}

/* line 90, ../../default/scss/layout/_global.scss */
:-moz-placeholder {
  font-style: italic;
}

/* line 91, ../../default/scss/layout/_global.scss */
::-moz-placeholder {
  font-style: italic;
}

/* line 92, ../../default/scss/layout/_global.scss */
:-ms-input-placeholder {
  font-style: italic;
  color: #666;
}

/* line 93, ../../default/scss/layout/_global.scss */
input.input-text, textarea {
  padding: 6px;
  font-size: 13px;
  line-height: 18px;
}

/* line 94, ../../default/scss/layout/_global.scss */
input.input-text:hover, select:hover, textarea:hover {
  border-color: #999;
}

/* line 95, ../../default/scss/layout/_global.scss */
input.input-text:focus, select:focus, textarea:focus {
  border-color: #666;
}

/* line 97, ../../default/scss/layout/_global.scss */
input.input-text {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  color: #666;
  border-color: #ddd;
}

/* line 103, ../../default/scss/layout/_global.scss */
.gen-slider-pager1 .control-nav a {
  background-image: url(../images/infortis/_shared/pager.png);
}

/* line 107, ../../default/scss/layout/_global.scss */
.custom-popup {
  background-color: #FFF;
  position: fixed;
  overflow: hidden;
  top: 5%;
  left: 50%;
  margin-left: -320px;
  width: 100%;
  max-width: 640px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #FFF;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.5);
  z-index: 2002;
  display: none;
}
/* line 122, ../../default/scss/layout/_global.scss */
.custom-popup .custom-popup-title-bar {
  overflow: hidden;
  background-color: #1d1d1b;
  padding: 2%;
  color: #FFF;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px;
  border-radius: 5px 5px 0 0;
}
/* line 132, ../../default/scss/layout/_global.scss */
.custom-popup .custom-popup-title-bar .custom-popup-killer {
  display: block;
  float: right;
  cursor: pointer;
}
/* line 139, ../../default/scss/layout/_global.scss */
.custom-popup .custom-popup-content {
  overflow: hidden;
  padding: 2%;
}

/* line 146, ../../default/scss/layout/_global.scss */
.options-search {
  overflow: hidden;
}

/* line 148, ../../default/scss/layout/_global.scss */
.checkbox-custom-container {
  float: left;
  margin: 0 16px 0 0;
  padding: 8px 0 0;
}

/* line 149, ../../default/scss/layout/_global.scss */
.checkbox-custom-container.checkbox-customer-container-orderhistory {
  margin-right: 0;
}

/* line 150, ../../default/scss/layout/_global.scss */
.checkbox-custom-container .label {
  display: block;
  margin: 0 0 0 20px;
  cursor: pointer;
  font-family: Arial, sans-serif;
}

/* line 151, ../../default/scss/layout/_global.scss */
.checkbox-custom {
  float: left;
  width: 13px;
  height: 13px;
  line-height: 13px;
  margin: 1px 0 0;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #AAA;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  cursor: pointer;
}

/* line 152, ../../default/scss/layout/_global.scss */
.checkbox-custom .check {
  display: none;
  color: #FFF;
  font-size: 16px;
}

/* line 153, ../../default/scss/layout/_global.scss */
.checkbox-custom.checked {
  background-color: #454540;
  border: 1px solid #454540;
}

/* line 154, ../../default/scss/layout/_global.scss */
.checkbox-custom.checked .check {
  display: block;
}

/* line 157, ../../default/scss/layout/_global.scss */
.radio-custom-container {
  float: left;
  margin: 0 16px 0 0;
  padding: 8px 0 0;
}

/* line 158, ../../default/scss/layout/_global.scss */
.radio-custom-container.checkbox-customer-container-orderhistory {
  margin-right: 0;
}

/* line 159, ../../default/scss/layout/_global.scss */
.radio-custom-container .label {
  display: block;
  margin: 0 0 0 20px;
  cursor: pointer;
  font-family: Arial, sans-serif;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* line 160, ../../default/scss/layout/_global.scss */
.radio-custom-container:hover .label {
  text-decoration: underline;
}

/* line 161, ../../default/scss/layout/_global.scss */
.radio-custom {
  float: left;
  width: 13px;
  height: 13px;
  line-height: 13px;
  margin: 1px 0 0;
  text-align: center;
  background-color: #FFF;
  border: 1px solid #AAA;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  border-radius: 7px;
  cursor: pointer;
}

/* line 162, ../../default/scss/layout/_global.scss */
.radio-custom .check {
  display: none;
  color: #454540;
  /*font-size:32px; line-height:12px; height:14px; width:14px;*/
}

/* line 163, ../../default/scss/layout/_global.scss */
.radio-custom.checked {
  background-color: #FFF;
  border: 1px solid #454540;
}

/* line 164, ../../default/scss/layout/_global.scss */
.radio-custom.checked .check {
  display: block;
}

/* line 167, ../../default/scss/layout/_global.scss */
button.button[disabled="disabled"],
button.button[disabled="disabled"] span {
  background-color: #999 !important;
  cursor: default !important;
}

/* line 171, ../../default/scss/layout/_global.scss */
button.button span,
.button span {
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background-color: #e83e30;
  text-transform: uppercase;
  display: block;
  float: left;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
/* line 179, ../../default/scss/layout/_global.scss */
button.button span span,
.button span span {
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  font-weight: bold;
  color: #FFF;
}
/* line 190, ../../default/scss/layout/_global.scss */
button.button:hover span, button.button:active span, button.button:focus span,
.button:hover span,
.button:active span,
.button:focus span {
  background-color: #b72114;
}
/* line 194, ../../default/scss/layout/_global.scss */
button.button.close,
.button.close {
  height: 30px;
  padding: 0px;
}
/* line 198, ../../default/scss/layout/_global.scss */
button.button.close span span,
.button.close span span {
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  font-size: 20px;
  font-weight: bold;
}

/* line 207, ../../default/scss/layout/_global.scss */
.button.double-line .content .label {
  white-space: normal;
  height: auto;
  font-size: 10px;
  line-height: 14px;
  padding: 0;
  margin: 16px 0;
}

/* line 210, ../../default/scss/layout/_global.scss */
.buttons-set .back-link a {
  border: 0;
  background: none;
  padding: 0;
}
/* line 214, ../../default/scss/layout/_global.scss */
.buttons-set .back-link a.button {
  background: #444;
}

/* line 222, ../../default/scss/layout/_global.scss */
.data-table thead {
  border: 0;
  color: #FFF;
  background-color: #1d1d1b;
}

/* line 229, ../../default/scss/layout/_global.scss */
.loader {
  background: url("../images/loader.gif") no-repeat center;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 2, ../../default/scss/layout/_old_custom.scss */
body.cms-index-index .main {
  padding-top: 10px;
}

/* line 3, ../../default/scss/layout/_old_custom.scss */
.fieldset .legend {
  margin: 0 0 16px;
  background: none;
  padding: 0;
  float: none;
  font-size: 1.5em;
  font-weight: bold;
  text-transform: uppercase;
}

/* line 4, ../../default/scss/layout/_old_custom.scss */
.page-title h1,
.product-entity .product-name,
.product-entity .product-brand {
  display: block;
  margin-left: 2%;
  text-transform: uppercase;
  font-weight: bold;
}

/* line 7, ../../default/scss/layout/_old_custom.scss */
.product-entity .product-brand {
  font-size: 18px;
  color: #1d1d1b;
  line-height: 20px;
  margin-top: 21px;
}

/* line 9, ../../default/scss/layout/_old_custom.scss */
.bold {
  font-weight: bold;
}

/* line 11, ../../default/scss/layout/_old_custom.scss */
.price-box .price-label {
  display: none;
}

/* line 12, ../../default/scss/layout/_old_custom.scss */
.price-box .price {
  color: #e83e30;
  font-weight: bold;
}

/* line 14, ../../default/scss/layout/_old_custom.scss */
.fieldset,
.info-set,
.multiple-checkout .col2-set,
.multiple-checkout .col3-set {
  border: 0;
  margin: 0;
  padding: 0;
}

/* line 19, ../../default/scss/layout/_old_custom.scss */
.product-dispo-update {
  display: block;
  text-transform: uppercase;
  clear: both;
  font-weight: bold;
  text-align: center;
}

/* line 20, ../../default/scss/layout/_old_custom.scss */
.product-dispo-update span {
  display: block;
  border-top: 2px solid;
  border-bottom: 2px solid;
  text-align: center;
}

/* line 21, ../../default/scss/layout/_old_custom.scss */
.product-dispo-update .dispo_en_stock {
  color: #97DA19;
}

/* line 22, ../../default/scss/layout/_old_custom.scss */
.product-dispo-update .dispo_reapprovisionnement {
  color: #22A5E9;
}

/* line 23, ../../default/scss/layout/_old_custom.scss */
.product-dispo-update .dispo_1_3_jours {
  color: #FFAE00;
}

/* line 24, ../../default/scss/layout/_old_custom.scss */
.product-dispo-update .nous_contacter {
  color: #FF0000;
}

/* line 25, ../../default/scss/layout/_old_custom.scss */
.design-title {
  overflow: hidden;
}

/* line 26, ../../default/scss/layout/_old_custom.scss */
.design-title .content {
  float: left;
  padding: 12px 12px 9px;
}

/* line 27, ../../default/scss/layout/_old_custom.scss */
.design-title .icon {
  background-color: #FFF;
}

/* line 28, ../../default/scss/layout/_old_custom.scss */
.design-title .label {
  color: #FFF;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
}

/* line 29, ../../default/scss/layout/_old_custom.scss */
.gen-tabs .tabs a {
  text-transform: uppercase;
  color: #FFF;
  line-height: 2.8em;
  padding: 0 15px;
  font-family: Arial, sans-serif;
  font-weight: bold;
}

/* line 30, ../../default/scss/layout/_old_custom.scss */
.gen-tabs .tabs a.current {
  margin: 0;
  color: #FFF;
}

/* line 31, ../../default/scss/layout/_old_custom.scss */
.gen-tabs-style1 .tabs a {
  background-color: #CCC;
  border-bottom: 1px solid #CCC;
  color: #888;
}

/* line 32, ../../default/scss/layout/_old_custom.scss */
.gen-tabs-style1 .tabs a.current {
  background-color: #AAA;
  border-color: #AAA;
}

/* line 33, ../../default/scss/layout/_old_custom.scss */
.gen-tabs-style1 .tabs-panels {
  border-color: #AAA;
}

/* line 35, ../../default/scss/layout/_old_custom.scss */
.window-overlay {
  background: #000;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

/* line 36, ../../default/scss/layout/_old_custom.scss */
.window-overlay {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  background: #000;
  opacity: 0.5;
  width: 100%;
  z-index: 990;
  display: none;
}

/* line 37, ../../default/scss/layout/_old_custom.scss */
.window-overlay.active {
  display: block;
  z-index: 9999;
  position: fixed;
}

/* line 38, ../../default/scss/layout/_old_custom.scss */
.popup-block {
  border: 1px solid #FFF;
  left: 50%;
  top: 40%;
  margin: -85px 0 0 -160px;
  width: 320px;
  text-align: left;
  z-index: 1000;
  position: fixed;
  display: none;
}

/* line 39, ../../default/scss/layout/_old_custom.scss */
.popup-block.active {
  display: block;
  z-index: 9999;
}

/* line 40, ../../default/scss/layout/_old_custom.scss */
.popup-block .block-title {
  border-bottom: 1px solid #CFCFCF;
  padding: 17px 17px 10px;
}

/* line 41, ../../default/scss/layout/_old_custom.scss */
.popup-block div.btn-close {
  display: block;
  position: absolute;
  top: 6px;
  right: 6px;
  height: 15px;
  width: 15px;
  cursor: pointer;
  padding: 8px;
  background: #FFF;
  color: #666;
  font-size: 12px;
}

/* line 42, ../../default/scss/layout/_old_custom.scss */
.popup-block .block-title {
  height: 31px;
}

/* line 43, ../../default/scss/layout/_old_custom.scss */
.popup-block .block-title strong {
  font-size: 16px;
  line-height: 31px;
  font-weight: normal;
  text-transform: none;
}

/* line 44, ../../default/scss/layout/_old_custom.scss */
.popup-block .block-content {
  background: #FFF;
  padding: 16px;
  font-size: 12px;
}

/* line 45, ../../default/scss/layout/_old_custom.scss */
.popup-block .block-content .form-list label {
  width: 180px;
  margin: 0;
}

/* line 46, ../../default/scss/layout/_old_custom.scss */
.popup-block .block-content .form-list label em {
  color: red;
}

/* line 47, ../../default/scss/layout/_old_custom.scss */
.popup-block .block-content .form-list .input-text {
  width: 230px;
}

/* line 48, ../../default/scss/layout/_old_custom.scss */
.popup-block .block-content .form-list .control .input-box #wishlist-public {
  margin-right: 5px;
}

/* line 49, ../../default/scss/layout/_old_custom.scss */
.popup-block .block-content .form-buttons {
  width: auto;
  padding-top: 10px;
}

/* line 50, ../../default/scss/layout/_old_custom.scss */
.popup-block .block-content .form-buttons .button {
  float: left;
  margin-right: 5px;
}

/* line 51, ../../default/scss/layout/_old_custom.scss */
.popup-block .block-content .form-buttons .button span {
  padding: 0 6px;
}

/* line 52, ../../default/scss/layout/_old_custom.scss */
.popup-block.loading .block-content * {
  text-align: left;
  text-indent: -99999em;
  overflow: hidden;
  position: relative;
  margin-left: -9999em;
}

/* line 53, ../../default/scss/layout/_old_custom.scss */
.popup-block.loading .block-content:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 99;
  top: 50%;
  left: 50%;
  line-height: 16px;
  padding: 16px;
  text-indent: 0 !important;
}

/* PRODUCT SLIDER */
/* line 56, ../../default/scss/layout/_old_custom.scss */
.product-view div.box-up-sell.grid-full {
  width: 96%;
  margin: 30px 2% 0;
}

/* line 57, ../../default/scss/layout/_old_custom.scss */
.itemslider-wrapper-homepage-catalog .itemslider-x .slides .item {
  width: 100px !important;
}

/* line 58, ../../default/scss/layout/_old_custom.scss */
.itemslider-wrapper {
  margin-left: 0;
  margin-right: 0;
  padding-top: 0px;
}

/* line 59, ../../default/scss/layout/_old_custom.scss */
.itemslider-wrapper .itemslider-x .slides .item {
  margin: 0 5px;
  height: 320px;
  width: 214px !important;
  padding: 4px;
}

/* line 60, ../../default/scss/layout/_old_custom.scss */
.itemslider-wrapper .itemslider-x .slides .item .product-name {
  margin-top: 10px;
  font-size: 12px;
  font-weight: bold;
  height: 32px;
  clear: both;
  overflow: hidden;
}

/* line 61, ../../default/scss/layout/_old_custom.scss */
.itemslider-wrapper .itemslider-x .slides .item .product-description {
  font-size: 11px;
  height: 45px;
  line-height: 16px;
  margin: 4px 0 0;
}

/* line 62, ../../default/scss/layout/_old_custom.scss */
.itemslider-wrapper .itemslider-x .slides .item .actions {
  text-align: center;
}

/* line 63, ../../default/scss/layout/_old_custom.scss */
.itemslider-wrapper .direction-nav a {
  background: #DFDFDF;
  text-indent: 0;
  text-align: center;
  font-size: 17px;
  font-weight: bold;
  font-family: monospace;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 3px;
}

/* line 64, ../../default/scss/layout/_old_custom.scss */
.itemslider-wrapper .direction-nav a:hover {
  background-color: #E7E7E7;
  color: #666;
}

/* line 65, ../../default/scss/layout/_old_custom.scss */
.itemslider-wrapper .direction-nav a.disabled {
  background-color: #F7F7F7;
}

/* line 66, ../../default/scss/layout/_old_custom.scss */
.itemslider-wrapper .direction-nav .prev {
  top: 120px;
  margin: 0;
  left: 0;
  z-index: 9;
}

/* line 67, ../../default/scss/layout/_old_custom.scss */
.itemslider-wrapper .direction-nav .next {
  top: 120px;
  margin: 0;
  right: 0;
  z-index: 9;
}

/* line 68, ../../default/scss/layout/_old_custom.scss */
.itemslider-wrapper .product-brand {
  font-weight: bold;
  display: block;
  height: 18px;
  overflow: hidden;
}

/* line 69, ../../default/scss/layout/_old_custom.scss */
.itemslider-wrapper .btn-cart span span {
  padding: 0 10px;
}

/* line 70, ../../default/scss/layout/_old_custom.scss */
.itemslider-wrapper .dispo-container {
  text-align: center;
}

/* line 71, ../../default/scss/layout/_old_custom.scss */
.itemslider-wrapper .dispo-container > span {
  display: inline-block;
  margin: 0;
  float: none;
}

/* line 72, ../../default/scss/layout/_old_custom.scss */
.itemslider-wrapper .product-cdt,
.itemslider-wrapper .product-dispo-update {
  padding: 0;
}

/* line 74, ../../default/scss/layout/_old_custom.scss */
.itemslider-wrapper .conditionnement {
  font-size: 10px;
}

/* line 76, ../../default/scss/layout/_old_custom.scss */
.itemslider-x {
  max-width: none !important;
}

/* line 77, ../../default/scss/layout/_old_custom.scss */
.itemslider-x.count-1,
.itemslider-x.count-2,
.itemslider-x.count-3,
.itemslider-x.count-4,
.itemslider-x.count-5,
.itemslider-x.count-6,
.itemslider-x.count-7,
.itemslider-x.count-8 {
  max-width: none !important;
}

/* line 86, ../../default/scss/layout/_old_custom.scss */
.dnc-widget .panel .itemslider-x {
  margin: 0 auto;
}

/* line 87, ../../default/scss/layout/_old_custom.scss */
.dnc-widget .panel .itemslider-x .item {
  margin: 0 2px;
}

/*** CONTACT FORM ***/
/* line 90, ../../default/scss/layout/_old_custom.scss */
.contacts-index-index .page-title {
  text-align: left;
}

/* line 91, ../../default/scss/layout/_old_custom.scss */
.contacts-index-index .page-title h1 {
  font-size: 26px;
}

/* line 92, ../../default/scss/layout/_old_custom.scss */
.contacts-index-index .preface {
  margin: 0 4%;
  font-size: 14px;
}

/* line 93, ../../default/scss/layout/_old_custom.scss */
.contacts-index-index .contact-frame {
  background-color: #FFF;
  margin: 4%;
  padding: 2%;
  border-bottom: 1px solid #CCC;
}

/* line 94, ../../default/scss/layout/_old_custom.scss */
.contacts-index-index .contact-frame .contact-type {
  font-size: 23px;
  line-height: 45px;
  color: #358ccb;
  margin: 0 0 8px;
}

/* line 95, ../../default/scss/layout/_old_custom.scss */
.contacts-index-index .contact-frame .contact-type .sprite {
  margin: 0 12px 0 0;
}

/* line 96, ../../default/scss/layout/_old_custom.scss */
.contacts-index-index .fieldset .form-list textarea {
  height: 16em;
  width: 75%;
}

/** DEPRECATED BROWSER **/
/* line 99, ../../default/scss/layout/_old_custom.scss */
.browser-deprecated {
  background-color: #FDF2AB;
  width: 100%;
}

/* line 100, ../../default/scss/layout/_old_custom.scss */
.browser-deprecated span {
  font-weight: bold;
}

/*** CAP ADRESSES ***/
/* line 103, ../../default/scss/layout/_old_custom.scss */
.ui-autocomplete-loading {
  background: url("../images/loader_16x16.gif") right center no-repeat !important;
}

/** SEARCH **/
/* line 106, ../../default/scss/layout/_old_custom.scss */
.catalogsearch-result-index .breadcrumbs {
  display: none;
}

/* line 107, ../../default/scss/layout/_old_custom.scss */
.catalogsearch-result-index .page-title p {
  line-height: 100px;
  margin: 0 0 0 2%;
  font-weight: bold;
  font-size: 16px;
}

/* line 109, ../../default/scss/layout/_old_custom.scss */
.order-details h2 {
  background: none;
}

/* line 110, ../../default/scss/layout/_old_custom.scss */
.order-items h2, .order-about h2 {
  padding-left: 0;
}

/**** PAGE MARQUES ****/
/* line 113, ../../default/scss/layout/_old_custom.scss */
.categorypath-marques-html .category-view {
  display: none;
}

/* line 114, ../../default/scss/layout/_old_custom.scss */
.category-marques .marques ul {
  margin: 0 0.5%;
}

/* line 115, ../../default/scss/layout/_old_custom.scss */
.category-marques .marques li {
  display: block;
  float: left;
  width: 19%;
  height: 160px;
  margin: 0.5%;
  text-align: center;
}

/* line 116, ../../default/scss/layout/_old_custom.scss */
.category-marques .marques li a {
  display: block;
}

/* line 117, ../../default/scss/layout/_old_custom.scss */
.category-marques .marques li .img-wrapper {
  display: inline-block;
  vertical-align: middle;
  height: 150px;
  line-height: 150px;
  max-width: 100%;
}

/* line 118, ../../default/scss/layout/_old_custom.scss */
.category-marques .marques li .img-wrapper img {
  vertical-align: middle;
}

/* line 120, ../../default/scss/layout/_old_custom.scss */
.category-marques .marques li .name {
  color: #333;
  display: block;
}

/* line 121, ../../default/scss/layout/_old_custom.scss */
.category-marques .lettres ul {
  width: 70%;
  margin: 0 auto 16px;
  font-weight: bold;
  font-size: 15px;
  overflow: hidden;
}

/* line 122, ../../default/scss/layout/_old_custom.scss */
.category-marques .lettres ul li {
  width: 3.7%;
  text-align: center;
}

/* line 123, ../../default/scss/layout/_old_custom.scss */
.category-marques .lettres ul li a {
  display: block;
  padding: 4px 0;
}

/* Dnc_Widget */
/* line 127, ../../default/scss/layout/_old_custom.scss */
.dnc-widget.home {
  float: left;
  width: 100%;
}

/* line 128, ../../default/scss/layout/_old_custom.scss */
.dnc-widget.home .widget-title {
  margin-bottom: 15px;
}

/* line 129, ../../default/scss/layout/_old_custom.scss */
.dnc-widget.home .itemslider {
  margin: 0 auto;
}

/** MOBILE **/
/* line 132, ../../default/scss/layout/_old_custom.scss */
.mob-user-menu {
  display: none;
}

@media only screen and (max-width: 1200px) {
  /* line 135, ../../default/scss/layout/_old_custom.scss */
  .hide-below-1200 {
    display: none;
  }
}
@media only screen and (max-width: 1280px) {
  /* line 139, ../../default/scss/layout/_old_custom.scss */
  .product-actions .qty-box .qty-modifier {
    display: none;
  }

  /* line 140, ../../default/scss/layout/_old_custom.scss */
  .block-account li {
    margin: 0.5%;
    border: 1px solid #CCC;
    width: 10%;
  }

  /* line 141, ../../default/scss/layout/_old_custom.scss */
  .block-account li.last {
    border: 1px solid #CCC;
  }
}
@media only screen and (max-width: 960px) {
  /* line 144, ../../default/scss/layout/_old_custom.scss */
  .dnc-widget .panel {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 1023px) {
  /* line 147, ../../default/scss/layout/_old_custom.scss */
  .accordion.vertnav.vertnav-top.active {
    display: block;
  }

  /* line 148, ../../default/scss/layout/_old_custom.scss */
  .block-layered-nav dt {
    padding: 15px;
  }

  /* line 149, ../../default/scss/layout/_old_custom.scss */
  div.block-layered-nav dd a {
    padding: 5px;
  }

  /* line 151, ../../default/scss/layout/_old_custom.scss */
  .breadcrumbs {
    line-height: normal !important;
  }
  /* line 153, ../../default/scss/layout/_old_custom.scss */
  .breadcrumbs li span {
    margin: 4px 4px 0 8px !important;
  }

  /* line 158, ../../default/scss/layout/_old_custom.scss */
  .catalogsearch-result-index .col-left {
    width: 98%;
    margin: 1%;
  }

  /* line 159, ../../default/scss/layout/_old_custom.scss */
  .catalog-category-view .col-left {
    width: 98%;
    margin: 0 1%;
  }

  /* line 160, ../../default/scss/layout/_old_custom.scss */
  .col2-left-layout .col-main {
    width: 98%;
    margin: 0 1%;
  }
}
@media only screen and (max-width: 768px) {
  /* line 165, ../../default/scss/layout/_old_custom.scss */
  .page-title h1, .product-entity .product-name {
    font-size: 14px;
  }

  /* line 166, ../../default/scss/layout/_old_custom.scss */
  .header .logo-wrapper,
  .header .logo-wrapper .logo {
    float: none;
  }

  /* line 168, ../../default/scss/layout/_old_custom.scss */
  .header .user-menu {
    width: 50%;
  }

  /* line 169, ../../default/scss/layout/_old_custom.scss */
  .category-products-grid.itemgrid .product-name {
    font-size: 14px;
  }

  /* line 170, ../../default/scss/layout/_old_custom.scss */
  .header .header-main .header-top-search-wrapper {
    width: 100%;
  }

  /* line 172, ../../default/scss/layout/_old_custom.scss */
  .cart-table .product-dispo-update {
    margin: 0;
  }

  /* line 173, ../../default/scss/layout/_old_custom.scss */
  .cart-table .cart-price {
    font-weight: bold;
  }

  /* line 174, ../../default/scss/layout/_old_custom.scss */
  .cart .data-table tr {
    margin: 0;
  }

  /* line 175, ../../default/scss/layout/_old_custom.scss */
  .cart-table .product-image {
    width: 100%;
  }

  /* line 176, ../../default/scss/layout/_old_custom.scss */
  .cart-table.data-table tr.even, .cart-table.data-table tr.even,
  .cart-table.data-table tr.even td, .cart-table.data-table tr.even th {
    background: #EEE !important;
  }

  /* line 178, ../../default/scss/layout/_old_custom.scss */
  .cart .discount {
    width: 96%;
  }

  /* line 180, ../../default/scss/layout/_old_custom.scss */
  .opc .section fieldset {
    width: 98%;
  }

  /* line 181, ../../default/scss/layout/_old_custom.scss */
  .opc .section fieldset .col-handle {
    padding: 2%;
  }

  /* line 183, ../../default/scss/layout/_old_custom.scss */
  .product-view .product-dispo-update {
    float: none;
  }

  /* line 184, ../../default/scss/layout/_old_custom.scss */
  .product-view .tarif-box {
    text-align: center;
  }

  /* line 186, ../../default/scss/layout/_old_custom.scss */
  #checkout-review-table tr {
    overflow: hidden;
    margin: 0 0 5px;
  }

  /* line 187, ../../default/scss/layout/_old_custom.scss */
  #checkout-review-table tr td {
    width: auto;
  }

  /* line 188, ../../default/scss/layout/_old_custom.scss */
  #checkout-review-table .td-img {
    overflow: hidden;
    float: left;
    width: 10%;
  }

  /* line 189, ../../default/scss/layout/_old_custom.scss */
  #checkout-review-table .td-tot,
  #checkout-review-table .td-qty {
    float: left;
    width: auto;
  }

  /* line 191, ../../default/scss/layout/_old_custom.scss */
  #checkout-review-table .product-name {
    font-size: 14px;
  }

  /* line 192, ../../default/scss/layout/_old_custom.scss */
  #checkout-review-table .price {
    font-weight: bold;
  }

  /* line 194, ../../default/scss/layout/_old_custom.scss */
  .b2baccount-create .col2-set .col-1,
  .b2baccount-create .col2-set .col-2 {
    width: 100%;
    border: 0;
    padding: 0;
  }

  /* line 196, ../../default/scss/layout/_old_custom.scss */
  .b2baccount-create .col2-set + .col2-set {
    border: 0;
  }

  /* line 198, ../../default/scss/layout/_old_custom.scss */
  .my-account .sku-table tfoot tr {
    border: 0;
  }

  /* line 199, ../../default/scss/layout/_old_custom.scss */
  .my-account .sku-table tr {
    overflow: hidden;
    margin: 0;
  }

  /* line 200, ../../default/scss/layout/_old_custom.scss */
  .my-account .sku-table td {
    width: 50%;
    padding: 10px 0;
    float: left;
  }

  /* line 201, ../../default/scss/layout/_old_custom.scss */
  .my-account .sku-table td .input-text {
    float: left;
    width: 85%;
  }

  /* line 202, ../../default/scss/layout/_old_custom.scss */
  .widget-addbysku .sku-table tfoot tr td {
    width: 100%;
  }

  /* line 203, ../../default/scss/layout/_old_custom.scss */
  .widget-addbysku .sku-table tfoot tr td .add-row {
    display: block;
    width: 100%;
    margin: 0 0 5px;
    overflow: hidden;
    height: 40px;
    line-height: 40px;
    background: #666;
    color: #FFF;
    text-align: center;
  }

  /* line 204, ../../default/scss/layout/_old_custom.scss */
  .widget-addbysku .file-upload-header {
    font-weight: bold;
  }

  /* line 205, ../../default/scss/layout/_old_custom.scss */
  .widget-addbysku .file-upload #customer_sku_csv {
    margin: 15px 0;
  }

  /* line 206, ../../default/scss/layout/_old_custom.scss */
  .widget-addbysku .button {
    display: block;
    width: 100%;
    margin: 0 0 5px;
    overflow: hidden;
  }

  /* line 207, ../../default/scss/layout/_old_custom.scss */
  .widget-addbysku .button span {
    width: 100%;
  }

  /* line 208, ../../default/scss/layout/_old_custom.scss */
  .widget-addbysku .button span span {
    padding: 0;
    text-align: center;
  }

  /* line 209, ../../default/scss/layout/_old_custom.scss */
  #my-b2busers-table tr {
    overflow: hidden;
  }

  /* line 210, ../../default/scss/layout/_old_custom.scss */
  #my-b2busers-table .col-btn {
    overflow: hidden;
    float: left;
    width: 20%;
  }

  /* line 211, ../../default/scss/layout/_old_custom.scss */
  .circuits-validation #circuitvalidation-candidate-table tr {
    margin: 0;
  }

  /* line 212, ../../default/scss/layout/_old_custom.scss */
  .circuits-validation #circuitvalidation-candidate-table .active {
    background: #DDD !important;
  }

  /* line 213, ../../default/scss/layout/_old_custom.scss */
  .my-account .approv-title {
    display: block;
    clear: both;
    padding: 10px;
    font-weight: bold;
    font-size: 14px;
    background: #DDD;
    border-bottom: 5px solid #FFF;
  }

  /* line 215, ../../default/scss/layout/_old_custom.scss */
  .customer-account-forgotpassword #email_address {
    width: 96%;
    padding: 2%;
  }

  /* line 216, ../../default/scss/layout/_old_custom.scss */
  .customer-account-forgotpassword #form-validate .buttons-set .back-link {
    float: none;
  }

  /* line 217, ../../default/scss/layout/_old_custom.scss */
  .customer-account-forgotpassword #form-validate .button {
    float: none;
    width: 100%;
    margin: 8px 0;
  }

  /* line 218, ../../default/scss/layout/_old_custom.scss */
  .customer-account-forgotpassword #form-validate .button span {
    width: 100%;
  }

  /* line 219, ../../default/scss/layout/_old_custom.scss */
  .customer-account-forgotpassword #form-validate .button span span {
    padding: 0;
    text-align: center;
  }

  /* line 221, ../../default/scss/layout/_old_custom.scss */
  .customer-account-edit .form-list li {
    margin: 0 8px 8px;
  }
}
@media only screen and (max-width: 767px) {
  /* line 225, ../../default/scss/layout/_old_custom.scss */
  .cart-table .col-img {
    padding: 10px;
  }
}
@media only screen and (max-width: 540px) {
  /* line 229, ../../default/scss/layout/_old_custom.scss */
  .cms-index-index .preface .homepage-preface-aside .aside-block .picto {
    display: none;
  }

  /* line 230, ../../default/scss/layout/_old_custom.scss */
  .cms-index-index .preface .homepage-preface-aside .aside-block .aside-block-title {
    line-height: 20px;
    padding: 20px 5px 0;
    word-wrap: break-word;
  }

  /* line 231, ../../default/scss/layout/_old_custom.scss */
  .cms-index-index .category-products-grid .item {
    width: 46%;
  }

  /* line 232, ../../default/scss/layout/_old_custom.scss */
  .opc .step-title .step-arrow {
    display: none;
  }

  /* line 233, ../../default/scss/layout/_old_custom.scss */
  .opc .step-title > div {
    width: 20%;
  }

  /* line 234, ../../default/scss/layout/_old_custom.scss */
  .my-wishlist .buttons-set button.button {
    width: 96%;
    margin: 2px 2%;
  }
}
@media only screen and (max-width: 480px) {
  /* line 238, ../../default/scss/layout/_old_custom.scss */
  .footer-primary .mobile-grid {
    margin-bottom: 16px;
  }
}
/** 404 **/
/* line 242, ../../default/scss/layout/_old_custom.scss */
.cms-index-noroute .col-main .std {
  padding: 0;
  background: none;
}

/* ============================================ *
 * Header
 * ============================================ */
/* line 4, ../../default/scss/layout/_header.scss */
.header-container {
  background: #e9e9e9;
  background: -webkit-linear-gradient(bottom, #e9e9e9, #FFFFFF);
  background: linear-gradient(to top, #e9e9e9, #ffffff);
}

/* line 7, ../../default/scss/layout/_header.scss */
.header-container[id="header-banner"] {
  background: #EEEEEE;
  border-bottom: 1px solid #CCC;
}

/* line 8, ../../default/scss/layout/_header.scss */
.header {
  background: none;
  color: #1d1d1b;
}

/* line 9, ../../default/scss/layout/_header.scss */
.header a {
  color: #1d1d1b;
}

/* line 10, ../../default/scss/layout/_header.scss */
.header a:hover {
  color: #454540;
}

/* line 11, ../../default/scss/layout/_header.scss */
.header .header-top {
  overflow: hidden;
}

/* line 12, ../../default/scss/layout/_header.scss */
.header ul.header-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0;
}

/* line 13, ../../default/scss/layout/_header.scss */
.header ul.header-top > li {
  flex-shrink: 0;
  max-width: 100%;
}

/* line 14, ../../default/scss/layout/_header.scss */
.header ul.header-top > li:last-of-type {
  flex-shrink: 0;
}

/* line 15, ../../default/scss/layout/_header.scss */
.header ul.header-top > li > p {
  margin: 6px 0 10px 0;
  line-height: 150%;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* line 16, ../../default/scss/layout/_header.scss */
.header ul.header-top > li > p > em {
  text-align: center;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
}

/* line 17, ../../default/scss/layout/_header.scss */
.header .header-top .top-links-list {
  float: none;
  display: flex;
  flex-direction: row;
}

/* line 18, ../../default/scss/layout/_header.scss */
.header .header-top .top-links-item {
  float: none;
  height: 32px;
  line-height: 32px;
  flex-shrink: 0;
}

/* line 19, ../../default/scss/layout/_header.scss */
.header .header-top .top-links-item li {
  display: inline;
}

/* line 20, ../../default/scss/layout/_header.scss */
.header .header-top .top-links-item .icon-home {
  margin: 10px 0 0 0;
}

/* line 21, ../../default/scss/layout/_header.scss */
.header .header-top .top-links-item a {
  color: #666;
  padding: 0 8px;
  border-right: 1px solid #666;
}

/* line 22, ../../default/scss/layout/_header.scss */
.header .header-top .top-links-item.last a {
  border: 0;
}

/* line 23, ../../default/scss/layout/_header.scss */
.header .header-top .language-select {
  float: right;
  line-height: 32px;
  color: #666;
  font-size: 12px;
}

/* line 24, ../../default/scss/layout/_header.scss */
.header .header-top .language-select .language-select-switcher {
  cursor: pointer;
  padding: 0 8px;
}

/* line 25, ../../default/scss/layout/_header.scss */
.header .header-top .language-select .language-select-switcher strong {
  margin: 0 2px 0 0;
  font-weight: normal;
}

/* line 26, ../../default/scss/layout/_header.scss */
.header .header-top .language-select .language-select-switcher strong:hover {
  color: #454540;
}

/* line 27, ../../default/scss/layout/_header.scss */
.header .header-top .language-select .language-select-switcher .switcher-holder {
  vertical-align: middle;
}

/* line 28, ../../default/scss/layout/_header.scss */
.header .header-top .language-select #language-select-popup {
  display: none;
  position: absolute;
  background-color: #FFF;
  z-index: 10;
  border: 1px solid #CCC;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

/* line 29, ../../default/scss/layout/_header.scss */
.header .header-top .language-select #language-select-popup li {
  font-weight: bold;
  line-height: 16px;
}

/* line 30, ../../default/scss/layout/_header.scss */
.header .header-top .language-select #language-select-popup li a {
  color: #666;
}

/* line 31, ../../default/scss/layout/_header.scss */
.header .header-top .language-select #language-select-popup li a:hover {
  color: #454540;
}

/* line 32, ../../default/scss/layout/_header.scss */
.header .header-top .language-select #language-select-popup li .lang {
  display: block;
  padding: 10px 12px;
  font-weight: normal;
}

/* line 34, ../../default/scss/layout/_header.scss */
.header-main {
  display: block;
  height: 150px;
  margin-top: 20px;
}

/* line 36, ../../default/scss/layout/_header.scss */
.header .logo-wrapper {
  display: block;
  float: left;
  margin: 25px 0 0;
}

/* line 37, ../../default/scss/layout/_header.scss */
.header .logo-wrapper .logo {
  display: block;
  float: left;
}

/* line 39, ../../default/scss/layout/_header.scss */
.header .feedback-link {
  cursor: pointer;
  background-color: #EEE;
  color: #e83e30;
  border: 1px solid #CCC;
  border-top: 0;
  padding: 6px 10px;
  position: absolute;
  left: 50%;
  margin-left: -70px;
  font-weight: bold;
  text-align: center;
  z-index: 2001;
  -moz-border-radius: 0 0 4px 4px;
  -webkit-border-radius: 0;
  border-radius: 0 0 4px 4px;
}

/* line 40, ../../default/scss/layout/_header.scss */
.header .feedback-link:hover {
  background-color: #FFF;
  color: #000;
}

/* line 41, ../../default/scss/layout/_header.scss */
.header .feedback-popup .contact-frame {
  display: block;
  padding: 2%;
}

/* line 42, ../../default/scss/layout/_header.scss */
.header .feedback-popup .contact-frame label {
  font-size: 14px;
  line-height: 24px;
  color: #666;
}

/* line 43, ../../default/scss/layout/_header.scss */
.header .feedback-popup .contact-frame #comment {
  width: 98%;
}

/* line 44, ../../default/scss/layout/_header.scss */
.header .feedback-popup .contact-frame .buttons-set {
  margin-bottom: 0;
}

/* line 45, ../../default/scss/layout/_header.scss */
.header .feedback-popup .contact-frame .buttons-set .button {
  margin-left: 8px;
}

/* line 46, ../../default/scss/layout/_header.scss */
.header .header-top {
  display: flex;
  flex-direction: row;
}

/* line 50, ../../default/scss/layout/_header.scss */
.header .header-main .header-top-search-wrapper {
  display: block;
  height: 130px;
  float: left;
  margin: 0;
}

/* line 51, ../../default/scss/layout/_header.scss */
.header .header-main .header-top-search-wrapper #search_mini_form {
  margin-top: 35px;
}

/* line 52, ../../default/scss/layout/_header.scss */
.header .form-search {
  overflow: hidden;
  width: 100%;
}

/* line 53, ../../default/scss/layout/_header.scss */
.header .form-search .search-bar {
  overflow: hidden;
  position: relative;
  clear: both;
}

/* line 54, ../../default/scss/layout/_header.scss */
.header .form-search #search_by_customreference,
.header .form-search #search_in_order_history {
  display: none;
}

/* line 56, ../../default/scss/layout/_header.scss */
.header .form-search .input-text {
  float: left;
  width: 100%;
  font-style: italic;
  margin: 0;
  padding-left: 8px;
  height: 36px;
  border-color: #CCC;
}
/* line 64, ../../default/scss/layout/_header.scss */
.header .form-search .input-text:focus, .header .form-search .input-text:hover {
  border-color: #CCC;
}

/* line 69, ../../default/scss/layout/_header.scss */
.header .form-search .button {
  height: 38px;
  width: 42px;
  top: 0;
  right: 0;
  background: #ccc url("../images/header/icon-search-60.png") no-repeat center;
  background-size: 75%;
  -moz-border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0;
  border-radius: 0 5px 5px 0;
}

/* ============================================ *
 * MAIN NAVIGATION
 * ============================================ */
/* line 83, ../../default/scss/layout/_header.scss */
.header #nav {
  display: flex;
  flex-direction: row;
}

@media only screen and (max-width: 1023px) {
  /* line 85, ../../default/scss/layout/_header.scss */
  .header #nav {
    display: none;
  }
}
/* line 87, ../../default/scss/layout/_header.scss */
.header #nav > li {
  flex-basis: 0;
  flex-shrink: 0;
  flex-grow: 1;
}

/* line 88, ../../default/scss/layout/_header.scss */
.header #nav > li.parent:not(.search):not(:last-of-type) > * {
  border-right: 1px solid #FFF;
}

/* line 89, ../../default/scss/layout/_header.scss */
.header #nav > li > a {
  font-family: Arial, sans-serif;
}

/* line 90, ../../default/scss/layout/_header.scss */
.header #nav > li > a,
.header #nav > li.parent > a {
  background-image: none;
  padding: 0 10px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

/* line 92, ../../default/scss/layout/_header.scss */
.header #nav > li:hover > a {
  background-color: #1d1d1b;
}

/* line 93, ../../default/scss/layout/_header.scss */
.header #nav > li.nav-custom-link > a {
  background-color: #1d1d1b;
}

/* line 94, ../../default/scss/layout/_header.scss */
.header #nav > li.nav-custom-link > a:hover {
  background-color: #e83e30;
}

/* line 95, ../../default/scss/layout/_header.scss */
.header #nav > li .icon-megamenu {
  display: none;
}

/* line 96, ../../default/scss/layout/_header.scss */
.header #nav > li > a > span {
  white-space: normal;
  line-height: 18px;
  color: #FFF;
  display: inline-block;
  vertical-align: middle;
}

/* line 97, ../../default/scss/layout/_header.scss */
.header #nav .level0-wrapper {
  border-bottom: 1px solid #AAA;
  top: 49px;
}

/* line 98, ../../default/scss/layout/_header.scss */
.header #nav ul.level0 > li > a {
  font-size: 13px;
  text-transform: none;
  color: #e83e30;
  font-weight: bold;
}

/* line 99, ../../default/scss/layout/_header.scss */
.header #nav .level1 > a {
  font-size: 13px;
  text-transform: none;
  color: #e83e30;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1em;
}

/* line 100, ../../default/scss/layout/_header.scss */
.header #nav .level0-wrapper > .nav-block-top,
.header #nav .level0-wrapper > .nav-block-right,
.header #nav .level0-wrapper > .nav-block-bottom {
  display: none;
}

/* line 103, ../../default/scss/layout/_header.scss */
.header #nav .level0-wrapper > .nav-block-center {
  width: 100%;
  margin: 0;
}

/* line 104, ../../default/scss/layout/_header.scss */
.header #nav ul.level2 {
  display: none;
}

/* line 105, ../../default/scss/layout/_header.scss */
.level0-wrapper {
  display: block;
}

/* line 107, ../../default/scss/layout/_header.scss */
.header #nav > li.nav-as400-1 {
  width: 23.33%;
}

/* line 108, ../../default/scss/layout/_header.scss */
.header #nav > li.nav-as400-1 > .level-top > span {
  max-width: 105px;
}

/* line 109, ../../default/scss/layout/_header.scss */
.header #nav > li.nav-as400-28 {
  width: 22.4%;
}

/* line 110, ../../default/scss/layout/_header.scss */
.header #nav > li.nav-as400-28 > .level-top > span {
  max-width: 126px;
}

/* line 111, ../../default/scss/layout/_header.scss */
.header #nav > li.nav-as400-47 {
  width: 21.96%;
}

/* line 112, ../../default/scss/layout/_header.scss */
.header #nav > li.nav-as400-47 > .level-top > span {
  max-width: 80px;
}

/* line 113, ../../default/scss/layout/_header.scss */
.header #nav > li.nav-as400-143 {
  width: 19.23%;
}

/* line 114, ../../default/scss/layout/_header.scss */
.header #nav > li.nav-as400-143 > .level-top > span {
  max-width: 94px;
}

/* line 115, ../../default/scss/layout/_header.scss */
.header #nav > li.nav-custom-link {
  width: 13.06%;
}

/* line 117, ../../default/scss/layout/_header.scss */
.header .user-menu {
  display: block;
  float: right;
  height: 110px;
  margin: 0;
  width: 29%;
}

/* line 118, ../../default/scss/layout/_header.scss */
.header .user-menu #mini-cart,
.header .user-menu #mini-requestoffer,
.header .user-menu #mini-login,
.header .user-menu #mini-account-access,
.header .user-menu #mini-logout {
  height: 100%;
  float: left;
  width: 30%;
  margin: 0 0 0 3%;
}

/* line 123, ../../default/scss/layout/_header.scss */
.header .user-menu #mini-login a,
.header .user-menu #mini-cart a,
.header .user-menu #mini-requestoffer a,
.header .user-menu #mini-account-access a,
.header .user-menu #mini-logout a {
  display: block;
  cursor: pointer;
}

/* line 128, ../../default/scss/layout/_header.scss */
.header .user-menu #mini-login .dropdown-menu {
  display: none;
}

/* line 129, ../../default/scss/layout/_header.scss */
.header .user-menu .user-menu-content {
  text-align: center;
}

/* line 130, ../../default/scss/layout/_header.scss */
.header .user-menu .user-menu-icon {
  display: block;
  font-size: 50px;
  line-height: 53px;
  width: 55px;
  height: 55px;
  margin: 0 auto;
  text-align: center;
}

/* line 133, ../../default/scss/layout/_header.scss */
.header .user-menu #mini-login .account-menu {
  position: absolute;
  top: 90px;
  left: 0;
  z-index: 2001;
  border: 1px solid #AAA;
  display: none;
}
/* line 141, ../../default/scss/layout/_header.scss */
.header .user-menu #mini-login .account-menu .account-menu-link {
  display: block;
  background-color: #FFF;
  padding: 16px 48px;
  font-weight: bold;
}
/* line 147, ../../default/scss/layout/_header.scss */
.header .user-menu #mini-login .account-menu .account-menu-link.account {
  border-bottom: 1px solid #AAA;
}

@media only screen and (min-width: 1023px) {
  /* line 155, ../../default/scss/layout/_header.scss */
  .header .user-menu .user-menu-icon.icon-connexion {
    background: url(../images/header/connexion.png) no-repeat center;
  }
  /* line 157, ../../default/scss/layout/_header.scss */
  .header .user-menu .user-menu-icon.icon-connexion:before {
    content: "";
  }
}
/* line 162, ../../default/scss/layout/_header.scss */
.header .user-menu .user-menu-icon.icon-ask-access {
  background: url(../images/header/acces.png) no-repeat center;
}

/* line 163, ../../default/scss/layout/_header.scss */
.header .user-menu .user-menu-icon.icon-deconnexion,
.header .user-menu .user-menu-icon.icon-panier {
  padding-left: 3px;
}

/* line 165, ../../default/scss/layout/_header.scss */
.header .user-menu .user-menu-icon.icon-user {
  font-size: 40px;
}

/* line 166, ../../default/scss/layout/_header.scss */
.header .user-menu .user-menu-label {
  display: block;
  font-weight: bold;
  margin: 4px 0 0;
  text-align: center;
}

/* line 167, ../../default/scss/layout/_header.scss */
.header .user-menu #mini-requestoffer .qty-wrapper,
.header .user-menu #mini-cart .qty-wrapper {
  position: absolute;
  top: 4px;
  right: 20px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  background-color: #D00;
  text-align: center;
  font-weight: bold;
  -moz-border-radius: 13px;
  -webkit-border-radius: 13px;
  border-radius: 13px;
  color: #FFF;
}

@media only screen and (max-width: 1023px) {
  /* line 172, ../../default/scss/layout/_header.scss */
  .header.container, .footer.container, .main.container {
    width: 100%;
  }

  /* line 173, ../../default/scss/layout/_header.scss */
  .header .header-top {
    background-color: #EEEEEE;
    height: auto;
    display: block;
  }

  /* line 178, ../../default/scss/layout/_header.scss */
  #nav {
    display: none;
  }

  /* line 179, ../../default/scss/layout/_header.scss */
  #mobnav {
    display: block;
    width: 50%;
    float: left;
  }

  /* line 184, ../../default/scss/layout/_header.scss */
  .user-menu > *, .user-menu .links, .dropdown {
    float: right !important;
  }

  /* line 187, ../../default/scss/layout/_header.scss */
  .header .header-main {
    height: auto;
  }

  /* line 188, ../../default/scss/layout/_header.scss */
  .header .header-main .header-top-search-wrapper {
    height: auto;
    max-width: none;
  }

  /* line 193, ../../default/scss/layout/_header.scss */
  .header .checkbox-custom-container {
    margin-left: 32px;
  }

  /* line 194, ../../default/scss/layout/_header.scss */
  .header .checkbox-custom-container-customref {
    margin-left: 32px;
  }

  /* line 195, ../../default/scss/layout/_header.scss */
  .header .checkbox-custom-container-customref {
    margin-left: 32px;
  }

  /* line 196, ../../default/scss/layout/_header.scss */
  .header .form-search .input-text {
    max-width: unset;
  }

  /* line 199, ../../default/scss/layout/_header.scss */
  .header .header-main .header-top-search-wrapper #search_mini_form {
    margin: 20px auto;
    overflow: hidden;
    max-width: 90%;
  }

  /* line 204, ../../default/scss/layout/_header.scss */
  .header .alt-nav {
    background-color: #454540;
    clear: both;
    height: 50px;
    position: relative;
  }
  /* line 210, ../../default/scss/layout/_header.scss */
  .header .alt-nav .mob-user-menu {
    color: #FFF;
    font-size: 25px;
    text-align: right;
  }
  /* line 215, ../../default/scss/layout/_header.scss */
  .header .alt-nav .mob-user-menu .dropdown-panel-toggler {
    float: right;
    display: block;
    width: 20%;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
  }
  /* line 223, ../../default/scss/layout/_header.scss */
  .header .alt-nav .mob-user-menu .dropdown-panel-toggler .mob-icon-user-panel {
    font-size: 45px;
    line-height: 50px;
  }
  /* line 228, ../../default/scss/layout/_header.scss */
  .header .alt-nav .mob-user-menu .dropdown-panel-toggler:hover {
    background-color: #1d1d1b;
  }
  /* line 233, ../../default/scss/layout/_header.scss */
  .header .alt-nav .mob-user-menu .dropdown-panel {
    top: 58px;
    right: 12px;
    border: 1px solid #AAA;
  }
  /* line 238, ../../default/scss/layout/_header.scss */
  .header .alt-nav .mob-user-menu .dropdown-panel:before {
    display: none;
  }
  /* line 240, ../../default/scss/layout/_header.scss */
  .header .alt-nav .mob-user-menu .dropdown-panel.user-panel {
    right: 94px;
  }
  /* line 244, ../../default/scss/layout/_header.scss */
  .header .alt-nav .mob-user-menu .dropdown-panel.cart-panel {
    border: 0;
  }

  /* line 248, ../../default/scss/layout/_header.scss */
  .header .user-menu,
  .header .feedback-link {
    display: none;
  }

  /* line 253, ../../default/scss/layout/_header.scss */
  .header .mob-user-menu {
    display: block;
    float: right;
    width: 50%;
  }

  /* line 259, ../../default/scss/layout/_header.scss */
  #mobnav-trigger {
    cursor: pointer;
    line-height: 50px;
  }
}
@media only screen and (max-width: 768px) {
  /* line 265, ../../default/scss/layout/_header.scss */
  .header .logo-wrapper .logo,
  .header .logo-wrapper {
    float: none;
    height: inherit;
    margin: 1% auto;
  }

  /* line 267, ../../default/scss/layout/_header.scss */
  .header .form-search {
    width: inherit;
  }

  /* line 268, ../../default/scss/layout/_header.scss */
  .header .alt-nav .mob-user-menu .dropdown-panel-toggler {
    width: 30%;
  }
}
/*************************************/
/* line 273, ../../default/scss/layout/_header.scss */
.user-menu .dropdown-panel-toggler {
  display: block;
  color: #1d1d1b;
  float: right;
  margin: 20px 0px 0;
  cursor: pointer;
  position: relative;
}
/* line 280, ../../default/scss/layout/_header.scss */
.user-menu .dropdown-panel-toggler.user-panel-toggler {
  width: 180px;
}
/* line 282, ../../default/scss/layout/_header.scss */
.user-menu .dropdown-panel-toggler.user-panel-toggler.not-logged {
  width: auto;
}
/* line 287, ../../default/scss/layout/_header.scss */
.user-menu .dropdown-panel-toggler .identity {
  display: block;
  float: right;
  font-family: Arial, sans-serif;
  line-height: 66px;
  width: 100%;
  max-width: 114px;
}
/* line 294, ../../default/scss/layout/_header.scss */
.user-menu .dropdown-panel-toggler .identity .content {
  display: inline-block;
  line-height: 18px;
  vertical-align: middle;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
}
/* line 303, ../../default/scss/layout/_header.scss */
.user-menu .dropdown-panel-toggler .identity .content .name {
  font-weight: bold;
}
/* line 305, ../../default/scss/layout/_header.scss */
.user-menu .dropdown-panel-toggler .identity .content .client {
  font-size: 10px;
  display: block;
  line-height: 16px;
}
/* line 314, ../../default/scss/layout/_header.scss */
.user-menu .dropdown-panel-toggler.not-logged .identity {
  display: none;
}
/* line 319, ../../default/scss/layout/_header.scss */
.user-menu .dropdown-panel-toggler:before {
  font-size: 66px;
}
/* line 323, ../../default/scss/layout/_header.scss */
.user-menu .dropdown-panel-toggler.icon-question-mark {
  text-align: center;
  width: 66px;
  margin: 36px 0px 0;
}

/* line 330, ../../default/scss/layout/_header.scss */
.header-qty {
  position: absolute;
  background-color: #e83e30;
  top: 2px;
  right: -4px;
  padding: 0 5px;
  height: 22px;
  -moz-border-radius: 13px;
  -webkit-border-radius: 13px;
  border-radius: 13px;
}
/* line 339, ../../default/scss/layout/_header.scss */
.header-qty .qty {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 12px;
  line-height: 22px;
  min-width: 12px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
}

/* line 351, ../../default/scss/layout/_header.scss */
.dropdown-panel {
  position: absolute;
  max-width: 300px;
  right: -5px;
  top: 102px;
  text-align: center;
  z-index: 2001;
  font-family: Arial, sans-serif;
  font-size: 12px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  display: none;
}
/* line 364, ../../default/scss/layout/_header.scss */
.dropdown-panel:before {
  width: 0;
  height: 0;
  content: "";
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #1d1d1b;
  position: absolute;
  top: -10px;
  right: 32px;
}
/* line 377, ../../default/scss/layout/_header.scss */
.dropdown-panel.not-logged:before {
  border-bottom-color: #454540;
}
/* line 380, ../../default/scss/layout/_header.scss */
.dropdown-panel.user-panel {
  right: 170px;
}
/* line 382, ../../default/scss/layout/_header.scss */
.dropdown-panel.user-panel.not-logged {
  right: 57px;
}
/* line 385, ../../default/scss/layout/_header.scss */
.dropdown-panel.user-panel:before {
  border-bottom-color: #FFF;
}
/* line 388, ../../default/scss/layout/_header.scss */
.dropdown-panel.cart-panel {
  background-color: #1d1d1b;
}
/* line 392, ../../default/scss/layout/_header.scss */
.dropdown-panel .dropdown-panel-link {
  display: block;
  color: #FFF;
  overflow: hidden;
  height: 100%;
}
/* line 399, ../../default/scss/layout/_header.scss */
.dropdown-panel .dropdown-panel-label {
  display: block;
  clear: both;
  width: 100%;
  margin: 0 auto;
}
/* line 407, ../../default/scss/layout/_header.scss */
.dropdown-panel .top .top-frame {
  float: left;
  width: 50%;
  min-width: 145px;
  height: 110px;
  color: #FFF;
  position: relative;
}
/* line 417, ../../default/scss/layout/_header.scss */
.dropdown-panel .top .top-frame .dropdown-panel-link .dropdown-panel-top-icon {
  display: block;
  font-size: 48px;
  margin: 16px 3px 0 10px;
  float: left;
  position: relative;
}
/* line 424, ../../default/scss/layout/_header.scss */
.dropdown-panel .top .top-frame .dropdown-panel-link .dropdown-panel-top-icon .header-qty {
  top: 2px;
  left: 0;
  right: auto;
  padding: 0 5px;
  height: 22px;
  -moz-border-radius: 13px;
  -webkit-border-radius: 13px;
  border-radius: 13px;
}
/* line 434, ../../default/scss/layout/_header.scss */
.dropdown-panel .top .top-frame .dropdown-panel-link .dropdown-panel-top-data {
  display: block;
  margin: 36px 0 0;
  font-weight: bold;
  float: left;
}
/* line 441, ../../default/scss/layout/_header.scss */
.dropdown-panel .top .top-frame .dropdown-panel-link .dropdown-panel-label {
  position: absolute;
  bottom: 16px;
}
/* line 447, ../../default/scss/layout/_header.scss */
.dropdown-panel .top .top-frame .dropdown-panel-link:hover .dropdown-panel-top-icon,
.dropdown-panel .top .top-frame .dropdown-panel-link:hover .dropdown-panel-label {
  color: #FFF;
}
/* line 452, ../../default/scss/layout/_header.scss */
.dropdown-panel .top .top-frame .dropdown-panel-link:hover .dropdown-panel-top-data {
  color: #FFF;
}
/* line 458, ../../default/scss/layout/_header.scss */
.dropdown-panel .top .top-frame.offer-request-frame {
  background-color: #454540;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
/* line 461, ../../default/scss/layout/_header.scss */
.dropdown-panel .top .top-frame.offer-request-frame:not(:last-child) {
  -moz-border-radius-topright: 0;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
  -moz-border-radius-bottomright: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
}
/* line 466, ../../default/scss/layout/_header.scss */
.dropdown-panel .top .top-frame.offer-request-frame .dropdown-panel-link .dropdown-panel-top-icon {
  display: inline-block;
  float: none;
  font-size: 32px;
  margin: 25px 10px 0;
}
/* line 472, ../../default/scss/layout/_header.scss */
.dropdown-panel .top .top-frame.offer-request-frame .dropdown-panel-link .dropdown-panel-top-icon .header-qty {
  top: -8px;
  left: -22px;
  right: auto;
}
/* line 480, ../../default/scss/layout/_header.scss */
.dropdown-panel .top .top-frame.wide {
  width: 100%;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
/* line 486, ../../default/scss/layout/_header.scss */
.dropdown-panel .bottom {
  background-color: #FFF;
  clear: both;
  overflow: hidden;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
/* line 492, ../../default/scss/layout/_header.scss */
.dropdown-panel .bottom .user-panel-entries {
  overflow: hidden;
}
/* line 495, ../../default/scss/layout/_header.scss */
.dropdown-panel .bottom .user-panel-entries .user-panel-entry {
  width: 200px;
  overflow: hidden;
}
/* line 499, ../../default/scss/layout/_header.scss */
.dropdown-panel .bottom .user-panel-entries .user-panel-entry .user-panel-link {
  display: block;
  height: 60px;
  text-align: left;
}
/* line 504, ../../default/scss/layout/_header.scss */
.dropdown-panel .bottom .user-panel-entries .user-panel-entry .user-panel-link .user-panel-entry-icon {
  float: left;
  font-size: 22px;
  line-height: 60px;
  width: 60px;
  text-align: center;
  color: #777;
}
/* line 512, ../../default/scss/layout/_header.scss */
.dropdown-panel .bottom .user-panel-entries .user-panel-entry .user-panel-link .user-panel-entry-icon.icon-user-plus {
  font-size: 25px;
}
/* line 513, ../../default/scss/layout/_header.scss */
.dropdown-panel .bottom .user-panel-entries .user-panel-entry .user-panel-link .user-panel-entry-icon.icon-deconnexion {
  font-size: 40px;
}
/* line 514, ../../default/scss/layout/_header.scss */
.dropdown-panel .bottom .user-panel-entries .user-panel-entry .user-panel-link .user-panel-entry-icon.icon-connexion {
  font-size: 42px;
}
/* line 517, ../../default/scss/layout/_header.scss */
.dropdown-panel .bottom .user-panel-entries .user-panel-entry .user-panel-link .user-panel-label {
  line-height: 60px;
  color: #777;
}
/* line 523, ../../default/scss/layout/_header.scss */
.dropdown-panel .bottom .user-panel-entries .user-panel-entry .user-panel-link:hover .user-panel-label,
.dropdown-panel .bottom .user-panel-entries .user-panel-entry .user-panel-link:hover .user-panel-entry-icon {
  color: #1d1d1b;
}

@media only screen and (max-width: 1199px) {
  /* line 535, ../../default/scss/layout/_header.scss */
  .user-menu .dropdown-panel-toggler .name {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  /* line 541, ../../default/scss/layout/_header.scss */
  .header #mobnav-trigger:hover {
    background-color: #1d1d1b;
  }
  /* line 545, ../../default/scss/layout/_header.scss */
  .header .vertnav-top li a {
    color: white;
  }
  /* line 548, ../../default/scss/layout/_header.scss */
  .header .vertnav-top li .opener {
    background: url(../../../../frontend/ultimo/default/images/infortis/ultra-megamenu/opener-w.png) center center no-repeat;
  }
  /* line 552, ../../default/scss/layout/_header.scss */
  .header .vertnav-top li:hover .opener {
    background: url(../../../../frontend/ultimo/default/images/infortis/ultra-megamenu/opener-w.png) center center no-repeat;
  }
  /* line 556, ../../default/scss/layout/_header.scss */
  .header .vertnav-top li .opener:hover {
    background: url(../../../../frontend/ultimo/default/images/infortis/ultra-megamenu/opener-w.png) center center no-repeat;
  }
  /* line 560, ../../default/scss/layout/_header.scss */
  .header .vertnav-top li.active > a + .opener {
    background-image: url(../../../../frontend/ultimo/default/images/infortis/ultra-megamenu/opener-active-w.png);
  }
  /* line 564, ../../default/scss/layout/_header.scss */
  .header .vertnav-top li.active:hover > a + .opener {
    background-image: url(../../../../frontend/ultimo/default/images/infortis/ultra-megamenu/opener-active-w.png);
  }
  /* line 568, ../../default/scss/layout/_header.scss */
  .header .vertnav-top li.active > a + .opener:hover {
    background-image: url(../../../../frontend/ultimo/default/images/infortis/ultra-megamenu/opener-active-w.png);
  }
  /* line 572, ../../default/scss/layout/_header.scss */
  .header .vertnav-top li.current > a,
  .header .vertnav-top li > a:hover {
    background-color: #CCC;
    color: #1d1d1b;
  }
  /* line 578, ../../default/scss/layout/_header.scss */
  .header .accordion.vertnav.vertnav-top {
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.5);
  }
}
/** FOOTER **/
/* line 2, ../../default/scss/layout/_footer.scss */
.footer-container {
  background: #FFFFFF;
  background: -webkit-linear-gradient(bottom, #FFFFFF 50%, #e9e9e9);
  background: linear-gradient(to top, #ffffff 50%, #e9e9e9);
  color: #888888;
}
/* line 6, ../../default/scss/layout/_footer.scss */
.footer-container .footer-primary {
  color: #777777;
}
/* line 9, ../../default/scss/layout/_footer.scss */
.footer-container .footer-primary p {
  margin: 0;
}
/* line 13, ../../default/scss/layout/_footer.scss */
.footer-container .footer-primary a {
  color: inherit;
  text-decoration: none;
}
/* line 18, ../../default/scss/layout/_footer.scss */
.footer-container .footer-primary .std ul {
  list-style: none;
}
/* line 20, ../../default/scss/layout/_footer.scss */
.footer-container .footer-primary .col-title {
  display: block;
  padding: 0 0 5px;
  font-size: 16px;
  font-weight: bold;
}

/* line 28, ../../default/scss/layout/_footer.scss */
.footer-top-container,
.footer-primary-container,
.footer-bottom-container {
  background: none;
}

/* line 34, ../../default/scss/layout/_footer.scss */
.footer-top {
  color: #777777;
  margin: 0 auto;
}
/* line 38, ../../default/scss/layout/_footer.scss */
.footer-top #subscribe-form {
  float: right;
  margin: 24px;
}
/* line 43, ../../default/scss/layout/_footer.scss */
.footer-top #subscribe-form > label {
  display: none;
}
/* line 47, ../../default/scss/layout/_footer.scss */
.footer-top #subscribe-form .input-box {
  margin: 0;
}
/* line 50, ../../default/scss/layout/_footer.scss */
.footer-top #subscribe-form .input-box #newsletter {
  border-color: #AAA;
  border-right: 0;
  -moz-border-radius: 3px 0 0 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px 0 0 3px;
}
/* line 58, ../../default/scss/layout/_footer.scss */
.footer-top #subscribe-form .btn-newsletter-subscribe span {
  -moz-border-radius: 0 3px 3px 0;
  -webkit-border-radius: 0;
  border-radius: 0 3px 3px 0;
  float: left;
  padding: 0 5px 0 0;
}
/* line 62, ../../default/scss/layout/_footer.scss */
.footer-top #subscribe-form .btn-newsletter-subscribe span .icon {
  font-size: 32px;
  font-weight: normal;
}
/* line 72, ../../default/scss/layout/_footer.scss */
.footer-top #newsletter-subscribe-popup .desc-nl {
  margin: 0 16px 8px;
}
/* line 74, ../../default/scss/layout/_footer.scss */
.footer-top #newsletter-subscribe-popup .field {
  margin: 16px 0px 4px;
  overflow: hidden;
}
/* line 78, ../../default/scss/layout/_footer.scss */
.footer-top #newsletter-subscribe-popup .field label {
  float: none;
  line-height: 12px;
}
/* line 84, ../../default/scss/layout/_footer.scss */
.footer-top #newsletter-subscribe-popup .field.data label {
  display: block;
  float: left;
  width: 120px;
  line-height: 26px;
  font-weight: bold;
}
/* line 94, ../../default/scss/layout/_footer.scss */
.footer-top #newsletter-subscribe-popup .actions {
  overflow: hidden;
}
/* line 97, ../../default/scss/layout/_footer.scss */
.footer-top #newsletter-subscribe-popup .actions .button {
  float: right;
}

/* line 102, ../../default/scss/layout/_footer.scss */
.footer-bottom {
  padding: 1% 0;
  color: #FFF;
}

/* line 103, ../../default/scss/layout/_footer.scss */
.footer-top-container {
  background-color: #e83e30;
  overflow: hidden;
  margin: 0 0 16px;
}
/* line 107, ../../default/scss/layout/_footer.scss */
.footer-top-container .logo {
  margin: 14px 0 0;
}

/* line 1, ../../default/scss/layout/_form.scss */
.input-box.vat select {
  width: 60px;
}

/* line 2, ../../default/scss/layout/_form.scss */
.input-box.vat select + input {
  width: 190px;
}

/* line 4, ../../default/scss/layout/_form.scss */
.form-area fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
/* line 10, ../../default/scss/layout/_form.scss */
.form-area .grid-container, .form-area .grid-container-spaced {
  background-color: #f2f2f2;
}
/* line 11, ../../default/scss/layout/_form.scss */
.form-area .grid-container.bordered-container, .form-area .grid-container-spaced.bordered-container {
  padding: 1em;
  margin-bottom: 1em;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
}
/* line 21, ../../default/scss/layout/_form.scss */
.form-area .grid12-3 .chosen-select {
  width: 179px;
}
/* line 24, ../../default/scss/layout/_form.scss */
.form-area .grid12-3 .chosen-container {
  margin-bottom: 7px;
}
/* line 28, ../../default/scss/layout/_form.scss */
.form-area .grid-2rows-vcenter {
  margin-top: 3em;
}
/* line 30, ../../default/scss/layout/_form.scss */
.form-area .grid-2rows-vcenter button[type=submit] {
  margin-left: 2em;
}
/* line 34, ../../default/scss/layout/_form.scss */
.form-area .input-box-with-button {
  position: relative;
}
/* line 36, ../../default/scss/layout/_form.scss */
.form-area .input-box-with-button .input-button {
  position: absolute;
  right: 0.6em;
  top: 2px;
}
/* line 42, ../../default/scss/layout/_form.scss */
.form-area .input-text:disabled, .form-area .input-text:read-only {
  color: #CCCCCC;
}

/** ICOMOON **/
@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?jv4uws");
  src: url("../fonts/icomoon.eot?#iefixjv4uws") format("embedded-opentype"), url("../fonts/icomoon.ttf?jv4uws") format("truetype"), url("../fonts/icomoon.woff?jv4uws") format("woff"), url("../fonts/icomoon.svg?jv4uws#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 14, ../../default/scss/module/_icons.scss */
[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 25, ../../default/scss/module/_icons.scss */
.icon-connexion:before {
  content: "\e687";
}

/* line 26, ../../default/scss/module/_icons.scss */
.icon-deconnexion:before {
  content: "\e600";
}

/* line 27, ../../default/scss/module/_icons.scss */
.icon-ajout-compte:before {
  content: "\e601";
}

/* line 28, ../../default/scss/module/_icons.scss */
.icon-carton:before {
  content: "\e602";
}

/* line 29, ../../default/scss/module/_icons.scss */
.icon-contact:before {
  content: "\e603";
}

/* line 30, ../../default/scss/module/_icons.scss */
.icon-demande-achat:before {
  content: "\e604";
}

/* line 31, ../../default/scss/module/_icons.scss */
.icon-infos-compte:before {
  content: "\e605";
}

/* line 32, ../../default/scss/module/_icons.scss */
.icon-panier:before {
  content: "\e606";
}

/* line 33, ../../default/scss/module/_icons.scss */
.icon-tableau-bord:before {
  content: "\e607";
}

/* line 34, ../../default/scss/module/_icons.scss */
.icon-telecharger:before {
  content: "\e608";
}

/* line 35, ../../default/scss/module/_icons.scss */
.icon-home:before {
  content: "\e609";
}

/* line 36, ../../default/scss/module/_icons.scss */
.icon-home3:before {
  content: "\e60a";
}

/* line 37, ../../default/scss/module/_icons.scss */
.icon-pencil:before {
  content: "\e60b";
}

/* line 38, ../../default/scss/module/_icons.scss */
.icon-pen:before {
  content: "\e60c";
}

/* line 39, ../../default/scss/module/_icons.scss */
.icon-blog:before {
  content: "\e60d";
}

/* line 40, ../../default/scss/module/_icons.scss */
.icon-play:before {
  content: "\e60e";
}

/* line 41, ../../default/scss/module/_icons.scss */
.icon-bullhorn:before {
  content: "\e60f";
}

/* line 42, ../../default/scss/module/_icons.scss */
.icon-podcast:before {
  content: "\e610";
}

/* line 43, ../../default/scss/module/_icons.scss */
.icon-mic:before {
  content: "\e611";
}

/* line 44, ../../default/scss/module/_icons.scss */
.icon-file-text:before {
  content: "\e612";
}

/* line 45, ../../default/scss/module/_icons.scss */
.icon-profile:before {
  content: "\e613";
}

/* line 46, ../../default/scss/module/_icons.scss */
.icon-file-text2:before {
  content: "\e614";
}

/* line 47, ../../default/scss/module/_icons.scss */
.icon-copy:before {
  content: "\e615";
}

/* line 48, ../../default/scss/module/_icons.scss */
.icon-paste:before {
  content: "\e616";
}

/* line 49, ../../default/scss/module/_icons.scss */
.icon-folder:before {
  content: "\e617";
}

/* line 50, ../../default/scss/module/_icons.scss */
.icon-folder-open:before {
  content: "\e618";
}

/* line 51, ../../default/scss/module/_icons.scss */
.icon-price-tag:before {
  content: "\e619";
}

/* line 52, ../../default/scss/module/_icons.scss */
.icon-price-tags:before {
  content: "\e61a";
}

/* line 53, ../../default/scss/module/_icons.scss */
.icon-barcode:before {
  content: "\e61b";
}

/* line 54, ../../default/scss/module/_icons.scss */
.icon-coin-yen:before {
  content: "\e61c";
}

/* line 55, ../../default/scss/module/_icons.scss */
.icon-phone:before {
  content: "\e61d";
}

/* line 56, ../../default/scss/module/_icons.scss */
.icon-address-book:before {
  content: "\e61e";
}

/* line 57, ../../default/scss/module/_icons.scss */
.icon-location:before {
  content: "\e61f";
}

/* line 58, ../../default/scss/module/_icons.scss */
.icon-location2:before {
  content: "\e620";
}

/* line 59, ../../default/scss/module/_icons.scss */
.icon-history:before {
  content: "\e621";
}

/* line 60, ../../default/scss/module/_icons.scss */
.icon-clock:before {
  content: "\e622";
}

/* line 61, ../../default/scss/module/_icons.scss */
.icon-clock2:before {
  content: "\e623";
}

/* line 62, ../../default/scss/module/_icons.scss */
.icon-stopwatch:before {
  content: "\e624";
}

/* line 63, ../../default/scss/module/_icons.scss */
.icon-calendar:before {
  content: "\e625";
}

/* line 64, ../../default/scss/module/_icons.scss */
.icon-printer:before {
  content: "\e626";
}

/* line 65, ../../default/scss/module/_icons.scss */
.icon-display:before {
  content: "\e627";
}

/* line 66, ../../default/scss/module/_icons.scss */
.icon-mobile:before {
  content: "\e628";
}

/* line 67, ../../default/scss/module/_icons.scss */
.icon-tablet:before {
  content: "\e629";
}

/* line 68, ../../default/scss/module/_icons.scss */
.icon-floppy-disk:before {
  content: "\e62a";
}

/* line 69, ../../default/scss/module/_icons.scss */
.icon-drive:before {
  content: "\e62b";
}

/* line 70, ../../default/scss/module/_icons.scss */
.icon-undo2:before {
  content: "\e62c";
}

/* line 71, ../../default/scss/module/_icons.scss */
.icon-redo2:before {
  content: "\e62d";
}

/* line 72, ../../default/scss/module/_icons.scss */
.icon-forward:before {
  content: "\e62e";
}

/* line 73, ../../default/scss/module/_icons.scss */
.icon-reply:before {
  content: "\e62f";
}

/* line 74, ../../default/scss/module/_icons.scss */
.icon-bubbles:before {
  content: "\e630";
}

/* line 75, ../../default/scss/module/_icons.scss */
.icon-user:before {
  content: "\e631";
}

/* line 76, ../../default/scss/module/_icons.scss */
.icon-users:before {
  content: "\e632";
}

/* line 77, ../../default/scss/module/_icons.scss */
.icon-user-plus:before {
  content: "\e633";
}

/* line 78, ../../default/scss/module/_icons.scss */
.icon-user-minus:before {
  content: "\e634";
}

/* line 79, ../../default/scss/module/_icons.scss */
.icon-spinner11:before {
  content: "\e635";
}

/* line 80, ../../default/scss/module/_icons.scss */
.icon-zoom-out:before {
  content: "\e636";
}

/* line 81, ../../default/scss/module/_icons.scss */
.icon-wrench:before {
  content: "\e637";
}

/* line 82, ../../default/scss/module/_icons.scss */
.icon-equalizer:before {
  content: "\e638";
}

/* line 83, ../../default/scss/module/_icons.scss */
.icon-equalizer2:before {
  content: "\e639";
}

/* line 84, ../../default/scss/module/_icons.scss */
.icon-cog:before {
  content: "\e63a";
}

/* line 85, ../../default/scss/module/_icons.scss */
.icon-cogs:before {
  content: "\e63b";
}

/* line 86, ../../default/scss/module/_icons.scss */
.icon-aid-kit:before {
  content: "\e63c";
}

/* line 87, ../../default/scss/module/_icons.scss */
.icon-bug:before {
  content: "\e63d";
}

/* line 88, ../../default/scss/module/_icons.scss */
.icon-pie-chart:before {
  content: "\e63e";
}

/* line 89, ../../default/scss/module/_icons.scss */
.icon-stats-dots:before {
  content: "\e63f";
}

/* line 90, ../../default/scss/module/_icons.scss */
.icon-stats-bars:before {
  content: "\e640";
}

/* line 91, ../../default/scss/module/_icons.scss */
.icon-stats-bars2:before {
  content: "\e641";
}

/* line 92, ../../default/scss/module/_icons.scss */
.icon-lab:before {
  content: "\e642";
}

/* line 93, ../../default/scss/module/_icons.scss */
.icon-magnet:before {
  content: "\e643";
}

/* line 94, ../../default/scss/module/_icons.scss */
.icon-bin:before {
  content: "\e644";
}

/* line 95, ../../default/scss/module/_icons.scss */
.icon-truck:before {
  content: "\e645";
}

/* line 96, ../../default/scss/module/_icons.scss */
.icon-clipboard:before {
  content: "\e646";
}

/* line 97, ../../default/scss/module/_icons.scss */
.icon-tree:before {
  content: "\e647";
}

/* line 98, ../../default/scss/module/_icons.scss */
.icon-menu:before {
  content: "\e648";
}

/* line 99, ../../default/scss/module/_icons.scss */
.icon-eye:before {
  content: "\e649";
}

/* line 100, ../../default/scss/module/_icons.scss */
.icon-eye-plus:before {
  content: "\e64a";
}

/* line 101, ../../default/scss/module/_icons.scss */
.icon-star-empty:before {
  content: "\e64b";
}

/* line 102, ../../default/scss/module/_icons.scss */
.icon-star-full:before {
  content: "\e64c";
}

/* line 103, ../../default/scss/module/_icons.scss */
.icon-heart:before {
  content: "\e64d";
}

/* line 104, ../../default/scss/module/_icons.scss */
.icon-happy2:before {
  content: "\e64e";
}

/* line 105, ../../default/scss/module/_icons.scss */
.icon-smile:before {
  content: "\e64f";
}

/* line 106, ../../default/scss/module/_icons.scss */
.icon-shocked2:before {
  content: "\e650";
}

/* line 107, ../../default/scss/module/_icons.scss */
.icon-baffled:before {
  content: "\e651";
}

/* line 108, ../../default/scss/module/_icons.scss */
.icon-point-right:before {
  content: "\e652";
}

/* line 109, ../../default/scss/module/_icons.scss */
.icon-point-down:before {
  content: "\e653";
}

/* line 110, ../../default/scss/module/_icons.scss */
.icon-warning:before {
  content: "\e654";
}

/* line 111, ../../default/scss/module/_icons.scss */
.icon-notification:before {
  content: "\e655";
}

/* line 112, ../../default/scss/module/_icons.scss */
.icon-plus:before {
  content: "\e656";
}

/* line 113, ../../default/scss/module/_icons.scss */
.icon-minus:before {
  content: "\e657";
}

/* line 114, ../../default/scss/module/_icons.scss */
.icon-info:before {
  content: "\e658";
}

/* line 115, ../../default/scss/module/_icons.scss */
.icon-cancel-circle:before {
  content: "\e659";
}

/* line 116, ../../default/scss/module/_icons.scss */
.icon-blocked:before {
  content: "\e65a";
}

/* line 117, ../../default/scss/module/_icons.scss */
.icon-cross:before {
  content: "\e65b";
}

/* line 118, ../../default/scss/module/_icons.scss */
.icon-checkmark:before {
  content: "\e65c";
}

/* line 119, ../../default/scss/module/_icons.scss */
.icon-checkmark2:before {
  content: "\e65d";
}

/* line 120, ../../default/scss/module/_icons.scss */
.icon-pause:before {
  content: "\e65e";
}

/* line 121, ../../default/scss/module/_icons.scss */
.icon-stop:before {
  content: "\e65f";
}

/* line 122, ../../default/scss/module/_icons.scss */
.icon-volume-low:before {
  content: "\e660";
}

/* line 123, ../../default/scss/module/_icons.scss */
.icon-volume-mute:before {
  content: "\e661";
}

/* line 124, ../../default/scss/module/_icons.scss */
.icon-loop:before {
  content: "\e662";
}

/* line 125, ../../default/scss/module/_icons.scss */
.icon-loop2:before {
  content: "\e663";
}

/* line 126, ../../default/scss/module/_icons.scss */
.icon-arrow-up:before {
  content: "\e664";
}

/* line 127, ../../default/scss/module/_icons.scss */
.icon-arrow-right:before {
  content: "\e665";
}

/* line 128, ../../default/scss/module/_icons.scss */
.icon-arrow-down:before {
  content: "\e666";
}

/* line 129, ../../default/scss/module/_icons.scss */
.icon-arrow-left:before {
  content: "\e667";
}

/* line 130, ../../default/scss/module/_icons.scss */
.icon-arrow-up2:before {
  content: "\e668";
}

/* line 131, ../../default/scss/module/_icons.scss */
.icon-arrow-up-right2:before {
  content: "\e669";
}

/* line 132, ../../default/scss/module/_icons.scss */
.icon-circle-up:before {
  content: "\e66a";
}

/* line 133, ../../default/scss/module/_icons.scss */
.icon-circle-right:before {
  content: "\e66b";
}

/* line 134, ../../default/scss/module/_icons.scss */
.icon-circle-down:before {
  content: "\e66c";
}

/* line 135, ../../default/scss/module/_icons.scss */
.icon-circle-left:before {
  content: "\e66d";
}

/* line 136, ../../default/scss/module/_icons.scss */
.icon-sort-amount-asc:before {
  content: "\e66e";
}

/* line 137, ../../default/scss/module/_icons.scss */
.icon-sort-amount-desc:before {
  content: "\e66f";
}

/* line 138, ../../default/scss/module/_icons.scss */
.icon-ligature2:before {
  content: "\e670";
}

/* line 139, ../../default/scss/module/_icons.scss */
.icon-text-height:before {
  content: "\e671";
}

/* line 140, ../../default/scss/module/_icons.scss */
.icon-google-plus:before {
  content: "\e672";
}

/* line 141, ../../default/scss/module/_icons.scss */
.icon-google-plus2:before {
  content: "\e673";
}

/* line 142, ../../default/scss/module/_icons.scss */
.icon-facebook:before {
  content: "\e674";
}

/* line 143, ../../default/scss/module/_icons.scss */
.icon-facebook2:before {
  content: "\e675";
}

/* line 144, ../../default/scss/module/_icons.scss */
.icon-instagram:before {
  content: "\e676";
}

/* line 145, ../../default/scss/module/_icons.scss */
.icon-twitter:before {
  content: "\e677";
}

/* line 146, ../../default/scss/module/_icons.scss */
.icon-twitter2:before {
  content: "\e678";
}

/* line 147, ../../default/scss/module/_icons.scss */
.icon-feed2:before {
  content: "\e679";
}

/* line 148, ../../default/scss/module/_icons.scss */
.icon-feed3:before {
  content: "\e67a";
}

/* line 149, ../../default/scss/module/_icons.scss */
.icon-youtube3:before {
  content: "\e67b";
}

/* line 150, ../../default/scss/module/_icons.scss */
.icon-vimeo:before {
  content: "\e67c";
}

/* line 151, ../../default/scss/module/_icons.scss */
.icon-vimeo2:before {
  content: "\e67d";
}

/* line 152, ../../default/scss/module/_icons.scss */
.icon-dropbox:before {
  content: "\e67e";
}

/* line 153, ../../default/scss/module/_icons.scss */
.icon-skype:before {
  content: "\e67f";
}

/* line 154, ../../default/scss/module/_icons.scss */
.icon-linkedin:before {
  content: "\e680";
}

/* line 155, ../../default/scss/module/_icons.scss */
.icon-linkedin2:before {
  content: "\e681";
}

/* line 156, ../../default/scss/module/_icons.scss */
.icon-pinterest:before {
  content: "\e682";
}

/* line 157, ../../default/scss/module/_icons.scss */
.icon-pinterest2:before {
  content: "\e683";
}

/* line 158, ../../default/scss/module/_icons.scss */
.icon-paypal:before {
  content: "\e684";
}

/* line 159, ../../default/scss/module/_icons.scss */
.icon-file-pdf:before {
  content: "\e685";
}

/* line 160, ../../default/scss/module/_icons.scss */
.icon-file-word:before {
  content: "\e686";
}

/** CATEGORIES **/
@font-face {
  font-family: 'categoryicon';
  src: url("../fonts/category.eot?25yajv");
  src: url("../fonts/category.eot?25yajv#iefix") format("embedded-opentype"), url("../fonts/category.ttf?25yajv") format("truetype"), url("../fonts/category.woff?25yajv") format("woff"), url("../fonts/category.svg?25yajv#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* line 174, ../../default/scss/module/_icons.scss */
[class^="categoryicon-"], [class*=" categoryicon-"] {
  font-family: 'categoryicon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 185, ../../default/scss/module/_icons.scss */
.categoryicon-default:before {
  content: "\e000";
}

/* line 186, ../../default/scss/module/_icons.scss */
.categoryicon-construction:before {
  content: "\e900";
}

/* line 187, ../../default/scss/module/_icons.scss */
.categoryicon-tools:before {
  content: "\e901";
}

/* line 188, ../../default/scss/module/_icons.scss */
.categoryicon-pbm:before {
  content: "\e902";
}

/* line 189, ../../default/scss/module/_icons.scss */
.categoryicon-transmissions:before {
  content: "\e903";
}

/* line 1, ../../default/scss/module/_modal.scss */
.modal-open {
  overflow: hidden;
}

/* line 4, ../../default/scss/module/_modal.scss */
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

/* line 16, ../../default/scss/module/_modal.scss */
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

/* line 25, ../../default/scss/module/_modal.scss */
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* line 31, ../../default/scss/module/_modal.scss */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 35, ../../default/scss/module/_modal.scss */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

/* line 40, ../../default/scss/module/_modal.scss */
.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0;
}

/* line 51, ../../default/scss/module/_modal.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2040;
  background-color: #454540;
}

/* line 60, ../../default/scss/module/_modal.scss */
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

/* line 64, ../../default/scss/module/_modal.scss */
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 68, ../../default/scss/module/_modal.scss */
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

/* line 72, ../../default/scss/module/_modal.scss */
.modal-header .close {
  margin-top: -2px;
}

/* line 76, ../../default/scss/module/_modal.scss */
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}

/* line 80, ../../default/scss/module/_modal.scss */
.modal-body {
  position: relative;
  padding: 15px;
}

/* line 84, ../../default/scss/module/_modal.scss */
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

/* line 89, ../../default/scss/module/_modal.scss */
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}

/* line 93, ../../default/scss/module/_modal.scss */
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

/* line 96, ../../default/scss/module/_modal.scss */
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

/* line 99, ../../default/scss/module/_modal.scss */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  /* line 107, ../../default/scss/module/_modal.scss */
  .modal-dialog {
    width: 700px;
    margin: 30px auto;
  }

  /* line 111, ../../default/scss/module/_modal.scss */
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  /* line 115, ../../default/scss/module/_modal.scss */
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  /* line 120, ../../default/scss/module/_modal.scss */
  .modal-lg {
    width: 900px;
  }
}
/* line 124, ../../default/scss/module/_modal.scss */
.clearfix:before,
.clearfix:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}

/* line 133, ../../default/scss/module/_modal.scss */
.clearfix:after,
.modal-header:after,
.modal-footer:after {
  clear: both;
}

/* line 138, ../../default/scss/module/_modal.scss */
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 143, ../../default/scss/module/_modal.scss */
.pull-right {
  float: right !important;
}

/* line 146, ../../default/scss/module/_modal.scss */
.pull-left {
  float: left !important;
}

/* line 149, ../../default/scss/module/_modal.scss */
.hide {
  display: none !important;
}

/* line 152, ../../default/scss/module/_modal.scss */
.show {
  display: block !important;
}

/* line 155, ../../default/scss/module/_modal.scss */
.invisible {
  visibility: hidden;
}

/* line 158, ../../default/scss/module/_modal.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 165, ../../default/scss/module/_modal.scss */
.hidden {
  display: none !important;
}

/* line 168, ../../default/scss/module/_modal.scss */
.affix {
  position: fixed;
}

/** CART **/
/* line 2, ../../default/scss/module/_cart.scss */
.cart-table {
  background-color: #FFF;
  margin: 16px 0 0;
}
/* line 8, ../../default/scss/module/_cart.scss */
.cart-table thead tr {
  border: 0;
}
/* line 12, ../../default/scss/module/_cart.scss */
.cart-table tfoot td.last {
  padding: 16px;
}
/* line 15, ../../default/scss/module/_cart.scss */
.cart-table tfoot td.last button {
  margin: 0;
}
/* line 18, ../../default/scss/module/_cart.scss */
.cart-table tfoot td.last button span {
  padding: 0;
  background: #1d1d1b;
}
/* line 19, ../../default/scss/module/_cart.scss */
.cart-table tfoot td.last button span span {
  padding: 0 15px;
}
/* line 22, ../../default/scss/module/_cart.scss */
.cart-table tfoot td.last .btn-print,
.cart-table tfoot td.last #empty_cart_button {
  margin-right: 8px;
}
/* line 27, ../../default/scss/module/_cart.scss */
.cart-table tfoot td.last button:hover span {
  background-color: #454540;
  color: #FFF;
}
/* line 35, ../../default/scss/module/_cart.scss */
.cart-table tbody td .product-name {
  font-size: 13px;
  font-weight: bold;
}
/* line 39, ../../default/scss/module/_cart.scss */
.cart-table tbody td .product-name .product-references {
  display: block;
}
/* line 42, ../../default/scss/module/_cart.scss */
.cart-table tbody td .comment-toggler {
  text-decoration: underline;
  font-size: 12px;
  color: #454540;
  cursor: pointer;
}
/* line 49, ../../default/scss/module/_cart.scss */
.cart-table tbody td .comment-item {
  position: absolute;
  background-color: #F7F7F7;
  padding: 8px;
  border: 1px solid #CCC;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  display: none;
}
/* line 58, ../../default/scss/module/_cart.scss */
.cart-table tbody td .sku-label {
  font-weight: normal;
  font-style: italic;
}
/* line 62, ../../default/scss/module/_cart.scss */
.cart-table tbody td .cart-price {
  font-weight: bold;
}
/* line 66, ../../default/scss/module/_cart.scss */
.cart-table tbody td .button.btn-cross span {
  background: none;
  color: #1d1d1b;
  font-size: 18px;
}
/* line 72, ../../default/scss/module/_cart.scss */
.cart-table tbody td.col-delete {
  overflow: hidden;
}
/* line 75, ../../default/scss/module/_cart.scss */
.cart-table .btn-wishlist > span,
.cart-table .btn-continue > span,
.cart-table .btn-update > span,
.cart-table .btn-empty > span {
  background: #1d1d1b;
}
/* line 80, ../../default/scss/module/_cart.scss */
.cart-table .col-img {
  position: relative;
  padding: 10px;
}
/* line 81, ../../default/scss/module/_cart.scss */
.cart-table .product-dispo-update {
  margin: 20% auto 0;
}
/* line 82, ../../default/scss/module/_cart.scss */
.cart-table .product-image {
  text-align: center;
}
/* line 83, ../../default/scss/module/_cart.scss */
.cart-table .input-text.qty {
  text-align: center;
}
/* line 85, ../../default/scss/module/_cart.scss */
.cart-table.request-offer-table {
  margin: 0;
}
/* line 87, ../../default/scss/module/_cart.scss */
.cart-table.request-offer-table tfoot td.last button {
  float: left;
  margin: 0 8px 0 0;
}

/* line 93, ../../default/scss/module/_cart.scss */
.cart .page-title {
  margin-bottom: 0;
}
/* line 97, ../../default/scss/module/_cart.scss */
.cart .offer-reference {
  margin: 0 0 16px;
  background-color: #F7F7F7;
  border: 1px solid #CCC;
}
/* line 101, ../../default/scss/module/_cart.scss */
.cart .offer-reference input {
  margin: 8px;
}
/* line 102, ../../default/scss/module/_cart.scss */
.cart .offer-reference label {
  display: none;
}
/* line 106, ../../default/scss/module/_cart.scss */
.cart form fieldset {
  margin: 0;
  padding: 0;
  border: 0 none;
}
/* line 114, ../../default/scss/module/_cart.scss */
.cart .onestep-order {
  display: flex;
  flex-direction: row;
}
/* line 117, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block {
  display: flex;
  flex-direction: column;
  background-color: #e9e9e9;
  float: left;
  width: 32%;
  min-width: 290px;
  margin: 0 2% 0 0;
}
/* line 126, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block .onestep-order-block-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 210px;
  padding: 14px;
  border: 1px solid #454540;
}
/* line 135, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block .onestep-order-block-container .block-title {
  color: #1d1d1b;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}
/* line 143, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block .onestep-order-block-container .block-content fieldset {
  margin: 0;
  padding: 0;
  border: 0 none;
}
/* line 148, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block .onestep-order-block-container .block-content fieldset .field-line {
  overflow: hidden;
  padding: 4px 0;
}
/* line 152, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block .onestep-order-block-container .block-content fieldset .field-line .field-label {
  line-height: 28px;
  font-weight: bold;
  margin: 0;
}
/* line 158, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block .onestep-order-block-container .block-content fieldset .field-line input {
  background: #FFF;
  border: 1px solid #CCC;
  padding: 6px;
  width: 162px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
/* line 165, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block .onestep-order-block-container .block-content fieldset .field-line input#cal_date {
  float: left;
  width: 78%;
  margin-right: 4px;
}
/* line 172, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block .onestep-order-block-container .block-content fieldset .field-line textarea {
  resize: none;
  border: 1px solid #CCC;
  padding: 6px;
  width: 162px;
  height: auto;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
/* line 179, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block .onestep-order-block-container .block-content fieldset .field-line textarea:focus {
  outline: none;
  border: 1px solid #CCC;
}
/* line 185, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block .onestep-order-block-container .block-content fieldset .field-line #cal_date_trig {
  margin: 7px 0 0;
}
/* line 187, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block .onestep-order-block-container .block-content fieldset .field-line select {
  background: #FFF url("../images/select-arrow.gif") 95% center no-repeat !important;
  width: 100%;
  border: 1px solid #CCC;
  padding: 6px 36px 6px 6px;
  cursor: pointer;
  text-align: left;
  text-indent: 0.01px;
  text-overflow: '';
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
/* line 201, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block .onestep-order-block-container .block-content fieldset .field-line .field {
  width: 185px;
  float: right;
  margin: 0;
}
/* line 206, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block .onestep-order-block-container .block-content fieldset .field-line .field .radio-box {
  width: 50%;
  float: left;
}
/* line 210, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block .onestep-order-block-container .block-content fieldset .field-line .field .radio-box .radio {
  width: 15%;
}
/* line 211, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block .onestep-order-block-container .block-content fieldset .field-line .field .radio-box .radio-label {
  line-height: 28px;
  cursor: pointer;
}
/* line 214, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block .onestep-order-block-container .block-content fieldset .field-line .field .info {
  float: right;
  line-height: 28px;
  font-weight: bold;
}
/* line 220, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block .onestep-order-block-container .block-content fieldset .field-line .field #info-address {
  display: block;
  padding: 8px;
  background-color: #FEFEFE;
  border: 1px solid #1d1d1b;
}
/* line 227, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block .onestep-order-block-container .block-content fieldset .field-line .field .button {
  float: right;
  margin-top: 4px;
}
/* line 230, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block .onestep-order-block-container .block-content fieldset .field-line .free-shipping {
  color: #00AA55;
  font-weight: bold;
}
/* line 231, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block .onestep-order-block-container .block-content fieldset .field-line .paying-shipping {
  color: #e83e30;
  font-weight: bold;
}
/* line 233, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block .onestep-order-block-container .block-content fieldset .field-line.last {
  padding-bottom: 0;
}
/* line 243, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block.block-2 #address-changer-popup .address-changer-wrapper {
  max-height: 250px;
  overflow-y: scroll;
  margin: 0 0 16px;
  border: 1px solid #CCC;
}
/* line 250, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block.block-2 #address-changer-popup .address-changer-table {
  width: 100%;
}
/* line 253, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block.block-2 #address-changer-popup .address-changer-table tr {
  border-bottom: 1px solid #CCC;
}
/* line 256, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block.block-2 #address-changer-popup .address-changer-table tr td {
  padding: 8px;
}
/* line 257, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block.block-2 #address-changer-popup .address-changer-table tr .col-selector {
  line-height: 52px;
  width: 60px;
}
/* line 261, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block.block-2 #address-changer-popup .address-changer-table tr .col-selector input {
  width: 60px;
}
/* line 264, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block.block-2 #address-changer-popup .address-changer-table tr .col-address-number {
  line-height: 52px;
}
/* line 269, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block.block-2 #address-changer-popup .address-changer-table tr .col-data .address {
  cursor: pointer;
}
/* line 272, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block.block-2 #address-changer-popup .address-changer-table tr:nth-child(odd) {
  background-color: #F7F7F7;
}
/* line 273, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block.block-2 #address-changer-popup .address-changer-table tr:hover {
  background-color: #F7F7FF;
}
/* line 278, ../../default/scss/module/_cart.scss */
.cart .onestep-order .onestep-order-block.block-3 {
  margin-right: 0;
}
/* line 281, ../../default/scss/module/_cart.scss */
.cart .onestep-order .btn-final {
  margin: 0 0 16px;
  display: none;
}
/* line 284, ../../default/scss/module/_cart.scss */
.cart #request-order-form {
  display: block;
  overflow: hidden;
}
/* line 289, ../../default/scss/module/_cart.scss */
.cart .approbator-info {
  float: right;
  line-height: 28px;
  font-weight: bold;
}
/* line 295, ../../default/scss/module/_cart.scss */
.cart .onestep-order-trigger {
  clear: both;
}
/* line 298, ../../default/scss/module/_cart.scss */
.cart .onestep-order-trigger .btn-final {
  float: right;
  margin: 0 0 16px;
}
/* line 302, ../../default/scss/module/_cart.scss */
.cart .onestep-order-trigger .btn-final span {
  background-color: #5FBF00;
}
/* line 305, ../../default/scss/module/_cart.scss */
.cart .onestep-order-trigger .btn-final span span img {
  display: none;
}
/* line 315, ../../default/scss/module/_cart.scss */
.cart .onestep-order-trigger .btn-processing span span img {
  display: inline;
}
/* line 323, ../../default/scss/module/_cart.scss */
.cart .discount {
  background-color: #F7F7F7;
}
/* line 326, ../../default/scss/module/_cart.scss */
.cart .discount h2 {
  font-size: 20px;
}
/* line 328, ../../default/scss/module/_cart.scss */
.cart .discount input.input-text {
  width: 94%;
  padding: 8px;
  font-size: 15px;
  line-height: 24px;
}
/* line 335, ../../default/scss/module/_cart.scss */
.cart .discount button.button {
  margin: 8px 0 0;
  width: 99%;
}
/* line 339, ../../default/scss/module/_cart.scss */
.cart .discount button.button span {
  width: 100%;
}
/* line 342, ../../default/scss/module/_cart.scss */
.cart .discount button.button span span {
  width: calc(100% - 40px);
}

/* line 350, ../../default/scss/module/_cart.scss */
#failed-products-table .col-name {
  width: 65%;
}
/* line 354, ../../default/scss/module/_cart.scss */
#failed-products-table tfoot .btn-update {
  margin: 0 0 0 8px;
}

/* line 363, ../../default/scss/module/_cart.scss */
button[type="submit"] span span img.loading {
  display: none;
}
/* line 373, ../../default/scss/module/_cart.scss */
button[type="submit"].btn-processing span span img.loading {
  display: inline;
}

/* line 383, ../../default/scss/module/_cart.scss */
.vdb-requestoffer-cart-index .vdb-offer-reference-form {
  display: block;
  overflow: hidden;
}
/* line 387, ../../default/scss/module/_cart.scss */
.vdb-requestoffer-cart-index .vdb-offer-reference-form .btn-convert {
  display: none;
}
/* line 392, ../../default/scss/module/_cart.scss */
.vdb-requestoffer-cart-index #request-offer-trigger {
  float: right;
  margin: 16px 0;
}
/* line 398, ../../default/scss/module/_cart.scss */
.vdb-requestoffer-cart-index .request-offer-table tbody td.last .button span {
  background: none;
  color: #1d1d1b;
  font-size: 18px;
}

@media only screen and (max-width: 980px) {
  /* line 407, ../../default/scss/module/_cart.scss */
  .cart .onestep-order .onestep-order-block {
    width: 100%;
  }
  /* line 409, ../../default/scss/module/_cart.scss */
  .cart .onestep-order .btn-final {
    width: 98%;
    margin-left: 1%;
    margin-right: 1%;
  }
  /* line 410, ../../default/scss/module/_cart.scss */
  .cart .btn-final span {
    float: none;
  }
}
@media only screen and (max-width: 768px) {
  /* line 417, ../../default/scss/module/_cart.scss */
  .cart .offer-reference {
    width: 98%;
    margin: 0 1%;
  }
  /* line 424, ../../default/scss/module/_cart.scss */
  .cart .cart-table tr {
    overflow: hidden;
  }
  /* line 427, ../../default/scss/module/_cart.scss */
  .cart .cart-table tr .col-img {
    float: left;
    width: 25%;
  }
  /* line 433, ../../default/scss/module/_cart.scss */
  .cart .cart-table tfoot td.last button {
    width: 98%;
    margin: 8px 1% 0;
  }
  /* line 437, ../../default/scss/module/_cart.scss */
  .cart .cart-table tfoot td.last button span {
    float: none;
  }
  /* line 439, ../../default/scss/module/_cart.scss */
  .cart .cart-table tfoot td.last button.btn-print, .cart .cart-table tfoot td.last button#empty_cart_button {
    margin-right: 1%;
  }
  /* line 444, ../../default/scss/module/_cart.scss */
  .cart .onestep-order .btn-final {
    margin-bottom: 0;
  }
}
/* line 449, ../../default/scss/module/_cart.scss */
.vdb-requestoffer-cart-convertemail .fieldset {
  width: 48%;
  margin: 0 1%;
  float: left;
}
@media only screen and (max-width: 599px) {
  /* line 456, ../../default/scss/module/_cart.scss */
  .vdb-requestoffer-cart-convertemail .fieldset {
    width: 96%;
    margin: 0 2%;
  }
}

/* line 463, ../../default/scss/module/_cart.scss */
.header-table {
  border-collapse: separate;
  border-spacing: 10px;
}

/*** OPC ***/
/* line 2, ../../default/scss/module/_opc.scss */
.button.btn-checkout span span {
  width: auto;
}

/* line 3, ../../default/scss/module/_opc.scss */
.checkout-onepage-index .col-main {
  min-height: 560px;
}

/* line 4, ../../default/scss/module/_opc.scss */
.opc .step-title {
  display: none;
}

/* line 5, ../../default/scss/module/_opc.scss */
.opc .step-title h2 {
  color: #FFF;
}

/* line 6, ../../default/scss/module/_opc.scss */
.opc .step-title .sprite {
  border: 5px solid #F2F2F2;
}

/* line 7, ../../default/scss/module/_opc.scss */
.opc .active .step-title {
  text-align: center;
  background: #F7F7F7 url("../images/pixel-for-line.png") 0 35% repeat-x;
  display: block;
  height: 82px;
  margin: 16px 1% 30px;
  padding: 0 0 40px;
}

/* line 8, ../../default/scss/module/_opc.scss */
.opc .step-title > div {
  display: inline-block;
  text-align: center;
  width: 10%;
  vertical-align: top;
}

/* line 9, ../../default/scss/module/_opc.scss */
.opc .allow .step-title:hover {
  background-color: #F2F2F2;
}

/* line 10, ../../default/scss/module/_opc.scss */
.opc .step {
  padding: 10px 0;
}

/* line 11, ../../default/scss/module/_opc.scss */
.opc .step .data-table {
  width: 98%;
  margin: 0 1%;
}

/* line 12, ../../default/scss/module/_opc.scss */
.opc .buttons-set .back-link a {
  background: inherit;
}

/* line 14, ../../default/scss/module/_opc.scss */
.opc .section fieldset {
  width: 48%;
  float: left;
  margin: 0 1%;
  background-color: #FFF;
}

/* line 15, ../../default/scss/module/_opc.scss */
.opc #opc-shipping fieldset {
  min-height: 284px;
}

/* line 16, ../../default/scss/module/_opc.scss */
.opc .section fieldset.full {
  width: 98%;
}

/* line 17, ../../default/scss/module/_opc.scss */
.opc .section fieldset .col-handle {
  padding: 3%;
}

/* line 18, ../../default/scss/module/_opc.scss */
.opc .section fieldset.full .col-handle {
  padding: 1.4%;
}

/* line 19, ../../default/scss/module/_opc.scss */
.opc .section fieldset .col-handle .col-title {
  color: #FFF;
  font-weight: bold;
  font-size: 14px;
}

/* line 20, ../../default/scss/module/_opc.scss */
.opc .section fieldset .form-list,
.opc .section fieldset .sp-methods {
  padding: 2%;
}

/* line 22, ../../default/scss/module/_opc.scss */
.opc .section fieldset .sp-methods dd ul li {
  padding-left: 20px;
}

/* line 23, ../../default/scss/module/_opc.scss */
.opc .section fieldset .sp-methods dd ul li > input,
.opc .section fieldset .sp-methods dd ul li > label {
  display: inline-block;
  vertical-align: middle;
  float: none;
}

/* line 25, ../../default/scss/module/_opc.scss */
.opc .section fieldset .sp-methods dd ul li address {
  display: inline-block;
  background: #EEE;
  border: 1px solid #DDD;
  padding: 5px 15px;
  margin: 0 25px;
}

/* line 26, ../../default/scss/module/_opc.scss */
.opc .section fieldset .sp-methods dd ul li .label-agency-address {
  font-style: italic;
  margin: 5px 0 5px 15px;
}

/* line 27, ../../default/scss/module/_opc.scss */
.opc .section fieldset .form-list .globe-pix {
  margin: 16px 4px 4px;
  float: right;
}

/* line 28, ../../default/scss/module/_opc.scss */
.opc .section fieldset .form-list .input-box {
  float: right;
  clear: none;
}

/* line 29, ../../default/scss/module/_opc.scss */
.opc #opc-billing.section fieldset .form-list .input-box {
  float: none;
  clear: left;
}

/* line 30, ../../default/scss/module/_opc.scss */
.opc .section fieldset .form-list .input-box label {
  float: none;
}

/* line 31, ../../default/scss/module/_opc.scss */
.opc .section fieldset .form-list input.input-text {
  width: 180px;
}

/* line 32, ../../default/scss/module/_opc.scss */
.opc .section fieldset .form-list select {
  max-width: 320px;
}

/* line 33, ../../default/scss/module/_opc.scss */
.opc .section fieldset .form-list .field {
  width: 100%;
}

/* line 35, ../../default/scss/module/_opc.scss */
.opc .buttons-set {
  margin: 0 1%;
}

/* line 36, ../../default/scss/module/_opc.scss */
.opc #opc-review #checkout-review-table .shipping_container {
  width: 100%;
}

/* line 37, ../../default/scss/module/_opc.scss */
.opc #opc-review #checkout-review-table tbody .first img {
  float: left;
  margin: 0 8px 0 0;
}

/* line 38, ../../default/scss/module/_opc.scss */
.opc #opc-review #checkout-review-table td.product-name-wrapper {
  position: relative;
}

/* line 40, ../../default/scss/module/_opc.scss */
.opc #opc-review .buttons-set p.back-link {
  margin-right: 1%;
}

/* line 41, ../../default/scss/module/_opc.scss */
.opc .active .step-title {
  background-color: #F2F2F2;
  cursor: default;
}

/* line 42, ../../default/scss/module/_opc.scss */
.opc .active .step-title .number {
  color: #FFF;
  background-color: #454540;
}

/* line 43, ../../default/scss/module/_opc.scss */
.opc .active .step-title a {
  display: none;
}

/* line 45, ../../default/scss/module/_opc.scss */
.opc .checkout-agreements .agreement-content {
  display: none;
}

/* line 46, ../../default/scss/module/_opc.scss */
.opc #opc-review .back-link {
  display: none;
}

/* line 47, ../../default/scss/module/_opc.scss */
.opc #opc-review .data-table tr.even td {
  border: 0;
}

/* line 49, ../../default/scss/module/_opc.scss */
.spr-opc-billing {
  width: 54px;
  height: 55px;
  background-position: -432px -150px;
  margin: 8px 0 0;
}

/* line 50, ../../default/scss/module/_opc.scss */
.spr-opc-shipping {
  width: 54px;
  height: 55px;
  background-position: -487px -150px;
  margin: 8px 0 0;
}

/* line 51, ../../default/scss/module/_opc.scss */
.spr-opc-shipping_method {
  width: 54px;
  height: 55px;
  background-position: -542px -150px;
  margin: 8px 0 0;
}

/* line 52, ../../default/scss/module/_opc.scss */
.spr-opc-payment {
  width: 54px;
  height: 55px;
  background-position: -597px -150px;
  margin: 8px 0 0;
}

/* line 53, ../../default/scss/module/_opc.scss */
.spr-opc-review {
  width: 54px;
  height: 55px;
  background-position: -169px -108px;
  margin: 8px 0 0;
}

/* line 54, ../../default/scss/module/_opc.scss */
.spr-opc-billing.active {
  background-position: -432px -95px;
}

/* line 55, ../../default/scss/module/_opc.scss */
.spr-opc-shipping.active {
  background-position: -487px -95px;
}

/* line 56, ../../default/scss/module/_opc.scss */
.spr-opc-shipping_method.active {
  background-position: -542px -95px;
}

/* line 57, ../../default/scss/module/_opc.scss */
.spr-opc-payment.active {
  background-position: -597px -95px;
}

/* line 58, ../../default/scss/module/_opc.scss */
.spr-opc-review.active {
  background-position: -169px -52px;
}

/* line 59, ../../default/scss/module/_opc.scss */
.spr-opc-arrow {
  width: 25px;
  height: 35px;
  background-position: -249px -52px;
  background-color: #F2F2F2;
  margin: 19px 0;
  border: 0 none;
}

/* line 60, ../../default/scss/module/_opc.scss */
button.btn-proceed-quote span span {
  width: auto;
}

/** HOMEPAGE **/
/* line 2, ../../default/scss/module/_home_page.scss */
.cms-index-index .preface {
  display: block;
}

/* line 3, ../../default/scss/module/_home_page.scss */
.cms-index-index .preface .the-slideshow-wrapper {
  margin: 0 auto;
}

/* line 4, ../../default/scss/module/_home_page.scss */
.cms-index-index .preface .the-slideshow-wrapper .the-slideshow {
  width: 98%;
  margin: 0;
}

/* line 6, ../../default/scss/module/_home_page.scss */
.cms-index-index .products-grid .item .product-name,
.cms-index-index .item .product-name {
  margin-top: 10px;
  font-size: 12px;
  font-weight: bold;
  height: 30px;
  clear: both;
  overflow: hidden;
}

/* line 8, ../../default/scss/module/_home_page.scss */
.cms-index-index .item .product-brand {
  font-weight: bold;
  display: block;
  height: 18px;
  overflow: hidden;
}

/* line 9, ../../default/scss/module/_home_page.scss */
.cms-index-index .products-grid .actions {
  text-align: center;
}

/* line 10, ../../default/scss/module/_home_page.scss */
.cms-index-index .products-grid .actions.notloggedin {
  position: static !important;
}

/* line 12, ../../default/scss/module/_home_page.scss */
.cms-index-index .the-slideshow .direction-nav {
  display: none;
}

/* line 1, ../../default/scss/module/_product_view.scss */
.catalog-product-view .breadcrumbs {
  margin-top: 10px;
}

/* line 5, ../../default/scss/module/_product_view.scss */
.product-view {
  background-color: #FFF;
  overflow: hidden;
}
/* line 10, ../../default/scss/module/_product_view.scss */
.product-view .product-img-box .btn-back {
  position: absolute;
  z-index: 9;
  left: 0;
  top: 8px;
}
/* line 17, ../../default/scss/module/_product_view.scss */
.product-view .product-img-box .product-image {
  background-color: #FFF;
  text-align: center;
  margin: 4% 0 0;
  padding: 0;
  border: 0;
}
/* line 25, ../../default/scss/module/_product_view.scss */
.product-view .product-img-box .gallery {
  overflow: hidden;
  padding: 4px;
  background-color: #EEE;
}
/* line 30, ../../default/scss/module/_product_view.scss */
.product-view .product-img-box .gallery .thumbnail-item {
  float: left;
  margin-right: 4px;
  border: 1px solid #CCC;
  cursor: pointer;
  max-width: 55px;
  max-height: 55px;
}
/* line 39, ../../default/scss/module/_product_view.scss */
.product-view .product-img-box .gallery .thumbnail-item.active {
  border-color: #454540;
}
/* line 46, ../../default/scss/module/_product_view.scss */
.product-view .product-type-data .b2bservice-block-list > .price-box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
  margin: 5px;
  padding: 0;
}
/* line 53, ../../default/scss/module/_product_view.scss */
.product-view .product-type-data .b2bservice-block-list > .price-box .type {
  color: #1d1d1b;
  margin-right: 5px;
  font-size: 15px;
}
/* line 58, ../../default/scss/module/_product_view.scss */
.product-view .product-type-data .b2bservice-block-list > .price-box .unit {
  font-size: 12px;
  font-weight: bolder;
}
/* line 64, ../../default/scss/module/_product_view.scss */
.product-view .product-type-data .price-box {
  margin: 5px;
  padding: 0;
  border: 0;
  color: #e83e30;
}
/* line 72, ../../default/scss/module/_product_view.scss */
.product-view .product-dispo-update {
  margin: 5% 0;
  float: left;
  padding: 0 5px;
  font-size: 14px;
}
/* line 73, ../../default/scss/module/_product_view.scss */
.product-view .tarif-box {
  margin: 5% 0;
  clear: both;
}
/* line 75, ../../default/scss/module/_product_view.scss */
.product-view .add-to-box {
  clear: both;
  border: 0;
  padding: 0;
  margin: 0;
}
/* line 81, ../../default/scss/module/_product_view.scss */
.product-view .add-to-box .add-to-cart {
  margin: 0;
}
/* line 83, ../../default/scss/module/_product_view.scss */
.product-view .add-to-box .add-to-cart label {
  font-weight: bold;
}
/* line 86, ../../default/scss/module/_product_view.scss */
.product-view .add-to-box .qty-wrapper #qty {
  height: 34px;
  padding: 2px 8px;
  width: 20px !important;
  text-align: center;
  font-size: 14px;
  float: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
/* line 87, ../../default/scss/module/_product_view.scss */
.product-view .add-to-box .qty-wrapper .qty-modifier {
  display: inline-block;
  width: 28px;
  height: 38px;
  line-height: 38px;
  border: 1px solid #CCC;
  background-color: #EEE;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  vertical-align: top;
  font-size: 18px;
}
/* line 88, ../../default/scss/module/_product_view.scss */
.product-view .add-to-box .qty-wrapper .qty-modifier#remove-one {
  border-radius: 4px 0 0 4px;
  border-right: 0;
}
/* line 89, ../../default/scss/module/_product_view.scss */
.product-view .add-to-box .qty-wrapper .qty-modifier#add-one {
  border-radius: 0 4px 4px 0;
  border-left: 0;
}
/* line 90, ../../default/scss/module/_product_view.scss */
.product-view .add-to-box .btn-cart {
  float: left;
}
/* line 92, ../../default/scss/module/_product_view.scss */
.product-view .add-to-box .btn-cart span {
  background-color: #e83e30;
}
/* line 94, ../../default/scss/module/_product_view.scss */
.product-view .add-to-box .btn-cart span:hover {
  background-color: #b72114;
}
/* line 99, ../../default/scss/module/_product_view.scss */
.product-view .add-to-box .btn-cart[disabled=disabled], .product-view .add-to-box .btn-cart :disabled {
  display: none;
}
/* line 103, ../../default/scss/module/_product_view.scss */
.product-view .add-to-box .btn-cart .icon {
  float: left;
  background-color: #e83e30;
  padding: 5px 0;
  width: 50px;
}
/* line 104, ../../default/scss/module/_product_view.scss */
.product-view .add-to-box .btn-cart .icon .icon-panier {
  background: none;
  padding: 0;
  font-size: 55px;
  font-weight: normal;
  width: 50px;
  line-height: 37px;
}
/* line 105, ../../default/scss/module/_product_view.scss */
.product-view .add-to-box .btn-cart .label {
  width: auto;
  padding: 5px 15px;
}
/* line 108, ../../default/scss/module/_product_view.scss */
.product-view .btn-cart span {
  background-color: #1d1d1b;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
/* line 109, ../../default/scss/module/_product_view.scss */
.product-view .btn-cart:hover span {
  background-color: #454540;
}
/* line 110, ../../default/scss/module/_product_view.scss */
.product-view .btn-cart span span {
  padding: 0px 20px;
  width: auto;
}
/* line 112, ../../default/scss/module/_product_view.scss */
.product-view .email-friend {
  display: none;
}
/* line 116, ../../default/scss/module/_product_view.scss */
.product-view .product-shop .product-name {
  padding: 16px 0;
  border-bottom: 2px solid #454540;
}
/* line 119, ../../default/scss/module/_product_view.scss */
.product-view .product-shop .product-name h1 {
  color: #1d1d1b;
}
/* line 124, ../../default/scss/module/_product_view.scss */
.product-view .product-shop .no-rating {
  display: none;
}
/* line 126, ../../default/scss/module/_product_view.scss */
.product-view .product-shop .short-description {
  background-color: #EEE;
  padding: 12px;
  font-size: 11px;
}
/* line 132, ../../default/scss/module/_product_view.scss */
.product-view .product-shop .lead-time-update,
.product-view .product-shop .product-stock-update {
  font-weight: bold;
}
/* line 137, ../../default/scss/module/_product_view.scss */
.product-view .product-shop .price-box .price-label {
  display: none;
}
/* line 140, ../../default/scss/module/_product_view.scss */
.product-view .product-shop .price-box .price {
  color: #e83e30;
  font-size: 30px;
}
/* line 146, ../../default/scss/module/_product_view.scss */
.product-view .product-collateral {
  clear: both;
}
/* line 147, ../../default/scss/module/_product_view.scss */
.product-view .box-tabs .view-widget-title {
  display: none;
}
/* line 148, ../../default/scss/module/_product_view.scss */
.product-view .box-tabs .panel-description {
  margin: 0 1%;
}
/* line 150, ../../default/scss/module/_product_view.scss */
.product-view .box-additional {
  margin-top: 1%;
}
/* line 153, ../../default/scss/module/_product_view.scss */
.product-view .box-additional .specifications-table {
  width: 100%;
}
/* line 157, ../../default/scss/module/_product_view.scss */
.product-view .box-additional .specifications-table tr {
  border-bottom: 1px dotted #CCC;
}
/* line 158, ../../default/scss/module/_product_view.scss */
.product-view .box-additional .specifications-table td {
  padding: 6px 12px;
}
/* line 160, ../../default/scss/module/_product_view.scss */
.product-view .box-additional .specifications-table .label {
  width: 20%;
  background-color: #F7F7F7;
}
/* line 161, ../../default/scss/module/_product_view.scss */
.product-view .box-additional .specifications-table .value {
  width: 80%;
}
/* line 164, ../../default/scss/module/_product_view.scss */
.product-view .box-additional .panel-pdf {
  overflow: hidden;
}
/* line 166, ../../default/scss/module/_product_view.scss */
.product-view .box-additional .panel-pdf .pdf-link {
  display: block;
  float: left;
  text-align: center;
  margin: 8px;
}
/* line 171, ../../default/scss/module/_product_view.scss */
.product-view .box-additional .panel-pdf .pdf-link .pdf-name {
  display: block;
  margin: 8px 0 0;
}
/* line 183, ../../default/scss/module/_product_view.scss */
.product-view a.link-wishlist,
.product-view a.link-compare,
.product-view a.email2friend {
  text-indent: 0;
  border: 0;
  height: 30px;
  cursor: pointer;
}
/* line 186, ../../default/scss/module/_product_view.scss */
.product-view a.link-manufacturer {
  color: #454540;
}
/* line 188, ../../default/scss/module/_product_view.scss */
.product-view ul.tabs li a.current:hover,
.product-view div.acctab.current:hover {
  cursor: default;
}

@media only screen and (max-width: 480px) {
  /* line 194, ../../default/scss/module/_product_view.scss */
  .product-view .actions-connection .qty-wrapper label {
    display: none;
  }

  /* line 195, ../../default/scss/module/_product_view.scss */
  .product-view .add-to-box .qty-wrapper .qty-modifier {
    width: 34px;
    height: 42px;
    line-height: 42px;
  }

  /* line 196, ../../default/scss/module/_product_view.scss */
  .product-view .add-to-box .qty-wrapper #qty {
    height: 38px;
    padding: 2px 12px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  /* line 200, ../../default/scss/module/_product_view.scss */
  .product-view .product-img-box .product-image {
    width: 98%;
    max-width: none;
  }
}
@media only screen and (max-width: 810px) {
  /* line 204, ../../default/scss/module/_product_view.scss */
  .product-view .product-shop,
  .product-view .product-secondary-column {
    width: 98%;
  }

  /* line 206, ../../default/scss/module/_product_view.scss */
  .product-view .add-to-cart {
    text-align: center;
  }
}
@media only screen and (max-width: 1023px) {
  /* line 210, ../../default/scss/module/_product_view.scss */
  .product-view .product-img-box {
    width: 98%;
    margin-left: 1%;
    margin-right: 1%;
    text-align: center;
  }

  /* line 211, ../../default/scss/module/_product_view.scss */
  .product-view .product-img-box .product-image {
    border: 0;
    padding: 0;
  }

  /* line 212, ../../default/scss/module/_product_view.scss */
  .product-view .box-additional,
  .product-view .product-shop,
  .product-view .product-secondary-column {
    width: 98%;
    margin-left: 1%;
    margin-right: 1%;
  }

  /* line 215, ../../default/scss/module/_product_view.scss */
  .product-view .product-secondary-column .inner {
    border: 0;
    min-height: 0;
    padding-left: 0;
  }

  /* line 216, ../../default/scss/module/_product_view.scss */
  .product-view .add-to-box {
    padding: 0;
  }

  /* line 217, ../../default/scss/module/_product_view.scss */
  .product-view .btn-cart span {
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
  }

  /* line 218, ../../default/scss/module/_product_view.scss */
  .product-view .btn-cart span span {
    padding: 8px 35px;
  }
}
/** PRODUCT LIST **/
/* line 2, ../../default/scss/module/_product_list.scss */
.breadcrumbs {
  margin: 10px 1% 0;
  line-height: 30px;
}

/* line 3, ../../default/scss/module/_product_list.scss */
.breadcrumbs li,
.breadcrumbs a {
  color: #1d1d1b;
}

/* line 5, ../../default/scss/module/_product_list.scss */
.breadcrumbs li {
  display: inline-block;
  vertical-align: top;
  *display: inline;
  *zoom: 1;
}

/* line 6, ../../default/scss/module/_product_list.scss */
.breadcrumbs li span {
  margin: 12px 4px 0 8px;
}

/* line 8, ../../default/scss/module/_product_list.scss */
.products-list.hover-effect .item:hover {
  margin: 0;
  padding: 0;
  box-shadow: none;
}

/* line 9, ../../default/scss/module/_product_list.scss */
.category-products-grid.hover-effect .item:hover {
  padding: 10px 1%;
  margin: 0;
  box-shadow: none;
}

/** TOOLBAR **/
/* line 12, ../../default/scss/module/_product_list.scss */
.toolbar {
  border: 0;
  background-color: #FFF;
  margin-bottom: 10px;
}

/* line 13, ../../default/scss/module/_product_list.scss */
.toolbar-bottom .sorter {
  display: block !important;
}

/* line 14, ../../default/scss/module/_product_list.scss */
.toolbar .amount {
  font-weight: bold;
  color: #1d1d1b;
  background: none;
}

/* line 15, ../../default/scss/module/_product_list.scss */
.toolbar .pager {
  border: 0;
}

/* line 16, ../../default/scss/module/_product_list.scss */
.sorter .sort-by {
  background: none;
}

/* line 19, ../../default/scss/module/_product_list.scss */
.pager .pages strong,
.pager .pages span {
  display: none;
}
/* line 21, ../../default/scss/module/_product_list.scss */
.pager .pages li {
  display: block;
  font-weight: bold;
  width: auto;
  margin: 0 2px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
}
/* line 30, ../../default/scss/module/_product_list.scss */
.pager .pages .current,
.pager .pages li a {
  padding: 0 6px;
  min-width: 20px;
}
/* line 32, ../../default/scss/module/_product_list.scss */
.pager .pages li a {
  background: none;
}
/* line 33, ../../default/scss/module/_product_list.scss */
.pager .pages li a:hover {
  background-color: #9f9f98;
  color: white;
}
/* line 37, ../../default/scss/module/_product_list.scss */
.pager .pages li.current {
  color: #FFF;
  background-color: #1d1d1b;
}

/** Wishlist in popup **/
/** Used in product list and product view **/
/* line 46, ../../default/scss/module/_product_list.scss */
.custom-popup .new-wishlist .input-box {
  overflow: hidden;
  margin: 16px 0;
}
/* line 51, ../../default/scss/module/_product_list.scss */
.custom-popup .new-wishlist input[type="checkbox"] {
  float: left;
}
/* line 54, ../../default/scss/module/_product_list.scss */
.custom-popup .wishlist-selector {
  display: inline-block;
  vertical-align: top;
  width: 49%;
}
/* line 58, ../../default/scss/module/_product_list.scss */
.custom-popup .wishlist-selector select {
  min-width: 180px;
  display: block;
  margin: 0 0 10px 0;
}
/* line 64, ../../default/scss/module/_product_list.scss */
.custom-popup .wishlist-selector + .new-wishlist {
  display: inline-block;
  vertical-align: top;
  width: 45%;
  padding-left: 4%;
  text-align: left;
  border-left: 1px dashed #ccc;
}
/* line 72, ../../default/scss/module/_product_list.scss */
.custom-popup .wishlist-selector + .new-wishlist .list-name {
  margin: 0 0 10px 0;
}
/* line 75, ../../default/scss/module/_product_list.scss */
.custom-popup .wishlist-selector + .new-wishlist .input-box {
  display: inline-block;
}
/* line 77, ../../default/scss/module/_product_list.scss */
.custom-popup .wishlist-selector + .new-wishlist .input-box input {
  margin-right: 5px;
}
/* line 83, ../../default/scss/module/_product_list.scss */
.custom-popup .button {
  display: block;
  float: left;
}

/*** LIST ***/
/* line 88, ../../default/scss/module/_product_list.scss */
.products-list li.item {
  background-color: #FFF;
  padding: 0;
  border: 0 none;
  border-bottom: 1px dashed #CCC;
}
/* line 94, ../../default/scss/module/_product_list.scss */
.products-list li.item .product-picture {
  width: 20%;
  float: left;
}
/* line 97, ../../default/scss/module/_product_list.scss */
.products-list li.item .product-picture .product-image {
  display: block;
}
/* line 102, ../../default/scss/module/_product_list.scss */
.products-list li.item .product-shop {
  width: 50%;
  float: left;
}
/* line 106, ../../default/scss/module/_product_list.scss */
.products-list li.item .product-shop .product-shop-inner {
  border: 0;
  overflow: hidden;
  padding: 2%;
}
/* line 111, ../../default/scss/module/_product_list.scss */
.products-list li.item .product-shop .product-shop-inner .product-name {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 10px;
}
/* line 116, ../../default/scss/module/_product_list.scss */
.products-list li.item .product-shop .product-shop-inner .product-name a {
  color: #1d1d1b;
}
/* line 117, ../../default/scss/module/_product_list.scss */
.products-list li.item .product-shop .product-shop-inner .product-name .sku,
.products-list li.item .product-shop .product-shop-inner .product-name .custom-sku {
  display: block;
  color: #e83e30;
}
/* line 119, ../../default/scss/module/_product_list.scss */
.products-list li.item .product-shop .product-shop-inner .product-name .sku .label,
.products-list li.item .product-shop .product-shop-inner .product-name .custom-sku .label {
  font-size: 10px;
  text-transform: uppercase;
}
/* line 128, ../../default/scss/module/_product_list.scss */
.products-list li.item .product-shop .product-shop-inner .desc {
  margin: 10px 0;
  color: #1d1d1b;
}
/* line 131, ../../default/scss/module/_product_list.scss */
.products-list li.item .product-shop .product-shop-inner .desc .attr {
  font-weight: lighter;
}
/* line 134, ../../default/scss/module/_product_list.scss */
.products-list li.item .product-shop .product-shop-inner .desc .value {
  font-weight: bolder;
}
/* line 139, ../../default/scss/module/_product_list.scss */
.products-list li.item .product-shop .product-shop-inner .add-to-links {
  margin: 10px 0 0;
}
/* line 142, ../../default/scss/module/_product_list.scss */
.products-list li.item .product-shop .product-shop-inner .add-to-links .link-wishlist {
  cursor: pointer;
  font-weight: bolder;
}
/* line 149, ../../default/scss/module/_product_list.scss */
.products-list li.item .product-shop .product-shop-inner .already-bought {
  color: #454540;
  font-weight: bold;
}
/* line 156, ../../default/scss/module/_product_list.scss */
.products-list li.item .right-column {
  width: 30%;
  float: right;
}
/* line 160, ../../default/scss/module/_product_list.scss */
.products-list li.item .right-column .b2bservice-block-list {
  margin: 10px 0 0 0;
}
/* line 164, ../../default/scss/module/_product_list.scss */
.products-list li.item .right-column .b2bservice-block-list .price-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  margin: 5px;
  padding: 0;
  font-size: 12px;
  color: #e83e30;
}
/* line 174, ../../default/scss/module/_product_list.scss */
.products-list li.item .right-column .b2bservice-block-list .price-box .type {
  color: #1d1d1b;
  margin-right: 5px;
  font-size: 15px;
}
/* line 179, ../../default/scss/module/_product_list.scss */
.products-list li.item .right-column .b2bservice-block-list .price-box .price {
  font-size: 21px;
}
/* line 180, ../../default/scss/module/_product_list.scss */
.products-list li.item .right-column .b2bservice-block-list .price-box .unit {
  font-size: 12px;
  font-weight: bolder;
}
/* line 186, ../../default/scss/module/_product_list.scss */
.products-list li.item .right-column .b2bservice-block-list .lead-time-update,
.products-list li.item .right-column .b2bservice-block-list .product-stock-update {
  font-weight: bold;
  color: #9f9f98;
}
/* line 193, ../../default/scss/module/_product_list.scss */
.products-list li.item .right-column .actions {
  padding: 2%;
  text-align: center;
}
/* line 197, ../../default/scss/module/_product_list.scss */
.products-list li.item .right-column .actions .btn-cart {
  width: auto;
  float: right;
  margin: 2px;
}
/* line 202, ../../default/scss/module/_product_list.scss */
.products-list li.item .right-column .actions .btn-cart .icon-panier {
  font-size: 40px;
  font-weight: normal;
  padding: 0 10px;
}
/* line 208, ../../default/scss/module/_product_list.scss */
.products-list li.item .right-column .actions .btn-cart .label {
  display: none;
}
/* line 212, ../../default/scss/module/_product_list.scss */
.products-list li.item .right-column .actions .btn-cart[disabled=disabled], .products-list li.item .right-column .actions .btn-cart :disabled {
  display: none;
}
/* line 217, ../../default/scss/module/_product_list.scss */
.products-list li.item .right-column .actions .btn-request-offer {
  width: 100%;
}
/* line 219, ../../default/scss/module/_product_list.scss */
.products-list li.item .right-column .actions .btn-request-offer span {
  background-color: #1d1d1b;
}
/* line 223, ../../default/scss/module/_product_list.scss */
.products-list li.item .right-column .actions .btn-request-offer:hover span {
  background-color: #454540;
}
/* line 229, ../../default/scss/module/_product_list.scss */
.products-list li.item .right-column .actions .login_button {
  display: block;
  width: auto;
  margin: 19px 0 19px;
}
/* line 237, ../../default/scss/module/_product_list.scss */
.products-list li.item .right-column .actions .qty-box .qty {
  float: none;
  width: 15% !important;
  height: 21px;
  text-align: center;
  border-color: #CCC;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
/* line 246, ../../default/scss/module/_product_list.scss */
.products-list li.item .right-column .actions .qty-box .qty-modifier {
  background-color: #EEE;
  color: #1d1d1b;
  display: inline-block;
  width: 12px;
  height: 21px;
  line-height: 24px;
  font-size: 15px;
  padding: 6px 8px;
  border: 1px solid #CCC;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  vertical-align: top;
}
/* line 262, ../../default/scss/module/_product_list.scss */
.products-list li.item .right-column .actions .qty-box .qty-modifier.remove-one {
  -moz-border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px 0 0 4px;
  border-right: 0;
}
/* line 266, ../../default/scss/module/_product_list.scss */
.products-list li.item .right-column .actions .qty-box .qty-modifier.add-one {
  -moz-border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0;
  border-radius: 0 4px 4px 0;
  border-left: 0;
}
/* line 275, ../../default/scss/module/_product_list.scss */
.products-list li.item .right-column .actions.connected .btn-request-offer {
  width: auto;
  margin: 2px;
  float: right;
}
/* line 284, ../../default/scss/module/_product_list.scss */
.products-list .not-available {
  color: #454540;
  font-size: 12px;
  clear: both;
}

/*** GRID ***/
/* line 293, ../../default/scss/module/_product_list.scss */
.products-grid li.item {
  padding: 10px 1%;
  margin: 0;
  box-shadow: none;
}
/* line 298, ../../default/scss/module/_product_list.scss */
.products-grid li.item .product-name {
  margin: 8px 0;
  font-size: 14px;
  font-weight: bold;
}
/* line 303, ../../default/scss/module/_product_list.scss */
.products-grid li.item .product-name a {
  color: #454540;
}
/* line 306, ../../default/scss/module/_product_list.scss */
.products-grid li.item .b2bservice-block-list {
  height: 70px;
  float: left;
}
/* line 310, ../../default/scss/module/_product_list.scss */
.products-grid li.item .b2bservice-block-list .price-box {
  margin: 0;
  font-size: 14px;
}
/* line 316, ../../default/scss/module/_product_list.scss */
.products-grid li.item .actions {
  margin: 0;
  bottom: 10px;
}
/* line 321, ../../default/scss/module/_product_list.scss */
.products-grid li.item .btn-cart {
  float: right;
  margin-right: 0;
}
/* line 325, ../../default/scss/module/_product_list.scss */
.products-grid li.item .btn-cart .icon-panier {
  font-size: 40px;
  line-height: 38px;
  font-weight: normal;
  padding: 0 10px;
}

/* line 335, ../../default/scss/module/_product_list.scss */
.products-grid.equal-height .item .actions {
  bottom: 10px;
}

/*** CATEGORIES GRID ***/
/* line 339, ../../default/scss/module/_product_list.scss */
.category-cmsblock-id {
  display: none;
}

/* line 343, ../../default/scss/module/_product_list.scss */
.category-cmsblock-content {
  margin: 0 1% 1%;
}
/* line 346, ../../default/scss/module/_product_list.scss */
.category-cmsblock-content .category-banner {
  width: 100%;
  height: 0px;
  position: relative;
  margin: 0 0 8px;
  padding-top: 16.91%;
}
/* line 353, ../../default/scss/module/_product_list.scss */
.category-cmsblock-content .category-banner img {
  position: absolute;
  top: 0;
  left: 0;
}
/* line 359, ../../default/scss/module/_product_list.scss */
.category-cmsblock-content .category-banner h1, .category-cmsblock-content .category-banner h2 {
  font-size: 23px;
  font-weight: bold;
  margin: 0;
  color: #1d1d1b;
  position: absolute;
  bottom: 18px;
  right: 18px;
  text-align: right;
}
@media only screen and (max-width: 770px) {
  /* line 370, ../../default/scss/module/_product_list.scss */
  .category-cmsblock-content .category-banner h1, .category-cmsblock-content .category-banner h2 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 479px) {
  /* line 375, ../../default/scss/module/_product_list.scss */
  .category-cmsblock-content .category-banner h1, .category-cmsblock-content .category-banner h2 {
    font-size: 14px;
  }
}
/* line 381, ../../default/scss/module/_product_list.scss */
.category-cmsblock-content p {
  font-size: 15px;
}

/* line 386, ../../default/scss/module/_product_list.scss */
.subcategories-grid .subcategory-block {
  display: block;
  width: 31.2%;
  margin: 1%;
}
/* line 391, ../../default/scss/module/_product_list.scss */
.subcategories-grid .subcategory-block .subcategory-block-container {
  background-color: #FFF;
  border: 1px solid #AAA;
  padding: 3%;
  height: 100%;
}
/* line 397, ../../default/scss/module/_product_list.scss */
.subcategories-grid .subcategory-block .subcategory-block-container .subcategory-image {
  display: block;
  text-align: center;
  margin: 8px 0;
}
/* line 402, ../../default/scss/module/_product_list.scss */
.subcategories-grid .subcategory-block .subcategory-block-container .subcategory-image img {
  display: block;
  height: 100%;
  max-height: 177px;
  margin: 0 auto;
}
/* line 410, ../../default/scss/module/_product_list.scss */
.subcategories-grid .subcategory-block .subcategory-block-container .subcategory-name {
  display: block;
  background-color: #1d1d1b;
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
}
/* line 419, ../../default/scss/module/_product_list.scss */
.subcategories-grid .subcategory-block .subcategory-block-container .subcategory-name span {
  line-height: 17px;
  vertical-align: middle;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  color: #FFF;
  padding: 0px 10px;
}
/* line 430, ../../default/scss/module/_product_list.scss */
.subcategories-grid .subcategory-block .subcategory-block-container .subsubcategories-list {
  padding-left: 12px;
  list-style: circle outside;
}
/* line 434, ../../default/scss/module/_product_list.scss */
.subcategories-grid .subcategory-block .subcategory-block-container .subsubcategories-list li {
  line-height: 21px;
}
@media only screen and (max-width: 770px) {
  /* line 442, ../../default/scss/module/_product_list.scss */
  .subcategories-grid .subcategory-block {
    width: 47.8%;
  }
}
@media only screen and (max-width: 479px) {
  /* line 447, ../../default/scss/module/_product_list.scss */
  .subcategories-grid .subcategory-block {
    width: 98%;
  }
}

/*** SIDEBAR ***/
/* line 455, ../../default/scss/module/_product_list.scss */
.block .block-title {
  background-color: #1d1d1b;
  text-align: center;
  text-transform: uppercase;
  padding: 8px 0;
  color: #FFF;
  font-size: 13px;
  font-weight: bold;
}
/* line 464, ../../default/scss/module/_product_list.scss */
.block .block-title strong {
  text-transform: inherit;
}
/* line 469, ../../default/scss/module/_product_list.scss */
.block .block-content {
  color: #9f9f98;
}

/* line 471, ../../default/scss/module/_product_list.scss */
.block-layered-nav.second {
  margin-top: 24px;
}

/* line 475, ../../default/scss/module/_product_list.scss */
div.block-layered-nav dl {
  padding: 0;
}
/* line 477, ../../default/scss/module/_product_list.scss */
div.block-layered-nav dt, div.block-layered-nav dt.amshopby-collapsed {
  background: #9f9f98;
  color: #FFF;
  padding: 10px;
  border-bottom: 1px solid white;
  text-transform: uppercase;
}
/* line 485, ../../default/scss/module/_product_list.scss */
div.block-layered-nav dd li {
  background: #FFF;
  color: #333;
  border-bottom: 1px solid #CCC;
}
/* line 490, ../../default/scss/module/_product_list.scss */
div.block-layered-nav dd li a {
  color: inherit;
}

/*** AMPSHOPBY ***/
/* line 497, ../../default/scss/module/_product_list.scss */
#narrow-by-list ol.no-facets-more {
  display: none;
}

/* line 498, ../../default/scss/module/_product_list.scss */
.block-layered-nav dt.amshopby-collapsed {
  color: #FFF;
  border: 0;
}

/* line 499, ../../default/scss/module/_product_list.scss */
.block-layered-nav dd {
  padding: 0;
  font-size: 12px;
  background-color: #454540;
  border: 0;
}

/* line 500, ../../default/scss/module/_product_list.scss */
.block-layered-nav dd .catalog-layer-moreless {
  background-color: #FFF;
  padding: 0;
}
/* line 505, ../../default/scss/module/_product_list.scss */
.block-layered-nav dd .catalog-layer-moreless a {
  float: none;
  padding: 8px 15px;
  color: #1d1d1b;
  font-weight: bold;
  text-align: right;
}

/* line 513, ../../default/scss/module/_product_list.scss */
.block-layered-nav dd li,
.block-layered-nav .currently ol li {
  padding: 3px 15px;
  line-height: 1.9em;
  color: #FFF;
  border-bottom: 1px solid #FFF;
}

/* line 515, ../../default/scss/module/_product_list.scss */
.block-layered-nav .currently ol li {
  background: none;
}

/* line 516, ../../default/scss/module/_product_list.scss */
.block-layered-nav .currently {
  color: #FFF;
  margin: 0;
  background-color: #EEE;
}

/* line 517, ../../default/scss/module/_product_list.scss */
.block-layered-nav .currently .block-subtitle {
  display: none;
}

/* line 518, ../../default/scss/module/_product_list.scss */
.block-layered-nav .currently ol li {
  padding: 0;
  margin: 0;
  color: #454540;
  border: 0;
}

/* line 519, ../../default/scss/module/_product_list.scss */
.block-layered-nav .currently ol li .label {
  color: #454540;
  margin: 0;
}

/* line 520, ../../default/scss/module/_product_list.scss */
.block-layered-nav .currently .btn-remove {
  background: none;
  margin: 0;
}

/* line 521, ../../default/scss/module/_product_list.scss */
.block-layered-nav .currently .btn-remove:before {
  content: "X";
  font-size: 12px;
  line-height: 22px;
  text-indent: 0;
}

/* line 522, ../../default/scss/module/_product_list.scss */
.block-layered-nav .actions {
  position: static;
  margin: 0 8px;
  display: none;
}

/* line 523, ../../default/scss/module/_product_list.scss */
.block-layered-nav .actions a {
  font-weight: bold;
}

/* line 525, ../../default/scss/module/_product_list.scss */
div.block-layered-nav dd a {
  color: #FFF;
}

/* line 526, ../../default/scss/module/_product_list.scss */
.accordion.vertnav.vertnav-top {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  z-index: 99;
}

/* line 527, ../../default/scss/module/_product_list.scss */
.accordion.vertnav.vertnav-top li a {
  text-transform: none;
  font-size: 14px;
}

/* line 528, ../../default/scss/module/_product_list.scss */
.accordion-style1 {
  /* border-bottom:1px solid #FFF; */
}

/* line 529, ../../default/scss/module/_product_list.scss */
.accordion a {
  color: #454540;
}

/* line 531, ../../default/scss/module/_product_list.scss */
.result-message-correction {
  color: #1d1d1b;
  font-size: 14px;
  margin: 10px 10px 0;
  padding: 10px;
}

@media only screen and (max-width: 640px) {
  /* line 539, ../../default/scss/module/_product_list.scss */
  .products-list li.item .product-picture {
    width: 20%;
  }

  /* line 540, ../../default/scss/module/_product_list.scss */
  .products-list li.item .product-shop {
    width: 80%;
  }

  /* line 541, ../../default/scss/module/_product_list.scss */
  .products-list li.item .right-column {
    width: 100%;
  }

  /* line 542, ../../default/scss/module/_product_list.scss */
  .products-list li.item .right-column .actions .btn-cart {
    max-width: none;
    width: 49%;
  }

  /* line 543, ../../default/scss/module/_product_list.scss */
  .products-list li.item .right-column .actions.connected .btn-request-offer {
    width: 49%;
  }

  /* line 544, ../../default/scss/module/_product_list.scss */
  .products-list li.item .right-column .btn-cart span.icon-panier {
    display: none;
  }

  /* line 545, ../../default/scss/module/_product_list.scss */
  .products-list li.item .right-column .actions .btn-cart span.label {
    display: block;
  }

  /* line 546, ../../default/scss/module/_product_list.scss */
  .custom-popup {
    margin-left: -50% !important;
  }

  /* line 547, ../../default/scss/module/_product_list.scss */
  .custom-popup .wishlist-selector,
  .custom-popup .new-wishlist {
    width: 100% !important;
    display: block !important;
    border-left: none !important;
    padding-left: 0 !important;
  }
  /* line 553, ../../default/scss/module/_product_list.scss */
  .custom-popup .wishlist-selector .button,
  .custom-popup .new-wishlist .button {
    display: block !important;
    float: none !important;
  }
  /* line 556, ../../default/scss/module/_product_list.scss */
  .custom-popup .wishlist-selector .button span,
  .custom-popup .new-wishlist .button span {
    float: none !important;
  }

  /* line 561, ../../default/scss/module/_product_list.scss */
  .custom-popup .new-wishlist {
    border-top: 1px dashed #ccc !important;
    padding-top: 4%;
    margin-top: 4%;
  }
  /* line 565, ../../default/scss/module/_product_list.scss */
  .custom-popup .new-wishlist .list-name {
    text-align: left !important;
  }

  /* line 570, ../../default/scss/module/_product_list.scss */
  .custom-popup .wishlist-selector select {
    margin-bottom: 10px !important;
  }
}
@media only screen and (max-width: 959px) {
  /* Hide amount. Note: has to be defined after aligning ".amount" center */
  /* line 577, ../../default/scss/module/_product_list.scss */
  .toolbar .sorter .amount,
  .toolbar .limiter {
    display: inline-block !important;
  }
}
@media only screen and (min-width: 1024px) {
  /* line 584, ../../default/scss/module/_product_list.scss */
  .result-message-correction {
    margin: 30px 10px 0;
  }
}
/* line 589, ../../default/scss/module/_product_list.scss */
#subscribe-form .input-box .validation-advice {
  top: 0;
  left: -150%;
  margin-top: 1px;
}

/** CUSTOMER LOGIN **/
/* line 2, ../../default/scss/module/_customer.scss */
.account-login .messages {
  margin: 10px 0;
}

/* line 3, ../../default/scss/module/_customer.scss */
.account-login .new-users,
.account-login .registered-users {
  margin: 100px 0 0;
}

/* line 5, ../../default/scss/module/_customer.scss */
.account-login .registered-users .content,
.account-login .new-users .content {
  padding: 8% 14%;
}

/* line 7, ../../default/scss/module/_customer.scss */
.account-login .registered-users .content .input-text {
  width: calc(100% - 16px);
}

/* line 8, ../../default/scss/module/_customer.scss */
.account-login .new-users .buttons-set .button {
  float: left;
}

/* line 9, ../../default/scss/module/_customer.scss */
.account-login h2 {
  font-size: 16px;
  font-family: Arial, sans-serif, serif;
  font-weight: bold;
  text-align: center;
  text-transform: none;
}

/* line 10, ../../default/scss/module/_customer.scss */
.account-login .login-desc {
  display: none;
}

/* line 11, ../../default/scss/module/_customer.scss */
.account-login .forgot-link {
  margin-left: 14%;
}

/* line 13, ../../default/scss/module/_customer.scss */
.account-login .buttons-set {
  text-align: center;
}

/* line 14, ../../default/scss/module/_customer.scss */
.account-login #button-create-account {
  display: inline-block;
  float: none !important;
  overflow: hidden;
}

/* line 15, ../../default/scss/module/_customer.scss */
.account-login #button-create-account span {
  text-align: center;
}

/* line 17, ../../default/scss/module/_customer.scss */
.customer-account-login #admin_messages {
  background: #F5DAD3 url("../images/i_msg-error.png") no-repeat 25px center;
  color: #c02230;
  margin: 16px 0 0;
  padding: 25px 25px 25px 80px;
}

/** ACCOUNT CREATION **/
/* line 20, ../../default/scss/module/_customer.scss */
.account-create .siret-container {
  margin: 2%;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background-color: #DDD;
}

/* line 21, ../../default/scss/module/_customer.scss */
.account-create .siret-container .siret-validation {
  float: right;
}

/* line 22, ../../default/scss/module/_customer.scss */
.account-create .privacy-policy {
  text-decoration: underline;
}

/* line 23, ../../default/scss/module/_customer.scss */
.account-create .conditions {
  margin: 2%;
  font-weight: bold;
}

/* line 25, ../../default/scss/module/_customer.scss */
.entreprise-form-type-container {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin: 0;
}

/* line 26, ../../default/scss/module/_customer.scss */
.entreprise-form-type-container li.control {
  display: inline-block;
  background-color: #FFF;
  margin-bottom: 15px;
}

/* line 27, ../../default/scss/module/_customer.scss */
.entreprise-form-type-container li.control label,
.entreprise-form-type-container li.control a.forgot-pwd-link {
  background-color: #EEE;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  height: 100px;
  width: 100px;
  padding: 15px;
  position: relative;
  font-weight: normal;
  font-size: 1.1em;
  margin: 0;
}

/* line 29, ../../default/scss/module/_customer.scss */
.entreprise-form-type-container li.control a.forgot-pwd-link:hover {
  color: inherit;
}

/* line 30, ../../default/scss/module/_customer.scss */
.entreprise-form-type-container li.control span.type-legend {
  position: absolute;
  top: 90px;
  width: 92%;
  left: 4%;
}

/* line 31, ../../default/scss/module/_customer.scss */
.entreprise-form-type-container li.control span.bg-type {
  overflow: hidden;
  margin: 10% auto 5%;
  display: block;
  background-image: url("../images/sprite-bg-type-account.png");
  background-repeat: no-repeat;
}

/* line 32, ../../default/scss/module/_customer.scss */
.entreprise-form-type-container li.control label span.type-user {
  width: 62px;
  height: 44px;
  background-position: -168px 0;
}

/* line 33, ../../default/scss/module/_customer.scss */
.entreprise-form-type-container li.control input[type="radio"]:checked + label span.type-user {
  background-position: -168px -45px;
}

/* line 34, ../../default/scss/module/_customer.scss */
.entreprise-form-type-container li.control label span.type-doc {
  background-position: 0 0;
  width: 32px;
  height: 60px;
}

/* line 35, ../../default/scss/module/_customer.scss */
.entreprise-form-type-container li.control input[type="radio"]:checked + label span.type-doc {
  background-position: 0 -60px !important;
}

/* line 36, ../../default/scss/module/_customer.scss */
.entreprise-form-type-container li.control label span.type-customer {
  width: 70px;
  height: 49px;
  background-position: -32px 0;
}

/* line 37, ../../default/scss/module/_customer.scss */
.entreprise-form-type-container li.control input[type="radio"]:checked + label span.type-customer {
  background-position: -32px -49px;
}

/* line 38, ../../default/scss/module/_customer.scss */
.entreprise-form-type-container li.control input + label.actif span.type-customer {
  background-position: -32px -49px;
}

/* line 39, ../../default/scss/module/_customer.scss */
.entreprise-form-type-container li.control label span.type-comptant {
  height: 44px;
  width: 64px;
  background-position: -103px 0;
}

/* line 40, ../../default/scss/module/_customer.scss */
.entreprise-form-type-container li.control input[type="radio"]:checked + label span.type-comptant {
  background-position: -103px -44px;
}

/* line 41, ../../default/scss/module/_customer.scss */
.entreprise-form-type-container li.control a span.type-forgot-password {
  height: 46px;
  width: 56px;
  background-position: -230px 0;
}

/* line 42, ../../default/scss/module/_customer.scss */
.entreprise-form-type-container .form-list li.control input {
  display: none;
}

/* line 44, ../../default/scss/module/_customer.scss */
.entreprise-form-type-container li.control input[type="radio"]:checked + label,
.entreprise-form-type-container li.control label.actif {
  color: #FFF;
  background-color: #1d1d1b;
}

/* line 47, ../../default/scss/module/_customer.scss */
.modal-body .b2baccount-create ul.messages {
  display: inline-block;
}

/* line 48, ../../default/scss/module/_customer.scss */
.b2baccount-create .wrapper-form {
  margin-top: 4%;
}

/* line 50, ../../default/scss/module/_customer.scss */
.b2baccount-create .city_list_item {
  position: relative;
}

/* line 51, ../../default/scss/module/_customer.scss */
.b2baccount-create #city_list_container {
  float: left;
  background-color: #FFF;
  position: absolute;
  top: -40px;
  width: 248px;
  padding: 12px 8px;
  border: 2px solid #e83e30;
  z-index: 9;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

/* line 52, ../../default/scss/module/_customer.scss */
.b2baccount-create #city_list_container p {
  padding: 0 12px 8px;
  font-weight: bold;
  color: #1d1d1b;
}

/* line 53, ../../default/scss/module/_customer.scss */
.b2baccount-create #city_list_container ul {
  border-top: 1px solid #CCC;
  max-height: 200px;
  overflow: scroll;
  overflow-x: hidden;
}

/* line 54, ../../default/scss/module/_customer.scss */
.b2baccount-create #city_list_container li {
  background-color: #EEE;
  margin: 0;
  padding: 10px;
  border-bottom: 1px solid #CCC;
  cursor: pointer;
}

/* line 55, ../../default/scss/module/_customer.scss */
.b2baccount-create #city_list_container li:hover {
  background-color: #F5F5F5;
}

/* line 57, ../../default/scss/module/_customer.scss */
.b2baccount-create .siret-container label {
  display: inline-block;
  line-height: 32px;
}

/* line 58, ../../default/scss/module/_customer.scss */
.b2baccount-create .siret-container label + .input-box {
  display: inline-block;
  margin-left: 15px;
}

/* line 59, ../../default/scss/module/_customer.scss */
.b2baccount-create .siret-container button {
  display: inline-block;
  vertical-align: top;
  display: none;
}

/* line 60, ../../default/scss/module/_customer.scss */
.b2baccount-create .siret-container {
  padding: 2% 2% 1%;
}

/* line 61, ../../default/scss/module/_customer.scss */
.b2baccount-create .col2-set {
  padding: 2%;
  margin-top: 0;
}

/* line 62, ../../default/scss/module/_customer.scss */
.b2baccount-create .col2-set .col-2 {
  padding-left: 2%;
  width: 46%;
}

/* line 63, ../../default/scss/module/_customer.scss */
.b2baccount-create .col2-set .col-1 {
  border-right: 2px solid #DDD;
  width: 48%;
}

/* line 64, ../../default/scss/module/_customer.scss */
.b2baccount-create #agence-wrapper.loading {
  background: url(../images/loader_16x16.gif) no-repeat 85px 25px;
}

/* line 65, ../../default/scss/module/_customer.scss */
.b2baccount-create #agence-wrapper.loading .field {
  opacity: 0.2;
}

/* line 66, ../../default/scss/module/_customer.scss */
.b2baccount-create #entreprise-form-unknown-steps:before {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 13px;
  height: 16px;
  background-image: url(../images/sprite-default.png);
  background-position: -467px -13px;
  margin-right: 5px;
}

/* line 67, ../../default/scss/module/_customer.scss */
.b2baccount-create #agence_advertiser {
  color: #e83e30;
}

/* line 68, ../../default/scss/module/_customer.scss */
.b2baccount-create #vdb-form-user.col2-set .col-1 {
  border-right: none;
}

/* line 71, ../../default/scss/module/_customer.scss */
.b2baccount-create .buttons-set {
  float: left;
  border-top: 2px solid #DDD;
  margin-top: 5%;
  padding-top: 4%;
  width: 100%;
}

/* line 73, ../../default/scss/module/_customer.scss */
.b2b-tooltip {
  position: absolute;
  padding: 6px 10px;
}

/* line 74, ../../default/scss/module/_customer.scss */
.b2b-tooltip:after {
  content: '';
  width: 16px;
  height: 10px;
  background: url(../images/arrow-down.png) no-repeat 0 0;
  position: absolute;
  bottom: -10px;
  left: 55px;
}

/* line 75, ../../default/scss/module/_customer.scss */
.b2b-tooltip {
  background: #FFF;
  border: 1px solid #CCC;
  color: #1d1d1b;
}

/** FORGOTTEN PASSWORD **/
/* line 78, ../../default/scss/module/_customer.scss */
.customer-account-forgotpassword #form-validate,
.customer-account-resetpassword #form-validate {
  display: block;
  padding: 2%;
  width: 50%;
  margin: 4% auto;
  background-color: #EEE;
  border: 1px solid #CCC;
}

/* line 80, ../../default/scss/module/_customer.scss */
.customer-account-forgotpassword #form-validate p,
.customer-account-resetpassword #form-validate p {
  font-size: 13px;
  margin: 0 0 8px;
}

/* line 82, ../../default/scss/module/_customer.scss */
.customer-account-forgotpassword #form-validate p.back-link,
.customer-account-resetpassword #form-validate p.back-link {
  display: none;
}

/*** ACCOUNT ***/
/* line 86, ../../default/scss/module/_customer.scss */
.block-account {
  margin: 1% 0;
}

/* line 87, ../../default/scss/module/_customer.scss */
.block-account .block-content {
  padding: 0;
}

/* line 88, ../../default/scss/module/_customer.scss */
.block-account ul {
  overflow: hidden;
}

/* line 89, ../../default/scss/module/_customer.scss */
.block-account li {
  float: left;
  width: 11.3%;
  min-width: 103px;
  text-align: center;
  border: 1px solid #CCC;
  position: relative;
  background-color: #FFF;
  margin: 0.5%;
}

/* line 90, ../../default/scss/module/_customer.scss */
.block-account li.last {
  border: 1px solid #CCC;
}

/* line 91, ../../default/scss/module/_customer.scss */
.block-account li a {
  background: #FFF;
}

/* line 92, ../../default/scss/module/_customer.scss */
.block-account li.current {
  background: none;
}

/* line 93, ../../default/scss/module/_customer.scss */
.block-account li.current,
.block-account li a {
  height: 130px;
  padding: 0;
  font-size: 13px;
  vertical-align: top;
  line-height: 20px;
}

/* line 95, ../../default/scss/module/_customer.scss */
.block-account li.current {
  border-color: #454540;
}

/* line 96, ../../default/scss/module/_customer.scss */
.block-account li.current,
.block-account li a:hover {
  color: #FFF;
  background-color: #454540;
}

/* line 98, ../../default/scss/module/_customer.scss */
.block-account li .account-icon {
  margin-top: 21px;
}

/* line 99, ../../default/scss/module/_customer.scss */
.block-account li .account-menu-label {
  position: absolute;
  bottom: 8px;
  display: block;
  width: 94%;
  margin: 0 3% 0;
  line-height: 16px;
}

@media only screen and (max-width: 1050px) {
  /* line 102, ../../default/scss/module/_customer.scss */
  .block-account li {
    width: 13%;
  }
}
@media only screen and (max-width: 979px) {
  /* line 105, ../../default/scss/module/_customer.scss */
  .block-account li {
    width: 15.3%;
  }
}
@media only screen and (max-width: 770px) {
  /* line 108, ../../default/scss/module/_customer.scss */
  .block-account li {
    width: 23.3%;
  }
}
@media only screen and (max-width: 479px) {
  /* line 111, ../../default/scss/module/_customer.scss */
  .block-account li {
    width: 31.3%;
  }
}
/* line 114, ../../default/scss/module/_customer.scss */
.my-account .approv-title {
  display: none;
}

/* line 115, ../../default/scss/module/_customer.scss */
.block-account .sprite {
  background-image: url("../images/sprite.png");
  background-repeat: no-repeat;
  display: inline-block;
  *display: inline;
}

/* line 116, ../../default/scss/module/_customer.scss */
.spr-account-account {
  width: 48px;
  height: 50px;
  background-position: -425px -56px;
}

/* line 117, ../../default/scss/module/_customer.scss */
.block-account li.current .spr-account-account,
.block-account li:hover .spr-account-account {
  background-position: -425px -106px;
}

/* line 119, ../../default/scss/module/_customer.scss */
.spr-account-account_edit {
  width: 52px;
  height: 52px;
  background-position: -474px -56px;
}

/* line 120, ../../default/scss/module/_customer.scss */
.block-account li.current .spr-account-account_edit,
.block-account li:hover .spr-account-account_edit {
  background-position: -474px -108px;
}

/* line 122, ../../default/scss/module/_customer.scss */
.spr-account-contact_manage {
  width: 48px;
  height: 48px;
  background-position: -821px -56px;
}

/* line 123, ../../default/scss/module/_customer.scss */
.block-account li.current .spr-account-contact_manage,
.block-account li:hover .spr-account-contact_manage {
  background-position: -821px -104px;
}

/* line 125, ../../default/scss/module/_customer.scss */
.spr-account-orderHistory {
  width: 48px;
  height: 56px;
  background-position: -572px -56px;
}

/* line 126, ../../default/scss/module/_customer.scss */
.block-account li.current .spr-account-orderHistory,
.block-account li:hover .spr-account-orderHistory {
  background-position: -572px -112px;
}

/* line 128, ../../default/scss/module/_customer.scss */
.spr-account-gcOrderHistory {
  width: 48px;
  height: 56px;
  background-position: -572px -56px;
}

/* line 129, ../../default/scss/module/_customer.scss */
.block-account li.current .spr-account-gcOrderHistory,
.block-account li:hover .spr-account-gcOrderHistory {
  background-position: -572px -112px;
}

/* line 131, ../../default/scss/module/_customer.scss */
.spr-account-quoterequest {
  width: 50px;
  height: 56px;
  background-position: -721px -56px;
}

/* line 132, ../../default/scss/module/_customer.scss */
.block-account li.current .spr-account-quoterequest,
.block-account li:hover .spr-account-quoterequest {
  background-position: -721px -114px;
}

/* line 134, ../../default/scss/module/_customer.scss */
.spr-account-purchaserequest_history {
  width: 48px;
  height: 45px;
  background-position: -919px -56px;
}

/* line 135, ../../default/scss/module/_customer.scss */
.spr-account-wishlist {
  width: 48px;
  height: 48px;
  background-position: -673px -56px;
}

/* line 136, ../../default/scss/module/_customer.scss */
.block-account li.current .spr-account-wishlist,
.block-account li:hover .spr-account-wishlist {
  background-position: -673px -104px;
}

/* line 138, ../../default/scss/module/_customer.scss */
.spr-account-entreprise {
  width: 11px;
  height: 15px;
  background-position: -346px -17px;
}

/* line 139, ../../default/scss/module/_customer.scss */
.block-account li.current .spr-account-entreprise,
.block-account li:hover .spr-account-entreprise {
  background-position: -346px -32px;
}

/* line 141, ../../default/scss/module/_customer.scss */
.spr-account-checkout, .spr-account-vdb_expresscheckout_open {
  width: 52px;
  height: 40px;
  background-position: -621px -56px;
}

/* line 142, ../../default/scss/module/_customer.scss */
.block-account li.current .spr-account-checkout,
.block-account li:hover .spr-account-checkout {
  background-position: -621px -96px;
}

/* line 144, ../../default/scss/module/_customer.scss */
.spr-account-address_book {
  width: 44px;
  height: 60px;
  background-position: -527px -56px;
}

/* line 145, ../../default/scss/module/_customer.scss */
.block-account li.current .spr-account-address_book,
.block-account li:hover .spr-account-address_book {
  background-position: -527px -116px;
}

/* line 147, ../../default/scss/module/_customer.scss */
.spr-account-dnc_customreference {
  width: 50px;
  height: 56px;
  background-position: -721px -56px;
}

/* line 148, ../../default/scss/module/_customer.scss */
.block-account li.current .spr-account-dnc_customreference,
.block-account li:hover .spr-account-dnc_customreference {
  background-position: -721px -112px;
}

/* line 150, ../../default/scss/module/_customer.scss */
.spr-account-dnc_newsletter {
  width: 52px;
  height: 37px;
  background-position: -1022px -56px;
}

/* line 151, ../../default/scss/module/_customer.scss */
.block-account li.current .spr-account-dnc_newsletter,
.block-account li:hover .spr-account-dnc_newsletter {
  background-position: -1022px -104px;
}

/* line 153, ../../default/scss/module/_customer.scss */
.spr-account-vdb_purchaserequest_to_validate {
  width: 50px;
  height: 48px;
  background-position: -1130px -56px;
}

/* line 154, ../../default/scss/module/_customer.scss */
.block-account li.current .spr-account-vdb_purchaserequest_to_validate,
.block-account li:hover .spr-account-vdb_purchaserequest_to_validate {
  background-position: -1130px -104px;
}

/* line 156, ../../default/scss/module/_customer.scss */
.spr-account-vdb_mypurchaserequest {
  width: 56px;
  height: 48px;
  background-position: -1074px -56px;
}

/* line 157, ../../default/scss/module/_customer.scss */
.block-account li.current .spr-account-vdb_mypurchaserequest,
.block-account li:hover .spr-account-vdb_mypurchaserequest {
  background-position: -1074px -104px;
}

/* line 159, ../../default/scss/module/_customer.scss */
.spr-account-manage_order_references {
  width: 58px;
  height: 48px;
  background-position: -1180px -56px;
}

/* line 160, ../../default/scss/module/_customer.scss */
.block-account li.current .spr-account-manage_order_references,
.block-account li:hover .spr-account-manage_order_references {
  background-position: -1180px -104px;
}

/* line 163, ../../default/scss/module/_customer.scss */
.spr-account-invoiceHistory {
  width: 42px;
  height: 48px;
  background-position: -1238px -56px;
}

/* line 164, ../../default/scss/module/_customer.scss */
.block-account li.current .spr-account-invoiceHistory,
.block-account li:hover .spr-account-invoiceHistory {
  background-position: -1238px -104px;
}

/* line 167, ../../default/scss/module/_customer.scss */
.spr-icon-cross {
  width: 16px;
  height: 16px;
  background-position: -432px -18px;
  line-height: 13px;
}

/* line 169, ../../default/scss/module/_customer.scss */
.button-icon {
  background: none;
  border: 0;
  color: #1d1d1b;
  font-weight: normal;
  font-size: 18px;
}

@media only screen and (max-width: 768px) {
  /* line 178, ../../default/scss/module/_customer.scss */
  .b2baccount-create .col2-set .col-1,
  .b2baccount-create .col2-set .col-2 {
    border-right: none;
    width: 100%;
    text-align: center;
  }
  /* line 183, ../../default/scss/module/_customer.scss */
  .b2baccount-create .col2-set .col-1.col-2,
  .b2baccount-create .col2-set .col-2.col-2 {
    margin-top: 10%;
  }
  /* line 186, ../../default/scss/module/_customer.scss */
  .b2baccount-create .col2-set .col-1 .form-list,
  .b2baccount-create .col2-set .col-2 .form-list {
    display: inline-block;
  }

  /* line 191, ../../default/scss/module/_customer.scss */
  .my-account .page-title h1 {
    text-align: center;
  }
}
/*** DASHBOARD ***/
/* line 197, ../../default/scss/module/_customer.scss */
.my-account .dashboard .column-1,
.my-account .dashboard .column-2 {
  background-color: #FFF;
  width: 49%;
  margin: 0 2% 0 0;
  float: left;
}
/* line 204, ../../default/scss/module/_customer.scss */
.my-account .dashboard .column-1 .col-box,
.my-account .dashboard .column-2 .col-box {
  margin: 0 0 4%;
}
/* line 207, ../../default/scss/module/_customer.scss */
.my-account .dashboard .column-1 .col-box .info-box,
.my-account .dashboard .column-2 .col-box .info-box {
  overflow: hidden;
  border: 1px solid #AAA;
  margin: 0;
}
/* line 212, ../../default/scss/module/_customer.scss */
.my-account .dashboard .column-1 .col-box .info-box .box-title,
.my-account .dashboard .column-2 .col-box .info-box .box-title {
  background-color: #454540;
  color: #FFF;
  margin: 0;
  padding: 2%;
  font-size: 13px;
  font-weight: bold;
}
/* line 219, ../../default/scss/module/_customer.scss */
.my-account .dashboard .column-1 .col-box .info-box .box-title a,
.my-account .dashboard .column-2 .col-box .info-box .box-title a {
  color: #FFF;
  float: right;
}
/* line 224, ../../default/scss/module/_customer.scss */
.my-account .dashboard .column-1 .col-box .info-box .box-content,
.my-account .dashboard .column-2 .col-box .info-box .box-content {
  padding: 2%;
  overflow: hidden;
}
/* line 233, ../../default/scss/module/_customer.scss */
.my-account .dashboard .column-1 .name,
.my-account .dashboard .column-1 .email {
  display: block;
  font-size: 21px;
  line-height: 26px;
  font-weight: bold;
  padding: 0 16px;
  font-family: Arial, sans-serif;
}
/* line 243, ../../default/scss/module/_customer.scss */
.my-account .dashboard .column-1 .name {
  margin-top: 16px;
}
/* line 246, ../../default/scss/module/_customer.scss */
.my-account .dashboard .column-1 .email {
  font-size: 15px;
  font-weight: normal;
}
/* line 251, ../../default/scss/module/_customer.scss */
.my-account .dashboard .column-1 .change-password {
  float: right;
  color: #e83e30;
  font-weight: bold;
}
/* line 258, ../../default/scss/module/_customer.scss */
.my-account .dashboard .column-2 {
  margin: 0;
}
@media only screen and (max-width: 768px) {
  /* line 263, ../../default/scss/module/_customer.scss */
  .my-account .dashboard .column-1,
  .my-account .dashboard .column-2 {
    width: 98%;
    margin: 0 1%;
  }
}
/* line 268, ../../default/scss/module/_customer.scss */
.my-account .sub-title a {
  color: #FFF;
}
/* line 269, ../../default/scss/module/_customer.scss */
.my-account .welcome-msg {
  display: none;
}

/*** ORDER HISTORY ***/
/* line 275, ../../default/scss/module/_customer.scss */
.orderhistory .orderhistory-filter {
  overflow: hidden;
  background-color: #F7F7F7;
  border: 2px solid #CCC;
  margin: 0 0 16px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
/* line 282, ../../default/scss/module/_customer.scss */
.orderhistory .orderhistory-filter .filter-block {
  width: 27%;
  float: left;
  text-align: center;
}
/* line 287, ../../default/scss/module/_customer.scss */
.orderhistory .orderhistory-filter .filter-block .filter-block-content {
  height: 90px;
  padding: 12px;
  border-right: 2px solid #CCC;
}
/* line 292, ../../default/scss/module/_customer.scss */
.orderhistory .orderhistory-filter .filter-block .filter-block-content .field-block {
  overflow: hidden;
  line-height: 26px;
  margin: 0 0 8px;
}
/* line 297, ../../default/scss/module/_customer.scss */
.orderhistory .orderhistory-filter .filter-block .filter-block-content .field-block label {
  max-width: 105px;
  white-space: nowrap;
  float: left;
  display: block;
}
/* line 304, ../../default/scss/module/_customer.scss */
.orderhistory .orderhistory-filter .filter-block .filter-block-content .field-block input {
  height: 26px;
  padding: 0 5px;
  border: 1px solid #CCC;
  float: right;
  width: 48%;
}
/* line 313, ../../default/scss/module/_customer.scss */
.orderhistory .orderhistory-filter .filter-block .filter-block-content .field-block.date label {
  float: left;
  display: block;
  width: 75px;
}
/* line 319, ../../default/scss/module/_customer.scss */
.orderhistory .orderhistory-filter .filter-block .filter-block-content .field-block.date input {
  float: left;
}
/* line 321, ../../default/scss/module/_customer.scss */
.orderhistory .orderhistory-filter .filter-block .filter-block-content .field-block.date > span {
  float: left;
  padding: 0 8px;
}
/* line 327, ../../default/scss/module/_customer.scss */
.orderhistory .orderhistory-filter .filter-block .filter-block-content .field-block.selector select {
  float: right;
}
/* line 330, ../../default/scss/module/_customer.scss */
.orderhistory .orderhistory-filter .filter-block .filter-block-content .btn-search {
  margin: 12px 0 0;
}
/* line 333, ../../default/scss/module/_customer.scss */
.orderhistory .orderhistory-filter .filter-block .filter-block-content .btn-search span span {
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
}
/* line 341, ../../default/scss/module/_customer.scss */
.orderhistory .orderhistory-filter .filter-block.last .filter-block-content {
  border: 0;
}
/* line 345, ../../default/scss/module/_customer.scss */
.orderhistory .orderhistory-filter .filter-block.two {
  width: 29%;
}
/* line 346, ../../default/scss/module/_customer.scss */
.orderhistory .orderhistory-filter .filter-block.last {
  width: 17%;
}
/* line 350, ../../default/scss/module/_customer.scss */
.orderhistory .orderhistory-pagination {
  margin-top: 8px;
  padding: 8px;
}
@media only screen and (max-width: 1260px) {
  /* line 356, ../../default/scss/module/_customer.scss */
  .orderhistory .orderhistory-filter {
    padding: 12px;
  }
  /* line 359, ../../default/scss/module/_customer.scss */
  .orderhistory .orderhistory-filter .filter-block {
    width: 100%;
  }
  /* line 362, ../../default/scss/module/_customer.scss */
  .orderhistory .orderhistory-filter .filter-block .filter-block-content {
    padding: 0;
    height: auto;
    border: 0;
  }
  /* line 367, ../../default/scss/module/_customer.scss */
  .orderhistory .orderhistory-filter .filter-block .filter-block-content .field-block {
    padding: 8px;
  }
  /* line 370, ../../default/scss/module/_customer.scss */
  .orderhistory .orderhistory-filter .filter-block .filter-block-content .field-block.date label,
  .orderhistory .orderhistory-filter .filter-block .filter-block-content .field-block label {
    float: left;
    width: 25%;
    text-align: left;
  }
  /* line 372, ../../default/scss/module/_customer.scss */
  .orderhistory .orderhistory-filter .filter-block .filter-block-content .field-block.selector select,
  .orderhistory .orderhistory-filter .filter-block .filter-block-content .field-block input {
    float: left;
    margin: 0 0 0 8px;
  }
  /* line 375, ../../default/scss/module/_customer.scss */
  .orderhistory .orderhistory-filter .filter-block .filter-block-content .field-block:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.1);
  }
  /* line 378, ../../default/scss/module/_customer.scss */
  .orderhistory .orderhistory-filter .filter-block .filter-block-content .btn-search {
    margin: 0;
  }
}

/** ORDER DETAIL **/
/* line 388, ../../default/scss/module/_customer.scss */
.dnc-orderhistory-index-details .order-data {
  background-color: #F7F7F7;
  border: 1px dashed #AAA;
  padding: 14px;
  font-size: 14px;
  line-height: 25px;
}
/* line 395, ../../default/scss/module/_customer.scss */
.dnc-orderhistory-index-details .order-data p {
  margin: 4px 0;
}
/* line 399, ../../default/scss/module/_customer.scss */
.dnc-orderhistory-index-details .order-data .label {
  font-weight: bold;
}
/* line 403, ../../default/scss/module/_customer.scss */
.dnc-orderhistory-index-details .order-data .value {
  font-style: italic;
}
/* line 408, ../../default/scss/module/_customer.scss */
.dnc-orderhistory-index-details h3 {
  margin: 16px 0;
  font-weight: bold;
}
/* line 414, ../../default/scss/module/_customer.scss */
.dnc-orderhistory-index-details #my-orderhistorydetails-table .invoice-link {
  font-weight: bold;
  color: #1d1d1b;
}
/* line 417, ../../default/scss/module/_customer.scss */
.dnc-orderhistory-index-details .buttons-set button.button {
  float: left;
  margin-bottom: 0;
}

/** ACCOUNT EDIT **/
/* line 426, ../../default/scss/module/_customer.scss */
.customer-account-edit .my-account #form-validate {
  display: block;
}
/* line 429, ../../default/scss/module/_customer.scss */
.customer-account-edit .my-account #form-validate .fieldset {
  padding: 16px;
  background-color: #F7F7F7;
}

/** ADDRESS BOOK **/
/* line 440, ../../default/scss/module/_customer.scss */
.customer-address-index .my-account .actions {
  padding: 16px;
}
@media only screen and (max-width: 770px) {
  /* line 447, ../../default/scss/module/_customer.scss */
  .customer-address-index #my-address-table tr {
    float: left;
    width: 31.3%;
    border-bottom: 0 !important;
    margin: 1%;
    background-color: #EEE !important;
  }
  /* line 454, ../../default/scss/module/_customer.scss */
  .customer-address-index #my-address-table tr td {
    padding: 2px;
  }
}
@media only screen and (max-width: 599px) {
  /* line 462, ../../default/scss/module/_customer.scss */
  .customer-address-index #my-address-table tr {
    width: 48%;
  }
}

/** CUSTOM REFERENCE **/
/* line 471, ../../default/scss/module/_customer.scss */
.customreference-customreference-index #customreference_form_main {
  display: block;
  background: #F7F7F7;
  padding: 16px;
  border: 1px solid #CCC;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
/* line 478, ../../default/scss/module/_customer.scss */
.customreference-customreference-index #customreference_form_main .form-list .field {
  margin: 0;
  width: auto;
}
/* line 482, ../../default/scss/module/_customer.scss */
.customreference-customreference-index #customreference_form_main .form-list .field .input-box {
  margin: 5px;
}
/* line 484, ../../default/scss/module/_customer.scss */
.customreference-customreference-index #customreference_form_main .form-list .field .button {
  margin: 0 8px;
}
/* line 492, ../../default/scss/module/_customer.scss */
.customreference-customreference-index .customreference-list .form-list {
  width: 100%;
}
/* line 495, ../../default/scss/module/_customer.scss */
.customreference-customreference-index .customreference-list .form-list tr.odd {
  background-color: #F7F7F7;
}
/* line 497, ../../default/scss/module/_customer.scss */
.customreference-customreference-index .customreference-list .form-list .field {
  width: auto;
  margin: 0;
}
/* line 501, ../../default/scss/module/_customer.scss */
.customreference-customreference-index .customreference-list .form-list .field label {
  margin: 5px;
  width: 194px;
  line-height: 32px;
  font-size: 14px;
  color: #1d1d1b;
}
/* line 502, ../../default/scss/module/_customer.scss */
.customreference-customreference-index .customreference-list .form-list .field input {
  margin: 5px;
}
/* line 505, ../../default/scss/module/_customer.scss */
.customreference-customreference-index .customreference-list .form-list .button-icon {
  margin: 0 16px;
  line-height: 42px;
}
/* line 508, ../../default/scss/module/_customer.scss */
.customreference-customreference-index .customreference-list .form-list .button-icon span {
  vertical-align: middle;
}
/* line 510, ../../default/scss/module/_customer.scss */
.customreference-customreference-index .customreference-list .form-list .button-icon span.label {
  font-size: 13px;
  margin: 0 4px;
}
/* line 517, ../../default/scss/module/_customer.scss */
.customreference-customreference-index .customreference-pagination .button {
  margin: 5px 0;
}

/*** ORDER REF ***/
/* line 522, ../../default/scss/module/_customer.scss */
.order-references {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  flex-grow: 1;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  margin-bottom: 15px;
  overflow: hidden;
}
/* line 531, ../../default/scss/module/_customer.scss */
.order-references .controller {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
/* line 535, ../../default/scss/module/_customer.scss */
.order-references .controller span {
  display: flex;
  flex-direction: row;
}
/* line 538, ../../default/scss/module/_customer.scss */
.order-references .controller span.search {
  min-width: 25%;
}
/* line 540, ../../default/scss/module/_customer.scss */
.order-references .controller span.search button.clearSearch {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
/* line 544, ../../default/scss/module/_customer.scss */
.order-references .controller span.modify {
  flex-grow: 1;
}
/* line 549, ../../default/scss/module/_customer.scss */
.order-references .scroll-box {
  display: flex;
  flex-direction: row;
  overflow-y: auto;
  max-height: 640px;
}
/* line 554, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  font-size: 12px;
}
/* line 560, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
/* line 565, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .overlay {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
  backdrop-filter: blur(2px);
}
/* line 578, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .overlay .loading {
  display: none;
  flex-direction: row;
}
/* line 581, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .overlay .loading > p {
  margin-left: 5px;
}
/* line 585, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .overlay .confirmation {
  display: none;
  flex-direction: column;
  padding: 15px;
  background-color: white;
  border-radius: 3px;
  box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.75);
}
/* line 592, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .overlay .confirmation > p, .order-references .scroll-box .scroll-content .reference .overlay .confirmation h3 {
  margin: 0 5px;
}
/* line 595, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .overlay .confirmation > span {
  display: flex;
  flex-direction: row;
}
/* line 598, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .overlay .confirmation > span > button {
  margin: 5px;
}
/* line 605, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference.requested .overlay {
  display: flex;
}
/* line 607, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference.requested .overlay .loading {
  display: flex;
}
/* line 613, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference.questioned .overlay {
  display: flex;
}
/* line 615, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference.questioned .overlay .confirmation {
  display: flex;
}
/* line 620, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .header {
  display: flex;
  flex-direction: row;
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 0.5);
}
/* line 625, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .header button.expand i.less {
  display: none;
}
/* line 628, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .header button.expand i.more {
  display: inline-block;
}
/* line 632, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .header input[type="text"] {
  flex-grow: 1;
}
/* line 636, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .options {
  display: flex;
  flex-direction: column;
  padding: 15px;
  box-shadow: inset 0 -3px 5px rgba(0, 0, 0, 0.15);
}
/* line 641, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .options .user, .order-references .scroll-box .scroll-content .reference .options .selector, .order-references .scroll-box .scroll-content .reference .options .creator {
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  overflow: hidden;
}
/* line 646, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .options .user p, .order-references .scroll-box .scroll-content .reference .options .selector p, .order-references .scroll-box .scroll-content .reference .options .creator p {
  flex-grow: 1;
}
/* line 648, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .options .user p span, .order-references .scroll-box .scroll-content .reference .options .selector p span, .order-references .scroll-box .scroll-content .reference .options .creator p span {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  height: 100%;
  padding-right: 10px;
  margin-right: 10px;
  background-color: #e83e30;
  color: white;
}
/* line 661, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .options .selector {
  margin-bottom: 10px;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
/* line 665, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .options .creator {
  background-color: rgba(0, 0, 0, 0.05);
}
/* line 667, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .options .creator:not(:last-child) {
  margin-bottom: 10px;
}
/* line 670, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .options .creator p {
  height: 32px;
}
/* line 674, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .options .user {
  background-color: rgba(0, 0, 0, 0.15);
}
/* line 676, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .options .user p {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  padding-left: 10px;
}
/* line 681, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference .options .user:not(:last-of-type) {
  border-bottom: 1px solid white;
}
/* line 686, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference.collapsed .overlay {
  display: none;
}
/* line 691, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference.collapsed .header button.expand i.less {
  display: inline-block;
}
/* line 694, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference.collapsed .header button.expand i.more {
  display: none;
}
/* line 699, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference.collapsed .options {
  display: none;
}
/* line 703, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
/* line 706, ../../default/scss/module/_customer.scss */
.order-references .scroll-box .scroll-content .reference:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}
/* line 712, ../../default/scss/module/_customer.scss */
.order-references p {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
}
/* line 718, ../../default/scss/module/_customer.scss */
.order-references input {
  border: none;
  background-color: transparent;
  outline: none;
  padding: 10px;
  flex-grow: 1;
}
/* line 725, ../../default/scss/module/_customer.scss */
.order-references i {
  font-size: inherit;
  padding: 10px;
}
/* line 728, ../../default/scss/module/_customer.scss */
.order-references i + input {
  padding-left: 0;
}
/* line 732, ../../default/scss/module/_customer.scss */
.order-references button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-shrink: 0;
  flex-grow: 0;
  border: none;
  background: none;
  outline: none;
}
/* line 741, ../../default/scss/module/_customer.scss */
.order-references button.expand + input {
  padding-left: 0;
}
/* line 745, ../../default/scss/module/_customer.scss */
.order-references button:not([class="expand"]) {
  background: rgba(0, 0, 0, 0.05);
}
/* line 748, ../../default/scss/module/_customer.scss */
.order-references button:not([disabled]):not([class="expand"]):hover {
  background-color: #e83e30;
  color: white;
}
/* line 752, ../../default/scss/module/_customer.scss */
.order-references button[disabled] {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
}

/* line 758, ../../default/scss/module/_customer.scss */
.vdb-requestorder-orderreference-manage-index #order_reference_add_form {
  display: block;
  margin: 0 0 16px;
  background: #F7F7F7;
  padding: 16px;
  border: 1px solid #CCC;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
/* line 765, ../../default/scss/module/_customer.scss */
.vdb-requestorder-orderreference-manage-index #order_reference_add_form .form-list input.input-text {
  width: 254px;
}
/* line 771, ../../default/scss/module/_customer.scss */
.vdb-requestorder-orderreference-manage-index .reference-order-list form input,
.vdb-requestorder-orderreference-manage-index .reference-order-list form .button {
  float: left;
  margin: 4px;
}
/* line 777, ../../default/scss/module/_customer.scss */
.vdb-requestorder-orderreference-manage-index .reference-order-list form input {
  margin-top: 8px;
  width: 254px;
}
/* line 782, ../../default/scss/module/_customer.scss */
.vdb-requestorder-orderreference-manage-index .reference-order-list tr, .vdb-requestorder-orderreference-manage-index .reference-order-list td {
  overflow: hidden;
}
/* line 784, ../../default/scss/module/_customer.scss */
.vdb-requestorder-orderreference-manage-index .reference-order-list .remove-orderef {
  display: block;
  float: left;
}
/* line 789, ../../default/scss/module/_customer.scss */
.vdb-requestorder-orderreference-manage-index .reference-order-list thead th {
  float: left;
  width: 254px;
  margin-right: 10px;
}

/** CONTACTS **/
/* line 800, ../../default/scss/module/_customer.scss */
.xib2bentity-contact-manage-index #my-b2busers-table .table-action {
  max-width: 5%;
  vertical-align: middle;
}
/* line 804, ../../default/scss/module/_customer.scss */
.xib2bentity-contact-manage-index #my-b2busers-table .table-action .button {
  display: block;
  width: 18px;
  margin: 0 auto;
}
/* line 809, ../../default/scss/module/_customer.scss */
.xib2bentity-contact-manage-index #my-b2busers-table .table-action .button span {
  background: none;
  color: #1d1d1b;
  font-size: 18px;
}
/* line 816, ../../default/scss/module/_customer.scss */
.xib2bentity-contact-manage-index #my-b2busers-table .table-action .switcher-container {
  display: block;
  background: #EEE;
  height: 24px;
  width: auto;
  max-width: 124px;
  border: 2px solid #DDD;
  overflow: hidden;
  margin: 0 auto;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.2);
}
/* line 828, ../../default/scss/module/_customer.scss */
.xib2bentity-contact-manage-index #my-b2busers-table .table-action .switcher-container .choice {
  display: block;
  float: left;
  width: 50%;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  line-height: 24px;
  text-transform: none;
  color: #1d1d1b;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
/* line 840, ../../default/scss/module/_customer.scss */
.xib2bentity-contact-manage-index #my-b2busers-table .table-action .switcher-container .choice.active {
  color: #FFF;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
/* line 844, ../../default/scss/module/_customer.scss */
.xib2bentity-contact-manage-index #my-b2busers-table .table-action .switcher-container .choice.active.green {
  background-color: #0A5;
}
/* line 845, ../../default/scss/module/_customer.scss */
.xib2bentity-contact-manage-index #my-b2busers-table .table-action .switcher-container .choice.active.red {
  background-color: #C00;
}
/* line 849, ../../default/scss/module/_customer.scss */
.xib2bentity-contact-manage-index #my-b2busers-table .table-action .switcher-container:hover {
  box-shadow: none;
}
/* line 854, ../../default/scss/module/_customer.scss */
.xib2bentity-contact-manage-index #my-b2busers-table .table-data-cell {
  min-width: 20%;
}
@media only screen and (max-width: 768px) {
  /* line 859, ../../default/scss/module/_customer.scss */
  .xib2bentity-contact-manage-index #my-b2busers-table .table-action {
    float: left;
    max-width: 30.3%;
    text-align: center;
  }
  /* line 864, ../../default/scss/module/_customer.scss */
  .xib2bentity-contact-manage-index #my-b2busers-table .table-action .button {
    width: 18px;
    display: block;
    overflow: hidden;
    margin: 2px auto;
  }
  /* line 874, ../../default/scss/module/_customer.scss */
  .xib2bentity-contact-manage-index .add-link .button {
    display: block;
    width: 98%;
    margin: 0 1%;
  }
  /* line 878, ../../default/scss/module/_customer.scss */
  .xib2bentity-contact-manage-index .add-link .button span {
    float: none;
    text-align: center;
  }
}

/* line 886, ../../default/scss/module/_customer.scss */
.xib2bentity-contact-manage-edit .my-account h3 {
  clear: both;
  color: #1d1d1b;
  font-weight: bold;
  padding: 0 8px;
}
/* line 893, ../../default/scss/module/_customer.scss */
.xib2bentity-contact-manage-edit .my-account .form-list {
  background-color: #F7F7F7;
  float: left;
  position: relative;
  padding: 16px 16px 21px;
  margin: 0 0 16px;
  clear: both;
  border: 1px solid #CCC;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
/* line 903, ../../default/scss/module/_customer.scss */
.xib2bentity-contact-manage-edit .my-account .form-list.permissions-checkbox-list li {
  margin: 0;
  padding: 8px;
}
/* line 907, ../../default/scss/module/_customer.scss */
.xib2bentity-contact-manage-edit .my-account .form-list.permissions-checkbox-list li:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.08);
}
/* line 912, ../../default/scss/module/_customer.scss */
.xib2bentity-contact-manage-edit .my-account .form-list .checkbox-custom-container {
  padding: 0;
  margin: 4px 0;
}
/* line 916, ../../default/scss/module/_customer.scss */
.xib2bentity-contact-manage-edit .my-account .form-list .checkbox-custom-container .label {
  margin-left: 32px;
}
/* line 919, ../../default/scss/module/_customer.scss */
.xib2bentity-contact-manage-edit .my-account .form-list .checkbox-custom-container .label .bold {
  display: block;
  float: left;
  min-width: 250px;
}
/* line 927, ../../default/scss/module/_customer.scss */
.xib2bentity-contact-manage-edit .my-account .form-list input.checkbox {
  display: none;
}

/*** PURCHASE REQUEST ***/
/* line 936, ../../default/scss/module/_customer.scss */
.vdb-purchaserequest-request-view .cart-table tr,
.vdb-purchaserequest-request-approbatorview .cart-table tr {
  margin: 0;
}
/* line 938, ../../default/scss/module/_customer.scss */
.vdb-purchaserequest-request-view .cart-table tr.first td,
.vdb-purchaserequest-request-approbatorview .cart-table tr.first td {
  margin: 0;
  padding: 8px;
}
/* line 940, ../../default/scss/module/_customer.scss */
.vdb-purchaserequest-request-view .cart-table tfoot,
.vdb-purchaserequest-request-approbatorview .cart-table tfoot {
  background-color: #F7F7F7;
}
/* line 942, ../../default/scss/module/_customer.scss */
.vdb-purchaserequest-request-view .cart-table tfoot td,
.vdb-purchaserequest-request-approbatorview .cart-table tfoot td {
  padding: 16px;
}
/* line 944, ../../default/scss/module/_customer.scss */
.vdb-purchaserequest-request-view .cart-table tfoot td.last,
.vdb-purchaserequest-request-approbatorview .cart-table tfoot td.last {
  border: 0;
}

/* line 952, ../../default/scss/module/_customer.scss */
.vdb-purchaserequest-request-approbatorview .buttons-set .btn-cancel,
.vdb-purchaserequest-request-approbatorview .buttons-set .btn-validate,
.vdb-purchaserequest-request-approbatorview .buttons-set .btn-edition {
  float: right;
  margin-left: 8px;
}

@media only screen and (max-width: 768px) {
  /* line 962, ../../default/scss/module/_customer.scss */
  .vdb-purchaserequest-request-approbatorview .buttons-set .back-link {
    float: none;
    margin: 0;
  }
  /* line 964, ../../default/scss/module/_customer.scss */
  .vdb-purchaserequest-request-approbatorview .buttons-set .button,
  .vdb-purchaserequest-request-approbatorview .buttons-set .btn-cancel,
  .vdb-purchaserequest-request-approbatorview .buttons-set .btn-validate,
  .vdb-purchaserequest-request-approbatorview .buttons-set .btn-edition {
    display: block;
    width: 98%;
    overflow: hidden;
    float: none;
    margin: 0 1% 8px;
    text-align: center;
  }
  /* line 975, ../../default/scss/module/_customer.scss */
  .vdb-purchaserequest-request-approbatorview .buttons-set .button span,
  .vdb-purchaserequest-request-approbatorview .buttons-set .btn-cancel span,
  .vdb-purchaserequest-request-approbatorview .buttons-set .btn-validate span,
  .vdb-purchaserequest-request-approbatorview .buttons-set .btn-edition span {
    float: none;
  }
}
/*** NEWSLETTER ***/
/* line 982, ../../default/scss/module/_customer.scss */
#subscribe-form .input-text {
  -moz-border-radius: 3px 0 0 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px 0 0 3px;
}

/* line 987, ../../default/scss/module/_customer.scss */
#newsletter-subscribe-popup .newsletter-container,
.dnc-newsletter-view-index .newsletter-container {
  background-color: #F7F7F7;
  padding: 16px;
  border: 1px solid #CCC;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
/* line 994, ../../default/scss/module/_customer.scss */
#newsletter-subscribe-popup .newsletter-container .newsletter-list li,
.dnc-newsletter-view-index .newsletter-container .newsletter-list li {
  padding: 10px;
  overflow: hidden;
}
/* line 998, ../../default/scss/module/_customer.scss */
#newsletter-subscribe-popup .newsletter-container .newsletter-list li .pix,
.dnc-newsletter-view-index .newsletter-container .newsletter-list li .pix {
  float: left;
  border: 1px solid #BBB;
  margin-right: 8px;
}
/* line 1004, ../../default/scss/module/_customer.scss */
#newsletter-subscribe-popup .newsletter-container .newsletter-list li .newsletter-infos,
.dnc-newsletter-view-index .newsletter-container .newsletter-list li .newsletter-infos {
  overflow: hidden;
}
/* line 1007, ../../default/scss/module/_customer.scss */
#newsletter-subscribe-popup .newsletter-container .newsletter-list li .newsletter-infos .checkbox-custom-container,
.dnc-newsletter-view-index .newsletter-container .newsletter-list li .newsletter-infos .checkbox-custom-container {
  cursor: pointer;
  padding: 0;
}
/* line 1012, ../../default/scss/module/_customer.scss */
#newsletter-subscribe-popup .newsletter-container .newsletter-list li .newsletter-infos .newsletter-label,
.dnc-newsletter-view-index .newsletter-container .newsletter-list li .newsletter-infos .newsletter-label {
  margin: 0 0 0 8px;
  font-weight: bold;
}
/* line 1017, ../../default/scss/module/_customer.scss */
#newsletter-subscribe-popup .newsletter-container .newsletter-list li .newsletter-infos p,
.dnc-newsletter-view-index .newsletter-container .newsletter-list li .newsletter-infos p {
  clear: both;
}
/* line 1020, ../../default/scss/module/_customer.scss */
#newsletter-subscribe-popup .newsletter-container .newsletter-list li input,
.dnc-newsletter-view-index .newsletter-container .newsletter-list li input {
  display: none;
}
/* line 1022, ../../default/scss/module/_customer.scss */
#newsletter-subscribe-popup .newsletter-container .newsletter-list li:nth-child(odd),
.dnc-newsletter-view-index .newsletter-container .newsletter-list li:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.08);
}
/* line 1027, ../../default/scss/module/_customer.scss */
#newsletter-subscribe-popup .how-to-unsubscribe,
.dnc-newsletter-view-index .how-to-unsubscribe {
  font-weight: bold;
  font-style: italic;
  float: left;
  line-height: 40px;
  padding: 0 0 0 16px;
}

/* line 1036, ../../default/scss/module/_customer.scss */
#newsletter-subscribe-popup .newsletter-container {
  background: none;
  border: 0;
  padding: 16px 0 0;
}

/*** PASSWORD REINIT ***/
/* line 1044, ../../default/scss/module/_customer.scss */
.customer-account-changeforgotten #form-validate {
  display: block;
  max-width: 480px;
  margin: 0 auto;
  padding: 16px;
  background-color: #EEE;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #CCC;
}
/* line 1053, ../../default/scss/module/_customer.scss */
.customer-account-changeforgotten #form-validate .form-list .field {
  width: 100%;
}
/* line 1055, ../../default/scss/module/_customer.scss */
.customer-account-changeforgotten #form-validate .form-list .field input.input-text {
  width: 96%;
  padding: 8px;
}

/*** WISHLIST ***/
/* line 1066, ../../default/scss/module/_customer.scss */
.wishlist-index-index .my-wishlist .product-image {
  min-width: 90px;
  margin: 0 auto;
}
/* line 1070, ../../default/scss/module/_customer.scss */
.wishlist-index-index .my-wishlist #wishlist-create-button {
  margin: 8px 0;
}
/* line 1076, ../../default/scss/module/_customer.scss */
.wishlist-index-index .my-wishlist .wishlist-management .move-and-copy {
  background-color: #FFF;
  padding: 0 8px;
  overflow: hidden;
  margin: 16px 0 8px;
}
/* line 1082, ../../default/scss/module/_customer.scss */
.wishlist-index-index .my-wishlist .wishlist-management .move-and-copy strong {
  float: left;
  margin: 16px 0 0;
}
/* line 1086, ../../default/scss/module/_customer.scss */
.wishlist-index-index .my-wishlist .wishlist-management .move-and-copy #wishlists-move,
.wishlist-index-index .my-wishlist .wishlist-management .move-and-copy #wishlists-copy {
  float: left;
  width: 50%;
  text-align: center;
}
/* line 1093, ../../default/scss/module/_customer.scss */
.wishlist-index-index .my-wishlist .wishlist-management .item-count {
  font-size: 14px;
}
/* line 1096, ../../default/scss/module/_customer.scss */
.wishlist-index-index .my-wishlist .wishlist-management .link-edit {
  float: right;
  color: #FFF;
  font-size: 14px;
}
/* line 1104, ../../default/scss/module/_customer.scss */
.wishlist-index-index .my-wishlist .wishlist-management .list-container ul {
  background-color: #FFF;
}
/* line 1107, ../../default/scss/module/_customer.scss */
.wishlist-index-index .my-wishlist .wishlist-management .list-container ul li {
  border-bottom: 1px solid #CCC;
}
/* line 1110, ../../default/scss/module/_customer.scss */
.wishlist-index-index .my-wishlist .wishlist-management .list-container ul li .wishlist-management-row {
  display: flex;
  flex-direction: row;
  padding: 8px;
}
/* line 1114, ../../default/scss/module/_customer.scss */
.wishlist-index-index .my-wishlist .wishlist-management .list-container ul li .wishlist-management-row :not(:last-child) {
  margin-right: 5px;
}
/* line 1118, ../../default/scss/module/_customer.scss */
.wishlist-index-index .my-wishlist .wishlist-management .list-container ul li .wishlist-management-row:hover {
  background-color: #DDD;
}
/* line 1121, ../../default/scss/module/_customer.scss */
.wishlist-index-index .my-wishlist .wishlist-management .list-container ul li .wishlist-management-row.active {
  background-color: #454540;
  color: #FFF;
}
/* line 1129, ../../default/scss/module/_customer.scss */
.wishlist-index-index .my-wishlist #wishlist-table td.last {
  text-align: center;
}
/* line 1130, ../../default/scss/module/_customer.scss */
.wishlist-index-index .my-wishlist #wishlist-table .btn-cross {
  display: inline-block;
}
/* line 1132, ../../default/scss/module/_customer.scss */
.wishlist-index-index .my-wishlist #wishlist-table .btn-cross span {
  background: none;
  color: #1d1d1b;
  font-size: 18px;
}
/* line 1136, ../../default/scss/module/_customer.scss */
.wishlist-index-index .my-wishlist fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/* line 1142, ../../default/scss/module/_customer.scss */
.wishlist-index-index .my-wishlist .buttons-set .button {
  margin: 0 2px 2px 0;
}
/* line 1146, ../../default/scss/module/_customer.scss */
.wishlist-index-index .buttons-set {
  display: none;
}
/* line 1148, ../../default/scss/module/_customer.scss */
.wishlist-index-index .buttons-set.buttons-set2 {
  display: block;
}
/* line 1150, ../../default/scss/module/_customer.scss */
.wishlist-index-index .popup-block .buttons-set {
  display: block;
}

/* line 1157, ../../default/scss/module/_customer.scss */
.my-account .data-table tbody .btn span[class^="icon-"], .my-account .data-table tbody .btn span[class*=" icon-"] {
  font-size: 16px;
}

/* line 1, ../../default/scss/module/_compare.scss */
.sidebar .block-compare {
  margin: 24px 0 0;
}
/* line 6, ../../default/scss/module/_compare.scss */
.sidebar .block-compare .block-content {
  padding: 0;
}
/* line 9, ../../default/scss/module/_compare.scss */
.sidebar .block-compare .block-content .empty {
  padding: 8px;
}
/* line 13, ../../default/scss/module/_compare.scss */
.sidebar .block-compare .block-content .item {
  background-color: #FFF;
  height: 70px;
  padding: 0;
  border-bottom: 1px solid #C7C7C7;
}
/* line 19, ../../default/scss/module/_compare.scss */
.sidebar .block-compare .block-content .item .btn-remove {
  display: block;
  width: 50px;
  height: 70px;
  line-height: 70px;
  border-left: 1px solid #C7C7C7;
  text-align: center;
  background: none;
  font-size: 12px;
  text-indent: 0;
}
/* line 30, ../../default/scss/module/_compare.scss */
.sidebar .block-compare .block-content .item .btn-remove span {
  display: inline;
  float: none;
  background: none;
  color: #000;
}
/* line 38, ../../default/scss/module/_compare.scss */
.sidebar .block-compare .block-content .item .product-name {
  padding: 25px 12px;
  font-weight: bold;
}
/* line 39, ../../default/scss/module/_compare.scss */
.sidebar .block-compare .block-content .item.last {
  border-bottom: 0 none;
}
/* line 42, ../../default/scss/module/_compare.scss */
.sidebar .block-compare .block-content .actions {
  background-color: #E8E8E8;
  margin: 0;
  border: 0 none;
  padding: 12px;
}

/* line 47, ../../default/scss/module/_compare.scss */
#product_comparison thead td {
  text-align: center !important;
}
/* line 50, ../../default/scss/module/_compare.scss */
#product_comparison thead td a {
  color: #FFF;
  font-weight: bold;
}

/* line 3, ../../default/scss/module/_accordion.scss */
.accordion li {
  background: #FFF;
}
/* line 8, ../../default/scss/module/_accordion.scss */
.accordion li.active li {
  background: rgba(0, 0, 0, 0.1);
}

/* line 2, ../../default/scss/module/_customreference.scss */
.customreference-wrapper .customreference-list .form-list .field {
  display: block;
}
/* line 5, ../../default/scss/module/_customreference.scss */
.customreference-wrapper .customreference-list .form-list .field div.input-box + div.input-box {
  margin-top: 5px;
}
/* line 9, ../../default/scss/module/_customreference.scss */
.customreference-wrapper .customreference-list > .form-list > li {
  padding: 1%;
}
/* line 10, ../../default/scss/module/_customreference.scss */
.customreference-wrapper .customreference-list > .form-list > li.even {
  background: #ececec;
}
/* line 11, ../../default/scss/module/_customreference.scss */
.customreference-wrapper .form-list input.input-text {
  width: 180px;
}
/* line 12, ../../default/scss/module/_customreference.scss */
.customreference-wrapper .form-list .form-list li:nth-child(3),
.customreference-wrapper .form-list .form-list li:nth-child(4) {
  width: auto;
  margin: 0 1%;
  display: inline-block;
}
@media only screen and (min-width: 490px) {
  /* line 17, ../../default/scss/module/_customreference.scss */
  .customreference-wrapper .customreference-list .form-list .field {
    display: block;
  }
}

/* line 24, ../../default/scss/module/_customreference.scss */
.header .header-top-search-wrapper #search-select {
  background: #FFF url("../images/select-arrow.gif") 95% center no-repeat;
  width: 163px;
  height: 38px;
  border: 1px solid #CCC;
  padding: 5px;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: '';
  -moz-border-radius: 3px 0 0 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px 0 0 3px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 11px;
}

/* line 1, ../../default/scss/module/_pagination.scss */
.pagination {
  background-color: #F7F7F7;
  margin: 1% auto;
  text-align: center;
  padding: 12px;
  border: 1px solid #CCC;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

/* line 2, ../../default/scss/module/_contacts.scss */
.contacts-index-index .aside {
  float: left;
  width: 31.33%;
  margin-left: 2%;
}
/* line 7, ../../default/scss/module/_contacts.scss */
.contacts-index-index .aside .aside-title {
  color: #1d1d1b;
  font-weight: bold;
  font-size: 16px;
  margin: 0 0 16px;
}
/* line 14, ../../default/scss/module/_contacts.scss */
.contacts-index-index .aside .aside-block {
  margin: 0 0 16px;
}
/* line 17, ../../default/scss/module/_contacts.scss */
.contacts-index-index .aside .aside-block .contact-sidebar-link {
  color: #1d1d1b;
  font-weight: bold;
}
/* line 24, ../../default/scss/module/_contacts.scss */
.contacts-index-index #contactForm {
  float: right;
  width: 35%;
  margin-right: 2%;
}

@media only screen and (max-width: 580px) {
  /* line 33, ../../default/scss/module/_contacts.scss */
  .contacts-index-index .aside {
    width: 100%;
    margin: 0 0 32px;
  }
  /* line 37, ../../default/scss/module/_contacts.scss */
  .contacts-index-index .aside .aside-block {
    width: 31.33%;
    margin: 0 1%;
    float: left;
    text-align: center;
  }
  /* line 45, ../../default/scss/module/_contacts.scss */
  .contacts-index-index #contactForm {
    width: 96%;
    margin: 0 2%;
  }
}
@media only screen and (max-width: 420px) {
  /* line 51, ../../default/scss/module/_contacts.scss */
  .contacts-index-index .aside .aside-block {
    width: 96%;
    margin: 2%;
  }
}
/* line 1, ../../default/scss/module/_cms.scss */
.italic {
  font-style: italic;
}

/* line 6, ../../default/scss/module/_cms.scss */
.panel-description .std ul ul {
  margin-left: 20px;
}

/* line 13, ../../default/scss/module/_cms.scss */
.std {
  font-size: 13px;
  width: 100%;
}
/* line 17, ../../default/scss/module/_cms.scss */
.std ul {
  list-style: disc inside;
}
/* line 21, ../../default/scss/module/_cms.scss */
.std h1 {
  font-size: 15px;
  color: #e83e30;
  font-weight: bold;
}
/* line 22, ../../default/scss/module/_cms.scss */
.std h2 {
  font-size: 13px;
  color: #1d1d1b;
  font-weight: bold;
}
/* line 23, ../../default/scss/module/_cms.scss */
.std h3 {
  font-size: inherit;
  color: #1d1d1b;
  font-weight: normal;
}
/* line 25, ../../default/scss/module/_cms.scss */
.std a {
  text-decoration: underline;
  color: #1d1d1b;
}
/* line 27, ../../default/scss/module/_cms.scss */
.std p {
  text-align: justify;
}
/* line 29, ../../default/scss/module/_cms.scss */
.std .products-grid {
  list-style: none;
}
/* line 32, ../../default/scss/module/_cms.scss */
.std .products-grid a {
  text-decoration: none;
}

/* line 36, ../../default/scss/module/_cms.scss */
.cms-page-view .page-title {
  margin: 0;
}

/* line 41, ../../default/scss/module/_cms.scss */
.cms-staal-html .col-main,
.cms-staal-service-html .col-main,
.cms-staal-product-html .col-main {
  display: block;
  max-width: 960px;
  margin: 0 auto;
  float: none;
}
/* line 47, ../../default/scss/module/_cms.scss */
.cms-staal-html .col-main .page-title,
.cms-staal-service-html .col-main .page-title,
.cms-staal-product-html .col-main .page-title {
  margin: 0;
}
/* line 50, ../../default/scss/module/_cms.scss */
.cms-staal-html .col-main .page-title h1,
.cms-staal-service-html .col-main .page-title h1,
.cms-staal-product-html .col-main .page-title h1 {
  margin-left: 0;
}
/* line 55, ../../default/scss/module/_cms.scss */
.cms-staal-html .col-main .std,
.cms-staal-service-html .col-main .std,
.cms-staal-product-html .col-main .std {
  overflow: hidden;
  margin-bottom: 32px;
}
/* line 60, ../../default/scss/module/_cms.scss */
.cms-staal-html .col-main .staal-block,
.cms-staal-service-html .col-main .staal-block,
.cms-staal-product-html .col-main .staal-block {
  width: 48%;
  margin: 0 1%;
  float: left;
}
/* line 67, ../../default/scss/module/_cms.scss */
.cms-staal-html .col-main .staal-link,
.cms-staal-service-html .col-main .staal-link,
.cms-staal-product-html .col-main .staal-link {
  font-weight: bold;
  color: #1d1d1b;
}
/* line 72, ../../default/scss/module/_cms.scss */
.cms-staal-html .col-main .staal-list,
.cms-staal-service-html .col-main .staal-list,
.cms-staal-product-html .col-main .staal-list {
  margin: 0 0 16px;
}

/* line 80, ../../default/scss/module/_cms.scss */
.cms-staal-service-html .staal-img {
  display: block;
  margin: 16px auto;
}

/* line 88, ../../default/scss/module/_cms.scss */
.cms-staal-product-html .staal-product-content {
  width: 75%;
  float: left;
}
/* line 93, ../../default/scss/module/_cms.scss */
.cms-staal-product-html .img-box {
  width: 25%;
  float: right;
}
/* line 97, ../../default/scss/module/_cms.scss */
.cms-staal-product-html .img-box .staal-img {
  margin: 8px;
}

/* line 105, ../../default/scss/module/_cms.scss */
.help-page .accordion-style1 {
  padding: 10px 0;
}
/* line 106, ../../default/scss/module/_cms.scss */
.help-page .accordion-style1 li a {
  text-decoration: none;
  font-size: 12px;
  color: #1d1d1b;
  padding: 5px 10px;
}
/* line 107, ../../default/scss/module/_cms.scss */
.help-page .accordion-style1 .opener {
  height: 28px;
  width: 28px;
}

@media only screen and (max-width: 768px) {
  /* line 115, ../../default/scss/module/_cms.scss */
  .cms-staal-html .col-main,
  .cms-staal-service-html .col-main,
  .cms-staal-product-html .col-main {
    width: 96%;
    margin: 0 2%;
  }
  /* line 119, ../../default/scss/module/_cms.scss */
  .cms-staal-html .col-main .staal-block,
  .cms-staal-service-html .col-main .staal-block,
  .cms-staal-product-html .col-main .staal-block {
    width: 100%;
    margin: 2% 0;
  }
  /* line 124, ../../default/scss/module/_cms.scss */
  .cms-staal-html .col-main .page-title h1,
  .cms-staal-service-html .col-main .page-title h1,
  .cms-staal-product-html .col-main .page-title h1 {
    font-size: 28px;
  }

  /* line 131, ../../default/scss/module/_cms.scss */
  .cms-staal-product-html .img-box {
    width: 100%;
    float: none;
    clear: both;
  }

  /* line 136, ../../default/scss/module/_cms.scss */
  .cms-help-html .col-left {
    width: 96%;
    margin: 0 2%;
    float: none;
    overflow: hidden;
  }
  /* line 137, ../../default/scss/module/_cms.scss */
  .cms-help-html .col-main .col-main {
    width: 96%;
    float: none;
    margin: 2%;
    padding: 0;
  }

  /* line 166, ../../default/scss/module/_cms.scss */
  .grid12-1 .col-main,
  .grid12-2 .col-main,
  .grid12-3 .col-main,
  .grid12-4 .col-main,
  .grid12-5 .col-main,
  .grid12-6 .col-main,
  .grid12-7 .col-main,
  .grid12-8 .col-main,
  .grid12-9 .col-main,
  .grid12-10 .col-main,
  .grid12-11 .col-main,
  .grid12-12 .col-main,
  .grid4-1 .col-main,
  .grid4-2 .col-main,
  .grid4-3 .col-main,
  .grid2-1 .col-main,
  .grid-full .col-main,
  .grid-col2-sidebar .col-main,
  .grid-col2-main .col-main,
  .grid-col3-sidebar .col-main,
  .grid-col3-main .col-main {
    width: 98%;
    margin-left: 1%;
    margin-right: 1%;
  }
}
/* line 173, ../../default/scss/module/_cms.scss */
.imes-home-block img {
  width: 100%;
}

/* line 179, ../../default/scss/module/_cms.scss */
#imes-home-tagline p {
  line-height: 100%;
}

/** Remove the user-panel hidder when the popup form is fixed **/
/* line 8, ../../default/scss/module/_expresscheckout.scss */
#express-checkout-popup .custom-popup-content .product-table th, #express-checkout-popup .custom-popup-content .product-table td {
  padding: 2px 16px 2px 0;
}
/* line 12, ../../default/scss/module/_expresscheckout.scss */
#express-checkout-popup .custom-popup-content .product-table th {
  font-weight: bold;
  color: #1d1d1b;
}
/* line 16, ../../default/scss/module/_expresscheckout.scss */
#express-checkout-popup .custom-popup-content .product-table th em {
  color: #e83e30;
}
/* line 19, ../../default/scss/module/_expresscheckout.scss */
#express-checkout-popup .custom-popup-content .product-table tfoot td {
  padding: 6px 0 0;
}

/* line 27, ../../default/scss/module/_expresscheckout.scss */
#express-checkout-popup .file-upload,
.enterprise-checkout-sku-index .file-upload {
  background-color: #F7F7F7;
  margin: 16px 0;
  padding: 12px;
  border: 1px solid #CCC;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
/* line 34, ../../default/scss/module/_expresscheckout.scss */
#express-checkout-popup .file-upload .note-container,
.enterprise-checkout-sku-index .file-upload .note-container {
  font-size: 12px;
  font-weight: bold;
  color: #1d1d1b;
  margin: 8px 0;
}
/* line 42, ../../default/scss/module/_expresscheckout.scss */
#express-checkout-popup .btn-reset,
#express-checkout-popup .btn-download-sample,
#express-checkout-popup .btn-add-row,
.enterprise-checkout-sku-index .btn-reset,
.enterprise-checkout-sku-index .btn-download-sample,
.enterprise-checkout-sku-index .btn-add-row {
  color: #1d1d1b;
  display: inline-block;
  background-color: #FFF;
  font-weight: bold;
  padding: 6px 8px;
  border: 1px solid #CCC;
  clear: both;
  cursor: pointer;
}

/* line 57, ../../default/scss/module/_expresscheckout.scss */
.enterprise-checkout-sku-index .block .actions {
  border: 0;
}
/* line 61, ../../default/scss/module/_expresscheckout.scss */
.enterprise-checkout-sku-index .file-upload .note-container {
  font-weight: normal;
  color: #1d1d1b;
  font-size: 14px;
}

/* line 5, ../../default/scss/module/_tools_and_repair.scss */
.block-account li.current .spr-account-vdb_toolsandrepair_open {
  background-position: -771px -109px;
  width: 50px;
  height: 53px;
}
/* line 11, ../../default/scss/module/_tools_and_repair.scss */
.block-account .spr-account-vdb_toolsandrepair_open {
  background-position: -771px -56px;
  width: 50px;
  height: 53px;
}
/* line 18, ../../default/scss/module/_tools_and_repair.scss */
.block-account .submenu a.current {
  background: #454540;
  color: #f8f8f8;
}
/* line 23, ../../default/scss/module/_tools_and_repair.scss */
.block-account .submenu a {
  padding: 10px 0 0;
}
/* line 27, ../../default/scss/module/_tools_and_repair.scss */
.block-account .submenu span[class^="icon-"], .block-account .submenu span[class*=" icon-"] {
  font-size: 64px;
}

/* line 35, ../../default/scss/module/_tools_and_repair.scss */
.data-table td.pointer {
  cursor: pointer;
}
/* line 38, ../../default/scss/module/_tools_and_repair.scss */
.data-table td.last {
  width: 72px;
  text-align: center;
}
/* line 43, ../../default/scss/module/_tools_and_repair.scss */
.data-table tbody tr:hover {
  background-color: #ebebeb;
}
/* line 46, ../../default/scss/module/_tools_and_repair.scss */
.data-table .chosen-select[name="status"] {
  width: 270px;
}

/* line 52, ../../default/scss/module/_tools_and_repair.scss */
#repairs-list-table .input-box {
  width: 200px;
}
/* line 54, ../../default/scss/module/_tools_and_repair.scss */
#repairs-list-table .input-box .chosen-select {
  width: 170px;
}

/* line 61, ../../default/scss/module/_tools_and_repair.scss */
.form-area .fieldset {
  background-color: #f6f6f6;
  padding: 16px;
}

/* line 69, ../../default/scss/module/_tools_and_repair.scss */
.tools-and-repairs-wrapper .toolsandrepair-buttons .content {
  margin: 0 10px 10px 0;
}
/* line 74, ../../default/scss/module/_tools_and_repair.scss */
.tools-and-repairs-wrapper .no-devices {
  clear: both;
  margin: 10px 0;
}

/* line 2, ../../default/scss/module/_pasbus.scss */
#pasbus-employee-table td {
  text-align: left;
}

/* line 8, ../../default/scss/module/_pasbus.scss */
#pasbus-measurement-table td {
  width: inherit;
}
/* line 10, ../../default/scss/module/_pasbus.scss */
#pasbus-measurement-table td.last {
  padding: 0px 10px;
  text-align: center;
}
/* line 13, ../../default/scss/module/_pasbus.scss */
#pasbus-measurement-table td.last input {
  width: 30px;
  border: 1px solid #1d1d1b;
}
/* line 18, ../../default/scss/module/_pasbus.scss */
#pasbus-measurement-table td.last .orderButton span {
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  background-color: #1d1d1b;
  text-transform: uppercase;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
/* line 27, ../../default/scss/module/_pasbus.scss */
#pasbus-measurement-table td.last .orderButton span span {
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  font-weight: bold;
  color: #FFF;
}

/* line 41, ../../default/scss/module/_pasbus.scss */
.form-area.pasbus .grid-container-spaced {
  background-color: white;
}

/* line 46, ../../default/scss/module/_pasbus.scss */
.pasbus-buttons {
  float: right;
}
/* line 48, ../../default/scss/module/_pasbus.scss */
.pasbus-buttons .content {
  margin: 0 10px 10px 0;
}

/* line 54, ../../default/scss/module/_pasbus.scss */
.block-account .spr-account-vdb_pasbus_open {
  background-position: -771px -56px;
  width: 50px;
  height: 53px;
}

/* line 61, ../../default/scss/module/_pasbus.scss */
.my-account .dashboard.pasbus .column-1 .col-box {
  margin-bottom: 2%;
}

/* line 65, ../../default/scss/module/_pasbus.scss */
.pasbus-measurements-header {
  float: left;
}

/* line 1, ../../default/scss/module/_wishlist.scss */
.wishlist_filter {
  background-color: #F7F7F7;
  margin: 1% auto;
  text-align: center;
  padding: 12px;
  border: 1px solid #CCC;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: auto;
}
/* line 11, ../../default/scss/module/_wishlist.scss */
.wishlist_filter .wishlist-search-block .field-block {
  float: left;
  margin: 5px;
}
/* line 14, ../../default/scss/module/_wishlist.scss */
.wishlist_filter .wishlist-search-block .field-block label {
  margin-right: 5px;
}
/* line 18, ../../default/scss/module/_wishlist.scss */
.wishlist_filter .wishlist-search-block .input-block {
  margin: 10px;
}

/* line 23, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index {
  display: flex;
  flex-direction: column;
  color: dimgray;
}
/* line 27, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .column {
  display: flex;
  flex-direction: column !important;
}
/* line 30, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .column.left {
  align-items: flex-start;
}
/* line 33, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .column.middle {
  align-items: center;
}
/* line 36, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .column.right {
  align-items: flex-end;
}
/* line 39, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .column.top {
  justify-content: flex-start;
}
/* line 42, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .column.center {
  justify-content: flex-start;
}
/* line 45, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .column.bottom {
  justify-content: flex-end;
}
/* line 48, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .column .grow {
  flex-grow: 1;
}
/* line 52, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .row {
  display: flex;
  flex-direction: row !important;
}
/* line 55, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .row.top {
  align-items: flex-start;
}
/* line 58, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .row.center {
  align-items: center;
}
/* line 61, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .row.bottom {
  align-items: flex-end;
}
/* line 64, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .row.left {
  justify-content: flex-start;
}
/* line 67, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .row.middle {
  justify-content: center;
}
/* line 70, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .row.right {
  justify-content: flex-end;
}
/* line 73, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .row .grow {
  flex-grow: 1;
}
/* line 77, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .show-on-loading {
  display: none;
}
/* line 81, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .loading .show-on-loading {
  display: flex;
}
/* line 84, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .loading .hide-on-loading {
  display: none;
}
/* line 88, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .show-on-complete {
  display: none;
}
/* line 92, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .complete .show-on-complete {
  display: flex;
}
/* line 95, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .complete .hide-on-complete {
  display: none;
}
/* line 99, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .show-on-loaded {
  display: none;
}
/* line 103, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .loaded .show-on-loaded {
  display: flex;
}
/* line 106, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .loaded .hide-on-loaded {
  display: none;
}
/* line 110, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .show-on-failure {
  display: none;
}
/* line 114, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .failure .show-on-failure {
  display: flex;
}
/* line 117, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .failure .hide-on-failure {
  display: none;
}
/* line 121, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .important {
  font-weight: bold;
}
/* line 124, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .controls {
  background: rgba(0, 0, 0, 0.05);
}
/* line 126, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .controls button {
  padding: 10px;
  border-radius: 0;
  border: none;
  background: none;
  color: rgba(0, 0, 0, 0.5);
}
/* line 132, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .controls button:hover {
  background: none;
  color: black;
}
/* line 136, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .controls button:not(:last-child) {
  margin: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.25);
}
/* line 140, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .controls button span {
  font-size: 12px;
}
/* line 146, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index [data-state-target~="expand"][data-state-action="show"] {
  display: none;
}
/* line 148, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index [data-state-target~="expand"][data-state-action="show"].expand {
  display: flex;
}
/* line 152, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index [data-state-target~="expand"][data-state-action="hide"] {
  display: flex;
}
/* line 154, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index [data-state-target~="expand"][data-state-action="hide"].expand {
  display: none;
}
/* line 158, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index [data-state-target~="expand"][data-state-action="activate"] {
  border: 1px solid transparent;
}
/* line 160, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index [data-state-target~="expand"][data-state-action="activate"].expand {
  border: 1px solid #b4b4b4;
  box-shadow: 0 5px 18px -4px rgba(0, 0, 0, 0.75);
  z-index: 1;
}
/* line 167, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index [data-collection] {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 15px;
}
/* line 171, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index [data-filter],
ul#wishlist-index [data-status] {
  display: flex;
  flex-direction: row;
  padding: 10px 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 10px, rgba(255, 255, 255, 0.5) 10px, rgba(255, 255, 255, 0.5) 20px);
}
/* line 184, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index [data-header] {
  display: flex;
  flex-direction: row;
  background-color: black;
  color: white;
}
/* line 189, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index [data-header] p {
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px;
}
/* line 195, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index [data-grid] {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  width: 100%;
  max-height: 570px;
  background-color: rgba(0, 0, 0, 0.15);
}
/* line 198, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index [data-grid] > * {
  background-color: rgba(255, 255, 255, 0.25);
}
/* line 200, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index [data-grid] > *:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.5);
}
/* line 210, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index li {
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
  display: flex;
}
/* line 216, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index ul {
  display: flex;
  flex-direction: row;
}
/* line 219, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index ul li {
  flex-direction: row;
  padding: 5px;
  border: 1px solid transparent;
}
/* line 223, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index ul li:not(:last-of-type) {
  border-right: 1px solid rgba(255, 255, 255, 0.75);
}
/* line 228, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index ol {
  display: flex;
  flex-direction: column;
  background-color: white;
}
/* line 232, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index ol li {
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
}
/* line 236, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index ol li.spinner {
  justify-content: center;
  align-items: center;
  padding: 10px;
}
/* line 240, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index ol li.spinner img {
  margin-right: 5px;
}
/* line 244, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index ol li.products {
  flex-direction: column;
  border-top: 1px dashed #b4b4b4;
}
/* line 247, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index ol li.products .detail {
  padding: 5px 0;
}
/* line 249, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index ol li.products .detail:not(:last-of-type) {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}
/* line 252, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index ol li.products .detail .product-image {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  align-items: center;
  max-height: 64px;
  overflow: hidden;
  object-fit: contain;
  object-position: center center;
}
/* line 263, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index ol li.products .detail > * {
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
}
/* line 267, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index ol li.products .detail > *:not(:last-of-type) {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
/* line 271, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index ol li.products .detail h5 {
  font-weight: bold;
  margin-left: 10px;
}
/* line 279, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index label {
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  justify-items: center;
  flex-grow: 1;
  flex-shrink: 0;
  font-size: 11px;
  color: inherit;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 10px;
}
/* line 296, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index label + input[type="search"], ul#wishlist-index label + input[type="text"], ul#wishlist-index label + input[type="date"] {
  background-color: rgba(255, 255, 255, 0.5);
}
/* line 301, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index label + a, ul#wishlist-index label + p {
  padding: 8px;
}
/* line 306, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index input[type="search"],
ul#wishlist-index input[type="text"],
ul#wishlist-index input[type="number"],
ul#wishlist-index input[type="date"] {
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
  border: none;
  outline: none;
  background: none;
  color: dimgray;
  padding: 10px;
  margin: 0;
  font-size: 12px;
}
/* line 320, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index input[type="search"]::placeholder,
ul#wishlist-index input[type="text"]::placeholder,
ul#wishlist-index input[type="number"]::placeholder,
ul#wishlist-index input[type="date"]::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
/* line 323, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index input[type="search"]:focus,
ul#wishlist-index input[type="text"]:focus,
ul#wishlist-index input[type="number"]:focus,
ul#wishlist-index input[type="date"]:focus {
  background-color: white;
}
/* line 326, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index input[type="search"].solid,
ul#wishlist-index input[type="text"].solid,
ul#wishlist-index input[type="number"].solid,
ul#wishlist-index input[type="date"].solid {
  border: 1px solid rgba(0, 0, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.5);
}
/* line 331, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5px;
  font-size: 24px !important;
  color: white;
  border: none;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.5);
}
/* line 342, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index button:hover {
  background-color: rgba(0, 0, 0, 0.75);
}
/* line 345, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index button:not(:last-of-type) {
  margin-right: 5px;
}
/* line 348, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index button[disabled="disabled"] {
  background-color: rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.25);
}
/* line 353, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index i {
  font-size: inherit;
}
/* line 355, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index i + p, ul#wishlist-index i + span {
  margin-left: 10px;
}
/* line 361, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index img + p {
  margin-left: 10px;
}
/* line 365, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index p {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
/* line 369, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index p .important {
  font-weight: bold;
  color: black;
}
/* line 373, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index p + i {
  margin-left: 10px;
}
/* line 377, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index > form {
  background-color: white !important;
  box-shadow: 0 5px 18px -4px rgba(0, 0, 0, 0.75);
  z-index: 1;
}
/* line 382, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index > form button[type="submit"] {
  background-color: forestgreen;
}
/* line 386, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .cart {
  background-color: rgba(0, 0, 0, 0.05);
}
/* line 389, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .price-box {
  color: #e83e30;
  margin-bottom: 5px;
}
/* line 392, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .price-box [data-field] {
  padding: 5px 0;
}
/* line 395, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .price-box [data-field="price"] {
  flex-grow: 2;
  font-size: 24px;
  font-weight: bold;
}
/* line 400, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .price-box [data-field="uom"] {
  flex-grow: 1;
  text-transform: uppercase;
}
/* line 404, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .price-box .unsaleable {
  padding: 5px;
  margin: 5px 0;
  color: white;
  background-color: #e83e30;
  border-radius: 5px;
}
/* line 410, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .price-box .unsaleable i {
  font-size: 24px;
}
/* line 415, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .quantity-box {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  margin-bottom: 5px;
}
/* line 420, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .quantity-box input {
  background-color: white;
}
/* line 423, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .quantity-box button {
  border-radius: 0;
}
/* line 427, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .request-quote {
  background-color: black;
}
/* line 430, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .add-to-cart {
  background-color: forestgreen;
}
/* line 433, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .save {
  background-color: forestgreen;
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-10px);
  }
  20% {
    transform: translateX(10px);
  }
  30% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(-3px);
  }
  60% {
    transform: translateX(3px);
  }
  70% {
    transform: translateX(-2px);
  }
  80% {
    transform: translateX(2px);
  }
  90% {
    transform: translateX(-1px);
  }
  100% {
    transform: translateX(0);
  }
}
/* line 471, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .shake {
  animation-name: shake;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* line 485, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .rotate {
  animation-name: rotate;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
@keyframes zoom {
  0% {
    opacity: 0;
    transform: scale(5, 5);
  }
  25% {
    transform: scale(0.25, 0.25);
  }
  50% {
    opacity: 1;
    transform: scale(1.5, 1.5);
  }
  75% {
    transform: scale(0.5, 0.5);
  }
  100% {
    transform: scale(1, 1);
  }
}
/* line 510, ../../default/scss/module/_wishlist.scss */
ul#wishlist-index .zoom {
  animation-name: zoom;
  animation-duration: 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}

@media only screen and (max-width: 480px) {
  /* line 519, ../../default/scss/module/_wishlist.scss */
  ul#wishlist-index .column-mobile {
    display: flex;
    flex-direction: column !important;
  }
  /* line 524, ../../default/scss/module/_wishlist.scss */
  ul#wishlist-index .row-mobile {
    display: flex;
    flex-direction: row !important;
  }
}
/* line 4, ../../default/scss/module/_circuitvalidation.scss */
.block-account li.current .spr-account-vdb_circuitvalidation_manage {
  background-position: -771px -109px;
  width: 50px;
  height: 53px;
}
/* line 10, ../../default/scss/module/_circuitvalidation.scss */
.block-account .spr-account-vdb_circuitvalidation_manage {
  background-position: -771px -56px;
  width: 50px;
  height: 53px;
}

/* line 19, ../../default/scss/module/_circuitvalidation.scss */
.my-account .buttons-set .input-box {
  float: left;
  margin-right: 10px;
}
/* line 22, ../../default/scss/module/_circuitvalidation.scss */
.my-account .buttons-set .input-box select {
  height: 32px;
  border: 1px solid #CCC;
}
/* line 26, ../../default/scss/module/_circuitvalidation.scss */
.my-account .buttons-set .input-box input {
  width: 75px;
  border: 1px solid #CCC;
}
/* line 30, ../../default/scss/module/_circuitvalidation.scss */
.my-account .buttons-set .input-box.warning {
  color: red;
  font-size: 10px;
}
/* line 36, ../../default/scss/module/_circuitvalidation.scss */
.my-account .approvers-filter {
  overflow: hidden;
  background-color: #F7F7F7;
  border: 2px solid #CCC;
  margin: 0 0 16px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
/* line 43, ../../default/scss/module/_circuitvalidation.scss */
.my-account .approvers-filter .filter-block {
  width: 27%;
  float: left;
  text-align: center;
}
/* line 48, ../../default/scss/module/_circuitvalidation.scss */
.my-account .approvers-filter .filter-block .filter-block-content {
  height: 70px;
  padding: 12px;
  border-right: 2px solid #CCC;
}
/* line 53, ../../default/scss/module/_circuitvalidation.scss */
.my-account .approvers-filter .filter-block .filter-block-content .field-block {
  overflow: hidden;
  line-height: 26px;
  margin: 0 0 8px;
}
/* line 58, ../../default/scss/module/_circuitvalidation.scss */
.my-account .approvers-filter .filter-block .filter-block-content .field-block label {
  max-width: 105px;
  white-space: nowrap;
  float: left;
  display: block;
}
/* line 65, ../../default/scss/module/_circuitvalidation.scss */
.my-account .approvers-filter .filter-block .filter-block-content .field-block input {
  height: 26px;
  padding: 0 5px;
  border: 1px solid #CCC;
  float: right;
  width: 48%;
}
/* line 73, ../../default/scss/module/_circuitvalidation.scss */
.my-account .approvers-filter .filter-block .filter-block-content .field-block select {
  height: 26px;
  padding: 0 5px;
  border: 1px solid #CCC;
  float: right;
  width: 48%;
}
/* line 81, ../../default/scss/module/_circuitvalidation.scss */
.my-account .approvers-filter .filter-block .filter-block-content .field-block.selector select {
  float: right;
}
/* line 86, ../../default/scss/module/_circuitvalidation.scss */
.my-account .approvers-filter .filter-block .filter-block-content .btn-search {
  margin: 12px 0 0;
}
/* line 89, ../../default/scss/module/_circuitvalidation.scss */
.my-account .approvers-filter .filter-block .filter-block-content .btn-search span span {
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
}
/* line 97, ../../default/scss/module/_circuitvalidation.scss */
.my-account .approvers-filter .filter-block.last {
  width: 20%;
}
/* line 99, ../../default/scss/module/_circuitvalidation.scss */
.my-account .approvers-filter .filter-block.last .filter-block-content {
  border: 0;
}

/*** COOKIES BANNER ***/
/* line 2, ../../default/scss/module/_gdpr.scss */
.notice-cookie {
  position: fixed;
  display: block;
  bottom: 0px;
  width: 100%;
  z-index: 200000;
  background-color: #1d1d1b;
  color: #ffffff;
  padding: 0px 0px 20px 0px;
}

/* line 3, ../../default/scss/module/_gdpr.scss */
.global-site-notice, .global-site-notice .notice-inner p {
  border: none !important;
}

/* line 4, ../../default/scss/module/_gdpr.scss */
.notice-cookie p {
  color: #ffffff !important;
}

/* line 5, ../../default/scss/module/_gdpr.scss */
.notice-cookie a, .notice-cookie a:visited {
  color: #454540;
}

/* line 6, ../../default/scss/module/_gdpr.scss */
.notice-cookie a {
  text-decoration: underline;
}

/* line 7, ../../default/scss/module/_gdpr.scss */
.notice-cookie .notice-inner {
  max-width: 860px;
  margin: 0px auto;
  background: none !important;
  width: 100%;
  padding: 10px;
}

/* line 8, ../../default/scss/module/_gdpr.scss */
.notice-cookie .notice-inner .button {
  float: right;
}

/* line 9, ../../default/scss/module/_gdpr.scss */
.global-site-notice .notice-inner .actions {
  width: 18%;
  float: left;
  display: block;
}

/* line 10, ../../default/scss/module/_gdpr.scss */
.notice-inner p.dnc-message {
  float: left;
  width: 72%;
  display: block;
}

/* line 11, ../../default/scss/module/_gdpr.scss */
#dnc-gdpr-personalize {
  margin-right: 10px;
  margin-bottom: 20px;
}

/* line 12, ../../default/scss/module/_gdpr.scss */
#dnc-gdpr-cookies-list-container {
  margin-bottom: 20px;
  display: block;
  float: left;
  width: 100%;
}

/* line 13, ../../default/scss/module/_gdpr.scss */
.cookies-list {
  margin-bottom: 10px;
}

/* line 14, ../../default/scss/module/_gdpr.scss */
#dnc-gdpr-cookies-form h3 {
  font-size: 18px;
  color: #1d1d1b;
}

/* line 5, ../../default/scss/module/_costcenters.scss */
.block-account li.current .spr-account-vdb_costcenters_open {
  width: 48px;
  height: 46px;
  background-position: -919px -102px;
}
/* line 12, ../../default/scss/module/_costcenters.scss */
.block-account li:hover .spr-account-vdb_costcenters_open {
  width: 48px;
  height: 46px;
  background-position: -919px -102px;
}
/* line 18, ../../default/scss/module/_costcenters.scss */
.block-account .spr-account-vdb_costcenters_open {
  width: 48px;
  height: 46px;
  background-position: -919px -56px;
}
/* line 25, ../../default/scss/module/_costcenters.scss */
.block-account .submenu a.current {
  background: #454540;
  color: #f8f8f8;
}
/* line 29, ../../default/scss/module/_costcenters.scss */
.block-account .submenu a {
  padding: 25px 0 0 0;
}
/* line 31, ../../default/scss/module/_costcenters.scss */
.block-account .submenu a span[class^="icon-"], .block-account .submenu a i[class*=" icon-"] {
  padding: 15px;
}
/* line 34, ../../default/scss/module/_costcenters.scss */
.block-account .submenu a p {
  font-size: 12px;
  margin: 15px 0 0 0;
}

/* line 43, ../../default/scss/module/_costcenters.scss */
.my-account .buttons-set .input-box {
  float: left;
  margin-right: 10px;
}
/* line 46, ../../default/scss/module/_costcenters.scss */
.my-account .buttons-set .input-box select {
  height: 32px;
  border: 1px solid #CCC;
}
/* line 50, ../../default/scss/module/_costcenters.scss */
.my-account .buttons-set .input-box input {
  width: 75px;
  border: 1px solid #CCC;
}
/* line 54, ../../default/scss/module/_costcenters.scss */
.my-account .buttons-set .input-box.warning {
  color: red;
  font-size: 10px;
}
/* line 60, ../../default/scss/module/_costcenters.scss */
.my-account .filter {
  display: flex;
  flex-direction: column;
  border: 2px solid #CCC;
  margin: 0 0 16px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
/* line 66, ../../default/scss/module/_costcenters.scss */
.my-account .filter li.search {
  display: flex;
  flex-direction: row;
}
/* line 69, ../../default/scss/module/_costcenters.scss */
.my-account .filter li.search input {
  background-color: transparent;
  font-size: 14px;
  padding: 5px;
  border: none;
  flex-grow: 1;
}
/* line 76, ../../default/scss/module/_costcenters.scss */
.my-account .filter li.search i {
  font-size: 18px;
  padding: 5px;
}
/* line 82, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
/* line 87, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li:not(:last-of-type) {
  padding-bottom: 10px;
}
/* line 90, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li.hidden {
  display: none;
}
/* line 93, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid #454540;
  border-radius: 5px;
}
/* line 99, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item > li.header {
  width: 100%;
}
/* line 101, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item > li.header ul {
  display: flex;
  flex-direction: row;
}
/* line 104, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item > li.header ul > li {
  display: flex;
  flex-direction: row;
}
/* line 107, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item > li.header ul > li.expand {
  color: white;
  background: #1d1d1b;
  cursor: pointer;
}
/* line 111, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item > li.header ul > li.expand > i {
  display: inline-block;
}
/* line 113, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item > li.header ul > li.expand > i.collapse {
  display: none;
}
/* line 118, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item > li.header ul > li.title {
  flex-grow: 1;
  color: #1d1d1b;
}
/* line 121, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item > li.header ul > li.title span {
  font-style: italic;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.5);
}
/* line 127, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item > li.header ul > li.info {
  color: #1d1d1b;
}
/* line 130, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item > li.header ul > li.actions {
  flex-grow: 0;
  flex-shrink: 0;
}
/* line 137, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item > li.content {
  display: none;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.05);
}
/* line 141, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item > li.content ul {
  display: flex;
  flex-direction: row;
}
/* line 144, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item > li.content ul > li.relation {
  flex-grow: 1;
}
/* line 153, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item.expand > li.header > ul > li.expand > i {
  display: inline-block;
}
/* line 155, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item.expand > li.header > ul > li.expand > i.expand {
  display: none;
}
/* line 162, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item.expand > li.content {
  display: flex;
  flex-direction: column;
}
/* line 165, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item.expand > li.content ul:nth-child(odd) {
  background: rgba(255, 255, 255, 0.5);
}
/* line 170, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item i {
  font-size: 18px;
  padding: 5px;
  margin: 0;
}
/* line 175, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item p {
  font-size: 12px;
  padding: 5px;
  margin: 0;
}
/* line 180, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item button {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
}
/* line 185, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item button:active {
  color: white;
  background-color: #1d1d1b;
}
/* line 190, ../../default/scss/module/_costcenters.scss */
.my-account ul.grid > li ul.item select {
  width: 100%;
}

/* line 197, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index {
  display: flex;
  flex-direction: column;
}
/* line 200, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li {
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
}
/* line 206, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li .header {
  padding: 15px;
  margin: 0;
  background-color: white;
}
/* line 211, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li .content {
  padding: 15px;
}
/* line 215, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li.collapse .content {
  display: none;
}
/* line 219, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
/* line 223, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
}
/* line 228, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div > div {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
}
/* line 233, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div > div > ul {
  display: flex;
  flex-direction: row;
  flex-grow: 0;
  flex-shrink: 0;
  color: #1d1d1b;
}
/* line 239, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div > div > ul > li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* line 246, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.filters {
  display: flex;
  flex-direction: row;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 10px, rgba(255, 255, 255, 0.5) 10px, rgba(255, 255, 255, 0.5) 20px);
}
/* line 256, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.filters > div {
  flex-direction: row;
}
/* line 258, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.filters > div > ul {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
/* line 262, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.filters > div > ul:not(:last-of-type) {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
/* line 265, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.filters > div > ul > li {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
}
/* line 269, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.filters > div > ul > li:last-of-type {
  padding-bottom: 15px;
}
/* line 272, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.filters > div > ul > li label {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px 0 3px 0;
  flex-grow: 1;
  font-size: 10px;
}
/* line 280, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.filters > div > ul > li input[type="search"],
ul#costcenters-index > li div[data-collection] > div.filters > div > ul > li input[type="text"],
ul#costcenters-index > li div[data-collection] > div.filters > div > ul > li input[type="date"] {
  border: 1px solid rgba(0, 0, 0, 0.5);
  outline: none;
  background: rgba(255, 255, 255, 0.5);
  color: dimgray;
  padding: 10px;
  margin: 0;
  height: 15px;
}
/* line 290, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.filters > div > ul > li input[type="search"]::placeholder,
ul#costcenters-index > li div[data-collection] > div.filters > div > ul > li input[type="text"]::placeholder,
ul#costcenters-index > li div[data-collection] > div.filters > div > ul > li input[type="date"]::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
/* line 294, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.filters > div > ul > li select {
  -webkit-appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.5);
  outline: none;
  background: rgba(255, 255, 255, 0.5);
  color: dimgray;
  padding: 10px;
  border-radius: unset;
}
/* line 309, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.references > div > ul {
  background-color: #1d1d1b;
  color: white;
}
/* line 312, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.references > div > ul > li {
  display: flex;
  flex-direction: column;
}
/* line 315, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.references > div > ul > li:not(:last-of-type) {
  border-right: 1px solid rgba(255, 255, 255, 0.75);
}
/* line 318, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.references > div > ul > li > p {
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px;
}
/* line 327, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid {
  overflow-y: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  width: 100%;
  max-height: 570px;
  background-color: rgba(0, 0, 0, 0.15);
}
/* line 333, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div {
  flex-grow: 0;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid transparent;
}
/* line 338, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.5);
}
/* line 342, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ul > li {
  display: flex;
  flex-direction: row;
  align-items: center;
}
/* line 346, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ul > li.expand {
  cursor: pointer;
}
/* line 348, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ul > li.expand:hover {
  color: black;
}
/* line 352, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ul > li:not(:last-of-type) {
  border-right: 1px solid rgba(255, 255, 255, 0.75);
}
/* line 355, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ul > li > i {
  font-size: 18px;
  padding: 10px;
}
/* line 358, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ul > li > i:not(:last-child) {
  padding-right: 0;
}
/* line 361, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ul > li > i.collapse {
  display: none;
  flex-direction: row;
}
/* line 365, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ul > li > i.expand {
  display: flex;
  flex-direction: row;
}
/* line 370, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ul > li > p {
  padding: 10px;
}
/* line 373, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ul > li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  flex-shrink: 0;
  outline: none;
  padding: 10px;
}
/* line 381, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ul > li > a:not(:last-of-type) {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
/* line 384, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ul > li > a > i {
  font-size: 18px;
}
/* line 387, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ul > li > a > p {
  font-size: 8px;
}
/* line 393, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol {
  display: none;
  flex-direction: column;
  background-color: #f0f0f0;
  border-top: 1px dashed #b4b4b4;
}
/* line 398, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li {
  display: none;
  flex-direction: column;
}
/* line 401, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .label {
  display: flex;
  flex-direction: row;
  padding: 5px 10px 10px 10px;
  border-top: 1px dashed rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  font-weight: bold;
}
/* line 409, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .label > ul {
  display: flex;
  flex-direction: row;
  width: 100%;
}
/* line 413, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .label > ul > li {
  flex-direction: row;
}
/* line 415, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .label > ul > li button {
  display: flex;
  padding: 5px;
  color: white;
  border: none;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
}
/* line 423, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .label > ul > li button:hover {
  background-color: rgba(0, 0, 0, 0.75);
}
/* line 430, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .control, ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .detail {
  padding: 10px 10px 0 10px;
}
/* line 432, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .control .loading-spinner, ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .detail .loading-spinner {
  padding: 3px 15px;
}
/* line 436, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .control.loaded .loading-spinner, ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .detail.loaded .loading-spinner {
  display: none;
}
/* line 441, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .control.loaded > ul > li > button, ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .detail.loaded > ul > li > button {
  display: flex;
}
/* line 447, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .control > ul, ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul {
  display: flex;
  flex-direction: row;
}
/* line 450, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .control > ul:not(:last-of-type), ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul:not(:last-of-type) {
  margin-bottom: 5px;
}
/* line 453, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li, ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li {
  display: flex;
  flex-direction: column;
}
/* line 456, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li > label, ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li > label {
  flex-shrink: 0;
  justify-items: center;
  font-size: 8px;
  color: dimgray;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 10px;
}
/* line 467, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li input[type="search"],
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li input[type="text"],
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li input[type="date"], ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li input[type="search"],
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li input[type="text"],
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li input[type="date"] {
  border: 1px solid rgba(0, 0, 0, 0.5);
  outline: none;
  background: rgba(255, 255, 255, 0.5);
  color: dimgray;
  padding: 10px;
  margin: 0 10px;
  height: 15px;
}
/* line 477, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li input[type="search"]::placeholder,
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li input[type="text"]::placeholder,
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li input[type="date"]::placeholder, ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li input[type="search"]::placeholder,
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li input[type="text"]::placeholder,
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li input[type="date"]::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
/* line 481, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li > p, ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li > p {
  flex-grow: 1;
  flex-shrink: 0;
  justify-items: center;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 10px;
}
/* line 490, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li > p.important, ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li > p.important {
  font-weight: bold;
  color: black;
}
/* line 495, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li > button, ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li > button {
  display: none;
  border: none;
  outline: none;
  background: none;
  padding: 0 10px;
}
/* line 501, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li > button > i, ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li > button > i {
  font-size: 24px;
}
/* line 507, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .control:last-of-type, ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li > .detail:last-of-type {
  padding-bottom: 10px;
}
/* line 511, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li.loading-spinner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 15px;
}
/* line 517, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div > ol > li.loading-spinner > span:not(:last-of-type) {
  margin-right: 5px;
}
/* line 524, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div.expand {
  background-color: white;
  border: 1px solid #b4b4b4;
  box-shadow: 0 5px 18px -4px rgba(0, 0, 0, 0.75);
}
/* line 531, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div.expand > ul > li > i.collapse {
  display: flex;
}
/* line 534, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div.expand > ul > li > i.expand {
  display: none;
}
/* line 540, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div.expand > ol {
  display: flex;
}
/* line 546, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div.loaded > ol > li {
  display: flex;
}
/* line 548, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.grid > div.loaded > ol > li.loading-spinner {
  display: none;
}
/* line 556, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.status {
  flex-direction: row;
  padding: 15px;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 10px, rgba(255, 255, 255, 0.5) 10px, rgba(255, 255, 255, 0.5) 20px);
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}
/* line 568, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] > div.status > span:not(:last-of-type) {
  margin-right: 5px;
}
/* line 574, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] .show-on-loading {
  display: none;
}
/* line 577, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] .hide-on-loading {
  display: block;
}
/* line 581, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection].loading .show-on-loading {
  display: block;
}
/* line 584, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection].loading .hide-on-loading {
  display: none;
}
/* line 588, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] .show-on-limited {
  display: none;
}
/* line 591, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection] .hide-on-limited {
  display: block;
}
/* line 595, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection].limited .show-on-limited {
  display: block;
}
/* line 598, ../../default/scss/module/_costcenters.scss */
ul#costcenters-index > li div[data-collection].limited .hide-on-limited {
  display: none;
}

/* line 5, ../../default/scss/module/_group.scss */
.block-account li.current .spr-account-vdb_user_group_open {
  width: 48px;
  height: 52px;
  background-position: -1280px -104px;
}
/* line 12, ../../default/scss/module/_group.scss */
.block-account li:hover .spr-account-vdb_user_group_open {
  width: 48px;
  height: 52px;
  background-position: -1280px -104px;
}
/* line 18, ../../default/scss/module/_group.scss */
.block-account .spr-account-vdb_user_group_open {
  width: 48px;
  height: 52px;
  background-position: -1280px -56px;
}
/* line 25, ../../default/scss/module/_group.scss */
.block-account .submenu a.current {
  background: #454540;
  color: #f8f8f8;
}
/* line 29, ../../default/scss/module/_group.scss */
.block-account .submenu a {
  padding: 25px 0 0 0;
}
/* line 31, ../../default/scss/module/_group.scss */
.block-account .submenu a span[class^="icon-"], .block-account .submenu a i[class*=" icon-"] {
  padding: 15px;
}
/* line 34, ../../default/scss/module/_group.scss */
.block-account .submenu a p {
  font-size: 12px;
  margin: 15px 0 0 0;
}

/* line 43, ../../default/scss/module/_group.scss */
.my-account .buttons-set .input-box {
  float: left;
  margin-right: 10px;
}
/* line 46, ../../default/scss/module/_group.scss */
.my-account .buttons-set .input-box select {
  height: 32px;
  border: 1px solid #CCC;
}
/* line 50, ../../default/scss/module/_group.scss */
.my-account .buttons-set .input-box input {
  width: 75px;
  border: 1px solid #CCC;
}
/* line 54, ../../default/scss/module/_group.scss */
.my-account .buttons-set .input-box.warning {
  color: red;
  font-size: 10px;
}
/* line 60, ../../default/scss/module/_group.scss */
.my-account .filter {
  display: flex;
  flex-direction: column;
  border: 2px solid #CCC;
  margin: 0 0 16px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
/* line 66, ../../default/scss/module/_group.scss */
.my-account .filter li.search {
  display: flex;
  flex-direction: row;
}
/* line 69, ../../default/scss/module/_group.scss */
.my-account .filter li.search input {
  background-color: transparent;
  font-size: 14px;
  padding: 5px;
  border: none;
  flex-grow: 1;
}
/* line 76, ../../default/scss/module/_group.scss */
.my-account .filter li.search i {
  font-size: 18px;
  padding: 5px;
}
/* line 82, ../../default/scss/module/_group.scss */
.my-account ul.grid {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
/* line 87, ../../default/scss/module/_group.scss */
.my-account ul.grid > li:not(:last-of-type) {
  padding-bottom: 10px;
}
/* line 90, ../../default/scss/module/_group.scss */
.my-account ul.grid > li.hidden {
  display: none;
}
/* line 93, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid gray;
  border-radius: 5px;
}
/* line 99, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item > li.header {
  width: 100%;
}
/* line 101, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item > li.header ul {
  display: flex;
  flex-direction: row;
}
/* line 104, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item > li.header ul > li {
  display: flex;
  flex-direction: row;
}
/* line 107, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item > li.header ul > li.expand {
  color: white;
  background: #1d1d1b;
  cursor: pointer;
}
/* line 111, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item > li.header ul > li.expand > i {
  display: inline-block;
}
/* line 113, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item > li.header ul > li.expand > i.collapse {
  display: none;
}
/* line 118, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item > li.header ul > li.title {
  flex-grow: 1;
  color: #1d1d1b;
}
/* line 121, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item > li.header ul > li.title span {
  font-style: italic;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.5);
}
/* line 127, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item > li.header ul > li.info {
  color: #1d1d1b;
}
/* line 130, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item > li.header ul > li.actions {
  flex-grow: 0;
  flex-shrink: 0;
}
/* line 137, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item > li.content {
  display: none;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.05);
}
/* line 141, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item > li.content ul {
  display: flex;
  flex-direction: row;
}
/* line 144, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item > li.content ul > li.relation {
  flex-grow: 1;
}
/* line 153, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item.expand > li.header > ul > li.expand > i {
  display: inline-block;
}
/* line 155, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item.expand > li.header > ul > li.expand > i.expand {
  display: none;
}
/* line 162, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item.expand > li.content {
  display: flex;
  flex-direction: column;
}
/* line 165, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item.expand > li.content ul:nth-child(odd) {
  background: rgba(255, 255, 255, 0.5);
}
/* line 170, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item i {
  font-size: 18px;
  padding: 5px;
  margin: 0;
}
/* line 175, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item p {
  font-size: 12px;
  padding: 5px;
  margin: 0;
}
/* line 180, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item button {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
}
/* line 185, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item button:active {
  color: white;
  background-color: #1d1d1b;
}
/* line 190, ../../default/scss/module/_group.scss */
.my-account ul.grid > li ul.item select {
  width: 100%;
}

/* line 197, ../../default/scss/module/_group.scss */
ul#group-index {
  display: flex;
  flex-direction: column;
}
/* line 200, ../../default/scss/module/_group.scss */
ul#group-index > li {
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
}
/* line 206, ../../default/scss/module/_group.scss */
ul#group-index > li .header {
  padding: 15px;
  margin: 0;
  background-color: white;
}
/* line 211, ../../default/scss/module/_group.scss */
ul#group-index > li .content {
  padding: 15px;
}
/* line 215, ../../default/scss/module/_group.scss */
ul#group-index > li.collapse .content {
  display: none;
}
/* line 219, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
/* line 223, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
}
/* line 228, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div > div {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
}
/* line 233, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div > div > ul {
  display: flex;
  flex-direction: row;
  flex-grow: 0;
  flex-shrink: 0;
  color: #1d1d1b;
}
/* line 239, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div > div > ul > li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* line 246, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.filters {
  display: flex;
  flex-direction: row;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 10px, rgba(255, 255, 255, 0.5) 10px, rgba(255, 255, 255, 0.5) 20px);
}
/* line 256, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.filters > div {
  flex-direction: row;
}
/* line 258, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.filters > div > ul {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
/* line 262, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.filters > div > ul:not(:last-of-type) {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
/* line 265, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.filters > div > ul > li {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
}
/* line 269, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.filters > div > ul > li:last-of-type {
  padding-bottom: 15px;
}
/* line 272, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.filters > div > ul > li label {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px 0 3px 0;
  flex-grow: 1;
  font-size: 10px;
}
/* line 280, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.filters > div > ul > li input[type="search"],
ul#group-index > li div[data-collection] > div.filters > div > ul > li input[type="text"],
ul#group-index > li div[data-collection] > div.filters > div > ul > li input[type="date"] {
  border: 1px solid rgba(0, 0, 0, 0.5);
  outline: none;
  background: rgba(255, 255, 255, 0.5);
  color: dimgray;
  padding: 10px;
  margin: 0;
  height: 15px;
}
/* line 290, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.filters > div > ul > li input[type="search"]::placeholder,
ul#group-index > li div[data-collection] > div.filters > div > ul > li input[type="text"]::placeholder,
ul#group-index > li div[data-collection] > div.filters > div > ul > li input[type="date"]::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
/* line 294, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.filters > div > ul > li select {
  -webkit-appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.5);
  outline: none;
  background: rgba(255, 255, 255, 0.5);
  color: dimgray;
  padding: 10px;
  border-radius: unset;
}
/* line 309, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.references > div > ul {
  background-color: #1d1d1b;
  color: white;
}
/* line 312, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.references > div > ul > li {
  display: flex;
  flex-direction: column;
}
/* line 315, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.references > div > ul > li:not(:last-of-type) {
  border-right: 1px solid rgba(255, 255, 255, 0.75);
}
/* line 318, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.references > div > ul > li > p {
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px;
}
/* line 327, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid {
  overflow-y: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  width: 100%;
  max-height: 570px;
  background-color: rgba(0, 0, 0, 0.15);
}
/* line 333, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div {
  flex-grow: 0;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid transparent;
}
/* line 338, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.5);
}
/* line 342, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ul > li {
  display: flex;
  flex-direction: row;
  align-items: center;
}
/* line 346, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ul > li.expand {
  cursor: pointer;
}
/* line 348, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ul > li.expand:hover {
  color: black;
}
/* line 352, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ul > li:not(:last-of-type) {
  border-right: 1px solid rgba(255, 255, 255, 0.75);
}
/* line 355, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ul > li > i {
  font-size: 18px;
  padding: 10px;
}
/* line 358, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ul > li > i:not(:last-child) {
  padding-right: 0;
}
/* line 361, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ul > li > i.collapse {
  display: none;
  flex-direction: row;
}
/* line 365, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ul > li > i.expand {
  display: flex;
  flex-direction: row;
}
/* line 370, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ul > li > p {
  padding: 10px;
}
/* line 373, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ul > li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  flex-shrink: 0;
  outline: none;
  padding: 10px;
}
/* line 381, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ul > li > a:not(:last-of-type) {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
/* line 384, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ul > li > a > i {
  font-size: 18px;
}
/* line 387, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ul > li > a > p {
  font-size: 8px;
}
/* line 393, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol {
  display: none;
  flex-direction: column;
  background-color: #f0f0f0;
  border-top: 1px dashed #b4b4b4;
}
/* line 398, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li {
  display: none;
  flex-direction: column;
}
/* line 401, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .label {
  display: flex;
  flex-direction: row;
  padding: 5px 10px 10px 10px;
  border-top: 1px dashed rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  font-weight: bold;
}
/* line 409, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .label > ul {
  display: flex;
  flex-direction: row;
  width: 100%;
}
/* line 413, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .label > ul > li {
  flex-direction: row;
}
/* line 415, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .label > ul > li button {
  display: flex;
  padding: 5px;
  color: white;
  border: none;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
}
/* line 423, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .label > ul > li button:hover {
  background-color: rgba(0, 0, 0, 0.75);
}
/* line 430, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .control, ul#group-index > li div[data-collection] > div.grid > div > ol > li > .detail {
  padding: 10px 10px 0 10px;
}
/* line 432, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .control .loading-spinner, ul#group-index > li div[data-collection] > div.grid > div > ol > li > .detail .loading-spinner {
  padding: 3px 15px;
}
/* line 436, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .control.loaded .loading-spinner, ul#group-index > li div[data-collection] > div.grid > div > ol > li > .detail.loaded .loading-spinner {
  display: none;
}
/* line 441, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .control.loaded > ul > li > button, ul#group-index > li div[data-collection] > div.grid > div > ol > li > .detail.loaded > ul > li > button {
  display: flex;
}
/* line 447, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .control > ul, ul#group-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul {
  display: flex;
  flex-direction: row;
}
/* line 450, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .control > ul:not(:last-of-type), ul#group-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul:not(:last-of-type) {
  margin-bottom: 5px;
}
/* line 453, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li, ul#group-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li {
  display: flex;
  flex-direction: column;
}
/* line 456, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li > label, ul#group-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li > label {
  flex-shrink: 0;
  justify-items: center;
  font-size: 8px;
  color: dimgray;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 10px;
}
/* line 467, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li input[type="search"],
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li input[type="text"],
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li input[type="date"], ul#group-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li input[type="search"],
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li input[type="text"],
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li input[type="date"] {
  border: 1px solid rgba(0, 0, 0, 0.5);
  outline: none;
  background: rgba(255, 255, 255, 0.5);
  color: dimgray;
  padding: 10px;
  margin: 0 10px;
  height: 15px;
}
/* line 477, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li input[type="search"]::placeholder,
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li input[type="text"]::placeholder,
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li input[type="date"]::placeholder, ul#group-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li input[type="search"]::placeholder,
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li input[type="text"]::placeholder,
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li input[type="date"]::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
/* line 481, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li > p, ul#group-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li > p {
  flex-grow: 1;
  flex-shrink: 0;
  justify-items: center;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 10px;
}
/* line 490, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li > p.important, ul#group-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li > p.important {
  font-weight: bold;
  color: black;
}
/* line 495, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li > button, ul#group-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li > button {
  display: none;
  border: none;
  outline: none;
  background: none;
  padding: 0 10px;
}
/* line 501, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .control > ul > li > button > i, ul#group-index > li div[data-collection] > div.grid > div > ol > li > .detail > ul > li > button > i {
  font-size: 24px;
}
/* line 507, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li > .control:last-of-type, ul#group-index > li div[data-collection] > div.grid > div > ol > li > .detail:last-of-type {
  padding-bottom: 10px;
}
/* line 511, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li.loading-spinner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 15px;
}
/* line 517, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div > ol > li.loading-spinner > span:not(:last-of-type) {
  margin-right: 5px;
}
/* line 524, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div.expand {
  background-color: white;
  border: 1px solid #b4b4b4;
  box-shadow: 0 5px 18px -4px rgba(0, 0, 0, 0.75);
}
/* line 531, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div.expand > ul > li > i.collapse {
  display: flex;
}
/* line 534, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div.expand > ul > li > i.expand {
  display: none;
}
/* line 540, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div.expand > ol {
  display: flex;
}
/* line 546, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div.loaded > ol > li {
  display: flex;
}
/* line 548, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.grid > div.loaded > ol > li.loading-spinner {
  display: none;
}
/* line 556, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.status {
  flex-direction: row;
  padding: 15px;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 10px, rgba(255, 255, 255, 0.5) 10px, rgba(255, 255, 255, 0.5) 20px);
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}
/* line 568, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] > div.status > span:not(:last-of-type) {
  margin-right: 5px;
}
/* line 574, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] .show-on-loading {
  display: none;
}
/* line 577, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] .hide-on-loading {
  display: block;
}
/* line 581, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection].loading .show-on-loading {
  display: block;
}
/* line 584, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection].loading .hide-on-loading {
  display: none;
}
/* line 588, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] .show-on-limited {
  display: none;
}
/* line 591, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection] .hide-on-limited {
  display: block;
}
/* line 595, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection].limited .show-on-limited {
  display: block;
}
/* line 598, ../../default/scss/module/_group.scss */
ul#group-index > li div[data-collection].limited .hide-on-limited {
  display: none;
}

/* line 1, ../../default/scss/module/_documents.scss */
.spr-account-vdb_documents_open {
  width: 42px;
  height: 48px;
  background-position: -1238px -56px;
}

/* line 2, ../../default/scss/module/_documents.scss */
.block-account li.current .spr-account-vdb_documents_open,
.block-account li:hover .spr-account-vdb_documents_open {
  background-position: -1238px -104px;
}

/* line 5, ../../default/scss/module/_documents.scss */
ul#documents-index {
  display: flex;
  flex-direction: column;
}
/* line 8, ../../default/scss/module/_documents.scss */
ul#documents-index > li {
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
}
/* line 14, ../../default/scss/module/_documents.scss */
ul#documents-index > li .header {
  padding: 15px;
  margin: 0;
  background-color: white;
}
/* line 19, ../../default/scss/module/_documents.scss */
ul#documents-index > li .content {
  padding: 15px;
}
/* line 23, ../../default/scss/module/_documents.scss */
ul#documents-index > li.collapse .content {
  display: none;
}
/* line 27, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
/* line 31, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
}
/* line 36, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div > div {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
}
/* line 41, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div > div > ul {
  display: flex;
  flex-direction: row;
  flex-grow: 0;
  flex-shrink: 0;
  color: #888888;
}
/* line 47, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div > div > ul > li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* line 54, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.filters {
  display: flex;
  flex-direction: row;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 10px, rgba(255, 255, 255, 0.5) 10px, rgba(255, 255, 255, 0.5) 20px);
}
/* line 64, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.filters > div {
  flex-direction: row;
}
/* line 66, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.filters > div > ul {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
/* line 70, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.filters > div > ul:not(:last-of-type) {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
/* line 73, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.filters > div > ul > li {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
}
/* line 77, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.filters > div > ul > li:last-of-type {
  padding-bottom: 15px;
}
/* line 80, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.filters > div > ul > li label {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px 0 3px 0;
  flex-grow: 1;
  font-size: 10px;
}
/* line 88, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.filters > div > ul > li input[type="text"],
ul#documents-index > li div[data-collection] > div.filters > div > ul > li input[type="date"] {
  border: 1px solid rgba(0, 0, 0, 0.5);
  outline: none;
  background: rgba(255, 255, 255, 0.5);
  color: dimgray;
  padding: 10px;
  margin: 0;
  height: 15px;
}
/* line 97, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.filters > div > ul > li input[type="text"]::placeholder,
ul#documents-index > li div[data-collection] > div.filters > div > ul > li input[type="date"]::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
/* line 101, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.filters > div > ul > li select {
  -webkit-appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.5);
  outline: none;
  background: rgba(255, 255, 255, 0.5);
  color: dimgray;
  padding: 10px;
  border-radius: unset;
}
/* line 116, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.references > div > ul {
  background-color: #1d1d1b;
  color: white;
}
/* line 119, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.references > div > ul > li {
  display: flex;
  flex-direction: column;
}
/* line 122, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.references > div > ul > li:not(:last-of-type) {
  border-right: 1px solid rgba(255, 255, 255, 0.75);
}
/* line 125, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.references > div > ul > li > p {
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px;
}
/* line 134, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid {
  overflow-y: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  width: 100%;
  max-height: 570px;
  background-color: rgba(0, 0, 0, 0.15);
}
/* line 140, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div {
  flex-grow: 0;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.25);
}
/* line 144, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.5);
}
/* line 147, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ul {
  height: 56px;
}
/* line 149, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ul > li {
  display: flex;
  flex-direction: row;
  align-items: center;
}
/* line 153, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ul > li.expand {
  cursor: pointer;
}
/* line 155, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ul > li.expand:hover {
  color: black;
}
/* line 159, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ul > li:not(:last-of-type) {
  border-right: 1px solid rgba(255, 255, 255, 0.75);
}
/* line 162, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ul > li > i {
  font-size: 18px;
  padding: 10px;
}
/* line 165, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ul > li > i:not(:last-child) {
  padding-right: 0;
}
/* line 168, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ul > li > i.collapse {
  display: none;
  flex-direction: row;
}
/* line 172, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ul > li > i.expand {
  display: flex;
  flex-direction: row;
}
/* line 177, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ul > li > p {
  padding: 10px;
}
/* line 180, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ul > li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  flex-shrink: 0;
  outline: none;
  padding: 10px;
}
/* line 188, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ul > li > a:not(:last-of-type) {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
/* line 191, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ul > li > a > i {
  font-size: 18px;
}
/* line 194, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ul > li > a > p {
  font-size: 8px;
}
/* line 200, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ol {
  display: none;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 10px;
  box-shadow: inset 0 3px 5px -3px rgba(0, 0, 0, 0.5);
}
/* line 206, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ol > li {
  padding: 10px 10px 0 10px;
}
/* line 208, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ol > li:last-of-type {
  padding-bottom: 10px;
}
/* line 211, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ol > li.loading-spinner {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
/* line 216, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ol > li.loading-spinner > span:not(:last-of-type) {
  margin-right: 5px;
}
/* line 221, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ol > li > ul {
  display: flex;
  flex-direction: row;
}
/* line 224, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ol > li > ul:not(:last-of-type) {
  margin-bottom: 5px;
}
/* line 227, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ol > li > ul > li {
  display: flex;
  flex-direction: column;
}
/* line 230, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ol > li > ul > li > label {
  flex-grow: 1;
  flex-shrink: 0;
  justify-items: center;
  font-size: 8px;
  color: dimgray;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 10px;
}
/* line 242, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ol > li > ul > li > p {
  flex-grow: 1;
  flex-shrink: 0;
  justify-items: center;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 10px;
}
/* line 251, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ol > li > ul > li > p.important {
  font-weight: bold;
  color: black;
}
/* line 256, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ol > li > ul > li > a {
  display: flex;
  flex-direction: row;
  justify-items: center;
  flex-grow: 1;
  flex-shrink: 0;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 10px;
  outline: none;
}
/* line 268, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ol > li > ul > li > a.important {
  font-weight: bold;
  color: black;
}
/* line 272, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div > ol > li > ul > li > a > i {
  font-size: 18px;
  margin-left: 5px;
}
/* line 285, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div.expand > ul > li > i.collapse {
  display: flex;
}
/* line 288, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div.expand > ul > li > i.expand {
  display: none;
}
/* line 294, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div.expand > ol {
  display: flex;
}
/* line 301, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.grid > div.loaded > ol > li.loading-spinner {
  display: none;
}
/* line 309, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.status {
  flex-direction: row;
  padding: 15px;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 10px, rgba(255, 255, 255, 0.5) 10px, rgba(255, 255, 255, 0.5) 20px);
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}
/* line 321, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] > div.status > span:not(:last-of-type) {
  margin-right: 5px;
}
/* line 327, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] .show-on-loading {
  display: none;
}
/* line 330, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] .hide-on-loading {
  display: block;
}
/* line 334, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection].loading .show-on-loading {
  display: block;
}
/* line 337, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection].loading .hide-on-loading {
  display: none;
}
/* line 341, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] .show-on-limited {
  display: none;
}
/* line 344, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection] .hide-on-limited {
  display: block;
}
/* line 348, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection].limited .show-on-limited {
  display: block;
}
/* line 351, ../../default/scss/module/_documents.scss */
ul#documents-index > li div[data-collection].limited .hide-on-limited {
  display: none;
}

/* line 4, ../../default/scss/vaimo.scss */
#tree h1 {
  padding: 12px 0;
}
@media (max-width: 767px) {
  /* line 4, ../../default/scss/vaimo.scss */
  #tree h1 {
    font-size: 1.2rem;
  }
}
/* line 11, ../../default/scss/vaimo.scss */
#tree .title {
  font-weight: bold;
  color: red;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  /* line 11, ../../default/scss/vaimo.scss */
  #tree .title {
    font-size: 0.8rem;
  }
}
/* line 20, ../../default/scss/vaimo.scss */
#tree ul {
  margin-left: 12px;
  margin-bottom: 24px;
}

/* line 26, ../../default/scss/vaimo.scss */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
/* line 32, ../../default/scss/vaimo.scss */
.alert.success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
/* line 38, ../../default/scss/vaimo.scss */
.alert.info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
/* line 44, ../../default/scss/vaimo.scss */
.alert.warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
/* line 50, ../../default/scss/vaimo.scss */
.alert.danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/* line 57, ../../default/scss/vaimo.scss */
.header a {
  color: blue;
}

/* line 61, ../../default/scss/vaimo.scss */
.header .user-menu {
  display: block;
  float: right;
  height: 110px;
  margin: 0;
  width: 29%;
  margin-top: -65px;
}
@media (max-width: 1024px) {
  /* line 61, ../../default/scss/vaimo.scss */
  .header .user-menu {
    display: none;
  }
}

/* line 74, ../../default/scss/vaimo.scss */
.header-main {
  display: block;
  height: 100px;
  margin-top: 20px;
}

/* line 81, ../../default/scss/vaimo.scss */
.header-container .logo-wrapper {
  margin: 0;
}
@media (max-width: 1024px) {
  /* line 81, ../../default/scss/vaimo.scss */
  .header-container .logo-wrapper {
    float: unset;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 1024px) {
  /* line 89, ../../default/scss/vaimo.scss */
  .header-container .logo-wrapper .logo {
    float: unset;
    margin: 0 auto 10px;
  }
}
/* line 97, ../../default/scss/vaimo.scss */
.header-container .usps {
  display: flex;
  margin-left: 30px;
  flex-direction: row;
  max-width: 740px;
  padding-top: 40px;
}
@media (max-width: 1024px) {
  /* line 97, ../../default/scss/vaimo.scss */
  .header-container .usps {
    display: none;
  }
}
/* line 108, ../../default/scss/vaimo.scss */
.header-container .usps > span {
  display: flex;
  align-items: center;
}

@media (max-width: 1024px) {
  /* line 116, ../../default/scss/vaimo.scss */
  .header-container .usps {
    display: none;
  }
}
/* line 123, ../../default/scss/vaimo.scss */
.header .logo-wrapper {
  margin: 0;
}
/* line 129, ../../default/scss/vaimo.scss */
.header .header-main .usps-wrapper .usps {
  margin-left: 40px;
}
/* line 132, ../../default/scss/vaimo.scss */
.header .header-main .usps-wrapper .usps span {
  flex: 1;
  align-items: center;
  margin-right: 2px;
}
/* line 136, ../../default/scss/vaimo.scss */
.header .header-main .usps-wrapper .usps span .material-icons {
  font-size: 20px;
  margin-right: 2px;
}

/* line 149, ../../default/scss/vaimo.scss */
#search-wrapper-mobile {
  display: none;
  margin-top: -60px;
  float: left;
  text-align: center;
  position: relative;
  top: -10px;
  height: 30px;
  padding: 0 20px;
}
@media (max-width: 1024px) {
  /* line 149, ../../default/scss/vaimo.scss */
  #search-wrapper-mobile {
    display: flex;
    justify-content: stretch;
    width: 95%;
  }
  /* line 163, ../../default/scss/vaimo.scss */
  #search-wrapper-mobile .searchfield {
    display: flex;
    flex-direction: row;
    border: 1px solid #CCC;
    border-radius: 6px;
    background-color: white;
    overflow: hidden;
  }
}
@media (max-width: 640px) {
  /* line 149, ../../default/scss/vaimo.scss */
  #search-wrapper-mobile {
    width: 90%;
  }
}
/* line 177, ../../default/scss/vaimo.scss */
#search-wrapper-mobile input[type="text"] {
  line-height: 30px;
  padding-left: 8px;
  border: none;
  background: transparent;
  flex-grow: 1;
}
/* line 183, ../../default/scss/vaimo.scss */
#search-wrapper-mobile input[type="text"]::placeholder {
  text-align: center;
}
/* line 188, ../../default/scss/vaimo.scss */
#search-wrapper-mobile button {
  background: #fff url(../images/header/icon-search-60.png) no-repeat 50%;
  background-size: 20px;
  height: 30px;
  width: 30px;
  padding: 0;
  margin: 0;
  border: 0;
  position: relative;
  left: 0;
}
/* line 199, ../../default/scss/vaimo.scss */
#search-wrapper-mobile button.is-loading {
  background: #fff url(../images/vaimo-loader.gif) no-repeat center;
}
/* line 204, ../../default/scss/vaimo.scss */
#search-wrapper-mobile #search_mini_form_mobile {
  flex-grow: 1;
}
/* line 207, ../../default/scss/vaimo.scss */
#search-wrapper-mobile #search_autocomplete_mobile {
  display: block;
  flex-grow: 1;
  z-index: 1;
  background: #FFFFFF;
  color: #000000;
}
/* line 213, ../../default/scss/vaimo.scss */
#search-wrapper-mobile #search_autocomplete_mobile ul {
  border: 1px solid #CCCCCC;
}
/* line 216, ../../default/scss/vaimo.scss */
#search-wrapper-mobile #search_autocomplete_mobile ul .search-suggestions {
  text-align: left;
  padding: 3px;
  display: block;
  font-weight: bold;
  border-bottom: 3px solid #CCCCCC;
}
/* line 224, ../../default/scss/vaimo.scss */
#search-wrapper-mobile #search_autocomplete_mobile ul li {
  text-align: left;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  text-transform: capitalize;
  margin-bottom: unset;
}
/* line 231, ../../default/scss/vaimo.scss */
#search-wrapper-mobile #search_autocomplete_mobile ul li.term {
  padding: 3px;
}
/* line 234, ../../default/scss/vaimo.scss */
#search-wrapper-mobile #search_autocomplete_mobile ul li.term span {
  float: right;
}
/* line 239, ../../default/scss/vaimo.scss */
#search-wrapper-mobile #search_autocomplete_mobile ul li .search-term {
  color: #f26522;
  display: inline-block;
}
/* line 244, ../../default/scss/vaimo.scss */
#search-wrapper-mobile #search_autocomplete_mobile ul li:first-child {
  border-top: none;
}
/* line 245, ../../default/scss/vaimo.scss */
#search-wrapper-mobile #search_autocomplete_mobile ul li:last-child {
  border-bottom: none;
}
/* line 247, ../../default/scss/vaimo.scss */
#search-wrapper-mobile #search_autocomplete_mobile ul .term {
  background: #FFFFFF;
}
/* line 249, ../../default/scss/vaimo.scss */
#search-wrapper-mobile #search_autocomplete_mobile ul .term:hover {
  background: #f5f5f5;
}
/* line 256, ../../default/scss/vaimo.scss */
#search-wrapper-mobile #search_autocomplete_mobile ul .product a {
  display: flex;
  line-height: 60px;
  color: #000000;
  padding-right: 3px;
}
/* line 262, ../../default/scss/vaimo.scss */
#search-wrapper-mobile #search_autocomplete_mobile ul .product a .product-thumbnail {
  align-self: center;
  width: 60px;
  background: #FFFFFF;
  border: none;
}
/* line 269, ../../default/scss/vaimo.scss */
#search-wrapper-mobile #search_autocomplete_mobile ul .product a .product-information {
  padding-left: 6px;
  display: inline-block;
  line-height: 60px;
}
/* line 275, ../../default/scss/vaimo.scss */
#search-wrapper-mobile #search_autocomplete_mobile ul .product a:hover {
  background: #f5f5f5;
}

/* line 284, ../../default/scss/vaimo.scss */
.header #nav > li.parent > a {
  background-image: none;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
/* line 289, ../../default/scss/vaimo.scss */
.header #nav > li.parent > a:hover {
  background-color: #b72114;
}

/* line 294, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link {
  flex: 1 1 0;
  background: unset;
}
/* line 299, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.categories > a {
  background: black;
}
/* line 301, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.categories > a:hover {
  background-color: #353d50;
}
/* line 306, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.categories .list-categories {
  position: absolute;
  z-index: 5;
  width: 100%;
  max-width: 300px;
  display: none;
  border: 1px solid #CCCCCC;
  background: #FFFFFF;
  min-height: 400px;
}
/* line 316, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.categories .list-categories ul {
  width: 100%;
  font-size: 20px;
  font-weight: unset;
  background: #FFFFFF;
}
/* line 322, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.categories .list-categories ul li {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  padding-left: 6px;
}
/* line 328, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.categories .list-categories ul li.active {
  background: rgba(255, 0, 0, 0.05);
}
/* line 331, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.categories .list-categories ul li.active > a {
  color: #ED1B24;
}
/* line 336, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.categories .list-categories ul li i {
  float: left;
  top: 15px;
  color: #000000;
  padding: 5px;
}
/* line 343, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.categories .list-categories ul li a {
  width: 100%;
  font-size: 12px;
  padding-left: 8px;
  padding-right: 6px;
  line-height: 30px;
}
/* line 350, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.categories .list-categories ul li a:hover {
  color: #ED1B24;
}
/* line 354, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.categories .list-categories ul li a::after {
  content: '\e315';
  font-family: 'Material Icons';
  float: right;
}
/* line 361, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.categories .list-categories ul li ul {
  border: 1px solid #CCCCCC;
  position: absolute !important;
  visibility: hidden;
  left: 100%;
  top: -1px;
  min-height: 100%;
  background: #FFFFFF;
}
/* line 373, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.categories .list-categories ul li ul li.link a::after {
  content: '';
}
/* line 381, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.categories .list-categories ul li:hover > ul {
  visibility: visible;
}
/* line 388, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.categories > a i {
  float: right;
  top: 15px;
  position: relative;
  right: 6px;
}
/* line 395, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.categories.menu-open > .list-categories {
  display: block;
}
/* line 400, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.search {
  flex: 2 1 0;
  flex-direction: row;
}
/* line 401, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.search .searchfield {
  display: flex;
  flex-direction: row;
  border-top: 1px solid #C0C0C0;
  border-bottom: 1px solid #C0C0C0;
  background-color: white;
}
/* line 411, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.search input[type="text"] {
  font-size: 14px;
  line-height: 53px;
  height: 53px;
  border: none;
  width: calc(100% - 30px);
  padding: 0 0 0 8px;
  border: unset;
  margin-right: -4px;
  box-sizing: border-box;
}
/* line 423, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.search button {
  background: #fff url(../images/header/icon-search-60.png) no-repeat 50%;
  background-size: 20px;
  height: 53px;
  width: 30px;
  padding: 0;
  margin: 0;
  border: 0;
  float: right;
}
/* line 433, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.search button.is-loading {
  background: #fff url(../images/vaimo-loader.gif) no-repeat center;
}
/* line 438, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.search .search-autocomplete {
  display: block;
  background: #FFFFFF;
  color: #000000;
}
/* line 443, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.search .search-autocomplete ul {
  border: 1px solid #CCCCCC;
}
/* line 446, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.search .search-autocomplete ul .search-suggestions {
  padding: 3px;
  display: block;
  font-weight: bold;
  border-bottom: 3px solid #CCCCCC;
}
/* line 453, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.search .search-autocomplete ul li {
  cursor: pointer;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  text-transform: capitalize;
  margin-bottom: unset;
}
/* line 460, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.search .search-autocomplete ul li.term {
  padding: 3px;
}
/* line 463, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.search .search-autocomplete ul li.term span {
  float: right;
}
/* line 468, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.search .search-autocomplete ul li .search-term {
  color: #f26522;
  display: inline-block;
}
/* line 473, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.search .search-autocomplete ul li:first-child {
  border-top: none;
}
/* line 474, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.search .search-autocomplete ul li:last-child {
  border-bottom: none;
}
/* line 476, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.search .search-autocomplete ul .term {
  background: #FFFFFF;
}
/* line 478, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.search .search-autocomplete ul .term:hover {
  background: #f5f5f5;
}
/* line 485, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.search .search-autocomplete ul .product a {
  display: flex;
  line-height: 60px;
  color: #000000;
  padding-right: 3px;
}
/* line 491, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.search .search-autocomplete ul .product a .product-thumbnail {
  align-self: center;
  width: 60px;
  background: #FFFFFF;
  border: none;
}
/* line 498, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.search .search-autocomplete ul .product a .product-information {
  padding-left: 6px;
  display: inline-block;
  line-height: 60px;
}
/* line 504, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link.search .search-autocomplete ul .product a:hover {
  background: #f5f5f5;
}
/* line 513, ../../default/scss/vaimo.scss */
.header #nav > li.nav-custom-link > a {
  padding: 0;
  line-height: 55px;
  background-color: #e83e30;
}

@media only screen and (max-width: 1024px) {
  /* line 521, ../../default/scss/vaimo.scss */
  .header .alt-nav {
    margin-top: 80px;
  }
  /* line 523, ../../default/scss/vaimo.scss */
  .header .alt-nav .accordion.vertnav.vertnav-top li a {
    background-color: #303030;
  }
}
/* line 529, ../../default/scss/vaimo.scss */
#radio-custom-container, #radio-custom-container-mobile {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
/* line 534, ../../default/scss/vaimo.scss */
#radio-custom-container .radio-custom-container, #radio-custom-container-mobile .radio-custom-container {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 1023px) {
  /* line 534, ../../default/scss/vaimo.scss */
  #radio-custom-container .radio-custom-container, #radio-custom-container-mobile .radio-custom-container {
    float: unset;
    margin: auto;
    justify-content: center;
  }
}
/* line 545, ../../default/scss/vaimo.scss */
#radio-custom-container .radio-custom-container input, #radio-custom-container-mobile .radio-custom-container input {
  margin: 0 8px;
}
/* line 548, ../../default/scss/vaimo.scss */
#radio-custom-container .radio-custom-container input:first-child, #radio-custom-container-mobile .radio-custom-container input:first-child {
  margin: 0 8px 0 0;
}
/* line 552, ../../default/scss/vaimo.scss */
#radio-custom-container .radio-custom-container label, #radio-custom-container-mobile .radio-custom-container label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 1, ../scss/vaimo.scss */
.header .user-menu {
  margin-top: -20px;
}

/*# sourceMappingURL=imes.css.map */
