@charset "UTF-8";

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after {
    content: "";
    content: none;
}

q:before, q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/**
 * Font Size (in rem)
 */
/*@mixin font-size($sizeValue: 1.4) {
  font-size: ($sizeValue * 10) + px; //fallback for old browsers
  font-size: $sizeValue + rem;
  line-height: 1.3;
}*/
/**
 * Font Size (in px)
 */
/*!
 * Polyfill CSS object-fit
 * http://helloanselm.com/object-fit
 *
 * @author: Anselm Hannemann <hello@anselm-hannemann.com>
 * @author: Christian "Schepp" Schaefer <schaepp@gmx.de>
 * @version: 0.3.4
 *
 */
.x-object-fit {
    position: relative !important;
    display: inline-block !important;
}

.x-object-fit > .x-object-fit-taller,
.x-object-fit > .x-object-fit-wider {
    position: absolute !important;
    left: -100% !important;
    right: -100% !important;
    top: -100% !important;
    bottom: -100% !important;
    margin: auto !important;
}

.x-object-fit-none > .x-object-fit-taller,
.x-object-fit-none > .x-object-fit-wider {
    width: auto !important;
    height: auto !important;
}

.x-object-fit-fill > .x-object-fit-taller,
.x-object-fit-fill > .x-object-fit-wider {
    width: 100% !important;
    height: 100% !important;
}

.x-object-fit-contain > .x-object-fit-taller {
    width: auto !important;
    height: 100% !important;
}

.x-object-fit-contain > .x-object-fit-wider {
    width: 100% !important;
    height: auto !important;
}

.x-object-fit-cover > .x-object-fit-taller,
.x-object-fit-cover > .x-object-fit-wider {
    max-width: none !important;
    max-height: none !important;
}

.x-object-fit-cover > .x-object-fit-taller {
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
}

.x-object-fit-cover > .x-object-fit-wider {
    width: auto !important;
    height: 100% !important;
    max-width: none !important;
}

.x-object-position-top > .x-object-fit-taller,
.x-object-position-top > .x-object-fit-wider {
    top: 0 !important;
    bottom: auto !important;
}

.x-object-position-right > .x-object-fit-taller,
.x-object-position-right > .x-object-fit-wider {
    left: auto !important;
    right: 0 !important;
}

.x-object-position-bottom > .x-object-fit-taller,
.x-object-position-bottom > .x-object-fit-wider {
    top: auto !important;
    bottom: 0 !important;
}

.x-object-position-left > .x-object-fit-taller,
.x-object-position-left > .x-object-fit-wider {
    left: 0 !important;
    right: auto !important;
}

.grid-container {
    width: 100%;
}

.grid-container .row {
    position: relative;
    width: 100%;
}

.grid-container .row [class^="col"] {
    float: left;
    margin-right: 2%;
    min-height: 0.125rem;
}

@media all and (max-width: 768px) {
    .grid-container .row [class^="col"] {
        margin-right: 0;
    }
}

.grid-container .row [class^="col"] + [class^="col"] {
    margin-left: 2%;
    margin-right: 0;
}

@media all and (max-width: 768px) {
    .grid-container .row [class^="col"] + [class^="col"] {
        margin-right: 0;
        margin-left: 0;
    }
}

.grid-container .row::after {
    content: "";
    display: table;
    clear: both;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
    width: 96%;
}

.col-1-sm {
    width: 4.33333%;
}

.col-2-sm {
    width: 12.66667%;
}

.col-3-sm {
    width: 21%;
}

.col-4-sm {
    width: 29.33333%;
}

.col-5-sm {
    width: 37.66667%;
}

.col-6-sm {
    width: 46%;
}

.col-7-sm {
    width: 54.33333%;
}

.col-8-sm {
    width: 62.66667%;
}

.col-9-sm {
    width: 71%;
}

.col-10-sm {
    width: 79.33333%;
}

.col-11-sm {
    width: 87.66667%;
}

.col-12-sm {
    width: 96%;
}
@media only screen and (max-width: 767px) {
    .hidden-sm {
        display: none !important;
    }
}
@media only screen and (min-width: 768px) {
    .col-1 {
        width: 4.33333%;
    }

    .col-2 {
        width: 12.66667%;
    }

    .col-3 {
        width: 21%;
    }

    .col-4 {
        width: 29.33333%;
    }

    .col-5 {
        width: 37.66667%;
    }

    .col-6 {
        width: 46%;
    }

    .col-7 {
        width: 54.33333%;
    }

    .col-8 {
        width: 62.66667%;
    }

    .col-9 {
        width: 71%;
    }

    .col-10 {
        width: 79.33333%;
    }

    .col-11 {
        width: 87.66667%;
    }

    .col-12 {
        width: 96%;
    }
    .visible-sm {
        display: none;
    }
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
    vertical-align: top;
}

.fancybox-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8020;
}

@media (max-width: 1024px) {
    .fancybox-wrap {
        width: 80% !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin-top: 100px;
        margin: 0 auto;
    }
}

.fancybox-skin {
    position: initial;
    background: #fff;
    color: #444;
    text-shadow: none;
    /*-webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;*/
}

.fancybox-opened {
    z-index: 8030;
}

/*
.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
*/
.fancybox-outer, .fancybox-inner {
    position: relative;
}

.fancybox-inner {
    overflow: hidden;
}
.fancybox-skin .fancybox-outer .fancybox-inner {
    overflow: hidden !important;
}

.catalog-product-view .fancybox-skin .fancybox-outer .fancybox-inner{
    height: auto !important;
}

@media (max-width: 1024px) {
    .fancybox-inner {
        width: 100% !important;
        overflow-x: hidden !important;
    }
}

.fancybox-type-iframe .fancybox-inner {
    -webkit-overflow-scrolling: touch;
}

.fancybox-error {
    color: #444;
    font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 15px;
    white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.fancybox-image {
    max-width: 100%;
    max-height: 100%;
}

.fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("../images/fancybox/fancybox_sprite.png");
}

#fancybox-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -22px;
    margin-left: -22px;
    background-position: 0 -108px;
    opacity: 0.8;
    cursor: pointer;
    z-index: 8060;
}

#fancybox-loading div {
    width: 44px;
    height: 44px;
    background: url("../images/fancybox/fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
    position: absolute;
    top: 13px;
    right: 3px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 8040;
}

.fancybox-nav {
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    background: transparent url("../images/fancybox/blank.gif");
    /* helps IE */
    -webkit-tap-highlight-color: transparent;
    z-index: 8040;
}

.fancybox-prev {
    left: 0;
}

.fancybox-next {
    right: 0;
}

.fancybox-nav span {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 34px;
    margin-top: -18px;
    cursor: pointer;
    z-index: 8040;
    visibility: hidden;
}

.fancybox-prev span {
    left: 10px;
    background-position: 0 -36px;
}

.fancybox-next span {
    right: 10px;
    background-position: 0 -72px;
}

.fancybox-nav:hover span {
    visibility: visible;
}

.fancybox-tmp {
    position: absolute;
    top: -99999px;
    left: -99999px;
    display: none;
    /*visibility: hidden;*/
    max-width: 99999px;
    max-height: 99999px;
    overflow: visible !important;
}

/* Overlay helper */
.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

/* CommentÃ© suite bug 10144
.fancybox-lock body {
    overflow: hidden !important;
} */
.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
    z-index: 8010;
    background-image: url("../images/fancybox/fancybox_overlay.png") !important;
}

.fancybox-overlay-fixed {
    position: fixed;
    bottom: 0;
    right: 0;
}

@media (max-width: 767px) {
    .fancybox-overlay-fixed {
        overflow: auto;
    }
}

.fancybox-lock .fancybox-overlay {
    overflow: auto;
    overflow-y: scroll;
}

/* Title helper */
.fancybox-title {
    font: normal 13px/20px Arial, sans-serif;
    position: relative;
    text-shadow: none;
    z-index: 8030;
    background: #fff url("../images/fancybox/bkg-title-fancy.gif") left top repeat-x;
}

@media (max-width: 767px) {
    .fancybox-title {
        font-size: 14px;
        font-size: 0.875rem;
        line-height: 1.3;
        color: #303030;
        text-align: center;
        background: #fff;
    }
}

.fancybox-opened .fancybox-title {
    visibility: visible;
    height: 52px;
}

@media (max-width: 1024px) {
    .fancybox-opened .fancybox-title {
        height: auto;
        padding: 13px 40px 13px 40px;
    }
}

.fancybox-title-float-wrap {
    position: absolute;
    bottom: 0;
    right: 50%;
    margin-bottom: -35px;
    z-index: 8050;
    text-align: center;
}

.fancybox-title-float-wrap .child {
    display: inline-block;
    margin-right: -100%;
    padding: 2px 20px;
    background: transparent;
    /* Fallback for web browsers that doesn't support RGBa */
    background: rgba(0, 0, 0, 0.8);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    text-shadow: 0 1px 2px #222;
    color: #FFF;
    font-weight: bold;
    line-height: 24px;
    white-space: nowrap;
}

.fancybox-title-outside-wrap {
    position: relative;
    margin-top: 10px;
    color: #322c2c;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    line-height: 52px;
    padding-left: 40px;
}

@media (max-width: 767px) {
    .fancybox-title-outside-wrap {
        font-size: 14px;
        font-size: 0.875rem;
        line-height: 1.3;
        color: #303030;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .fancybox-title-outside-wrap {
        line-height: 1.3;
    }
}

.fancybox-title-inside-wrap {
    padding-top: 10px;
}

.fancybox-title-over-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 10px;
    background: #000;
    background: rgba(0, 0, 0, 0.8);
}

.fancybox-overlay .title-whislist {
    display: block;
    clear: both;
    width: 96%;
    color: #322c2c;
    margin-top: 25px;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.fancybox-overlay .title-popup-error {
    display: block;
    clear: both;
    width: 96%;
    color: #322c2c;
    margin-top: 25px;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

@font-face {
    font-family: 'GothamRndBold';
    font-display: swap;
    src: url("../fonts/GothamRndBold.eot");
    src: url("../fonts/GothamRndBold.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamRndBold.woff2") format("woff2"), url("../fonts/GothamRndBold.woff") format("woff"), url("../fonts/GothamRndBold.ttf") format("truetype"), url("../fonts/GothamRndBold.svg#GothamRndBold") format("svg");
}

@font-face {
    font-family: 'gothamroundedbook';
    font-display: swap;
    src: url("../fonts/gothamroundedbook.eot");
    src: url("../fonts/gothamroundedbook.eot?#iefix") format("embedded-opentype"), url("../fonts/gothamroundedbook.woff2") format("woff2"), url("../fonts/gothamroundedbook.woff") format("woff"), url("../fonts/gothamroundedbook.ttf") format("truetype"), url("../fonts/gothamroundedbook.svg#gothamroundedbook") format("svg");
}

@font-face {
    font-family: 'GothamLight';
    font-display: swap;
    src: url("../fonts/Gotham-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Gotham-Light.otf") format("opentype"), url("../fonts/Gotham-Light.woff") format("woff"), url("../fonts/Gotham-Light.ttf") format("truetype"), url("../fonts/Gotham-Light.svg#Gotham-Light") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GothamBook';
    font-display: swap;
    src: url("../fonts/gotham-book.eot");
    src: url("../fonts/gotham-book.eot") format("embedded-opentype"), url("../fonts/gotham-book.woff") format("woff"), url("../fonts/gotham-book.ttf") format("truetype"), url("../fonts/gotham-book.svg#GothamBook") format("svg");
}

@font-face {
    font-family: 'GothamMedium';
    font-display: swap;
    src: url("../fonts/gotham-medium.eot");
    src: url("../fonts/gotham-medium.eot") format("embedded-opentype"), url("../fonts/gotham-medium.woff") format("woff"), url("../fonts/gotham-medium.ttf") format("truetype"), url("../fonts/gotham-medium.svg#GothamMedium") format("svg");
}

@font-face {
    font-family: 'dosisregular';
    font-display: swap;
    src: url("../fonts/dosis-regular-webfont.eot");
    src: url("../fonts/dosis-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/dosis-regular-webfont.woff") format("woff"), url("../fonts/dosis-regular-webfont.ttf") format("truetype"), url("../fonts/dosis-regular-webfont.svg#dosisregular") format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'dosisbold';
    font-display: swap;
    src: url("../fonts/dosis-bold-webfont.eot");
    src: url("../fonts/dosis-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/dosis-bold-webfont.woff") format("woff"), url("../fonts/dosis-bold-webfont.ttf") format("truetype"), url("../fonts/dosis-bold-webfont.svg#dosisbold") format("svg");
    font-weight: normal;
    font-style: normal;
}

/* apply a natural box layout model to all elements, but allowing components to change */
html {
    box-sizing: border-box;
}

html.navOpen {
    height: 100%;
    overflow: hidden;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.3;
    line-height: 1;
}

body * {
    font-size: inherit;
}

.navOpen body {
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    height: 100%
}

b, strong {
    font-weight: bold;
}

img, table, td, blockquote, code, pre, textarea, input, video {
    max-width: 100%;
}

img {
    height: auto;
}

sup {
    top: -0.5em;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

.center:not(.tabs) {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.vcenter {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.hcenter {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

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

.minus {
    text-transform: lowercase;
}

.maxus {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.no-padding {
    padding: 0;
}

.no-padding-left {
    padding-left: 0;
}

.no-padding-right {
    padding-right: 0;
}

.no-margin {
    margin: 0;
}

.page-erreur{
    clear: both;
    float: left;
    width: 100%;
    margin-top: 30px;
}

.page-erreur .intro-erreur {
    padding-top: 30px;
    font-size: 12px;
    font-weight: bold;
    color: #546c7d;
    text-align: center;
}

.page-erreur .products-list {
    clear: both;
    float: left;
    width: 100%;
    margin-top: 6px;
    margin-bottom: 20px;
}

.page-erreur #encart-plan-site {
    margin-left: 30px;
    clear: both;
    float: left;
    width: 100%;
    margin-top: 30px;
}

#encart-plan-site .titre {
    padding-top: 18px;
    margin-left: 19px;
}

.page-erreur #encart-plan-site .liste-plan {
    float: left;
    display: inline;
    width: 210px;
    margin-left: 20px;
    margin-top: 20px;
    list-style-type: none;
}

.page-erreur #encart-plan-site .liste-plan li.rubrique {
    border-bottom: 1px solid #cfdae3;
    padding: 15px 0 5px 10px;
    height: 20px;
}

.page-erreur #encart-plan-site .liste-plan li.rubrique a {
    padding-left: 0;
    color: #3e5d80;
    font-size: 12px;
    margin-top: -10px;
    display: block;
}

#encart-plan-site .liste-plan a {
    color: #3e5d80;
    font-size: 12px;
    padding-left: 10px;
}

.page-erreur .retour-home {
    clear: both;
    float: left;
    display: inline;
    margin-top: 20px;
    margin-left: 30px;
}
.page-erreur .retour-home a {
    color: #f2ac30;
    font-weight: bold;
    font-size: 12px;
}
.page-erreur .retour-compte-erreur {
    float: right;
    display: inline;
    margin-top: 20px;
    margin-right: 30px;
}
.page-erreur .retour-compte-erreur a {
    color: #f2ac30;
    font-weight: bold;
    font-size: 12px;
}

.selection-title {
    color: #004f91;
    font-family: "GothamMedium", arial, Helvetica, sans-serif;
    font-size: 14px;
    font-size: 20px;
    line-height: 1.3;
    line-height: 21px;
    font-weight: bold;
    padding: 15px 0px 14px;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .selection-title {
        font-size: 10px;
        font-size: 0.625rem;
        line-height: 1.3;
        padding: 3px;
        width: 100%;
    }
}

.section-title {
    color: #004f91;
    font-family: "GothamMedium", arial, Helvetica, sans-serif;
    font-size: 20px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: normal;
    line-height: 22px;
    padding: 20px 10px 15px;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 16px;
        font-size: 1rem;
        line-height: 1.3;
    }
}

.container {
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition: -moz-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.navOpen .container {
    height: 100%;
}

.navOpen .container:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
}
.layer-menu {
    position: relative;
    top: 0;
    left: 0;
    bottom:0;
    right:0;
    transition: all .5s ease;
    z-index:20;
}
.subNavOpen .layer-menu {
    position:fixed;
    background: rgba(0, 0, 0, 0.4);
}

.wrapper {
    width: 100%;
    max-width: 1006px;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .wrapper {
        max-width: 768px;
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    .wrapper {
        max-width: 100%;
        overflow: hidden;
    }
}

#content {
    overflow: hidden;
}

.content-wrapper {
    padding-bottom: 20px;
    overflow: auto;
    zoom: 1;
}

.content-wrapper > div {
    position: relative;
}

.content-wrapper .col-left {
    float: left;
    width: 22%;
    margin-top: 15px;
}

.content-wrapper .col-main {
    float: left;
    width: 78%;
    margin-top: 15px;
}

.content-wrapper .col-right {
    float: right;
    width: 22%;
    margin-top: 15px;
}

.content-wrapper.col-2-right .col-main {
    width: 78%;
}

.content-wrapper.col-2-right .col-right {
    width: 22%;
}

@media (max-width: 767px) {
    .content-wrapper > div {
        width: 100% !important;
    }

    .content-wrapper.col-2-right .col-main {
        margin-top: 0;
    }
}

#left-col {
    float: left;
    margin-top: 15px;
    position: relative;
    width: 22%;
    margin-bottom: 20px;
    font-size: 10px;
    font-size: 0.625rem;
    line-height: 1.3;
}

@media (max-width: 767px) {
    #left-col {
        position: absolute;
        z-index: 995;
        left: 0;
        right: 0;
        top: -15px;
        width: auto;
        height: 100%;
        background: #424242;
        display: none;
    }

    .col-2-right #left-col {
        display: block;
    }
}

#right-col {
    float: left;
    padding-left: 17px;
    margin-top: 15px;
    width: 78%;
}

@media (max-width: 767px) {
    #right-col {
        width: 100%;
        padding-left: 0;
    }
}

.col-2-right #left-col {
    width: 78%;
}

.col-2-right #right-col {
    width: 22%;
}

a, a:active, a:hover {
    cursor: pointer;
    outline: 0 none;
    text-decoration: none;
}

.cta {
    background-color: #0b377f;
    border: 0 none;
    border-radius: 4px;
    color: #ffffff;
    display: inline-block;
    font-family: "GothamBook", arial, Helvetica, sans-serif;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.3;
    line-height: 30px;
    padding: 8px 15px 8px 52px;
    position: relative;
    text-align: center;
    text-decoration: none;
    z-index: 10;
}

.cta:before {
    background: transparent url("https://www.top-office.com/skin/frontend/top_office/default/images/homepage/store-link.png") no-repeat scroll center center;
    content: "";
    display: block;
    height: 24px;
    left: 18px;
    margin-top: -12px;
    position: absolute;
    top: 50%;
    transition: left 0.15s ease 0s;
    width: 24px;
}

.cta:hover {
    color: #ffffff;
}

.cta .small {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.3;
    padding: 6px 10px 6px 39px;
}

.cta .small:before {
    background-image: url("https://www.top-office.com/skin/frontend/top_office/default/images/homepage/store-link-small.png");
    height: 18px;
    margin-top: -9px;
    left: 13px;
    width: 18px;
}

.cta .small:hover:before {
    left: 16px;
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button, input[type="button"], input[type="reset"], input[type="submit"], button, button:focus, button:active, [type="submit"], [type="submit"]:focus, [type="submit"]:active {
    cursor: pointer;
    outline: 0 none;
}

input {
    line-height: normal;
}

button {
    padding: 0;
    border: none;
}

input[type=text] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.champs-obligatoires {
    color: #eb0606;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.3;
    padding-left: 30px;
    padding-top: 15px;
    margin-right: 32px;
    text-align: left;
}

.customer-create-mentions-legales {
    padding-right: 15px;
    padding-left: 15px;
    margin-top: 10px;
}

.has-js .label_check {
    cursor: pointer;
    padding: 3px 0 3px 30px;
    font-family: Arial;
    background: transparent url("https://www.top-office.com/skin/frontend/top_office/default/images/inscription/input/check-off.png") no-repeat scroll 0 0;
    -webkit-background-size: 22px 22px;
    background-size: 22px 22px;
}

@media (max-width: 767px) {
    .has-js .label_check {
        display: block;
        line-height: 1.3;
    }
}

.has-js label.c_on {
    background: transparent url("https://www.top-office.com/skin/frontend/top_office/default/images/inscription/input/check-on.png") no-repeat scroll 0 0;
    -webkit-background-size: 22px 22px;
    background-size: 22px 22px;
}

.has-js .label_radio {
    cursor: pointer;
    margin-right: 20px;
    padding: 3px 0 3px 24px;
    font-family: Arial;
    background: transparent url("https://www.top-office.com/skin/frontend/top_office/default/images/inscription/input/radio-off.png") no-repeat scroll 0 3px;
    -webkit-background-size: 18px 18px;
    background-size: 18px 18px;
}

@media (max-width: 767px) {
    .has-js .label_radio {
        display: block;
        float: left;
        margin-top: 5px;
        line-height: 1.3;
    }
}

.has-js label.r_on {
    background: transparent url("https://www.top-office.com/skin/frontend/top_office/default/images/inscription/input/radio-on.png") no-repeat scroll 0 3px;
    -webkit-background-size: 18px 18px;
    background-size: 18px 18px;
}

.has-js .label_check input,
.has-js .label_radio input {
    left: -9999px;
    position: absolute;
}

#preheader {
    background: #004f91 !important;
    color: #ffffff;
    height: 46px;
    display: none;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

#preheader .wrapper > ul > li {
    display: inline-block;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.3;
    line-height: 15px;
    height: 46px;
    margin-right: 20px;
    padding: 8px 5px 0;
    position: relative;
    vertical-align: middle;
    -webkit-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    transition: background 0.2s ease;
}

#preheader .wrapper > ul > li:before,
#preheader .wrapper > ul > li .icon {
    background: transparent no-repeat center center;
    content: '';
    display: block;
    position: absolute;
    left: 5px;
    top: 50%;
}

#preheader .wrapper > ul > li a {
    color: #ffffff;
    display: inline-block;
    text-decoration: none;
}

#preheader .wrapper > ul > li strong {
    text-transform: uppercase;
}

#preheader .wrapper > ul > li.delivery {
    padding-left: 34px;
}

#preheader .wrapper > ul > li.delivery:before {
    font-family: topoffice;
    content: "\e903";
    /* background: transparent url("/skin/frontend/top_office/default/images/header/livraison_domicile.png") no-repeat center;
    background-size: contain;*/
    font-size:24px;
    line-height:24px;
    height: 22px;
    margin-top: -12px;
    left: 0px;
    width: 26px;
}

#preheader .wrapper > ul > li.references {
    padding-left: 32px;
}

#preheader .wrapper > ul > li.references:before {
    height: 22px;
    margin-top: -11px;
    width: 20px;
    font-family: topoffice;
    content: "\e90a";
    font-size:24px;
    line-height:24px;
}

#preheader .wrapper > ul > li.affilie:before {
    height: 25px;
    margin-top: -10px;
    margin-left: -10px;
    width: 30px;
    font-family: topoffice;
    background: transparent url("/skin/frontend/top_office/default/images/header/affilie.png") no-repeat center;
    background-size: contain;
    font-size: 20px;
    line-height: 20px;
}

#preheader .wrapper > ul > li.affilie {
    padding-left: 32px;
}

#preheader .wrapper > ul > li.demande-devis {
    padding-left:34px;
}

#preheader .wrapper > ul > li.demande-devis:before {
    font-family: topoffice;
    content: "\e908";
    /*background: transparent url("/skin/frontend/top_office/default/images/header/demande_devis.png") no-repeat center;
    background-size: contain;*/
    font-size: 24px;
    line-height:24px;
    position: absolute;
    height: 28px;
    margin-top: -12px;
    width: 22px;
}

#header .demande-devis a:before {
    font-family: topoffice;
    content: "\e908";
    font-size: 32px;
    line-height: 32px;
    height: 32px;
    position: absolute;
    top: 8px;
    left: 50%;
    margin-left: -14px;
}

#preheader .wrapper > ul > li.customers:before {
    background: transparent no-repeat center center;
    content: '';
    display: block;
    position: absolute;
    left: 5px;
    top: 50%;
}

#preheader .wrapper > ul > li.customers .icon {
    background-image: url("/skin/frontend/top_office/default/images/header/sprite-top-customers.png");
    font-size: 10px;
    font-size: 0.625rem;
    line-height: 1.3;
    line-height: 15px;
    height: 30px;
    margin-top: -15px;
    padding-top: 7px;
    text-align: center;
    width: 30px;
}

#preheader div.wrapper ul li.customers {
    padding-left: 17px;
}

#preheader .wrapper > ul > li.customers .icon small {
    font-size: 7px;
    font-size: 0.4375rem;
    line-height: 1.3;
}

#preheader .wrapper > ul > li.stores:before {
    font-family: topoffice;
    content: "\e901";
    /*
    background: transparent url("/skin/frontend/top_office/default/images/header/choisir_magasin.png") no-repeat center;
    background-size: contain;*/
    font-size:24px;
    line-height:24px;
    height: 27px;
    margin-top: -12px;
    width: 23px;
}

#preheader .wrapper > ul > li.stores > a {
    padding-left: 30px;
}

#preheader .quote-contact {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

#preheader .quote-contact a {
    background: #00284a !important;
    color: #ffffff;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.3;
    display: inline-block;
    line-height: 15px;
    height: 46px;
    padding: 8px 10px 0 60px;
    position: relative;
    text-decoration: none;
    vertical-align: middle;
}

#preheader .quote-contact a:before {
    background: transparent url('/skin/frontend/top_office/default/images/header/sprite-top-service.png') no-repeat center center;
    content: '';
    display: block;
    height: 40px;
    margin-top: -20px;
    position: absolute;
    left: 11px;
    top: 50%;
    width: 40px;
}

#preheader .quote-contact a span {
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.3;
    font-weight: bold;
}

#preheader #user-store {
    margin-left: -163px;
    top: 46px;
    width: 326px;
    border: 1px solid #ccc;
    border-top: 0;
}

#preheader #user-store:after {
    border-color: transparent transparent #ffffff;
    border-style: solid;
    border-width: 0 8px 8px;
    content: "";
    display: block;
    height: 0;
    left: 50%;
    margin-left: -8px;
    position: absolute;
    top: -4px;
    width: 0;
}

#preheader #user-store .logout-link {
    margin-top: 12px;
}

#preheader #user-store li a.store-infos:before {
    background: transparent url("https://www.top-office.com/skin/frontend/top_office/default/images/header/sprite-store.png") no-repeat scroll center center;
    height: 23px;
    margin-left: -5px;
    margin-top: -12px;
    width: 23px;
}

#preheader #user-store li a.change-store:before {
    background: transparent url("https://www.top-office.com/skin/frontend/top_office/default/images/header/sprite-store-change.png") no-repeat scroll center center;
    height: 23px;
    margin-left: -15px;
    margin-top: -12px;
    width: 42px;
}

@media (min-width: 1025px) {
    #preheader {
        display: block;
    }
}


/** HEADER LOGO **/

#header .logo {
    background: transparent url("/skin/frontend/top_office/default/images/header/bg-logo-top-office.png") no-repeat scroll center center/contain;
    display: inline-block;
    height: 74px;
    margin-left: 10px;
    vertical-align: middle;
    width: 176px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    #header .logo {
        width: 125px;
        height: 64px;
    }
}

@media (max-width: 767px) {
    #header .logo {
        width: 90px;
        height: 40px;
        margin-left: calc(5% + 37px);
    }
}

/** COOKIE LAW **/
#cookie-law {
    display: none;
    background: white;
    border-top: 2px solid #0b377f;
    bottom: 0;
    position: fixed;
    transition: all 1000ms ease 0s;
    width: 100%;
    z-index: 9999999999; }
#cookie-law .cookie-close-all{
    text-align: right;
    padding-top: 5px;
    padding-right: 5px;
    color : #0b377f;
    font-size: 12px;
    text-decoration: underline;
}
#cookie-law .cookie-law-content{
    padding: 30px 165px;
}
@media (max-width: 767px) {
    #cookie-law .cookie-law-content {
        padding-left: 20px;
        padding-right: 20px;} }
#cookie-law p {
    color: #303030;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1.3;
    text-align: justify;
    text-align-last: center;
}
#cookie-law a {
    color: #0b377f;
    text-decoration: none; }
#cookie-law #cookie-buttons {
    text-align: center;
    margin-top:10px;
}
#cookie-law #cookie-close, #cookie-law #cookie-config {
    color: #0b377f;
    cursor: pointer;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1.3;
    font-weight: bold;
    padding: 8px 15px;
    display:inline-block;
    top: 10px; }
#cookie-law #cookie-close
{
    background:#0b377f;
    color:white;
    border-radius: 4px;
}
#cookie-law #cookie-close:hover {
    background: #21409a;
}
#cookie-law #cookie-config:hover {
    text-decoration: underline;
}

#modalConfigCookie {
    display:none;
    max-width:800px;
    padding: 20px;
    padding-bottom: 5px;
    text-align: justify;
}

#modalConfigCookie .title-modal-config-cookie {
    font-size: 1.625rem;
    /* font-family: "GothamRndBold", arial, Helvetica, sans-serif; */
    color: #21409a;
    line-height: 1.3;
    font-weight: bold;
    margin-bottom: 28px;
}

#modalConfigCookie p {
    font-weight: bold;
    margin-bottom: 28px;
}

#modalConfigCookie li {
    border-bottom: solid 1px grey;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

#modalConfigCookie .intitule {
    position: relative;
    margin-right: 10px;
    width: 87%;
    display: inline-block;
    text-align: left;
    font-size: 13px;
    line-height: 18px;
}

#modalConfigCookie input[type=checkbox]{
    height: 0;
    width: 0;
    visibility: hidden;
}
@media (max-width: 767px) {
    #modalConfigCookie .intitule {
        width:100%;
    }
    #modalConfigCookie li {
        padding-bottom:40px;
    }
    #modalConfigCookie label {
        right:30px;
        display: block;
    }
}
#modalConfigCookie label {
    position: absolute;
    display: inline-block;
    cursor: pointer;
    text-indent: -9999px;
    width: 60px;
    height: 30px;
    background: grey;
    border-radius: 100px;
}

#modalConfigCookie label:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 90px;
    transition: 0.3s;
}

#modalConfigCookie input:checked + label {
    background: #0b377f;
}

#modalConfigCookie input:checked + label:after {
    left: calc(100% - 2px);
    transform: translateX(-100%);
}

#modalConfigCookie label:active:after {
    width: 39px;
}

/** FORM VALIDATION **/

.formJsValidation .valide-passed .valide-check {
    display: inline;
    padding-left: 15px;
}

/** USER INFOS PREHEADER **/
#header .user-infos-pop,
#preheader .user-infos-pop {
    background: #ffffff;
    color: #020202;
    display: none;
    margin-left: -10px;
    padding: 15px 20px 12px;
    position: absolute;
    top: 104px;
    left: 50%;
    text-align: left;
    width: 240px;
    z-index: 1500;
}

#header .user-infos-pop .user-infos .hello-title,
#preheader .user-infos-pop .user-infos .hello-title {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3;
    font-weight: bold;
    line-height: 23px;
    margin-bottom: 28px;
}

#header .user-infos-pop .user-infos .hello-title span,
#preheader .user-infos-pop .user-infos .hello-title span {
    color: #004f91;
}

#header .user-infos-pop .user-infos .logout-link,
#preheader .user-infos-pop .user-infos .logout-link {
    text-align: right;
    line-height: 20px;
}

#header .user-infos-pop .user-infos .logout-link a,
#preheader .user-infos-pop .user-infos .logout-link a {
    color: #000000;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.3;
    line-height: 1.5;
    font-weight: bold;
}

#header .user-infos-pop .user-infos li,
#preheader .user-infos-pop .user-infos li {
    background: transparent url("https://www.top-office.com/skin/frontend/top_office/default/images/header/dashed-line.png") repeat-x bottom left;
}

#header .user-infos-pop .user-infos li:first-child,
#preheader .user-infos-pop .user-infos li:first-child {
    background-image: url("https://www.top-office.com/skin/frontend/top_office/default/images/header/dashed-line.png"), url("https://www.top-office.com/skin/frontend/top_office/default/images/header/dashed-line.png");
    background-position: bottom left, top left;
}

#header .user-infos-pop .user-infos li a,
#preheader .user-infos-pop .user-infos li a {
    color: #020202;
    display: block;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.3;
    line-height: 24px;
    padding: 8px 0 8px 34px;
    position: relative;
    text-decoration: none;
}

#header .user-infos-pop .user-infos li a:before,
#preheader .user-infos-pop .user-infos li a:before {
    background: transparent none no-repeat scroll center center;
    content: "";
    display: block;
    height: 20px;
    left: 0;
    margin-top: -10px;
    position: absolute;
    top: 50%;
    width: 18px;
}

#header .user-infos-pop .user-infos li a.my-account:before,
#preheader .user-infos-pop .user-infos li a.my-account:before {
    background-image: url("https://www.top-office.com/skin/frontend/top_office/default/images/header/sprite-user-myaccount.png");
}

#header .user-infos-pop .user-infos li a.my-orders:before,
#preheader .user-infos-pop .user-infos li a.my-orders:before {
    background-image: url("https://www.top-office.com/skin/frontend/top_office/default/images/header/sprite-user-myorders.png");
}

#header .user-infos-pop .user-links,
#preheader .user-infos-pop .user-links {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.3;
}

/** HEADER COMMON **/
#header {
    position: relative;
    -webkit-transition: all 0.1s ease 0s;
    -moz-transition: all 0.1s ease 0s;
    transition: all 0.1s ease 0s;
    padding-top: 15px;
    font-size: 0;
}

@media (max-width: 767px) {
    #header {
        padding-top: 7px;
    }

    #header:before, #header:after {
        content: " ";
        display: table;
        clear: both;
    }

   /* body:not(.cms-home) #header:after {
        height: 55px;
        width: 100%;
        border-bottom: 1px solid #aab2bd;
    }*/
}

#header .shop-list, #header .demande-devis {
    display: none;
    text-align: center;
    vertical-align: middle;
    width: 80px;
    height: 68px;
    color: #656d78;
    font-size: 10px;
    font-size: 0.625rem;
    line-height: 1.3;
    line-height: 15px;
}

@media (max-width: 1024px) {
    #header .shop-list, #header .demande-devis {
        display: inline-block;
    }
}

@media (max-width: 767px) {
    #header .shop-list {
        display: block;
        position: absolute;
        top: 18px;
        right: calc(5% + 103px);
        width: 15px;
        height: 23px;
    }

    #header .demande-devis {
        display: block;
        position: absolute;
        top: 15px;
        right: calc(5% + 150px);
        width: 19px;
        height: 26px;
    }
}

#header .shop-list a {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 47px;
    display: block;
    color: #888;
}
#header .shop-list a:before {
    font-family: topoffice;
    content: "\e90b";
    font-size: 32px;
    line-height:32px;
    height: 32px;
    position: absolute;
    top:8px;
    left:50%;
    margin-left:-14px;
}

#header .demande-devis a {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 47px;
    display: block;
    color: #888;
}
@media (max-width: 767px) {
    #header .shop-list a, #header .demande-devis a {
        background-position: center;
        background-size: auto;
        font-size: 0;
        padding-top: 0;
    }
}

#header .search-form {
    display: inline-block;
    height: 46px;
    margin: 0 20px 0 35px;
    position: relative;
    vertical-align: middle;
    width: 340px;
}

#header .search-form .search-field {
    border: 1px solid #aab2bd;
    border-radius: 3px;
    color: #777777;
    display: block;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.3;
    line-height: 33px;
    font-style: italic;
    height: 46px;
    outline: medium none;
    padding: 0 40px 0 13px;
    width: 100%;
    float: left;
}

@media (max-width: 767px) {
    #header .search-form .search-field {
        -webkit-appearance: none;
        font-family: "GothamMedium", arial, Helvetica, sans-serif;
        font-style: normal;
        font-weight: bold;
        font-size: 13px;
        font-size: 0.8125rem;
        line-height: 1.3;
        color: #1e3c9c;
    }

    #header .search-form .search-field::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: #1e3c9c;
    }

    #header .search-form .search-field::-moz-placeholder {
        /* Firefox 19+ */
        color: #1e3c9c;
    }

    #header .search-form .search-field:-ms-input-placeholder {
        /* IE 10+ */
        color: #1e3c9c;
    }

    #header .search-form .search-field:-moz-placeholder {
        /* Firefox 18- */
        color: #1e3c9c;
    }
}

#header .search-form #bt-ok-headersearch {
    float: left;
}

#header .search-form .submit-search {
    border: 0;
    height: 46px;
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    background: transparent;
}
#header .search-form .submit-search:before {
    font-family: topoffice;
    content: "\e907";
    font-size: 26px;
    line-height:26px;
    color:#888;
}


@media (min-width: 768px) and (max-width: 1024px) {
    #header .search-form {
        width: 190px;
        margin: 0 10px 0 10px;
    }
}

@media (max-width: 767px) {
    #header .search-form {/*
        position: absolute;
        top: 55px;*/
        left: 5%;
        width: 90%;
        height: 35px;
        margin: 10px 0 10px 0;
    }

    #header .search-form .search-field {
        height: 35px;
    }

    #header .search-form .submit-search {
        height: 35px;
        width: 40px;
    }
}


#header .head-link {
    color: #656d78;
    display: inline-block;
    height: 68px;
    text-align: center;
    vertical-align: middle;
    width: 94px;
}

#header .head-link > a {
    color: #888;
    display: block;
    padding-top: 47px;
    position: relative;
    text-decoration: none;
    font-size: 10px;
    font-size: 0.625rem;
    line-height: 1.3;
    line-height: 15px;
}

#header .head-link > a:before {
    background: transparent no-repeat scroll center center;
    content: "";
    display: block;
    left: 50%;
    position: absolute;
}

#header .head-link > a.opened {
    position: relative;
    text-decoration: underline;
    z-index: 1500;
}

#header .head-link > a.opened:after {

    border-color: transparent transparent #ffffff;
    border-style: solid;
    border-width: 0 8px 8px;
    bottom: -14px;
    content: "";
    display: block;
    height: 0;
    left: 50%;
    margin-left: -8px;
    position: absolute;
    width: 0;
}

#header .head-link > a.opened:before {
    background: transparent url("https://www.top-office.com/skin/frontend/top_office/default/images/header/sprite-header.png") no-repeat scroll center center;
    content: "";
    display: block;
    left: 50%;
    position: absolute;
}

@media (min-width: 768px) and (max-width: 1024px) {
    #header .head-link {
        width: 80px;
    }

    #header .demande-devis a {
        background-size: auto;
    }

    #header .basket .open-basket .basket-summary.empty {
        margin-top: 9px;
    }
}

#header .user-account-pop {
    background: #ffffff;
    display: none;
    font-size: 0;
    position: absolute;
    top: 104px;
    left: 0;
    right: 0;
    z-index: 1500;
}

@media (max-width: 767px) {
    #header .user-account-pop {
        display: none;
    }
}

#header .user-account-pop .already-customer,
#header .user-account-pop .new-customer {
    border: 8px solid #ffffff;
    color: #434a54;
    display: inline-block;
    font-size: 14px;
    padding: 25px 76px 22px;
    text-align: center;
    vertical-align: top;
    width: 50%;
}

#header .user-account-pop .new-customer {
    background: #e6e9ee;
}

#header .user-account-pop .user-title {
    color: #0b377f;
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 1.3;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

#header .user-account-pop .intro {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 20px;
}

#header .user-account-pop .txt {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.3;
    line-height: 18px;
    margin-bottom: 24px;
}

#header .user-account-pop .form-el {
    padding-bottom: 32px;
    position: relative;
}

#header .user-account-pop .form-el:before {
    background: transparent url("https://www.top-office.com/skin/frontend/top_office/default/images/header/sprite-user-email.png") no-repeat center center;
    content: '';
    display: block;
    height: 44px;
    position: absolute;
    top: 1px;
    left: 1px;
    width: 44px;
    z-index: 10;
}

#header .user-account-pop .form-el .error-message {
    color: #d61919;
    display: none;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.3;
    font-weight: bold;
    height: 32px;
    line-height: 13px;
    padding: 3px 0 0 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: left;
}

#header .user-account-pop .form-el.pwd:before {
    background-image: url("https://www.top-office.com/skin/frontend/top_office/default/images/header/sprite-user-pwd.png");
}

#header .user-account-pop input {
    background: #ffffff;
    border: solid 1px #aab2bd;
    border-radius: 3px;
    color: #777777;
    display: block;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.3;
    font-style: italic;
    height: 46px;
    outline: none;
    padding: 0 10px 0 53px;
    width: 100%;
}

#header .user-account-pop input.error {
    border-color: #d61919;
}

#header .user-account-pop hr {
    background: transparent url("https://www.top-office.com/skin/frontend/top_office/default/images/header/dashed-line.png") repeat-x 0 0;
    border: 0;
    height: 1px;
    margin: 0 0 20px;
}

#header .user-account-pop .account-link {
    margin-top: 13px;
}

#header .user-account-pop .account-link a {
    color: #0b377f;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.3;
    font-weight: bold;
}

#header .slide-hover > a.opened {
    text-decoration: none;
}

#header .slide-hover > a.opened:after {
    background: transparent url("/skin/frontend/top_office/default/images/header/sprite-basket-arrow-icon.png") no-repeat scroll center center;
    border: 0 none;
    bottom: -19px;
    content: "";
    height: 19px;
    left: 0;
    margin: 0;
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
}

#header .slide-hover > div {
    background: #ffffff none repeat scroll 0 0;
    /*border: 1px solid #656d78;*/
    box-shadow: 0 0 5px #787878;
    display: none;
    font-size: 0;
    left: 0;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 96px;
    z-index: 150;
}

#header .slide-hover.user > a:before {
    font-family: topoffice;
    content: "\e904";
    /*
    background: transparent url("/skin/frontend/top_office/default/images/header/connexion.png") no-repeat center;
    background-size: contain;*/
    font-size: 32px;
    line-height:32px;
    height: 32px;
    margin-left: -14px;
    top: 8px;
    width: 28px;
}

#header .slide-hover.user > div.user-infos-pop {
    left: auto;
    margin-left: 0;
    right: auto;
    -webkit-transform: translateX(-33%);
    -moz-transform: translateX(-33%);
    -ms-transform: translateX(-33%);
    -o-transform: translateX(-33%);
    transform: translateX(-33%);
}

@media (max-width: 767px) {
    #header .slide-hover.user {
        width: 20px;
        height: 23px;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 18px;
        right: calc(5% + 54px);
    }

    #header .slide-hover.user > a {
        font-size: 0;
        padding: 0;
        width: 100%;
        height: 100%;
    }

    #header .slide-hover.user > a:before {
        width: 100%;
        height: 100%;
        top: 0;
        margin-top: 0;
        left: 0;
        margin-left: 0;
    }

    #header .slide-hover.user.connected:after {
        content: '';
        background: transparent url(../images/header/check-connected.png) no-repeat center;
        width: 12px;
        height: 12px;
        position: absolute;
        bottom: -5px;
        right: -5px;
    }
}

#header .slide-hover.express-purchase {
    width: 80px;
}

#header .slide-hover.express-purchase > a:before {
    font-family: topoffice;
    content: "\e902";
    /*
    background: transparent url("/skin/frontend/top_office/default/images/header/achat_express.png") no-repeat center;
    background-size: contain; */
    font-size: 32px;
    line-height:32px;
    top:8px;
    height: 34px;
    margin-left: -25px;
    width: 44px;
}

@media (max-width: 1024px) {
    #header .slide-hover.express-purchase {
        display: none;
    }
}

#header .express-purchase-pop .express-section {
    background: #e6e9ee none repeat scroll 0 0;
    border: 10px solid #ffffff;
    display: inline-block;
    vertical-align: top;
    width: 33.3333%;
}

#header .express-purchase-pop .express-section .img {
    background: #ffffff none no-repeat scroll center center / cover;
    display: block;
    padding-top: 77%;
}

#header .express-purchase-pop .express-title {
    color: #0b377f;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.3;
    font-weight: bold;
    line-height: 52px;
    text-align: center;
    text-transform: uppercase;
}

#header .express-purchase-pop .desc {
    background: transparent url("https://www.top-office.com/skin/frontend/top_office/default/images/header/dashed-line.png") repeat-x left top;
    color: #434a54;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.3;
    line-height: 18px;
    padding: 17px 5px;
    text-align: center;
}

#header .express-purchase-pop .express-link {
    background: transparent url("https://www.top-office.com/skin/frontend/top_office/default/images/header/dashed-line.png") repeat-x left top;
    color: #0b377f;
    display: block;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.3;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    text-decoration: underline;
}

#header .express-purchase-pop .orders .img {
    background-image: url("https://www.top-office.com/skin/frontend/top_office/default/images/header/express-section-orders.jpg");
}

#header .express-purchase-pop .purchases .img {
    background-image: url("https://www.top-office.com/skin/frontend/top_office/default/images/header/express-section-purchases.jpg");
}

#header .express-purchase-pop .wishlist .img {
    background-image: url("https://www.top-office.com/skin/frontend/top_office/default/images/header/express-section-wishlist.jpg");
}

#header .basket {
    border: 1px solid #656d78;
    border-radius: 3px 3px 0 0;
    display: inline-block;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.3;
    height: 61px;
    margin: 0 0 0 9px;
    position: relative;
    vertical-align: middle;
    width: 242px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    #header .basket {
        width: 170px;
    }
}

@media (max-width: 767px) {
    #header .basket {
        border: none;
        border-radius: 0;
        width: 25px;
        height: 24px;
        float: right;
        margin: 0;
        position: absolute;
        top: 18px;
        right: calc(5% + 5px);
    }
}

#header .basket .open-basket {
    color: #888;
    cursor: default;
    display: inline-block;
    height: 100%;
    line-height: 59px;
    padding: 0 0 0 75px;
    position: relative;
    text-decoration: none;
    vertical-align: middle;
    width: 100%;
}

#header .basket .open-basket.opened:after {
    background: transparent url("/skin/frontend/top_office/default/images/header/sprite-basket-arrow-icon.png") no-repeat scroll center center;
    bottom: -7px;
    content: "";
    cursor: pointer;
    display: block;
    height: 11px;
    left: 50%;
    margin-left: -12px;
    position: absolute;
    width: 24px;
    z-index: 75;
}

#header .basket .open-basket .basket-summary {
    display: inline-block;
    line-height: 14px;
    margin-top: 19px;
    padding-left: 42px;
}

@media (max-width: 767px) {
    #header .basket .open-basket .basket-summary {
        padding: 0;
        margin: 0;
        position: absolute;
        top: -5px;
        right: -5px;
        background: #ffd500;
        color: #000;
        border-radius: 50%;
        width: 16px;
        height: 16px;
        text-align: center;
        line-height: 16px;
    }
}

#header .basket .open-basket .basket-summary.empty {
    margin-top: 19px;
    padding-left: 2px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    #header .basket .open-basket .basket-summary {
        padding-left: 10px;
    }

    #header .basket .open-basket .basket-summary.empty {
        margin-top: 10px;
        padding-left: 0px;
    }
}

@media (max-width: 767px) {
    #header .basket .open-basket .basket-summary.empty {
        display: none;
    }
}

@media (max-width: 767px) {
    #header .basket .open-basket {
        padding: 0;
    }
}

#header .basket .my-basket {
    border-right: 1px solid #656d78;
    bottom: 0;
    display: inline-block;
    font-size: 10px;
    font-size: 0.625rem;
    line-height: 1.3;
    left: 0;
    line-height: 10px;
    padding-top: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    width: 75px;
}

#header .basket .my-basket:before {
    font-family: topoffice;
    content: "\e900";
    /* background: transparent url("/skin/frontend/top_office/default/images/header/mon_panier.png") no-repeat center;
    background-size: contain; */
    font-size: 32px;
    line-height:32px;
    display: block;
    height: 32px;
    left: 50%;
    margin-left: -18px;
    position: absolute;
    top: 7px;
    width: 33px;
}

@media (max-width: 767px) {
    #header .basket .my-basket {
        border: none;
        font-size: 0;
        width: 100%;
        height: 100%;
        padding: 0;
    }

    #header .basket .my-basket:before {
        width: 100%;
        height: 100%;
        top: 0;
        margin-top: 0;
        left: 0;
        margin-left: 0;
    }
    #header .shop-list a:before,
    #header .demande-devis a:before,
    #header .slide-hover.user > a:before,
    #header .basket .my-basket:before, #header .demande-devis a:before {
        top:0;
        font-size: 26px;
        line-height: 26px;
        height: 26px;
    }
    #header .shop-list {
        top:15px;
    }
    #header .slide-hover.user {
        top:15px;
    }
    #header .basket {
        top:15px;
    }
}

#header .basket .articles,
#header .basket .price {
    display: inline-block;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.3;
    font-weight: bold;
    line-height: 20px;
    padding-left: 25px;
}

#header .basket .articles,
#header .basket .price,
#header .basket .ttc-price {
    display: block;
}

@media (max-width: 767px) {
    #header .basket .articles span {
        display: none;
    }
}

@media (max-width: 767px) {
    #header .basket .articles {
        font-size: 10px;
        font-size: 0.625rem;
        line-height: 1.3;
        font-weight: 400;
        line-height: inherit;
    }
}

@media (max-width: 767px) {
    #header .basket .price {
        display: none;
    }
}

#header .basket .ttc-price {
    color: #434a54;
    display: inline-block;
    font-size: 10px;
    font-size: 0.625rem;
    line-height: 1.3;
    white-space: nowrap;
}

@media (max-width: 767px) {
    #header .basket .ttc-price {
        display: none;
    }
}

#header .basket.full .open-basket {
    cursor: pointer;
}

#header .basket.full .articles,
#header .basket.full .price {
    padding-left: 0;
}

#header .basket.full .articles {
    color: #0b377f;
}

#header .basket.full .price {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.3;
}

#header .basket .basket-content {
    background: #ffffff none repeat scroll 0 0;
    border: 1px solid #0b377f;
    border-radius: 3px;
    display: none;
    left: -1px;
    overflow: hidden;
    position: absolute;
    right: -1px;
    top: 100%;
    z-index: 50;
}

#header .basket .basket-content .last-articles {
    background: #6d747f none repeat scroll 0 0;
    color: #ffffff;
    font-family: "GothamBook", arial, Helvetica, sans-serif;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.3;
    line-height: 40px;
    margin-bottom: 10px;
    position: relative;
    text-align: center;
}

#header .basket .basket-content .last-articles:after {
    border-color: #6d747f transparent transparent transparent;
    border-style: solid;
    border-width: 9px 19px 0 19px;
    content: '';
    display: block;
    height: 0;
    margin-left: -19px;
    position: absolute;
    left: 50%;
    bottom: -9px;
    width: 0;
}

#header .basket .basket-product {
    padding: 8px 4px 4px;
    position: relative;
}

#header .basket .basket-product:after {
    border-top: 1px dashed #b2b2b2;
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 25px;
    right: 25px;
}

#header .basket .basket-product .left-infos,
#header .basket .basket-product .right-infos {
    display: inline-block;
    vertical-align: top;
}

#header .basket .basket-product .left-infos {
    text-align: right;
}

#header .basket .basket-product .right-infos {
    padding-left: 8px;
    width: 145px;
}

#header .basket .basket-product img {
    display: block;
    width: 63px;
}

#header .basket .basket-product .promo {
    background: #e1001a;
    color: #ffffff;
    display: inline-block;
    font-weight: bold;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.3;
    padding: 3px 7px;
}

#header .basket .basket-product .name {
    color: #434a54;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.3;
    font-weight: bold;
    line-height: 14px;
    width: 137px;
}

#header .basket .basket-product .quantity {
    color: #0b377f;
    line-height: 14px;
}

#header .basket .basket-product .product-price {
    margin-top: 11px;
    position: relative;
}

#header .basket .basket-product .product-price span {
    display: inline-block;
}

#header .basket .basket-product .product-price .old-price {
    color: #656d78;
    font-size: 10px;
    font-size: 0.625rem;
    line-height: 1.3;
    font-weight: normal;
    line-height: 10px;
    margin-right: 3px;
    position: absolute;
    bottom: 2px;
    right: 100%;
    white-space: nowrap;
}

#header .basket .basket-product .product-price .old-price:before {
    background: transparent url("https://www.top-office.com/skin/frontend/top_office/default/images/homepage/linethrough-price.png") no-repeat center center;
    content: '';
    display: block;
    height: 19px;
    margin: -10px 0 0 -25px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
}

#header .basket .basket-product .product-price .old-price small {
    font-size: 7px;
    font-size: 0.4375rem;
    line-height: 1.3;
}

#header .basket .basket-product .product-price .ht-price {
    color: #434a54;
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 1.3;
    font-weight: bold;
    font-family: "GothamMedium", arial, Helvetica, sans-serif;
    line-height: 28px;
    margin-left: 66px;
    position: relative;
}

#header .basket .basket-product .product-price .ht-price sup {
    display: inline-block;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1.3;
    line-height: 0;
    position: absolute;
    left: 100%;
    top: 8px;
}

#header .basket .basket-product .product-price .ht-price > small {
    font-size: 10px;
    font-size: 0.625rem;
    line-height: 1.3;
    line-height: 10px;
    position: absolute;
    left: 100%;
    bottom: 3px;
}

#header .basket .basket-product .product-price.reduced .ht-price {
    color: #e1001a;
}

#header .basket .basket-product .product-price .ttc-price {
    color: #aab2bd;
    display: inline-block;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.3;
    font-weight: bold;
    line-height: 12px;
    margin-left: 66px;
    vertical-align: top;
}

#header .basket .basket-product .product-price .ttc-price small {
    font-size: 9px;
    font-size: 0.5625rem;
    line-height: 1.3;
}

#header .basket .see-cart {
    padding: 12px 0;
    text-align: center;
}

#header .basket .see-cart .cta {
    padding-right: 16px;
    padding-left: 48px;
}

#header .basket .see-cart .cta:hover {
    text-decoration: none;
}

#header .basket .see-cart .cta:before {
    left: 14px;
}

#header .express-purchase-mobile {
    display: none;
    flex-direction: row;
    margin-top: 14px;
    font-size: 10px;
    font-size: 0.625rem;
    line-height: 1.3;
    font-weight: 700;
    font-family: "GothamMedium", arial, Helvetica, sans-serif;
    border-top: solid 1px #aab2bd;
    border-bottom: solid 1px #aab2bd;
}

#header .express-purchase-mobile .express-section {
    position: relative;
    height: 50px;
    padding: 12px 12px 12px 37px;
    background: transparent no-repeat 3px center;
    flex: 1;
}

#header .express-purchase-mobile .express-section .item {
    color: #737b84;
    display: block;
    height: 100%;
    line-height: 42px;
}

@media (max-width: 767px) {
    #header .express-purchase-mobile .express-section .item {
        line-height: 1.3;
    }
}

#header .express-purchase-mobile .express-section + .express-section:before {
    content: '';
    display: block;
    height: 30px;
    width: 1px;
    position: absolute;
    top: 10px;
    left: 0px;
    background: #aab2bd;
}

#header .express-purchase-mobile .orders {
    background-image: url("../images/header/ico-express-orders.png");
    background-size: 30px 33px;
}

#header .express-purchase-mobile .purchases {
    background-image: url("../images/header/ico-express-purchases.png");
    background-size: 30px 30px;
}

#header .express-purchase-mobile .wishlist {
    background-image: url("../images/header/ico-express-wishlist.png");
    background-size: 27px 38px;
    background-position: 7px center;
}

@media (max-width: 767px) {
    .cms-home #header .express-purchase-mobile {
        margin-top: 10px;
        display: flex;
    }
}

@media all and (max-width: 360px) {
    #header .express-purchase-mobile .express-section {
        padding-right: 4px;
    }
}

@media all and (min-width: 420px) {
    #header .express-purchase-mobile {
        font-size: 14px;
        font-size: 0.875rem;
        line-height: 1.3;
    }

    #header .express-purchase-mobile .express-section {
        padding-top: 4px;
        padding-bottom: 4px;
    }
}

@media all and (min-width: 520px) {
    #header .express-purchase-mobile .express-section {
        padding-left: 50px;
        padding-right: 40px;
    }

    #header .express-purchase-mobile .express-section.purchases {
        padding-right: 25px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    #header .express-purchase-mobile .express-section {
        padding: 0 40px 0 50px;
    }
}

@media (max-width: 767px) {
    #header .slide-hover > a.opened::after,
    #header .basket > a.opened::after{ content:none !important; display:none !important; }
    #header .user-account-pop,
    #header .user-infos-pop,
    #header .basket-content {
        display: none !important;
    }
}

#header .nav {
    /*border-top: 1px solid #aab2bd;*/
    border-bottom: 1px solid #d4dae1;
    font-size: 0;
    margin-top: 14px;
    position: relative;
    z-index: 30;
    background: white;
}

#header .nav > ul {
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    -moz-transition: -moz-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    display: table;
    width: 100%;
}

#header .nav > ul > li {
    display: table-cell;
    vertical-align: top;
}

@media (min-width: 768px) and (max-width: 1024px) {
    #header .nav > ul > li.active > a {
        color: #fff;
    }
}

#header .nav > ul > li > a {
    color: #6e757e;
    display: block;
    height: 53px;
    text-transform: uppercase;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.3;
    line-height: 53px;
    padding: 0 5px 3px 6px;
    position: relative;
    text-align: center;
    text-decoration: none;
    -webkit-transition: color 0.2s ease 0.05s;
    -moz-transition: color 0.2s ease 0.05s;
    transition: color 0.2s ease 0.05s;
}

@media (min-width: 768px) and (max-width: 1024px) {
    #header .nav > ul > li > a {
        font-size: 10px;
        font-size: 0.625rem;
        line-height: 1.3;
        line-height: 56px;
    }
}

#header .nav > ul > li > a:before {
    background: #d4dae1;
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: -1px;
    width: 1px;
}

#header .nav > ul > li > a span {
    display: inline-block;
    line-height: 12px;
    position: relative;
    vertical-align: middle;
    z-index: 2;
}

#header .nav > ul > li > a > i {
    content: '';
    display: block;
    height: 0;
    position: absolute;
    left: -1px;
    right: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transition: height 0.3s ease;
    -moz-transition: height 0.3s ease;
    transition: height 0.3s ease;
}

#header .nav > ul > li:nth-child(2) > a:before {
    display: none;
}

#header .nav > ul > li:nth-child(2) > i {
    left: 0;
}

#header .nav > ul > li .highlight > a {
    background: #e44f99;
    color: #ffffff;
    line-height: 58px;
    margin: -1px 0;
    padding: 0 11px 0 12px;
}

#header .nav > ul > li .highlight > a:before {
    display: none;
}

@media (min-width: 768px) {
    #header .nav > ul > li:hover > a, #header .nav > ul > li.active > a {
        color: #004f91;
        border-bottom: 3px solid #004f91;
        padding:0 5px 0 6px;
    }
}

#header .nav > ul > li:hover > a > i, #header .nav > ul > li.active > a > i {
    display:none;
    height: 100%;
}

#header .nav > ul > li.blue > a > i {
    background: #4e8edd;
}

#header .nav > ul > li.pink > a > i {
    background: #db83a4;
}

#header .nav > ul > li.green > a > i {
    background: #8cc051;
}

#header .nav > ul > li.openSubNav .sub-nav {
    display: block;
}

#header .nav .sub-nav {
    display: none;
    background: #ffffff;
    box-shadow:0 0 5px #787878;
    padding: 0 24px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 500;
}

#header .nav .sub-nav:hover {
    display: block;
}

#header .nav .sub-nav .layers-links {
    margin-top: 24px;
}

#header .nav .sub-nav .sub-bottom {
    display: table;
    margin: 15px 0 24px;
    width: 100%;
}

#header .nav .sub-nav .sub-bottom a {
    display: table-cell;
    width: 16.666666%;
}

#header .nav .sub-nav.layer-cartouches {
    padding: 0;
}

#header .nav .sub-nav.layer-cartouches .layers-links {
    margin-top: 0;
}

#header .nav .sub-nav.layer-cartouches .cartouches-form {
    background: #e6e9ee;
    padding: 18px 10px 18px 22px;
}

#header .nav .sub-nav.layer-cartouches .cartouche-title {
    color: #2e2c2d;
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 1.3;
    font-weight: bold;
    line-height: 34px;
    margin-bottom: 10px;
}

#header .nav .sub-nav.layer-cartouches .cartouche-title span {
    color: #4e8edd;
    display: block;
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.3;
}

#header .nav .sub-nav.layer-cartouches .txt {
    color: #434a54;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.3;
}

#header .nav .sub-nav.layer-cartouches form {
    display: table-cell;
    vertical-align: top;
}

#header .nav .sub-nav.layer-cartouches .cartouches-selection {
    border-right: 1px dashed #a1a3a6;
    width: 382px;
}

#header .nav .sub-nav.layer-cartouches .cartouche-search {
    background: transparent url("https://www.top-office.com/skin/frontend/top_office/default/images/header/bg-cartouches.png") no-repeat left 16px bottom -4px;
    padding-left: 22px;
    width: 253px;
}

#header .nav .sub-nav.layer-cartouches .form-el,
#header .nav .sub-nav.layer-cartouches .select-el {
    margin-top: 20px;
    position: relative;
}

#header .nav .sub-nav.layer-cartouches .select-el label,
#header .nav .sub-nav.layer-cartouches form select,
#header .nav .sub-nav.layer-cartouches form .input-text-cartouches {
    border-radius: 3px;
    background-color: #fff;
    border: solid 1px #aab2bd;
    color: #656d78;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.3;
    font-style: italic;
    height: 46px;
    width: 310px;
}

#header .nav .sub-nav.layer-cartouches form .input-text-cartouches {
    padding-left: 22px;
    padding-right: 60px;
}

#header .nav .sub-nav.layer-cartouches form .cta {
    border-radius: 0 3px 3px 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 49px;
}

#header .nav .sub-nav.layer-cartouches form .cta:before {
    margin-left: -12px;
    left: 50%;
}

#header .nav .sub-nav.layer-cartouches form select {
    padding-left: 50px;
}

#header .nav .sub-nav.layer-cartouches form .input-text-cartouches {
    width: 220px;
}

#header .nav .sub-nav.layer-cartouches .select-el label {
    cursor: pointer;
    line-height: 44px;
    padding-left: 50px;
    position: absolute;
    top: 0;
    left: 0;
    z-index:1;
    pointer-events: none;
}

#header .nav .sub-nav.layer-cartouches .select-el label:before {
    background: transparent url("https://www.top-office.com/skin/frontend/top_office/default/images/header/bg-label-cartouche.png") no-repeat left center;
    content: '';
    color: #ffffff;
    display: block;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.3;
    height: 44px;
    line-height: 44px;
    padding-right: 2px;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    width: 34px;
}

#header .nav .sub-nav.layer-cartouches .select-el label:after {
    background: transparent url("https://www.top-office.com/skin/frontend/top_office/default/images/header/arrow-cartouche.png") no-repeat bottom center;
    content: '';
    display: block;
    height: 8px;
    margin-top: -4px;
    position: absolute;
    top: 50%;
    right: 14px;
    width: 12px;
}

#header .nav .sub-nav.layer-cartouches .select-el label.active:after {
    background-position: top center;
}

#header .nav .sub-nav.layer-cartouches .select-el1 label:before {
    content: '1';
}

#header .nav .sub-nav.layer-cartouches .select-el2 label:before {
    content: '2';
}

#header .nav .sub-nav.layer-cartouches .select-el3 label:before {
    content: '3';
}

#header .nav .sub-nav.layer-cartouches .cartouches-right {
    padding: 29px 10px 0 18px;
}

#header .nav .sub-nav.layer-cartouches .cartouches-right .row {
    margin-bottom: 0;
}

#header .nav .sub-nav.layer-cartouches .cartouches-right .banners img {
    border: 0;
}

#header .nav .sub-nav.layer-cartouches .cartouches-right .banners a {
    display: block;
    margin-top: 20px;
}

#header .nav .sub-nav.layer-cartouches .cartoucheloader {
    display: none;
    position: absolute;
    top: 15px;
    left: 250px;
    z-index:2;
    /*
    float: left;
    margin-left: 8px;
    margin-top: 6px;
    */
}

#header .nav li.blue .sub-nav {
    border-color: #4e8edd;
}

#header .nav li.pink .sub-nav {
    border-color: #db83a4;
}

#header .nav li.green .sub-nav {
    border-color: #8cc051;
}

#header .nav .lines {
    display: none;
    position: relative;
    height: 30px;
    width: 20px;
    margin: 0 auto;
}

#header .nav .lines > span {
    background: none repeat scroll 0 0 #727984;
    display: block;
    height: 2px;
    position: absolute;
    top: 50%;
    width: 100%;
}

#header .nav .lines > span:nth-child(2) {
    margin-top: -7px;
}

#header .nav .lines > span:nth-child(3) {
    margin-top: 7px;
}

.navOpen #header .nav .lines > span:nth-child(1) {
    opacity: 0;
}

.navOpen #header .nav .lines > span:nth-child(2) {
    transform: rotate(45deg);
    margin: 0;
}

.navOpen #header .nav .lines > span:nth-child(3) {
    transform: rotate(-45deg);
    margin: 0;
}

.navOpen #header .nav {
    height: 100vh;
    width: 84%;
    top: 0;
    left: 0;
    min-height: initial;
    overflow-y: scroll;
}

@media (max-width: 767px) {
    #header .nav .lines {
        display: block;
    }
}

#header .nav .cross-open-sub-nav {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 55px;
    cursor: pointer;
}

#header .nav .cross-open-sub-nav:before {
    content: '';
    height: 16px;
    width: 4px;
    background: #072257;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -8px;
    margin-left: -2px;
    border-radius: 1px;
    -webkit-transition: opacity 200ms cubic-bezier(0.86, 0, 0.07, 1);
    -moz-transition: opacity 200ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: opacity 200ms cubic-bezier(0.86, 0, 0.07, 1);
}

#header .nav .cross-open-sub-nav:after {
    content: '';
    width: 16px;
    height: 4px;
    background: #072257;
    position: absolute;
    top: 50%;
    right: 14px;
    margin-left: -8px;
    margin-top: -2px;
    border-radius: 1px;
}

@media (max-width: 767px) {
    #header .nav .cross-open-sub-nav {
        display: block;
    }

    #header .nav .cross-open-sub-nav + a {
        pointer-events: none;
    }
}

#header .nav .mega-menu-home {
    display: none;
    background: #fff;
}

#header .nav .mega-menu-home a {
    padding-left: 55px;
    background: transparent url(../images/header/ico-menu-home.png) no-repeat 17px center;
    width: calc(100% - 20%);
}

#header .nav .mega-menu-home .lines {
    position: absolute;
    right: 5%;
    top: 12px;
}

@media (max-width: 767px) {
    #header .nav {
        z-index: 990;
        border: none;
        position: absolute;
        top: 13px;
        left: 5%;
        margin-top: 0;
    }

    #header .nav .mega-menu-home {
        display: block;
    }

    #header .nav > ul {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        width: 84%;
        min-height: 100%;
        background: #e6e9f0;
        height: 100%;
        overflow-y: scroll;
        display: block;
        transform: translateX(-100%);
    }

    .navOpen #header .nav > ul {
        transform: translateX(0%);
    }

    #header .nav > ul > li {
        display: block;
        background: #e6e9f0;
        min-height: 55px;
        border-bottom: solid 1px #b1b9c4;
        position: relative;
    }

    #header .nav > ul > li > a {
        text-align: left;
        padding-left: 16px;
        height: 55px;
        line-height: 55px;
        width: calc(100% - 55px);
        font-family: "GothamRndBold", arial, Helvetica, sans-serif;
    }

    #header .nav > ul > li > a > i {
        display: none;
    }

    #header .nav > ul > li.active .sub-nav {
        display: block;
    }

    #header .nav > ul > li.active, #header .nav > ul > li.openSubNav {
        background: #004996 !important;
    }

    #header .nav > ul > li.active > a, #header .nav > ul > li.openSubNav > a,
    #header .nav > ul > li.active > a span, #header .nav > ul > li.openSubNav > a span {
        color: #fff !important;
    }

    #header .nav > ul > li.active .cross-open-sub-nav:after, #header .nav > ul > li.active .cross-open-sub-nav:before, #header .nav > ul > li.openSubNav .cross-open-sub-nav:after, #header .nav > ul > li.openSubNav .cross-open-sub-nav:before {
        background: #fff;
    }

    #header .nav > ul > li.active,
    #header .nav > ul > li.openSubNav {
        border-bottom: none;
    }

    #header .nav > ul > li.active .cross-open-sub-nav:before,
    #header .nav > ul > li.openSubNav .cross-open-sub-nav:before {
        opacity: 0;
    }

    #header .nav .sub-nav {
        position: relative;
        top: inherit;
        left: inherit;
        right: inherit;
        border: none;
        padding: 0;
        z-index: auto;
        /*.layers-links {
          margin-top: 0;
          display: block;
          border-top: solid 1px #b1b9c4;

          .col {
            display: block;
            width: 100%;

            .row {
              margin-bottom: 0;
            }

            .img {
              display: none;
            }

            .links {
              position: relative;
              width: 100%;
              padding-left: 0;
              min-height: 55px;
              border-bottom: solid 1px #b1b9c4;

              &.active,
              &.openSubSubNav {
                background: #004996;

                .links-title {
                  background: #004996;
                  color: #fff;
                }

                .cross-open-sub-sub-nav {
                  &:after,
                  &:before {
                    background: #fff;
                  }
                }
              }

              &.openSubSubNav {
                border-bottom: none;

                .cross-open-sub-sub-nav {
                  &:before {
                    opacity: 0;
                  }
                }

                ul {
                  display: block;
                }
              }
            }

            .links-title {
              background: #fff;
              font-weight: 400;
              line-height: 55px;
              min-height: 55px;
              width: calc(100% - 55px);
              display: block;
              padding: 0 5px 0 32px;

              span {
                display: inline-block;
                line-height: 12px;
                vertical-align: middle;
              }
            }

            ul {
              padding: 0;
              line-height: inherit;
              border-top: solid 1px #b1b9c4;
              display: none;

              li {
                display: block;
                height: 55px;
                border-bottom: solid 1px #b1b9c4;
                background: #fff;
                position: relative;

                > a {
                  text-align: left;
                  padding: 0 5px 0 48px;
                  height: 55px;
                  line-height: 55px;
                  width: 100%;
                  text-transform: uppercase;
                  display: block;
                  color: #004996;

                  span {
                    display: inline-block;
                    line-height: 12px;
                    vertical-align: middle;
                  }
                }
              }
            }
          }
        }*/
    }

    #header .nav .sub-nav .cms_bottom {
        display:none;
    }
}

#ariane {
    position: relative;
    z-index: 2;
    font-family: Arial, Verdana, Helvetica, sans-serif;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.3;
    color: #999999;
    margin-top: 5px;
    overflow: hidden;
    padding: 0 10px;
}

.navOpen #ariane {
    z-index: 0;
}

#ariane ul {
    list-style-type: none;
}

#ariane ul li {
    display: inline-block;
    overflow-wrap: break-word;
    vertical-align: middle;
}

#ariane ul li:first-child a {
    padding-left: 0;
    background: none;
}

#ariane a {
    background: url(https://www.top-office.com/skin/frontend/top_office/default/images/puce-ariane.gif) 0 6px no-repeat;
    margin-right: 5px;
    padding-left: 10px;
    color: #666666;
    text-decoration: underline;
}

#ariane > a:first-child {
    background: none;
}

#ariane span {
    background: url(https://www.top-office.com/skin/frontend/top_office/default/images/puce-ariane.gif) 0 6px no-repeat;
    padding-left: 10px;
    color: #666666;
}

@media (max-width: 767px) {
    #ariane {
        border-top: 1px solid #aab2bd;
        margin-top: 0;
        padding: 8px 15px;
        background: #eff2f6;
        font-size: 9px;
        font-size: 0.5625rem;
        line-height: 1.3;
        overflow: auto;
        /*max-height: 28px;*/
    }
    #ariane ul {
        white-space:nowrap;
    }
    #ariane a,
    #ariane span {
        color: #727984;
        text-transform: uppercase;
        text-decoration: none;
        background-position: 0 2px;
    }
}

.breadcrumb {
    margin-bottom: 12px;
    text-transform: uppercase;
}

.breadcrumb li {
    color: #0b377f;
    display: inline-block;
    font-size: 11px;
    font-weight: bold;
    line-height: 30px;
    vertical-align: middle;
}

.breadcrumb li:before {
    content: "> ";
    font-weight: normal;
}

.breadcrumb li:first-child:before {
    display: none;
}

.breadcrumb li a {
    color: #434a54;
    text-decoration: underline;
}

.layers-links {
    letter-spacing: -.31em;
    display: table;
    width: 100%;
}

.layers-links * {
    letter-spacing: normal;
}

.layers-links .col {
    display: table-cell;
    vertical-align: top;
    width: 25%;
}

.layers-links .col .row {
    margin-bottom: 4px;
}

.layers-links .col .img,
.layers-links .col .links {
    display: inline-block;
    vertical-align: top;
}

.layers-links .col .img {
    cursor: pointer;
    float: left;
}

.layers-links .col img.thumbnail {
    height: 50px;
    width: 50px;
}

.layers-links .col .links {
    width: 100%;
}

.layers-links .col .links-title {
    font-family: "GothamBook", arial, Helvetica, sans-serif;
    color: #2f3338;
    display: block;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.3;
    padding: 5px 10px;
    margin-left: 55px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.layers-links .col .links-title a {
    text-decoration: none;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

@media (min-width: 1025px) {
    .layers-links .col .links-title:hover,
    .layers-links .col .links-title:hover a {
        background: #e3e7ec;
    }
}

.layers-links .col ul {
    line-height: 9px;
    margin-left: 55px;
    padding: 5px;
}

#content .layers-links .col ul {
    line-height: 13px;
    list-style-type: none;
    margin-bottom: 0;
}

#content .layers-links .col li {
    margin-bottom: 0px;
}

.layers-links .col ul a {
    color: #434a54;
    font-size: 13px;
    text-decoration: none;
    line-height: 1.4;
    display: block;
}

.layers-links .col ul a span {
    color: inherit;
}

@media (min-width: 1025px) {
    .layers-links .col ul a:hover {
        text-decoration: underline;
    }
}

.layers-links .cross-open-sub-sub-nav {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 100px;
    cursor: pointer;
}

.layers-links .cross-open-sub-sub-nav:before {
    content: '';
    height: 16px;
    width: 4px;
    background: #8b929b;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -8px;
    margin-left: -2px;
    border-radius: 1px;
    -webkit-transition: opacity 200ms cubic-bezier(0.86, 0, 0.07, 1);
    -moz-transition: opacity 200ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: opacity 200ms cubic-bezier(0.86, 0, 0.07, 1);
}

.layers-links .cross-open-sub-sub-nav:after {
    content: '';
    width: 16px;
    height: 4px;
    background: #8b929b;
    position: absolute;
    top: 50%;
    right: 14px;
    margin-left: -8px;
    margin-top: -2px;
    border-radius: 1px;
}

@media (max-width: 767px) {
    .layers-links .cross-open-sub-sub-nav {
        display: block;
    }

    .layers-links .cross-open-sub-sub-nav + a {
        pointer-events: none;
    }
}

@media (max-width: 767px) {
    .layers-links {
        margin-top: 0 !important;
        display: block;
    }

    .nav .layers-links {
        border-top: solid 1px #b1b9c4;
    }

    .layers-links .col {
        display: block;
        width: 100%;
    }

    .layers-links .col:first-child {
        border-top: solid 1px #b1b9c4;
    }

    .nav .layers-links .col:first-child {
        border: none;
    }

    .layers-links .col .row {
        margin-bottom: 0;
    }

    .layers-links .col .img {
        float: left;
        margin-left: 5px;
        margin-right: 10px;
    }

    .layers-links .col .links {
        position: relative;
        width: 100%;
        padding-left: 0;
        min-height: 55px;
        border-bottom: solid 1px #b1b9c4;
        background:#fff;
    }

    .layers-links .col .links.active, .layers-links .col .links.openSubSubNav {
        background: #e3e7ec;
    }

    .layers-links .col .links.active .cross-open-sub-sub-nav:after, .layers-links .col .links.active .cross-open-sub-sub-nav:before, .layers-links .col .links.openSubSubNav .cross-open-sub-sub-nav:after, .layers-links .col .links.openSubSubNav .cross-open-sub-sub-nav:before {
        background: #fff;
    }

    .layers-links .col .links.active,
    .layers-links .col .links.openSubSubNav {
        border-bottom: none;
    }

    .layers-links .col .links.active .cross-open-sub-sub-nav:after,
    .layers-links .col .links.openSubSubNav .cross-open-sub-sub-nav:after {
        background: #8b929b;
    }

    .layers-links .col .links.active .cross-open-sub-sub-nav:before,
    .layers-links .col .links.openSubSubNav .cross-open-sub-sub-nav:before {
        opacity: 0;
    }

    .layers-links .col .links.active ul,
    .layers-links .col .links.openSubSubNav ul {
        display: block;
    }

    .layers-links .col .links-title {
        display: table;
        background: transparent;
        font-weight: 400;
        font-size: 12px;
        /*font-size: 0.7875rem;*/
        line-height: 1.3;
        text-transform: uppercase;
        height: 100px;
        margin-left: 0;
        padding: 1rem 55px 1rem 0;
    }

    .layers-links .col .links-title span {
        display: table-cell;
        line-height: inherit;
        vertical-align: middle;
    }

    .layers-links .col ul {
        margin: 0;
        padding: 0;
        line-height: inherit;
        border-top: solid 1px #b1b9c4;
        display: none;
    }

    .layers-links .col ul li {
        display: block;
        height: 55px;
        border-bottom: solid 1px #b1b9c4;
        background: #fff;
        position: relative;
    }

    .layers-links .col ul li > a {
        text-align: left;
        padding: 0 5px 0 48px;
        height: 55px;
        line-height: 55px;
        width: 100%;
        text-transform: uppercase;
        display: block;
        color: #004996;
    }

    .layers-links .col ul li > a span {
        display: inline-block;
        line-height: 12px;
        vertical-align: middle;
    }
}

/** SHOP MESSAGE **/

.desktopMessage {
    text-align: center;
    height: 32px;
    width: 100%;
    padding: 3px;
    color: #203d9d;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.3;
    line-height: 26px;
}

.mobileMessage {
    text-align: center;
    height: 32px;
    width: 100%;
    padding: 3px;
    color: #203d9d;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.3;
    line-height: 26px;
}

@media (max-width: 1024px) {
    .desktopMessage {
        display: none;
    }
}

@media (min-width: 1025px) {
    .mobileMessage {
        display: none;
    }
}

/** STORE PICKER **/

#mapLeft, #listeMag, #mapLeft-stock, #listeMag-stock {
    float: left;
    width: 485px;
}

@media (max-width: 1024px) {
    #mapLeft, #listeMag, #mapLeft-stock, #listeMag-stock {
        width: auto;
        float: none;
    }
}

#mapLeft p.pTitle, #mapLeft-stock p.pTitle {
    margin-bottom: 10px;
    font-family: "GothamMedium", arial, Helvetica, sans-serif;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.3;
    text-align: center;
}

#mapLeft p.pTitle:first-child, #mapLeft-stock p.pTitle:first-child {
    display: none;
}

#mapLeft .formCode, #mapLeft-stock .formCode {
    clear: both;
}

@media (max-width: 1024px) {
    #mapLeft .formCode, #mapLeft-stock .formCode {
        position: relative;
    }
}

#mapLeft .input-text, #mapLeft-stock .input-text {
    float: left;
    width: 263px;
    border: 1px solid #cccccc;
    height: 26px;
    line-height: 26px;
    box-shadow: 1px 1px 3px #dcdcdc inset;
    -moz-box-shadow: 1px 1px 3px #dcdcdc inset;
    -webkit-box-shadow: 1px 1px 3px #dcdcdc inset;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 0 7px;
    margin-left: 36px;
}

@media (max-width: 1024px) {
    #mapLeft .input-text, #mapLeft-stock .input-text {
        width: 100%;
        height: 30px;
        margin-left: 0;
        box-shadow: 0px 0px 0px;
        -moz-box-shadow: 0px 0px 0px;
        -webkit-box-shadow: 0px 0px 0px;
    }
}

#mapLeft .btnOk, #mapLeft-stock .btnOk {
    cursor: pointer;
    display: block;
    float: left;
    width: 42px;
    height: 30px;
    margin-left: 10px;
    background: transparent url(https://www.top-office.com/skin/frontend/top_office/default/images/refonte/btn-ok.png) center bottom no-repeat;
    border: none;
    text-indent: -99999px;
}

@media (max-width: 1024px) {
    #mapLeft .btnOk, #mapLeft-stock .btnOk {
        background: transparent url(../images/header/ico-cta-mini.png) center bottom no-repeat;
        background-size: 17px 17px;
        position: absolute;
        right: 0;
        margin-top: -6px;
        z-index: 999;
    }
}

.btn-search-shop {
    display: none;
}

@media (max-width: 1024px) {
    .btn-search-shop {
        display: block;
        background-color: #1436a1;
        color: #fff;
        text-transform: uppercase;
        padding: 5px 10px;
        /*font-weight: bold;*/
        text-align: center;
        font-family: "GothamMedium", arial, Helvetica, sans-serif;
        font-size: 12px;
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 10px;
        border-radius: 2px;
    }
}

.ic-pointer {
    background: url(../images/icons/icons.png) no-repeat 0 -577px;
    width: 15px;
    height: 23px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

/** STORE PICKER **/

#data-mapheader .user-infos-pop {
    background: #ffffff;
    color: #020202;
    display: none;
    padding: 15px 20px 12px;
    text-align: left;
    width: 100%;
}
#data-mapheader .user-infos-pop .user-infos .hello-title {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3;
    font-weight: bold;
    line-height: 23px;
    margin-bottom: 28px; }
#data-mapheader .user-infos-pop .user-infos .hello-title span {
    color: #01a1eb; }
#data-mapheader .user-infos-pop .user-infos .logout-link {
    text-align: right;
    line-height: 20px; }
#data-mapheader .user-infos-pop .user-infos .logout-link a {
    color: #000000;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.3;
    line-height: 1.5;
    font-weight: bold; }
#data-mapheader .user-infos-pop .user-infos li {
    background: transparent url("https://www.top-office.com/skin/frontend/top_office/default/images/header/dashed-line.png") repeat-x bottom left; }
#data-mapheader .user-infos-pop .user-infos li:first-child {
    background-image: url("https://www.top-office.com/skin/frontend/top_office/default/images/header/dashed-line.png"), url("https://www.top-office.com/skin/frontend/top_office/default/images/header/dashed-line.png");
    background-position: bottom left, top left; }
#data-mapheader .user-infos-pop .user-infos li a {
    color: #020202;
    display: block;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.3;
    line-height: 24px;
    padding: 8px 0 8px 34px;
    position: relative;
    text-decoration: none; }
#data-mapheader .user-infos-pop .user-infos li a:before {
    background: transparent none no-repeat scroll center center;
    content: "";
    display: block;
    height: 20px;
    left: 0;
    margin-top: -10px;
    position: absolute;
    top: 50%;
    width: 18px; }
#data-mapheader .user-infos-pop .user-infos li a.my-account:before {
    background-image: url("../images/header/sprite-user-myaccount.png"); }
#data-mapheader .user-infos-pop .user-infos li a.my-orders:before {
    background-image: url("../images/header/sprite-user-myorders.png"); }
#data-mapheader .user-infos-pop .user-links {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.3; }
#data-mapheader .user-infos-pop .logout-link {
    margin-top: 12px; }
#data-mapheader .user-infos-pop li a.store-infos:before {
    background: transparent url("https://www.top-office.com/skin/frontend/top_office/default/images/header/sprite-store.png") no-repeat scroll center center;
    height: 23px;
    margin-left: -5px;
    margin-top: -12px;
    width: 23px; }
#data-mapheader .user-infos-pop li a.change-store:before {
    background: transparent url("https://www.top-office.com/skin/frontend/top_office/default/images/header/sprite-store-change.png") no-repeat scroll center center;
    height: 23px;
    margin-left: -15px;
    margin-top: -12px;
    width: 42px; }

@media (max-width: 1024px) {
    #mapLeft .choice-type-shearch-shop {
        display: none;
    }

    #mapLeft .choice-type-shearch-shop.geoloc-active {
        display: block;
    }

    #data-mapheader.has-warehouse .user-infos-pop {
        display: block;
    }

    #data-mapheader.has-warehouse #mapLeft,
    #data-mapheader.has-warehouse #listeMag {
        display: none;
    }

    #data-mapheader.has-warehouse.change-warehouse .user-infos-pop {
        display: none;
    }

    #data-mapheader.has-warehouse.change-warehouse #mapLeft,
    #data-mapheader.has-warehouse.change-warehouse #listeMag {
        display: block;
    }
}

#listeMag .listeMag-error {
    color: #ED1C24;
    font-size: 16px;
    padding: 10px;
}

.ficheMag #tabs .coordonneesMag .coordTel a {
    color: #554b00;
}


#listeMag .listeMagChoixLoading .v-mid {
    margin: 0 auto;
    display: block;
}

#listeMag, #listeMag-stock {
    float: left;
    width: 381px;
}

#other-shipping-method #listeMag{
    width: 50%;
    float: left;
}

#other-shipping-method #listeMag li a{
    box-sizing: border-box;
    width: 100%;
}

#other-shipping-method #listeMag li a.active{
    background-color: #fadd48;
}

#other-shipping-method .horaires-mag{
    width: 50%;
    float:right;
}

@media (max-width: 1024px) {
    #listeMag, #listeMag-stock {
        width: auto;
        float: none;
    }
}

#listeMag p, #listeMag-stock p {
    background-color: #322c2c;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    height: 44px;
    line-height: 44px;
    text-align: center;
}

#listeMag span{
    display: block;
}


@media (max-width: 1024px) {
    #listeMag p, #listeMag-stock p {
        font-size: 12px;
        text-align: left;
        padding: 0 10px;
    }
}

#listeMag .listeMagChoixLoading, #listeMag-stock .listeMagChoixLoading {
    width: 100%;
    background-color: #f2f2f2;
    height: auto;
    padding-top: 15px;
    min-height: 380px;
}

#listeMag .listeMagChoix, #listeMag-stock .listeMagChoix {
    width: 100%;
    background-color: #f2f2f2;
    height: auto;
    height: 380px;
    overflow: auto;
}

@media (max-width: 1024px) {
    #listeMag .listeMagChoix, #listeMag-stock .listeMagChoix {
        background-color: transparent;
        max-height: 250px;
    }
}

#listeMag .listeMagChoix li, #listeMag-stock .listeMagChoix li {
    background: transparent url(https://www.top-office.com/skin/frontend/top_office/default/images/refonte/filet-popup.png) center bottom no-repeat;
}

@media (max-width: 1024px) {
    #listeMag .listeMagChoix li, #listeMag-stock .listeMagChoix li {
        background: none;
        border-top: solid 1px #f3f3f3;
    }
}

#listeMag .listeMagChoix li a, #listeMag-stock .listeMagChoix li a {
    text-align: left;
    font-size: 14px;
    color: #322c2c;
    display: block;
    line-height: 57px;
    width: 310px;
    padding-left: 50px;
    margin-bottom: 1px;
    height: 57px;
    background: transparent url(https://www.top-office.com/skin/frontend/top_office/default/images/refonte/fleche-liste.png) 31px center no-repeat;
    box-sizing: content-box;
}

#listeMag .listeMagChoix li a{
    line-height: 16px;
    padding-top: 10px;
    height: 72px;
}


@media (max-width: 1024px) {
    #listeMag .listeMagChoix li a, #listeMag-stock .listeMagChoix li a {
        background: url(../images/icons/icons.png) no-repeat right -417px;
        padding-left: 20px;
        width: 100%;
        box-sizing: border-box;
        font-family: "GothamMedium", arial, Helvetica, sans-serif;
        color: #737c85;
        line-height: 47px;
        height: 47px;
    }

    #listeMag .listeMagChoix li a:hover, #listeMag-stock .listeMagChoix li a:hover {
        background-color: #00a1f2;
        background-position: right -487px;
        color: #fff;
    }
}

#listeMag .listeMagChoix li a:hover, #listeMag-stock .listeMagChoix li a:hover {
    background-color: #fadd48;
}

@media (max-width: 1024px) {
    #listeMag .listeMagChoix li a:hover, #listeMag-stock .listeMagChoix li a:hover {
        background-color: #01a1eb;
    }
}

@media (max-width: 1024px) {
    #listeMag .listeMagChoix li a:active, #listeMag-stock .listeMagChoix li a:active {
        background-color: #01a1eb;
    }
}

#other-shipping-method .horaires-mag{
    box-sizing: border-box;
    padding-left: 5px;
}

#other-shipping-method .horaires-mag p{
    margin-bottom: 10px;
}
#other-shipping-method .horaires-mag span{
    font-weight: bold;
}

#listeMag .listeMagChoix li a span, #listeMag-stock .listeMagChoix li a span ,
#other-shipping-method .horaires-mag .horaires-magasin .magName,
.checkout-process-shipping #listeMag .listeMagChoix li a span b
{
    font-weight: bold;
    font-size: 16px;
}

#listeMag .listeMagChoix li a.no-cursor{
    cursor: default;
}

.checkout-process-shipping #listeMag .listeMagChoix li a span,
#listeMag .listeMagChoix li a span.horaires-magasin-liste{
    font-weight: normal;
}

#listeMag .listeMagChoix li a span.horaires-magasin-liste{
    font-size: 12px;
    color: #797979;
    margin-top: 5px;
}

#listeMag .listeMagChoix li a span.horaires-magasin-liste-ferme{
    font-size: 14px;
    color: #e1001a;
    margin-top: 5px;
}

#listeMag .listeMagChoix li a span.horaires-magasin-liste-ouvert{
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

@media (max-width: 1024px) {
    #listeMag .listeMagChoix li a span, #listeMag-stock .listeMagChoix li a span {
        font-weight: normal;
        font-size: 13px;
    }
}

.listeMagChoix-item-title {
    float: left;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .listeMagChoix-item-title {
        font-size: 12px;
    }
}

.listeMagChoix-item-stock-nodispo {
    background-image: url(https://www.top-office.com/skin/frontend/top_office/default/images/refonte/ico-no-dispo.png);
    background-repeat: no-repeat;
    background-position: left top;
    float: right;
    height: 16px;
    margin-right: 20px;
    margin-top: 22px;
    width: 16px;
}

.listeMagChoix-item-stock-dispo {
    background-image: url(https://www.top-office.com/skin/frontend/top_office/default/images/refonte/ico-disponibilite-online.png);
    background-repeat: no-repeat;
    background-position: left top;
    float: right;
    height: 16px;
    margin-right: 20px;
    margin-top: 22px;
    width: 16px;
}

@media (max-width: 1024px) {
    #mapLeft {
        background-color: #dadada;
        overflow: hidden;
        padding: 15px 20px;
    }

    #mapLeft #canvas_france_header, #mapLeft #canvas_france_nostock {
        display: none;
    }

    #listeMag p:first-child {
        display: none;
    }
}

@media (max-width: 1024px) {
    #listeMag .listeMagChoix li a,
    #listeMag-stock .listeMagChoix li a {
        padding: 0 30px 0 20px;
        display: flex;
        align-items: center;
        line-height: 1;
    }

    #listeMag .listeMagChoix .listeMagChoix-item,
    #listeMag-stock .listeMagChoix .listeMagChoix-item {
        display: flex;
        flex: 1;
        align-items: center;
    }

    #listeMag .listeMagChoix .listeMagChoix-item .listeMagChoix-item-title,
    #listeMag-stock .listeMagChoix .listeMagChoix-item .listeMagChoix-item-title {
        float: none;
        flex: 1;
    }

    .listeMagChoix-item-stock-dispo,
    .listeMagChoix-item-stock-nodispo {
        float: none;
        margin: 0;
        background-position: center;
        padding: 0 10px;
        width: 36px;
    }
}
.listeMagChoix > ul:nth-child(1) > li > a > span:nth-child(1) {
    min-width: 200px;
    max-width: 125px;
}
@media (max-width: 498px) {
    .listeMagChoix > ul:nth-child(1) > li > a > span:nth-child(1) {
        min-width: 150px;
        max-width: 125px;
        margin-right: 10px;
    }
    #listeMag .listeMagChoix li a,
    #listeMag-stock .listeMagChoix li a {
        padding: 0 30px 0 5px;
    }
}
@media (max-width: 430px) {
    .listeMagChoix > ul:nth-child(1) > li > a > span:nth-child(1) {
        min-width: 110px;
        max-width: 110px;
        margin-right: 10px;
    }
    #listeMag-stock .listeMagChoix li a {
        padding: 0 30px 0 5px;
    }
}
#listeMag .listeMagChoixLoading,
#listeMag-stock .listeMagChoixLoading {
    width: 100%;
    padding-top: 15px;
    min-height: inherit;
    background: none;
}

#listeMag .listeMagChoix li a.near-shop,
#listeMag-stock .listeMagChoix li a.near-shop {
    padding: 0 30px 0 5px;
}


#listeMag .listeMagChoixLoading .v-mid {
    margin: 0 auto;
    display: block;
}

#listeMag .near-shop .range-shop {
    font-size: 11px;
    line-height: 1;
    margin-right: 10px;
    min-width: 60px;
    text-align: center;
    background-color: #1436a1;
    color: #fff;
    padding: 5px 0;
    border-radius: 2px;
}

/** CONTENEUR **/

#conteneur {
    width: 100%;
    max-width: 1006px;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 768px) and (max-width: 1024px) {
    #conteneur {
        max-width: 768px;
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    #conteneur {
        max-width: 100%;
        overflow: hidden;
    }
}

#conteneur #header-checkout {
    width: 100%;
    background-color: #f1f2f2;
    text-align: center;
    padding: 15px 0 20px;
    margin-bottom: 15px;
}

@media (max-width: 1024px) {
    #conteneur #header-checkout {
        padding: 0 10px;
        margin-bottom: 0;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    #conteneur #header-checkout {
        height: 100px;
    }
}

@media (max-width: 767px) {
    #conteneur #header-checkout {
        height: auto;
        padding: 10px 8px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    #conteneur #header-checkout a {
        left: 0;
        width: 170px;
        height: 75px;
        background: none;
        /*border: 1px solid red;*/
    }
}

@media (max-width: 767px) {
    #conteneur #header-checkout a {
        left: 10px;
        width: 150px;
        height: 60px;
        background: none;
    }
}

@media all and (max-width: 400px) {
    #conteneur #header-checkout a {
        width: 100px;
        height: 34px;
    }
}

#conteneur #content {
    width: 100%;
}

/** CUSTOMER ACCOUNT MINI ACCOUNT COMMON **/

.user-account .already-customer, .user-account .new-customer {
    color: #434a54;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.3;
    text-align: center;
    vertical-align: top;
    box-sizing: border-box;
    padding: 20px 15px;
}

@media (min-width: 1025px) {
    .user-account .already-customer, .user-account .new-customer {
        float: left;
        width: 50%;
        padding: 25px 76px 22px;
    }
}

.user-account .new-customer {
    background: #e6e9ee;
}

@media (max-width: 767px) {
    .user-account .new-customer {
        background-color: #eff2f7;
    }

    .user-account .new-customer .intro {
        margin-bottom: 0;
    }
}

.user-account .user-title {
    color: #0b377f;
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 1.3;
    font-weight: bold;
    font-family: "GothamMedium", arial, Helvetica, sans-serif;
    margin-bottom: 10px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .user-account .user-title {
        font-size: 20px;
        font-size: 1.25rem;
        line-height: 1.3;
        color: #1c3ca3;
    }
}

.user-account .intro {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .user-account .intro {
        font-size: 12px;
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .user-account .intro br {
        display: none;
    }
}

.user-account input {
    background: #ffffff;
    border: solid 1px #aab2bd;
    border-radius: 3px;
    color: #777777;
    display: block;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.3;
    font-style: italic;
    height: 46px;
    outline: none;
    padding: 0 10px 0 53px;
    width: 100%;
}

.user-account .form-el {
    padding-bottom: 32px;
    position: relative;
}

@media (max-width: 767px) {
    .user-account .form-el {
        padding-bottom: 0;
        padding-top: 10px;
    }
}

.user-account .form-el:before {
    background: transparent url(https://www.top-office.com/skin/frontend/top_office/default/images/header/sprite-user-email.png) no-repeat center center;
    content: '';
    display: block;
    height: 44px;
    position: absolute;
    top: 1px;
    left: 1px;
    width: 44px;
}

@media (max-width: 767px) {
    .user-account .form-el:before {
        top: 11px;
    }
}

.user-account .form-el.pwd:before {
    background-image: url(https://www.top-office.com/skin/frontend/top_office/default/images/header/sprite-user-pwd.png);
}

.user-account hr {
    background: transparent url(https://www.top-office.com/skin/frontend/top_office/default/images/header/dashed-line.png) repeat-x 0 0;
    border: 0;
    height: 1px;
    margin: 0 0 20px;
}

@media (max-width: 767px) {
    .user-account hr {
        display: none;
    }
}

.user-account .account-link {
    margin-top: 13px;
}

@media (max-width: 767px) {
    .user-account .account-link {
        margin-top: 5px;
    }
}

.user-account .account-link a {
    color: #0b377f;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 1.3;
    font-family: "GothamMedium", arial, Helvetica, sans-serif;
    font-weight: bold;
}

@media (max-width: 767px) {
    .user-account .account-link a {
        color: #1c3ca3;
        text-decoration: underline;
    }
}

.user-account .txt {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.3;
    line-height: 18px;
    margin-bottom: 24px;
}

@media (max-width: 767px) {
    .user-account .txt {
        margin-bottom: 10px;
        font-size: 12px;
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

@media (max-width: 767px) {
    .user-account .submit {
        margin-top: 20px;
    }
}

.user-account .formJsValidation .submit, .user-account-pop .formJsValidation .submit {
    line-height: 1.5;
}

.cta {
    background-color: #0b377f;
    border: 0;
    border-radius: 4px;
    color: #ffffff;
    display: inline-block;
    font-family: "GothamMedium", arial, Helvetica, sans-serif;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.3;
    padding: 8px 15px 8px 52px;
    position: relative;
    text-align: center;
    text-decoration: none;
    z-index: 10;
    cursor: pointer;
    outline: 0;
}

@media (max-width: 767px) {
    .cta {
        background: url(../images/icons/icons.png) 80% -245px no-repeat #1c3ca3;
        padding: 12px 70px 13px 60px;
        /*text-transform: uppercase;*/
        border-radius: 2px;
        font-size: 12px;
        font-size: 0.75rem;
        line-height: 1.3;
    }
    /*
    .cta:before {
        display: none;
    }
    */
}

.user-account input.error, .user-account input.validation-failed, #header .user-account-pop input.validation-failed {
    border-color: #d61919;
}

.user-account .form-el .validation-advice, .user-account-pop .form-el .validation-advice {
    color: #d61919;
    font-size: 11px;
    font-weight: bold;
    height: 32px;
    line-height: 13px;
    padding: 3px 0 0 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: left;
}

/** CUSTOMER FORGOT PASSWORD **/

.customer-account-forgotpassword #content-coordonnees {
    width: 100%;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .customer-account-forgotpassword #content-coordonnees {
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .customer-account-forgotpassword #content-coordonnees {
        padding: 20px 15px;
    }
}

.customer-account-forgotpassword #content-coordonnees h2 {
    margin-left: 0;
}

/*@media (max-width: 767px) {*/
.customer-account-forgotpassword #content-coordonnees h2 {
    display: block;
    /*color: #0b377f;*/
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.3;
    color: #1c3ca3;
    text-align: center;
    font-weight: bold;
    font-family: "GothamMedium", arial, Helvetica, sans-serif;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/*}*/
.customer-account-forgotpassword #content-coordonnees .encart-coordonnees {
    display: block;
    clear: both;
}

.customer-account-forgotpassword #content-coordonnees .encart-coordonnees .content {
    /*background: #f5f5f5 url(https://www.top-office.com/skin/frontend/top_office/default/images/refonte/bkg-fleche.png) 37px top no-repeat;*/
}

.customer-account-forgotpassword #content-coordonnees .encart-coordonnees .content label {
    display: block;
    float: none;
    text-align: left;
    width: 100%;
    color: #666666;
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 3px;
}

@media (max-width: 767px) {
    .customer-account-forgotpassword #content-coordonnees .encart-coordonnees .content label {
        margin-top: 20px;
        font-weight: normal;
        font-family: "GothamMedium", arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 1.3;
    }
}

.customer-account-forgotpassword #content-coordonnees .encart-coordonnees .content label span {
    font-family: Arial;
    color: #eb0606;
}

.customer-account-forgotpassword #content-coordonnees .encart-coordonnees .formulaire {
    display: block;
    margin-left: 40px;
    width: 90%;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .customer-account-forgotpassword #content-coordonnees .encart-coordonnees .formulaire {
        margin-top: 5px;
        margin-left: 0;
        width: 100%;
    }
}

.customer-account-forgotpassword #content-coordonnees .encart-coordonnees .formulaire li {
    display: block;
    padding-bottom: 8px;
    width: 100%;
}

@media (max-width: 767px) {
    .customer-account-forgotpassword #content-coordonnees .encart-coordonnees .formulaire li {
        /*margin-top: 10px;*/
        padding: 0;
    }

    .customer-account-forgotpassword #content-coordonnees .encart-coordonnees .formulaire li:first-child {
        text-align: center;
        font-weight: bold;
        font-size: 12px;
        font-size: 0.75rem;
        line-height: 1.3;
        line-height: 1;
        color: #666;
    }
}

.customer-account-forgotpassword #content-coordonnees .encart-coordonnees .formulaire .input-text {
    /*float: left;*/
    /*width: 250px;*/
    width: 300px;
    border: 1px solid #cccccc;
    height: 26px;
    line-height: 26px;
    box-shadow: 1px 1px 3px #dcdcdc inset;
    -moz-box-shadow: 1px 1px 3px #dcdcdc inset;
    -webkit-box-shadow: 1px 1px 3px #dcdcdc inset;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 0 7px;
}

@media (max-width: 767px) {
    .customer-account-forgotpassword #content-coordonnees .encart-coordonnees .formulaire .input-text {
        margin-top: 5px;
        padding-left: 8px;
        padding-right: 8px;
        width: 100%;
        line-height: 34px;
        height: 34px;
        color: #666;
        border: 1px solid #cccccc;
        box-shadow: 0 0 0;
    }
}

.customer-account-forgotpassword #content-coordonnees .encart-coordonnees .formulaire .valide-check {
    display: none;
    padding-left: 15px;
}

.customer-account-forgotpassword #content-coordonnees .encart-coordonnees .formulaire .intro {
    margin-bottom: 10px;
    font-size: 12px;
}

.customer-account-forgotpassword #content-coordonnees .entete {
    background-color: #E9E9E9;
    border: 0 none;
    font-weight: bold;
    color: #666666;
    font-size: 12px;
    height: 30px;
    font-size: 14px;
    padding-left: 20px;
    line-height: 28px;
}

@media (max-width: 767px) {
    .customer-account-forgotpassword #content-coordonnees .entete {
        margin-bottom: 0;
        padding: 0;
        height: auto;
        text-align: center;
        font-weight: bold;
        font-size: 12px;
        font-size: 0.75rem;
        line-height: 1.3;
        line-height: 1;
        background-color: #fff;
    }
}

.customer-account-forgotpassword .formJsValidation .submitRight {
    float: right;
    width: 131px;
    height: 51px;
    font-size: 0;
    border: 0;
    background: url(https://www.top-office.com/skin/frontend/top_office/default//images/refonte/btn-valider.png);
}

@media (max-width: 767px) {
    .customer-account-forgotpassword .formJsValidation .submitRight {
        float: none;
        display: block;
        position: relative;
        margin: 0 auto;
        height: 44px;
        text-transform: uppercase;
        font-family: "GothamMedium", arial, Helvetica, sans-serif;
        font-size: 14px;
        color: #FFF;
        background-color: #1c399f;
        background-image: url(../images/icons/arrow-white.png);
        background-position: right center;
        background-repeat: no-repeat;
        border-radius: 2px;
    }
}

.customer-account-forgotpassword .formJsValidation .submit {
    line-height: 50px;
}

@media (max-width: 767px) {
    .customer-account-forgotpassword .formJsValidation .submit {
        margin-top: 20px;
        padding: 0;
    }
}

.customer-account-forgotpassword .required {
    font-size: 11px;
    color: #eb0606;
}

@media (max-width: 767px) {
    .customer-account-forgotpassword .required {
        margin-top: 20px;
        line-height: 1;
    }
}

/** CARROUSEL (HP + AUTRES) **/

#clock {
    text-align: center;
    height: 286px;
}

#clock span {
    position: absolute;
    margin-top: 175px;
    display: inline-block;
    width: 46px;
    height: 71px;
    background: url('../images/carrousel_numbers.png');
    background-position: 0 0;
}

#clock #d0 {
    margin-left: -235px;
}

#clock #d1 {
    margin-left: -187px;
}

#clock #h0 {
    margin-left: -107px;
}

#clock #h1 {
    margin-left: -59px;
}

#clock #m0 {
    margin-left: 21px;
}

#clock #m1 {
    margin-left: 69px;
}

#clock #s0 {
    margin-left: 149px;
}

#clock #s1 {
    margin-left: 197px;
}

@media (min-width: 1025px) {
    .slider_mobile {
        display: none;
    }
}

@media (max-width: 1024px) {
    .timer, .big_image {
        display: none;
    }
}

/** COMMON MEDIA QUERIES **/

@media (max-width: 1024px) {
    .product-shop .livraison,
    .product-detail .livraison,
    .product-shop .exclu-produit-list,
    .content-fiche-prod .product-detail .attributes #exclu-web,
    .cartouches-rewrite-list .product-infos .exclu-produit-list,
    .wishlist-liste-products .wishlist-product-detail-ldf {
        display: none;
    }

    .fancybox-overlay-fixed {
        top: 0 !important;
    }

    .fancybox-wrap {
        top: 0 !important;
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
    }

    #mapLeft #canvas_france,
    #mapLeft #canvas_france_header_modify {
        display: none;
    }

    #edit.editPassword #strength_bloc {
        top: 10px;
    }
}

.fancybox-wrap .address-form-container {
    height: 100%;
    overflow: auto;
}

@media (min-width: 1025px) {
    .selection-slider .slider-nav li:first-child a {
        height: 56px;
    }

    .selection-slider .slider-nav li a {
        height: 57px;
    }

    #content-inscription form ul.form .validation-advice {
        margin: 0 0 0 365px;
        padding-bottom: 10px;
        color: #eb0606;
        font: 13px Arial
    }

    .shipping_drive_working img {
        width: 246px;
        display: inline-block;
    }

    .cliple-video {
        width: 330px !important;
    }
/*
    .section-sells-product .lp-product .lp-product-button-order p:first-child .cta {
        padding: 5px 10px 5px 36px;
    }*/
}

/** SLIDER **/

.selection-slider .slider-nav li a span {
    margin-top: 15px;
}

/** MEGA MENU **/

#header .nav > ul > li > a span.align-helper {
    height: 100%;
}

/** COMMON MEDIA QUERIES **/

@media (max-width: 767px) {
    body {
        position: relative;
    }

    #page-liste-categorie-haut,
    #popin-ajout-panier {
        display: none !important;
    }

    .verticalFlip > * {
        animation: vertical 12s linear infinite 0s;
        -ms-animation: vertical 12s linear infinite 0s;
        -webkit-animation: vertical 12s linear infinite 0s;
    }

    .content-rayon-link {
        display: none;
    }

    #single-col-product .price-produit .addToCartQty .etat-stock-list {
        display: table-cell;
        vertical-align: middle;
        width: 50%;
        float: none;
        padding-bottom: 0;
        text-align: right;
    }

    #single-col-product .price-produit .addToCartQty .etat-stock-list .in-stock,
    #single-col-product .price-produit .addToCartQty .etat-stock-list .in-order,
    #single-col-product .price-produit .addToCartQty .etat-stock-list .shop-only {
        display: initial;
        padding-left: 24px;
        padding-top: 4px;
        padding-bottom: 4px;
        color: #000000;
        font-size: 12px;
        background-position: left center;
    }

    #single-col-product .price-produit .addToCartQty .etat-stock-list .in-stock {
        background: url(../images/icons/check-green.png) left center no-repeat;
    }

    #edit.editPassword .form .validation-advice {
        width: 85%;
        float: none;
    }

    .drive-working-title {
        height: 40px;
        background-image: url(../images/encart_retrait_title.png);
        background-position: center center;
        background-size: 600px;
    }

    .drive_working_images {
        text-align: center;
    }

    .shipping_drive_working img {
        width: 270px;
        display: block;
        margin: auto;
        margin-bottom: 10px;
    }
}

/** ANTIDOT **/

.AFSSuggestPopup {
    z-index: 100;
}

.AFSSuggestPopup {
    margin-top: 10px;
    margin-left: -221px;
    background: #FFF;
    box-shadow: 0 0 5px #787878;
    z-index: 151; }
@media (max-width: 1024px) {
    .AFSSuggestPopup {
        margin-left: -145px;
    }
}
@media (max-width: 767px) {
    .AFSSuggestPopup {
        position: absolute !important;
        left: 0 !important;
        top: 100px !important;
        margin-left: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        border: 0; }
    .AFSSuggestPopup > div {
        width: 100%;
        background: #FFF; }
    .AFSSuggestPopup .popupTop, .AFSSuggestPopup .popupBottom, .AFSSuggestPopup .popupMiddleLeft, .AFSSuggestPopup .popupMiddleRight {
        display: none; } }
.AFSSuggestPopup table {
    table-layout: auto;
    line-height: 21px;
    width:1006px;
}
@media (max-width: 1024px) {
    .AFSSuggestPopup table {
        width: 768px; } }
@media (max-width: 767px) {
    .AFSSuggestPopup table {
        width: 100%; } }
.AFSSuggestPopup .es_model th {
    padding-bottom: 5px;
    text-align: left;
    font-weight: bold;
    font-size: 15px;
    color: #04378B; }
@media (max-width: 767px) {
    .AFSSuggestPopup .es_model th {
        background: red; } }
.AFSSuggestPopup .es_model td {
    vertical-align: top; }
.AFSSuggestPopup .es_model a {
    display: block;
    color: #525252;
    font-size: 14px;
    line-height: 1.3em; }
.AFSSuggestPopup #es_model1 table {
    border-collapse: initial;
    border-spacing: 2px; }
@media (max-width: 767px) {
    .AFSSuggestPopup #es_model1 table {
        border-spacing: 0; }
        /*
    .AFSSuggestPopup #es_model1 table tbody > tr:first-child {
        display: none; }*/ }
.AFSSuggestPopup #es_model1 tr {
    border: none; }
.AFSSuggestPopup #es_model1 .Matched {
    font-size: 14px; }
.AFSSuggestPopup #afs-brands_fr {
    padding: 5px;
    width: 25%; }
@media (max-width: 767px) {
    .AFSSuggestPopup #afs-brands_fr {
        display: block;
        position: relative;
        padding: 10px;
        width: 100%; }
    .AFSSuggestPopup #afs-brands_fr .AFSSuggestItem {
        padding: 0 20px; }
    .AFSSuggestPopup .afs-left-block {
        width:50%; float:left;
    } }
.AFSSuggestPopup #afs-categories_fr {
    padding: 5px;
    width: 180px; }
@media (max-width: 767px) {
    .AFSSuggestPopup #afs-categories_fr {
        display: block;
        position: relative;
        width: 100%;
        columns: 2 100px;
        column-rule: 1px solid #dadada; }
    .AFSSuggestPopup #afs-categories_fr .AFSSuggestItem {
        padding: 0 20px; } }
.AFSSuggestPopup #afs-featured_products_fr {
    padding: 5px;
    /*width: 280px;*/
    width: 100%;
}
.AFSSuggestPopup .afs-flex {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 12px 2%;
}
.AFSSuggestPopup .AFSSuggestItem {
    padding: 1px;
    text-align: left;
    flex-basis: 32%;
}
@media (min-width: 768px) {
.AFSSuggestPopup .AFSSuggestItem:nth-of-type(1n+10){ display:none; }
}
@media (max-width: 767px) {
    .AFSSuggestPopup #afs-featured_products_fr {
        display: block;
        position: relative;
        padding: 30px 5% 5px;
        width: 100%; }
    .AFSSuggestPopup .afs-flex {
        gap:12px 4%;
    }
    .AFSSuggestPopup .AFSSuggestItem {
        flex-basis: 48%;
        } }
.AFSSuggestPopup .Matched {
    font-weight: bold; }

.AFSSuggestPopup .AFSSuggestItem img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display:block;
    margin:0 auto;
}
.AFSSuggestPopup .AFSSuggestItem span.afs-name {
    display:block;
}
.AFSSuggestPopup .AFSSuggestItem span.afs-price {
    display:block;
    color: #888;
}
.AFSSuggestPopup .afs-left-block {
    margin-bottom:20px;
}
.AFSSuggestPopup .afs-title {
    font-weight: bold;
    font-size: 15px;
    color: #04378B;
    display:block;
    margin-bottom: 12px;
}

.AFSSuggestPopup #afs-plusdeproduit {
    clear:both;
    color: #222;
    font-size: 14px;
    font-weight: bold;
    margin-top:20px;
    padding: 30px 5px;
    text-decoration: underline;
    text-align: center;
    cursor: pointer; }

.search-products hr {
    border: none;
    border-top: 1px dotted #b2b2b2;
    margin-top: 7px;
    width: calc(100% - 55px);
    clear: both;
    float: right;
}

#search-categoy {
    background-color: #E1E3D6;
    padding: 9px;
    margin-bottom: 10px;
    clear: both;
}

#search-categoy-title, #search-categoy-list {
    font-size: 12px;
    color: #555555;
    margin-bottom: 15px;
}

#search-categoy-list {
    margin-left: 15px;
}

#search-categoy-list a {
    font-size: 12px;
    color: #555555;
    text-decoration: underline;
}

#search-categoy-showbt {
    text-align: center;
}

#search-categoy-list-hidden {
    display: none;
}

#search-categoy-showbt-title {
    font-size: 12px;
    color: #555555;
    text-decoration: underline;
    cursor: pointer;
}

.antidot-separator {
    clear: both;
}

#antidot-facet-rayons-title, #antidot-facet-marque-title, .antidot-facet-title {
    background: url("../images/fleche.png") no-repeat scroll 187px 9px transparent;
    background-color: #114A8B;
    color: #FFFFFF;
    font-weight: bold;
    line-height: 15px;
    padding: 5px;
}

#antidot-facet .left-encart-inter {
    background-color: #FFFFFF;
}

#antidot-facet .content-left-encart {
    border: 1px solid #114A8B;
    width: 219px;
    margin-bottom: 15px;
}

.antidot-facet-all .antidot-facet-title {
    background-color: #F0F0F0;
    color: #666666;
}

.antidot-facet-elem {
    border-bottom: 1px solid #EDEDED;
    /*margin-top: 3px;*/
    /*margin-left: 15px;*/
    color: #666666;
    padding: 5px;
    font-size: 11px;
    cursor: pointer;
}

.antidot-facet-elem a {
    color: #666666;
}

.antidot-facet-elem a:hover {
    text-decoration: underline;
}

#antidot-facet-rayons, #antidot-facet-marque, .antidot-facet-all {
    clear: both;
}

#antidot-facet-rayons span, #antidot-facet-marque span {
    background: url("../images/fleche.png") no-repeat scroll right 6px transparent;
    display: block;
    margin-right: 5px;
}

.antidot-bold {
    font-weight: bold;
}

#antidot-noresult {
    padding: 15px;
    clear: both;
}

#antidot-recherche-lable {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 1px solid #D2D2D2;
    color: #0E0E0A;
}

.antidot-recherche-info {
    font-size: 12px;
    margin-top: 5px;
    color: #0E0E0A;
}

.antidot-recherche-info a {
    text-decoration: underline;
    color: #0E0E0A;
    font-size: 12px;
    margin-left: 5px;
}

#header-search-antidot {
    background: url("../images/antidot/champ-recherche.gif") no-repeat scroll 0 0 transparent;
    display: inline;
    float: left;
    height: 31px;
    margin: 7px 5px 0 0;
    padding-left: 31px;
    width: 270px;
}

#antidot-search-titleA, #antidot-search-titleB {
    font-size: 18px;
    color: #545454;
}

#antidot-recherche-noresult-info {
    color: #565656;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 15px;
}

#antidot-bloc-suggest {
    border-left: 2px solid #E7EEF2;
    border-right: 2px solid #E7EEF2;
    margin-right: 55px;
    padding-left: 15px;
}

#antidot-recherche-info-label {
    color: #123C83;
    font-size: 18px;
    margin-bottom: 10px;
}

#antidot-recherche-info a {
    color: #5C5C5C;
    text-decoration: underline;
    font-size: 12px;
}

.antidot-noresult-border-top {
    background: url("../images/antidot/top-arrondi.gif") no-repeat scroll 0 0 transparent;
    height: 24px;
    width: 921px;
}

.antidot-noresult-border-bot {
    background: url("../images/antidot/bottom-arrondi.gif") no-repeat scroll 0 0 transparent;
    height: 24px;
    width: 921px;
}

#antidot-phone {
    float: left;
    margin-left: 15px;
}

#antidot-search, #antidot-phone {
    float: left;
    padding: 15px;
    width: 400px;
    background-color: #F0F0F0;
}

#antidot-phone {
    padding: 15px 15px 0;
}

#antidot-noresult-bot {
    padding: 15px;
}

#antidot-search-cms {
    border-left: 2px solid #E7EEF2;
    border-right: 2px solid #E7EEF2;
    margin-right: 55px;
    padding-left: 15px;
}

#antidot-search-cms-conseil {
    margin-top: 10px;
}

#antidot-conseil-title {
    color: #515151;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.antidot-conseil-elem {
    background: url("../images/antidot/puce-jaune.gif") no-repeat scroll 0 0 transparent;
    font-size: 13px;
    margin-bottom: 5px;
    margin-left: 15px;
    padding-left: 15px;
}

#antidot-tel-title {
    color: #5E5E5E;
    font-size: 18px;
    margin-bottom: 15px;
}

#antidot-tel-num {
    background: url("../images/antidot/conseiller.jpg") no-repeat scroll left bottom transparent;
    color: #5E5E5E;
    font-size: 15px;
    height: 159px;
    padding-left: 125px;
}

.antidot-num {
    font-size: 29px;
    font-weight: bold;
}

.hidden-facet {
    display: none;
}

.hidden-facet-bt {
    color: #666666;
    cursor: pointer;
    font-size: 12px;
    margin-top: 11px;
    text-align: center;
}

#input-header-search-noresult {
    border: 0;
    color: #666;
    /*text-indent: 31px;*/
    width: 320px;
    height: 31px;
    display: block;
    background: none;
    float: left;
    line-height: 31px;
    font-size: 13px;
    font-weight: normal;
}

#header-search-noresult select {
    width: 171px;
    color: #666;
    /*border:none;
   border-color:transparent;
   border-left:1px solid #999999;*/
    height: 18px;
    display: block;
    float: right;
    margin: 7px 4px 0;
}

#antidot-facet-active {
    background-color: #114A8B;
    color: #FFFFFF;
    font-weight: bold;
    line-height: 15px;
    margin-bottom: 15px;
    padding: 5px;
}

.antidot-facet-active-elem a {
    float: right;
}

.antidot-facet-active-elem {
    margin-bottom: 2px;
    margin-top: 2px;
    padding-left: 5px;
    padding-right: 10px;
    font-weight: normal;
}

.antidot-facet-active-elem-label {
    float: left;
    width: 150px;
}

#antidot-facet-active-title {
    background: url("../images/fleche.png") no-repeat scroll 180px 6px transparent;
    margin-bottom: 10px;
}

#antidot-search-cms > div {
    box-sizing: content-box;
}

#antidot-tel-num {
    height: 177px;
}

@media (max-width: 1024px) {
    #antidot-noresult-bot {
        display: none;
    }

    #antidot-noresult {
        text-align: center;
    }

    /* Homepage : affichage de l'encart advice uniquement sur desktop */
    .advice {
        display: none;
    }
}



/** BGLINK **/

#bgLinkLeft, #bgLinkRight {
    position: fixed;
    height: 100%;
    top: 46px;
}

#bgLinkLeft {
    left: 0;
}

#bgLinkRight {
    right: 0;
}

/** MINI PANIER **/
#header .basket .basket-product .left-infos {
    text-align: center;
    width: 63px;
}

#header .basket .basket-product img {
    max-width: 63px;
    max-height: 63px;
    display: inline-block;
    text-align: center;
    width: auto;
}

/** OBSOLETE NAV **/

.obsolete-nav {
    background: #ffffff;
    border-top: 1px solid #0b377f;
    border-bottom: 1px solid #0b377f;
    display: none;
}

.obsolete-nav .wrapper {
    position: relative;
}

.obsolete-nav .cta {
    display: none;
}

.obsolete-nav p {
    color: #0b377f;
    display: inline-block;
    font-size: 14px;
    line-height: 18px;
    margin-right: 40px;
    padding: 15px 0;
    vertical-align: middle;
    text-align: center;
}

.obsolete-nav p strong {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
}

.obsolete-nav .close-obsolete-nav {
    background: transparent url('../images/homepage/close-obsolete.png') no-repeat center center;
    border: 0;
    display: inline-block;
    height: 34px;
    margin-left: 12px;
    margin-top: -17px;
    position: absolute;
    right: 0;
    top: 50%;
    vertical-align: middle;
    width: 34px;
}

/** COMMON **/

.success {
    color: #3d6611;
}

.error {
    color: #df280a;
}

.notice {
    color: #e26703;
}

.success, .error {
    font-weight: bold;
}

.messages {
    width: 100%;
    overflow: hidden;
    margin-top: 15px;
}

.cms-home .messages {
    display: none;
}

.error-msg, .success-msg, .notice-msg, .note-msg {
    min-height: 23px !important;
    margin-bottom: 1em !important;
    background-repeat: no-repeat !important;
    background-position: 10px 10px !important;
    padding: 8px 8px 8px 32px;
    font-size: .95em !important;
    line-height: 20px;
}

.error-msg li, .success-msg li, .notice-msg li {
    margin-bottom: .2em;
}

.error-msg {
    color: #546c7d;
    background-color: #f4f4f4;
}

.error-msg li {
    background: url(../images/error_msg_icon.gif) 0 0 no-repeat;
    padding: 2px 0 1px 20px;
}

.succes-msg li {
    background: url(../images/success_msg_icon.gif) 0 0 no-repeat;
    padding: 2px 0 1px 20px;
}

.success-msg {
    border-color: #446423;
    color: #3d6611;
    background-color: #eff5ea;
    background-image: url(../images/success_msg_icon.gif);
}

.notice-msg, .note-msg {
    border-color: #fcd344;
    color: #3d6611;
    background-color: #fafaec;
    background-image: url(../images/note_msg_icon.gif);
}

.formJsValidation ul.form-list li .validation-advice {
    background: url("../images/error-customer.png") no-repeat scroll 0 0;
    color: #d40028;
    float: left;
    height: 15px;
    margin: 4px 5px 4px 14px;
    padding-left: 20px;
}

/** POPIN WISHLIST  **/

.fancybox-inner .fancybox-wishlist .radio_wishlist.label_radio {
    display: inline-block;
    width: 250px;
    padding: 1px 0 3px 25px;
    background-position: 0px 12px;
}

.fancybox-inner .fancybox-wishlist {
    text-align: right;
    padding: 0 10px;
    margin: 0 auto;
    width: 100%;
}

.fancybox-inner .fancybox-wishlist label {
    font-size: 1.3em;
    margin-right: 5px;
    line-height: 2;
}

.fancybox-inner .fancybox-wishlist input, .fancybox-inner .fancybox-wishlist select {
    background: none;
    padding: 5px 0;
    font-size: 1.2em;
    box-sizing: border-box;
    border-radius: 3px;
}

.fancybox-inner .fancybox-wishlist select {
    width: 100%;
    height: 34px;
    border: none;
    cursor: pointer;
}

.fancybox-inner .fancybox-wishlist .select-style {
    border: 1px solid #333333;
    width: 60%;
    height: 36px;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 3px;
}

.fancybox-inner .fancybox-wishlist .select-style:after {
    background: #fff url(../images/header/bg_header-arrow-dn.png) no-repeat center;
    width: 36px;
    height: 100%;
    display: block;
    right: 0;
    top: 0;
    position: absolute;
    content: "";
    pointer-events: none;
    border-radius: 3px;
}

.fancybox-inner .fancybox-wishlist select:disabled {
    background-color: #CCCCCC;
    cursor: not-allowed;
}

.fancybox-inner .fancybox-wishlist input {
    border: 1px solid #333333;
    width: 60%;
    height: 36px;
    padding: 5px;
}

.fancybox-inner .fancybox-wishlist input.placeholdered {
    color: #777;
    font-style: italic;
    font-weight: 300;
}

.fancybox-inner .fancybox-wishlist input:disabled {
    background-color: #CCCCCC;
}

.fancybox-inner .fancybox-wishlist option {
    font-size: 0.8em;
    padding: 5px;
}

.fancybox-inner .fancybox-wishlist .separate-wishlist-choice {
    font-size: 1.3em;
    font-weight: 600;
    position: relative;
    margin: 10px 0;
    text-align: center;
}

.fancybox-inner .fancybox-wishlist .separate-wishlist-choice:after, .fancybox-inner .fancybox-wishlist .separate-wishlist-choice:before {
    content: "";
    height: 2px;
    background: #777;
    width: 40%;
    position: absolute;
    top: 50%;
}

.fancybox-inner .fancybox-wishlist .separate-wishlist-choice:after {
    left: 0;
}

.fancybox-inner .fancybox-wishlist .separate-wishlist-choice:before {
    right: 0;
}

.fancybox-inner .fancybox-wishlist .endbox {
    margin-top: 30px;
    width: 100%;
    text-align: right;
}

.fancybox-inner .fancybox-wishlist .subtext_info {
    font-size: 1.5em;
    color: #c00;
    font-weight: 400;
    margin-right: 30px;
    display: inline-block;
    vertical-align: middle;
}

.fancybox-inner .fancybox-wishlist .subtext_info .error {
    color: #c00;
}

.fancybox-inner .fancybox-wishlist .add_submit {
    vertical-align: middle;
    display: inline-block;
}

.fancybox-inner .fancybox-wishlist .main-text {
    font-size: 1.3em;
    text-align: left;
}

.fancybox-inner .fancybox-wishlist .main-text a {
    color: #444;
    text-decoration: underline;
}

.fancybox-inner .fancybox-wishlist .main-text a:hover {
    color: #222;
}

.fancybox-inner .fancybox-wishlist .wishlist-add-not-connected {
    min-height: 50px;
}

.fancybox-inner .fancybox-wishlist .btn-popin-style {
    padding: 10px 5px;
    text-align: center;
    width: 150px;
    border-radius: 3px;
    display: inline-block;
    font-size: 0.8em;
    border: none;
    text-decoration: none;
    background-color: #153185;
    background-repeat: no-repeat;
    background-image: url(../images/refonte/arrow_right.png), linear-gradient(to bottom, #0E6DB1, #153185);
    background-position: 95% center;
    font-family: GothamRndBold;
    color: #FFF;
    box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 2px;
}

.fancybox-inner .fancybox-wishlist .btn-popin-style.connecter {
    padding-right: 19px;
    background-position: 90% center;
}

.fancybox-inner .fancybox-wishlist .btn-popin-style.btn-min {
    padding: 5px 15px 5px 15px;
}

.fancybox-inner .fancybox-wishlist .btn-popin-style.btn-black {
    background-image: url(../images/refonte/arrow_left.png), linear-gradient(to bottom, #353535, #010101);
    background-position: 5% center;
}

@media (max-width: 767px) {

    .fancybox-inner .fancybox-wishlist .btn-popin-style.connecter {
        width: 140px;
    }

    .fancybox-inner .fancybox-wishlist .btn-popin-style {
        max-width: 140px;
        width: 48%;
    }

    .fancybox-inner .fancybox-wishlist .endbox {
        text-align: center;
    }

    .fancybox-inner .fancybox-wishlist .btn-popin-style {
        background-color: #1F3D9D;
        background-image: url(../images/refonte/arrow_right.png);
        box-shadow: none;
    }

    .fancybox-inner .fancybox-wishlist .btn-popin-style.btn-black {
        background-color: #322C2C;
        background-image: url(../images/refonte/arrow_left.png);
        box-shadow: none;
    }
}

/** COMON MEDIA QUERIES **/

@media (max-width: 1024px) {
    #mapLeft .choice-type-shearch-shop {
        display: none;
    }

    #mapLeft .choice-type-shearch-shop.geoloc-active {
        display: block;
    }

    #data-mapheader.has-warehouse .user-infos-pop {
        display: block;
    }

    #data-mapheader.has-warehouse #mapLeft,
    #data-mapheader.has-warehouse #listeMag {
        display: none;
    }

    #data-mapheader.has-warehouse.change-warehouse .user-infos-pop {
        display: none;
    }

    #data-mapheader.has-warehouse.change-warehouse #mapLeft,
    #data-mapheader.has-warehouse.change-warehouse #listeMag {
        display: block;
    }
}

@media (max-width: 767px) {
    .commentaire-article .note-attribuee {
        display: none;
    }

    #note-moyenne .rating-box {
        display: block;
    }

    .fancybox-inner .fancybox-wishlist .select-style,
    .fancybox-inner .fancybox-wishlist input {
        width: 100%;
    }

    .fancybox-inner .fancybox-wishlist .radio_wishlist.label_radio {
        display: block;
        width: auto;
        text-align: left;
        margin-right: 0;
    }

    .fancybox-inner .fancybox-wishlist .radio_wishlist.label_radio {
        background-position: 0 6px;
    }

    .fancybox-inner .fancybox-wishlist {
        text-align: left;
    }

    .user-account .form-el .validation-advice, .user-account-pop .form-el .validation-advice,
    #content-inscription form ul.form .validation-advice {
        padding-bottom: 10px;
        color: #eb0606;
        font: 13px Arial;
        display: block;
        position: relative;
        margin-top: 10px;
    }

    /* Mobile separator */
    .ficheMag .mobile-separator {
        display: block;
        position: relative;
        margin-bottom: 5px;
        padding-top: 1px;
        text-align: center;
        overflow: hidden;
        border-top: 1px solid #aab2bd;
    }

    .ficheMag #tabs .coordonneesMag .coordTel a {
        color: #ffffff;
    }
}

/** LOADER **/

.loader-wait {
    display: inline-block;
    background: url("https://www.top-office.com/skin/frontend/top_office/default/images/ajax-loader-transparent.gif") 50% 50% no-repeat;
    text-align: center;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    /* padding: 10px;*/
    background-color: #FFFFFF;
    z-index: 99999; /*left: 50%; margin-left: -140px;*/
    _position: absolute;
    _top: expression(parseInt(document.documentElement.scrollTop, 10) +0+ "px");
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
}

/** ALERT **/

.alert-message {
    display: inline-block;
    left: 0;
    position: fixed;
    text-align: center;
    top: 70px;
    width: 100%;
    z-index: 99994;
}

.alert-message .overlay {
    background-color: #000000;
    display: inline-block;
    height: 100%;
    left: 0;
    opacity: 0.7;
    position: fixed;
    text-align: center;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 99995;
}

.alert-message .popup .popup-title {
    background: #fff url("bkg-title-fancy.gif") repeat-x scroll left top;
    color: #322c2c;
    font-size: 20px;
    font-weight: bold;
    line-height: 35px;
    margin-top: 11px;
    padding-left: 40px;
    position: relative;
    text-align: left;
}

.alert-message .popup .close {
    background-image: url("/skin/frontend/top_office/default/css/fancybox_sprite.png");
    cursor: pointer;
    height: 36px;
    position: absolute;
    right: 10px;
    top: 5px;
    width: 36px;
    z-index: 99999;
}

.alert-message .popup .popupcontent {
    color: #322c2c;
    font-size: 15px;
    margin-left: 20px;
    padding-top: 15px;
    text-align: left;
}

.alert-message .popup .submit {
    background: transparent url("../images/refonte/btn-ok.png") no-repeat scroll 0 0;
    bottom: 15px;
    cursor: pointer;
    height: 32px;
    position: absolute;
    right: 28px;
    width: 43px;
    z-index: 99999;
}

/** CUSTOMER FORM **/

#autocomplete-form-pro {
    border: 1px solid #0b377f;
    margin-bottom: 10px;
}

#autocomplete-form-pro .title {
    text-align: center;
}

#autocomplete-form-pro .desc {
    color: #0b377f;
    height: 46px;
    font: 20px/46px 'GothamMedium';
    text-align: center;
    font-size: 20px;
    font-size: 20px;
}

#autocomplete-form-pro .field-society {
    position: relative;
}

#autocomplete-form-pro .auto-complete-no-result {
    text-align: center;
    display: none;
}

#autocomplete-form-pro .auto-complete-container {
    position: absolute;
    left: 365px;
    background: white;
    display: inline-block;
    top: 100%;
    border: solid 1px #808080;
    margin-top: -7px;
    display: none;
}

#autocomplete-form-pro .auto-complete-loader {
    display: none;
    vertical-align: middle;
}

#autocomplete-form-pro .auto-complete-results {
    width: 404px;
}

#autocomplete-form-pro .auto-complete-results .auto-complete-company-result {
    line-height: 1.2;
    padding: 5px;
}

#autocomplete-form-pro .auto-complete-results .auto-complete-company-result:hover {
    background: #EEEFEF;
    cursor: pointer;
}

@media (max-width: 1024px) {
    #autocomplete-form-pro.form {
        padding-bottom: 5px;
        padding-top: 5px;
        margin-top: 5px;
    }

    #autocomplete-form-pro .auto-complete-container {
        margin-top: 0;
        left: 0;
    }
}

@media (max-width: 767px) {
    #autocomplete-form-pro {
        border: 3px solid #0b377f;
    }

    #autocomplete-form-pro .title .desc {
        line-height: 1;
    }
}

#edit div .form li.valide-passed .valide-check {
    display: inline;
    padding-left: 15px;
}

/** INPUT BOX **/

.input-box .valide-check {
    background: url(../images/check-customer.png) no-repeat;
    height: 15px;
    width: 20px;
    margin-left: 20px;
}

.valide-check {
    display: none;
}

.form-contact .validation-advice {
    display: block;
    padding-left: 5px;
    color: red;
}

.input-box .validation-advice {
    background: url(../images/error-customer.png) no-repeat;
    color: #d40028;
    height: 15px;
    margin-left: 20px;
    padding-left: 20px;
    display: inline-block;
}

/** NAV **/

.navOpen .container::after {
    z-index: 100;
}

/** RETRAIT MAG TUTO **/

@media (min-width: 767px) {
    .drive-working-title {
        height: 35px;
        background-image: url(../images/encart_retrait_title.png);
        background-position: center;
        background-position-y: 7px;
        background-repeat: no-repeat;
    }
}

/** FILTERS  **/

.m-filter-item-list > li a input {
    margin-right: 5px;
    vertical-align: top;
}

@media (max-width: 767px) {
    .list-filters > li.m-selected-ln-item > span > a {
        display: block;
        background: url(../images/icons/radios.png) 9px -380px no-repeat;
        padding-left: 30px !important;
        margin-left: 20px;
    }

    .m-filter-item-list.list-filters > li a input {
        display: none;
    }
}

/** JS VALIDATION **/

@media (max-width: 767px) {
    .formJsValidation div .btn-email-pwd {
        text-align: center;
    }

    .formJsValidation div .email-pwd {
        margin-left: 15px;
        margin-right: 15px;
    }
}

/** MIN QTY LABEL HP + PRODUCT VIEW **/

#label-quantite-info {
    margin-top: 10px;
    color: #848282;
}

.btn-remove-qty-disabled {
    opacity: 0.3;
    pointer-events: none;
}

/** PRIX DEGRESSIFS **/

.product-detail .price-produit .priceContainer .a-partir-de,
.a-partir-de {
    color: #434a54;
    font-size: 0.35em;
    line-height: 1.5em;
    font-weight: bold;
    display:inline-block;
}
.product-detail .price-produit .priceContainer .a-partir-de {
    position:absolute;
    bottom:0;
    left:-70px;
}
@media (max-width: 767px) {
    .product-detail .price-produit .priceContainer .a-partir-de {
        display:inline-block;
        position:relative;
        padding-right:0.5rem;
        left:0;
    }
}

.degressive-price {
    text-align: center;
    font-size: 0.875rem;
    color: #333;
}
.degressive-price table {
    width: 80%;
    max-width:220px;
    margin: 0.5rem auto;
}
.degressive-price table small{
    font-size: 0.8em;
    color: #888;
}
.degressive-price table tr:nth-child(even) td {
    background:rgba(255, 255, 255, 0.6);
}
.degressive-price table td {
    padding:0.375rem 0;
}

.degressive-addajax > a {
    color: white;
    background-color: black;
    border : 1px solid #f1f1f1;
    margin-left: 30px;
    text-decoration: none;
    padding: 0px 1px;
}

/** POPUP AJOUT PANIER + WISHLIST **/

.popup {
    color: #546c7d;
    position: relative; }

.intro-popup {
    clear: both;
    color: #322c2c;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 30px; }

#popup-liste-achat,
#popup-confirm-liste,
#popup-confirm-panier,
#popup-parrainage, #popup-zoom {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #f0f0f0;
    margin-left: auto;
    margin-right: auto;
    width: 440px;
    z-index: 100; }

#popup-noter,
#popup-liste-avis {
    width: 100% !important; }

#popup-confirm-panier {
    border: 0 none;
    margin-top: 25px;
    width: 100%; }

#popup-confirm-panier .extension-ajoutee{
    margin-top: 20px;
}

#popup-confirm-panier .extension-ajoutee-titre{
    font-weight: bold;
}

#popup-confirm-panier .bt-valider-error {
    text-align: center; }

.visu-popup {
    float: left;
    display: inline;
    margin-left: 10px;
    margin-top: 10px;
    width: 133px;
    height: 104px;
    background: url(https://www.top-office.com/skin/frontend/top_office/default/images/bg-produit-popup.gif) 0 0 no-repeat;
    padding-top: 6px;
    text-align: center; }

#popup-confirm-panier {
    width: 100%;
    border: 0;
    margin-top: 25px; }
@media (max-width: 767px) {
    #popup-confirm-panier {
        margin-top: 0; } }
#popup-confirm-panier .visu-popup {
    float: none;
    margin: 0;
    width: 100%;
    max-width: 288px;
    background: none;
    padding: 0;
    height: auto; }
#popup-confirm-panier .detail .nom-produit {
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 16px;
    color: #322c2c;
    clear: both; }
@media (max-width: 767px) {
    #popup-confirm-panier .detail .nom-produit {
        color: #322c2c;
        font-size: 10px;
        font-size: 0.625rem;
        line-height: 1.3;
        margin-bottom: 8px; } }
#popup-confirm-panier .detail .qte {
    font-size: 12px;
    color: #322c2c;
    font-weight: bold; }
@media (max-width: 767px) {
    #popup-confirm-panier .detail .qte {
        color: #322c2c;
        font-size: 10px;
        font-size: 0.625rem;
        line-height: 1.3; } }
#popup-confirm-panier .right-produit-popup {
    float: right;
    background-color: #f1f1f1;
    width: 100%;
    max-width: 190px;
    margin: 0 0 37px;
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative; }
@media (max-width: 767px) {
    #popup-confirm-panier .right-produit-popup {
        float: none;
        max-width: 100%;
        background: transparent;
        height: auto;
        margin: 10px 0 0 0;
        padding: 0; } }
#popup-confirm-panier .right-produit-popup .price-container {
    width: 100%;
    height: auto;
    margin: 0 auto;
    background: none;
    text-align: right;
    box-sizing: content-box; }
@media (max-width: 767px) {
    #popup-confirm-panier .right-produit-popup .price-container {
        text-align: left;
        box-sizing: inherit; } }
#popup-confirm-panier .right-produit-popup .price-container * {
    font-size: inherit;
    color: inherit;
    line-height: normal;
    top: auto;
    bottom: auto; }
#popup-confirm-panier .right-produit-popup .price-container > div {
    letter-spacing: -.31em;
    text-align: left;
    top: -20px;
    margin: 28px 0; }
@media (max-width: 767px) {
    #popup-confirm-panier .right-produit-popup .price-container > div {
        margin: 0; } }
#popup-confirm-panier .right-produit-popup .price-container > div * {
    letter-spacing: normal; }
#popup-confirm-panier .right-produit-popup .price-container > div div {
    width: 100%;
    text-align: right;
    vertical-align: middle; }
@media (max-width: 767px) {
    #popup-confirm-panier .right-produit-popup .price-container > div div {
        text-align: left; } }
#popup-confirm-panier .right-produit-popup .price-container .prix-ht {
    text-align: right;
    display: block;
    font-size: 40px;
    color: #434a54;
    font-weight: bold !important;
    line-height: 1em; }
@media (max-width: 767px) {
    #popup-confirm-panier .right-produit-popup .price-container .prix-ht {
        text-align: left;
        float: left;
        font-size: 24px;
        font-size: 1.5rem;
        line-height: 1.3; } }
#popup-confirm-panier .right-produit-popup .price-container .prix-ht sup {
    font-size: .5em;
    vertical-align: super;
    display: inline; }
#popup-confirm-panier .right-produit-popup .price-container .prix-ht sub {
    font-size: .35em;
    margin-left: -1.45em; }
#popup-confirm-panier .right-produit-popup .price-container .prix-ttc {
    display: block;
    font-size: 16px;
    color: #aab2bd;
    font-weight: bold;
    text-align: right; }
@media (max-width: 767px) {
    #popup-confirm-panier .right-produit-popup .price-container .prix-ttc {
        text-align: left;
        float: left;
        font-size: 13px;
        font-size: 0.8125rem;
        line-height: 1.3;
        margin-left: 8px;
        margin-top: 11px; } }
#popup-confirm-panier .right-produit-popup .price-container .prix-ttc sub {
    font-size: 9px;
    font-size: 0.5625rem;
    line-height: 1.3;
    vertical-align: super; }
#popup-confirm-panier .right-produit-popup .price-container .remise {
    background-color: #e1001a;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 12px;
    position: absolute;
    top: -30px;
    right: -16px; }
@media (max-width: 767px) {
    #popup-confirm-panier .right-produit-popup .price-container .remise {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 5px; } }
#popup-confirm-panier .right-produit-popup .price-container.prix-soldes .prix-ht {
    color: #e1001a; }
#popup-confirm-panier .right-produit-popup .price-container .prix-old {
    color: #656d78;
    font-size: 14px;
    text-align: right;
    width: 84px;
    position: absolute;
    top: 70px;
    left: 8px; }
@media (max-width: 767px) {
    #popup-confirm-panier .right-produit-popup .price-container .prix-old {
        position: relative;
        top: auto;
        left: auto;
        text-align: left;
        font-size: 11px; } }
#popup-confirm-panier .right-produit-popup .price-container .prix-old span {
    text-decoration: line-through; }
#popup-confirm-panier .right-produit-popup .price-container .prix-old sub {
    font-size: 10px;
    text-decoration: none; }
#popup-confirm-panier .right-produit-popup .price-container .prix-ht {
    text-align: right;
    display: block;
    font-size: 40px;
    color: #434a54;
    font-weight: bold !important;
    line-height: 1em; }
@media (max-width: 767px) {
    #popup-confirm-panier .right-produit-popup .price-container .prix-ht {
        text-align: left;
        font-size: 24px;
        font-size: 1.5rem;
        line-height: 2.3; } }
#popup-confirm-panier .right-produit-popup .price-container .prix-ht sup {
    font-size: .5em;
    vertical-align: super;
    display: inline; }
#popup-confirm-panier .right-produit-popup .price-container .prix-ht sub {
    font-size: .35em;
    margin-left: -1.45em; }
#popup-confirm-panier .right-produit-popup .price-container .prix-ttc {
    display: block;
    font-size: 16px;
    color: #aab2bd;
    font-weight: bold;
    text-align: right; }
@media (max-width: 767px) {
    #popup-confirm-panier .right-produit-popup .price-container .prix-ttc {
        text-align: left;
        font-size: 13px;
        font-size: 0.8125rem;
        line-height: 1.3; } }
#popup-confirm-panier .right-produit-popup .price-container .prix-ttc sub {
    font-size: 9px;
    font-size: 0.5625rem;
    line-height: 1.3;
    vertical-align: super; }
#popup-confirm-panier .bt-valider {
    width: 397px;
    float: right; }
@media (max-width: 767px) {
    #popup-confirm-panier .bt-valider {
        width: auto;
        float: none;
        margin-top: 20px;
        text-align: center; } }
#popup-confirm-panier .bt-valider .bt-gauche {
    float: left; }
#popup-confirm-panier .bt-valider .bt-gauche img {
    width: 191px;
    height: 53px; }
@media (max-width: 767px) {
    #popup-confirm-panier .bt-valider .bt-gauche img {
        display: none; } }
#popup-confirm-panier .bt-valider .bt-droite {
    float: right; }
#popup-confirm-panier .bt-valider .bt-droite img {
    width: 191px;
    height: 53px; }
@media (max-width: 767px) {
    #popup-confirm-panier .bt-valider .bt-droite img {
        display: none; } }
@media (max-width: 767px) {
    #popup-confirm-panier .bt-valider a + a {
        margin-left: 20px; }
    #popup-confirm-panier .bt-valider .bt-gauche,
    #popup-confirm-panier .bt-valider .bt-droite {
        display: inline-block;
        width: 40%;
        position: relative;
        text-align: center;
        float: none; }
    #popup-confirm-panier .bt-valider .bt-gauche:before,
    #popup-confirm-panier .bt-valider .bt-droite:before {
        color: #fff;
        display: table-cell;
        vertical-align: middle;
        height: 40px;
        width: 100%;
        text-align: center;
        font-family: "GothamMedium", arial, Helvetica, sans-serif;
        font-size: 12px;
        font-size: 0.75rem;
        line-height: 1.3;
        text-transform: uppercase;
        font-weight: normal;
        border-radius: 2px; }
    #popup-confirm-panier .bt-valider .bt-gauche:after,
    #popup-confirm-panier .bt-valider .bt-droite:after {
        content: "";
        display: block;
        background: url(../images/icons/arrow-white-l.png) center no-repeat;
        width: 30px;
        height: 100%;
        position: absolute;
        top: 0; }
    #popup-confirm-panier .bt-valider .bt-gauche:before {
        content: "Continuer mes achats";
        background: #322c2c;
        padding: 5px 30px; }
    #popup-confirm-panier .bt-valider .bt-gauche:after {
        left: 0; }
    #popup-confirm-panier .bt-valider .bt-droite:before {
        content: "Voir mon panier";
        background: #1f3d9d;
        padding: 5px 30px; }
    #popup-confirm-panier .bt-valider .bt-droite:after {
        right: 0;
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg); } }

@media (max-width: 410px) {
    #popup-confirm-panier .bt-valider .bt-gauche{
        float: left;
    }
    #popup-confirm-panier .bt-valider .bt-droite{
        float: right;
    }
}
@media (max-width: 390px) {
    .fancybox-wrap {
        width: 85% !important;
    }
}
@media (max-width: 360px) {
    #popup-confirm-panier .bt-valider .bt-droite:after {
        right: -10px;
    }
}
#popin-ajout-panier {
    /*@include mobile{
    &.nosto_element{
      display: none;
    }
  }*/ }
#popin-ajout-panier .reco-price {
    margin-top: 8px;
    width: 154px;
    height: 30px;
    background-size: 100% 100%; }
#popin-ajout-panier .reco-price .prix-ht {
    float: left;
    color: #3f3f3f;
    text-align: left;
    font-size: 11px !important;
    padding: 8px 0 0 8px !important; }
#popin-ajout-panier .reco-price .prix-seul {
    float: right;
    text-align: right;
    font-weight: bold;
    font-size: 13px !important;
    padding: 7px 8px 0 0 !important;
    color: #322c2c; }

.intro-popup {
    clear: both;
    color: #322c2c;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: bold;
    margin-bottom: 30px; }

.liste-achat {
    margin-left: 12px;
    padding-top: 10px; }
.liste-achat li {
    padding: 10px 0; }
.liste-achat li label span {
    color: #ff7900; }

/* Font Top Office */
@font-face {
    font-family: 'topoffice';
    font-display: swap;
    src:  url('../fonts/topoffice.eot?4kefv6l');
    src:  url('../fonts/topoffice.eot?4kefv6l#iefix') format('embedded-opentype'),
    url('../fonts/topoffice.ttf?4kefv6l') format('truetype'),
    url('../fonts/topoffice.woff?4kefv6l') format('woff'),
    url('../fonts/topoffice.svg?4kefv6l#topoffice') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="tic-"], [class*=" tic-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'topoffice' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tic-icon-cart:before {
    content: "\e900";
}
.tic-icon-click-collect:before {
    content: "\e901";
}

.cta.cta-add-to-cart, .cta.cta-click-and-collect, .cta.cta-customize {
    font-size:0.6875rem;
    font-family: "GothamBook", arial, Helvetica, sans-serif;
    text-decoration:none;
    cursor: pointer;
    padding:8px 12px 8px 42px;
    transition: all .3s linear;
    width: 170px;
    margin-right: 6px;
}
.cta.cta-click-and-collect {
    background-color: #7d7d7d;
    color: #ffffff;
}
.cta.cta-add-to-cart,
.cta.cta-customize {
    background-color:#0b377f;
    color:#ffffff;
}
.cta.cta-click-and-collect:before ,
.cta.cta-add-to-cart:before ,
.cta.cta-customize:before {
    font-family: 'topoffice' !important;
    font-size:18px;
    background:none;
    left:10px;
}
.cta.cta-add-to-cart:hover,
.cta.cta-customize:hover {
    background-color:#1d5cc1;
}
.cta.cta-customize:before {
    content:"\e90c";
}
.cta.cta-click-and-collect:hover {
    background: #909090;
}
.cta.cta-click-and-collect:hover:before, .cta.cta-add-to-cart:hover:before {
    left:10px;
}
.cta.cta-add-to-cart:before {
    content:"\e900";
}
.cta.cta-click-and-collect:before {
    content:"\e901";
}


.price-container {
    text-align:right;
}
.price-container .priceContainer {
    margin:0;
    padding:0;
    width:auto;
}
.price-container .a-partir-de {
    color: #434a54;
    font-size: 0.35em;
    line-height: 1.5em;
    font-weight: bold;
    display: inline-block;
}
.price-container .prix-ht {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.3;
    line-height: .8;
    color: #434a54;
    font-weight: bold;
}
.price-container .prix-ht sup {
    font-size: .5em;
    vertical-align: super;
    top: 0;
}
.price-container .prix-ht sub {
    font-size: .35em;
    margin-left: -1.45em;
}

.lp-product .lp-product-button-order .cta.cta-click-and-collect {
    padding:4px 12px 4px 36px;
    width: 100%;
    font-size: 0.75rem;
}
@media (max-width: 767px) {
    .price-container .prix-ht sub {
        margin-left: -10px;
    }
}
@media (max-width: 767px) {
    .price-container .prix-ht {
        float: left;
        margin-right: 10px !important;
        font-size: 25px;
        font-size: 1.5625rem;
        line-height: 1.3;
        padding-right: 0;
    }
}
.price-container .prix-ttc {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.3;
    color: #aab2bd;
    font-weight: bold;
}
.price-container .prix-ttc sub {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.3;
}
@media (max-width: 767px) {
    .price-container .prix-ttc sub {
        vertical-align: super;
        top: 0;
        font-size: 60%;
    }
}
@media (max-width: 767px) {
    .price-container .prix-ttc {
        float: left;
        font-size: 14px;
        font-size: 0.875rem;
        line-height: 1.3;
        padding-top: 11px;
    }
}
.price-container .prix-soldes {
    position: relative;
    padding-top: 40px;
    width: 170px;
}
.price-container .prix-soldes .prix-ht {
    color: #e1001a;
}
@media (max-width: 767px) {
    .price-container .prix-soldes {
        padding-top: 0;
        width: auto;
    }
    .price-container .prix-soldes > div:after {
        content: " ";
        display: table;
        clear: both;
    }
    .price-container .prix-soldes > div > div:after {
        content: " ";
        display: table;
        clear: both;
    }
}


/* Font Top Office */
@font-face {
    font-family: 'topoffice';
    font-display: swap;
    src:  url('../fonts/topoffice.eot?4kefv6l');
    src:  url('../fonts/topoffice.eot?4kefv6l#iefix') format('embedded-opentype'),
    url('../fonts/topoffice.ttf?4kefv6l') format('truetype'),
    url('../fonts/topoffice.woff?4kefv6l') format('woff'),
    url('../fonts/topoffice.svg?4kefv6l#topoffice') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="tic-"], [class*=" tic-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'topoffice' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tic-icon-cart:before {
    content: "\e900";
}
.tic-icon-click-collect:before {
    content: "\e901";
}


.col-np {
    padding:0 !important;
}
.col-nm {
    margin:0 !important;
}
.clearfix {
    overflow: auto;
    zoom: 1;
}

@media all and (max-width: 1024px) {
    .cta.cta-click-and-collect, .cta.cta-add-to-cart {
        padding: 16px 8px 16px 38px;
        font-size:0.75rem;
        display:block;
        margin:0 auto 0.5rem;
    }
    .cta.cta-click-and-collect:before,
    .cta.cta-click-and-collect:hover:before,
    .cta.cta-add-to-cart:before,
    .cta.cta-add-to-cart:hover:before {
        left: 14px;
    }
}

@media all and (max-width: 767px) {
    .cta.cta-click-and-collect:before,
    .cta.cta-click-and-collect:hover:before,
    .cta.cta-add-to-cart:before,
    .cta.cta-add-to-cart:hover:before {
        left: 3px;
    }
}

.list-products .lp-product-links .addmultiwishlistajax {
    text-decoration:underline;
}
.list-products .lp-product-links { width:106px; }
.list-products .lp-product-footer {
    /* supprimer de la classe le overflow et le zoom */
    overflow:hidden;
}

@media all and (max-width: 1024px) {
    .list-products .lp-product-image {
        float:none;
        margin-bottom:0.5rem;
    }
    .list-products .lp-product-image img{
        margin:0 auto;
        max-width:none;
    }
    .list-products .lp-product-infos {
        margin-left:0;
        height: 90px;
        font-size:0.875rem;
    }
    .list-products .lp-product-footer {
        display: flex;
        flex-wrap: wrap;
    }
    .list-products .lp-product-cta {
        order: 1;
        width:100%;
        height: 140px;
        text-align:center;
    }
    .list-products .lp-product-links {
        order: 2;
        float:none;
        width:100%;
        margin-top:0;
        text-align:center;
    }
    .list-products .lp-product-links .add-to-wishlist-link-picto {
        display:none;
    }
    .list-products .lp-product-cta {
        float:none;
    }
    .list-products .cta {
        width:100%;
        max-width:200px;
        background-image: none;
    }
    .price-container .prix-ttc {
        float:none;
        display:block;
    }
}

/** GUIDES D'ACHAT **/

.buyingGuides {
    text-align: center;
    margin-bottom: 30px;
}

.buyingGuides h2 {
    font-size: 18px;
    font-weight: bold;
    padding: 15px 0;
    color: #21409a;
    margin-left: 2%;
    text-align: left;
}

.buyingGuide {
    float: left;
    margin-left: 2%;
    margin-right: 2%;
    text-align: left;
}

.buyingGuide:hover a {
    text-decoration:underline;
}

.buyingGuide .buyingGuide-img {
    position:relative;
    padding-top:56.25%;
    vertical-align:middle;
    overflow:hidden;
    margin-bottom: 6px
}

.buyingGuide .buyingGuide-img img {
    position:absolute;
    top:0;
    width:100%;
    display:block;
    margin:auto;
}

.buyingGuide .buyingGuide-title {
    height:50px;
}

.buying-guide-right-bar {
    background: #F7F7F7;
}

.buying-guide-right-bar .title {
    background: #5D5D5D;
    color: white;
    font-weight: bold;
    font-size: 12px;
    padding: 15px;
    text-align: center;

}

.buying-guide-right-bar > ul {
    padding: 4px 16px 16px 16px;
    border: 1px solid #E9E9E9;
}

.buying-guide-right-bar li {
    margin-top: 12px;
    line-height: 16px;
}

.buying-guide-right-bar .guide {
    color: #666666;
    font-size: 12px;
}

.buying-guide-right-bar .currentPage {
    font-weight: bold;
}

.buying-guide-right-bar a:hover {
    text-decoration: underline;
}

.buying-guide-right-bar li li {
    margin-left: 20px;
}

.content-wrapper .col-main {
    padding: 0 15px;
    font-size: 13px;
    text-align:justify;
    color:#5d5d5d;
}

.buying-guide h1 {
    font-size: 1.625rem;
    /* font-family: "GothamRndBold", arial, Helvetica, sans-serif; */
    color: #21409a;
    line-height: 1.3;
    font-weight: bold;
    margin-bottom: 28px;
}


.buying-guide h2 {
    font-size: 23px;
    color: #666;
    line-height: 1.3;
    font-weight: bold;
    border-bottom: 1px solid #dcdcdc;
    margin-top: 1.875rem;
    margin-bottom: 1rem;
    padding-bottom: 3px;
}

.buying-guide h3 {
    font-size: 20px;
    color: #777;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 12px;
}


.buying-guide h4 {
    font-size: 15px;
    color: #777;
    line-height: 1.3;
    font-weight: bold;
    /* text-transform: uppercase; */
    margin-top: 20px;
    margin-bottom: 15px;
}


.buying-guide p {
    margin-bottom: 8px;
    line-height: 23px;
    margin-top: 10px;
}


.buying-guide ul {
    list-style-type: disc;
    margin-left:1.5rem;
    margin-bottom:0.5rem;
}

.buying-guide ul li {
    margin-bottom:0.375rem;
}

.buyingGuide a {
    line-height: 16px;
    color : #737373;
}

.BuyingGuidesToggle {
    line-height: 16px;
    font-weight: bold;
    color: #21409a;
}

.buyingGuides .row.moreBuyingGuides {
    overflow:hidden;
}

.buyingGuides-hidden .row.moreBuyingGuides{
    height: 0px;
}

.buying-guide img {
    height: auto;
    margin: 20px 0px;

}

@media only screen and (min-width: 1025px) {
    .hidden-lg {
        display: none !important;
    }
}
@media only screen and (max-width: 1024px) {
    .visible-lg {
        display: none !important;
    }
}

/** RECO NETWAVE **/
.widget-carrousel-product .products-list .item {
    border: none;
}
.widget-carrousel-product .products-list .lp-product-flag {
    display: none;
}
.section-sells {
    padding: 0.5rem;
    padding-top: 1.5rem;
    clear: both;
}
.section-sells-cart {
    margin-top: 1rem;
}
.section-sells .section-sells-title,
.widget-carrousel-product .section-sells-title,
.section-sells-product .section-sells-title,
.section-sells-cart .section-sells-title,
.section-sells .section-sells-cat-title {
    font-weight: bold;
    font-size: 20px;
    color: #0b377f;
    margin-bottom: 20px;
    margin-top:20px;
}

.section-sells .section-sells-title,
.widget-carrousel-product .section-sells-title,
.section-sells-product .section-sells-title,
.section-sells-cart .section-sells-title{
    text-align: center;
}

.section-sells .lp-product-image {
    background:white;
}

.section-sells-product .products-list .bt-add-cart {
    margin: unset;
    width: 100%;
}

.section-sells-product .lp-product .lp-product-button-order p:first-child .cta,
.lp-style-mini .lp-product .lp-product-button-order p:first-child .cta{
    width: 100%;
    font-size: 0.75rem;
}

.lp-style-mini .lp-product .lp-product-button-order p:first-child {
    margin-bottom: 0;
}

.section-sells-product .lp-product .lp-product-button-order p:first-child .cta::before,
.lp-style-mini .lp-product .lp-product-button-order p:first-child .cta::before {
    font-size: 16px;
    margin-top: -12px;
}

.widget-carrousel-guide{
    width: 90%;
    margin: auto;
}

.widget-carrousel-guide .lp-product{
    padding-bottom: 0;
}
.widget-carrousel-guide .lp-product:hover{
    text-decoration: underline;
}

.widget-carrousel-guide .lp-product a{
    line-height: 16px;
    color: #737373;
    cursor: pointer;
}

/**
 New common styles
 */
.cs h1.yellow {
    padding: 20px;
    font: 40px 'GothamRndBold';
    color: #ffc20e;
    margin: 16px 0;
    text-align: center;
}
.cs h1.yellow span {
    display: block;
    color: #999;
    font-size: 16px;
}
.cs h2.blue {
    background: transparent url(https://www.top-office.com/skin/frontend/top_office/default/images/checkout/bg_h2.gif) repeat-x scroll 0 0;
    color: #0b377f;
    font-family: "GothamRndBold", arial, Helvetica, sans-serif;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.3;
    line-height: 46px;
    height: 46px;
    margin: 20px 0;
    text-align: center;
}
.cs h2.no-bg {
    background: none;
}
.cs h2.blue span {
    background: #fff url(https://www.top-office.com/skin/frontend/top_office/default/images/checkout/bg_logo-h2.png) no-repeat scroll 40px 0;
    display: inline-block;
    line-height: 46px;
    padding: 0 60px 0 40px;
    text-indent: 70px;
}
.cs p {
    margin-bottom: 8px;
    line-height: 1.4;
    margin-bottom: 10px;
}
.cs span.hl {
    color:#0b377f;
    font-weight:bold;
}