/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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;
    outline:0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
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,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Reset du textarea */

textarea{
    resize: none;
    border: none;
    overflow: auto;
    outline: none;

    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

input, select, button{
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
}

/* ---- Classe modulaires à utiliser un peu partout ---- */

/* Display mode */
.hiddenBlock{
    display: none !important;
}

.blinkingElement{
    -webkit-animation: blinkingElementThingie 1s infinite; /* Chrome, Safari, Opera */
    animation: blinkingElementThingie 1s infinite;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes blinkingElementThingie {
    0%   {opacity: 1;}
    50%  {opacity: 0;}
    100% {opacity: 1;}
}

/* Standard syntax */
@keyframes blinkingElementThingie {
    0%   {opacity: 1;}
    50%  {opacity: 0;}
    100% {opacity: 1;}
}

.hiddenText{
    text-indent: -9999px;
}

.ellipsisBlock{
    white-space: nowrap;
    overflow-x: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.defautCursor{
    cursor: default;
}

.cursorPointer{
    cursor: pointer;
}

.inlineBlockTop{
    vertical-align: top;
    display: inline-block !important;
}

.inlineBlockTopCustom{
    vertical-align: top;
    display: inline-block;
}

.inlineBlockMiddle{
    vertical-align: middle;
    display: inline-block !important;
}

.halfBlock{
    width: -webkit-calc(50% - 21px);
    width: -moz-calc(50% - 21px);
    width: calc(50% - 21px);
    margin-right: 33px;
}

.halfBlock+.halfBlock{
    margin-right: 0;
    margin-left: 3px;
}

.thirdBlock{
    width: -webkit-calc(33% - 66px);
    width: -moz-calc(33% - 66);
    width: calc(33% - 66px);

    vertical-align: top;
    display: inline-block;
}

.thirdBlock:nth-child(2){
    margin: 0 99px;
}

.fullSizeBlock{
    width: 100%;
    height: 100%;
    display: block;
}

.centerHorizontallyVertically{
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    margin: auto;
}

.relativeBlock{
    position: relative !important;
}

.staticBlock{
    position: static !important;
}

.width100Percent{
    width: 100%;
}

.leftHalf, .rightHalf{
    width: 50%;
    margin: -2px;
}

.clearBoth{
    clear: both;
}

/* Transitions CSS3 */
.hasTransitions{
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.hasShortTransitions{
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.removeTransitions{
    -moz-transition: none !important;
    -webkit-transition: none !important;
    -o-transition: color 0 ease-in !important;
    transition: none !important;
}

/* Scale */

.horizontalFlip{
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}

.verticalFlip{
    -moz-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
    filter: FlipV;
    -ms-filter: "FlipV";
}

/* Border */
.smallBorderRadius{
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.noBorderRadius{
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    border-radius: 0 !important;
}

.noBorder{
    border: none !important;
}

.greyBorderBlock{
    padding: 20px;
    border: 1px solid #d3d3d3;
}

.borderBox{
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

/* Couleurs */

.whiteText, .whiteText *{
    color: #ffffff;
}

.greyText:not(a), .greyText *:not(a){
    color: #8d8d8d;
}

.noBackgroundColor, .noBackgroundColor:hover{
    background-color: transparent !important;
}

/* Background */

.whiteBackground{
    background-color: #ffffff;
}

.beigeBackground{
    background-color: #bfac9f;
}

.brownBackground{
    background-color: #a99789;
}

.coverDiv{
    background-size: cover;
    background-position: center;
}

/* Texte */

strong{
    font-weight: 600;
}

em{
    font-style: italic;
}

.smallText{
    font-size: 14px;
}

.capsText{
    text-transform: uppercase;
}

.textAlignCenter, .textAlignCenter *{
    text-align: center;
}

.textAlignLeft{
    text-align: left;
}

.textAlignRight{
    text-align: right;
}

.bigLink{
    text-decoration: none !important;
    color: #ffffff !important;
    font-weight: 400;
    font-size: 27px;
}

/* Sticky footer */

html, body {
    height:100%;
}

.wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -410px;
}

.push {
    height: 410px;
}

/* -- Loader -- */

.loaderContainer{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 4000;
}

.rotationSquares{
    border: 1px solid white;
    width: 215px;
    height: 215px;

    -webkit-animation: rotationAnimation 4s linear infinite; /* Chrome, Safari, Opera */
    animation: rotationAnimation 4s linear infinite;
}

.loaderContainer>*{
    top: -7% !important;
}

.rotationSquares+.rotationSquares{
    -webkit-animation: counterRotationAnimation 6s linear infinite; /* Chrome, Safari, Opera */
    animation: counterRotationAnimation 6s linear infinite;
    border: 1px dashed white;
    width: 190px;
    height: 190px;
    opacity: 0.6;
}

.loaderContainer span{
    color: white;
    display: block;
    width: 157px;
    height: 50px;

    top: -webkit-calc(-7% + 98px) !important;
    top: -moz-calc(-7% + 98px) !important;
    top: calc(-7% + 98px) !important;

    text-transform: uppercase;
    letter-spacing: 4.9px;
    text-align: center;
    text-indent: 1px;
}

.loaderContainer>img{
    top: -webkit-calc(-7% - 20px) !important;
    top: -moz-calc(-7% - 20px) !important;
    top: calc(-7% - 20px) !important;
}

@-webkit-keyframes rotationAnimation { 100% { -webkit-transform: rotate(360deg); } }
@keyframes rotationAnimation { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

@-webkit-keyframes counterRotationAnimation { 100% { -webkit-transform: rotate(-360deg); } }
@keyframes counterRotationAnimation { 100% { -webkit-transform: rotate(-360deg); transform:rotate(-360deg); } }

/* ---- Règle particulières --- */

/* Font faces */

@font-face {
    font-family: 'Montserrat';
    font-weight: 400;
    src: url('https://www.mon-pave.fr/templates/interblocs/resources/fonts/Montserrat-Regular.otf') format("opentype");
}

@font-face {
    font-family: 'Montserrat';
    font-weight: 300;
    src: url('https://www.mon-pave.fr/templates/interblocs/resources/fonts/Montserrat-Light.otf') format("opentype");
}

/* -- Fonts -- */

html h1, html h2, html h3, html h1.fakeH2{
    font-family: 'Montserrat', sans-serif;
    font-weight: 300 !important;
}

html *{
    font-family: 'Lato', sans-serif;
}

/* -- Éléments principaux (titres, texte courant, liens) -- */

h1{
    color: #a99789;
    font-size: 40px;
    font-weight: 300;
    text-transform: uppercase;
}

h2, h1.fakeH2{
    color: #cbaa94;
    font-size: 25px;
    text-transform: none;
}

h3{
    font-size: 20px;
    color: #a99789;
    margin-bottom: 9px;
}

p{
    color: #8d8d8d;
    line-height: 140%;
}

a{
    color: #ed440e;
    text-decoration: underline;

    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

a:hover{
    color: #ff510d;

    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.blockLink{
    cursor: pointer;
    border: none;
    display: inline-block;
    padding: 15px 17px;
    font-size: 16px;
    color: white;
    background-color: #ff510d;
    text-decoration: none;

    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.blockLink:hover{
    background-color: #ff7211;
    color: white;
    text-decoration: none;

    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.brownLink{
    background-color: #a49387;
}

.brownLink:hover{
    background-color: #c2b0a3;
}

.iconLink{
    padding-left: 46px;
    position: relative;
}

.iconLink .fa{
    color: white;
    font-size: 24px;
    left: 10px;
    top: 12px;
    position: absolute;
}

.iconLink .fa.fa-sliders{
    left: 12px;
    top: 11px;
}

a.explanationLink{
    vertical-align: top;
}

.blockLink.errorLink{
    cursor: default !important;
    background-color: #a3a3a3 !important;
}

.nextPartLink{
    padding-right: 36px;
    position: relative;
}

.nextPartLink .fa{
    color: white;
    font-size: 24px;
    right: 11px;
    top: 11px;
    position: absolute;
}

.centerBlock{
    margin: auto;
    display: block;
    position: relative;
    padding: 0 40px;
    width: -webkit-calc(100% - 80px);
    width: -moz-calc(100% - 80px);
    width: calc(100% - 80px);
    max-width: 920px;
}

/* -- Header/Menu -- */

header.mainHeader{
    background-color: #a99789;
    width: 100%;
    z-index: 300;
    position: relative;
    height: 133px;
}

header nav a{
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-size: 16px;
    display: inline-block;
}

#brownListButton{
    background-image: url('https://www.mon-pave.fr/templates/interblocs/resources/brownList.png');
    width: 24px;
    display: none;
    height: 18px;
    position: absolute;
    top: 12px;
    left: 11px;
    z-index: 30;
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px;
}


#searchBlock{
    position: absolute;
    right: 40px;
    top: 24px;
}

#searchBlock input{
    display: inline-block;
    background-color: #dec7b6;
    font-size: 14px;
    color: white;
    border: none;

    padding-left: 14px;

    height: 37px;
    width: 200px;
    line-height: 37px;

    -webkit-border-top-right-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-topright: 3px;
    -moz-border-radius-bottomright: 3px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

#searchBlock input::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #ffffff;
}

#searchBlock input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    #ffffff;
    opacity:  1;
}

#searchBlock input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    #ffffff;
    opacity:  1;
}

#searchBlock input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color:    #ffffff;
}

#searchBlock button{
    display: inline-block;
    width: 39px;
    height: 39px;
    margin-right: -1px;
    cursor: pointer;
    border: none;
    background-color: #dec7b6;
    background-image: url(https://www.mon-pave.fr/templates/interblocs/resources/searchIcon.png);
    background-repeat: no-repeat;
    background-position: center center;

    -webkit-border-top-left-radius: 4px;
    -webkit-border-bottom-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-bottomleft: 4px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

#searchBlock button:hover{
    background-color: #ecd5c3;
}

.actualNav{
    display: inline-block;
    position: relative;
}

#topPart{
    height: 50px;
    position: relative;
}

#topPart #searchBlock{
    top: 8px;
}

#topPart #searchBlock *{
    vertical-align: top;
}

#topPart #searchBlock button{
    width: 34px;
    height: 34px;
}

#topPart #searchBlock input{
    height: 32px;
    line-height: 32px;
    width: 160px;
}

#mainPart{
    height: 90px;
    position: relative;
}

#caddyButton{
    display: inline-block;
    width: 65px;
    height: 49px;

    position: absolute;
    right: 20px;
    top: 19px;
    text-align: center;
    text-decoration: none;
}

#caddyButton *{
    color: #a99789;
    display: inline-block;
    vertical-align: middle;
    line-height: 49px;
    font-size: 20px;
    padding: 0;
}

#caddyButton *+*{
    padding: 0 1px;
}

#caddyButton:hover *{
    color: #ff7211;
}

#caddyButton span{
    font-weight: 300;
}

#mainPart .littleNav a:not(.mainLogoLink){
    font-size: 16px;
    font-weight: 300;
    color: white;
    display: inline-block;
    padding: 0 20px;
    height: 90px;
    line-height: 95px;
    margin-right: -4px;
}

.littleNav a:hover:not(.mainLogoLink), .littleNav a.currentA{
    color: white;
    text-decoration: none;
    background-color: #bfac9f;
}

#mainPart .littleNav{
    text-align: center;
    width: 100%;
    padding-left: 0;
}

#mainPart .littleNav *{
    vertical-align: middle;
}

#leftDeco{
    position: absolute;
    left: 0;
    top: 0;
}

#rightDeco{
    position: absolute;
    right: 0;
    top: 0;
}

.leftPartNav{
    position: absolute;
    left: 40px;
    top: 0;
}

.rightPartNav{
    position: absolute;
    right: 40px;
    top: 0;
}

#mainLogo{
    display: inline-block;
    margin: auto;
    margin-top: 19px;
    width: 185px;
}

#backUpMainLogo{
    display: none;
    margin: auto;
}

#blogLink{
    text-decoration: none;

    font-size: 13px;
    padding: 0 7px;
    font-weight: 300;
    color: white;
    text-transform: uppercase;
    margin-top: 11px;
    display: inline-block;
}

#blogLink:hover{
    text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.9);
}

/* -- Partie sous-menu -- */

.subNav{
    height: 0;
    background-color: #bfac9f;
    width: 225px;
    position: absolute;
    top: 90px;
    left: 0;
    z-index: 400;
    overflow: hidden;
}

.trueMonoNav.subNav .inlineBlockTop{
    width: 100%;
}

a:hover+.subNav, .subNav:hover{
    height: auto;
}

#mainPart .littleNav .subNav a{
    padding: 0 19px;
    line-height: 40%;
}

#mainPart .littleNav .subNav:hover a, #mainPart .littleNav a:hover+.subNav a{
    line-height: 130%;
    height: auto;
    padding: 21px;
    padding-top: 20px;
    display: block;
    border-bottom: 1px solid #c9b6a9;
    font-size: 16px;
    text-transform: none;
    text-align: left;
}

#mainPart .littleNav .subNav a:hover{
    background-color: #c6b4a8;
}

#mainPart .littleNav .subNav *{
    vertical-align: top;
}

#mainPart .littleNav .subNav .halfBlock:first-child{
    border-right: 1px dashed #c9b6a9;
    margin-right: -2px;
}

.subNav .halfBlock{
    width: -webkit-calc(50% - 2px);
    width: -moz-calc(50% - 2px);
    width: calc(50% - 2px);
    margin-right: 0;
    margin-left: 0;
}

.subNavContainer{
    display: inline-block;
    position: relative;
}

/* -- Social nav -- */

nav#socialNav{
    position: fixed;
    left: 0;
    top: 140px;
    z-index: 100;
}

nav#socialNav a{
    background-color: #f0f0f0;
    width: 46px;
    height: 40px;
    padding-left: 6px;
    margin-bottom: 16px;
    display: block;
    position: relative;
    left: -6px;

    -webkit-border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-bottomright: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

nav#socialNav a span{
    display: block;
    width: 40px;
    height: 40px;
    background-image: url('https://www.mon-pave.fr/templates/interblocs/resources/socialSprite.png');
    background-repeat: no-repeat;
    background-position: 0 0;
}

nav#socialNav a+a span{
    background-position: 0 -40px;
    left: 2px;
    position: relative;
}

nav#socialNav a+a+a span, nav#socialNav a+a+a:hover span{
    background-position: 2px center;
    background-image: url('https://www.mon-pave.fr/templates/interblocs/resources/englishFlag.png');
    left: 0;
}

nav#socialNav.frenchSocialNav a+a+a span, nav#socialNav.frenchSocialNav a+a+a:hover span{
    background-image: url('https://www.mon-pave.fr/templates/interblocs/resources/frenchFlag.png');
}


nav#socialNav a:hover{
    left: 0;
}

nav#socialNav a:hover span{
    -ms-background-position-x: -40px;
    background-position-x: -40px;
}

/* Ajout du mot "blog" sous le lien */

nav#socialNav a span.blogText{
    position: relative;
    left: -1px;
    top: -7px;
    background-image: none;
    display: inline-block;
    font-size: 11px;
    text-decoration: none;
    text-transform: none;
    color: #a0958d;
    height: auto;
    width: 100%;
    padding: 0;
    text-align: center;
}

nav#socialNav a:hover span.blogText{
    color: #ff510d;
}

nav#socialNav a.linkWithText{
    height: auto;
}

/* -- Main -- */


/* -- Footer -- */

footer p{
    color: white;
    line-height: 29px;
    font-size: 16px;
    text-align: center;
}

footer a{
    color: white !important;
    display: inline-block;
    padding: 0 4px;
}

/* -- Main -- */

main{
    margin-top: 40px;
    display: block;
}

/* -- Popup -- */

.containerPopup{
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 301;
}

.popupItself{
    max-width: 600px;

    width: -webkit-calc(100% - 40px);
    width: -moz-calc(100% - 40px);
    width: calc(100% - 40px);
    background-color: white;

    min-height: 270px;
    height: 600px;
}

.innerPopup{
    height: -webkit-calc(100% - 127px);
    height: -moz-calc(100% - 127px);
    height: calc(100% - 127px);
    overflow: auto;
    padding: 30px;
}

.popupItself h2{
    color: #636262;
    text-transform: uppercase;
    font-size: 25px;
    margin-bottom: 14px;
}

.popupItself h3{
    margin-bottom: 18px;
    margin-top: 2px;
    font-size: 19px;
}

.popupItself fieldset+fieldset h3{
    margin-top: 9px;
    margin-bottom: 14px;
}

.popupItself h2 span{
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
}

#descriptionSample .inlineBlockTop{
    width: -webkit-calc(100% - 152px);
    width: -moz-calc(100% - 152px);
    width: calc(100% - 152px);

    margin-right: 25px;
}

.popupItself p{
    font-size: 15px;
    line-height: 165%;
    text-align: justify;
    margin-bottom: 19px;
}

.popupItself fieldset{
    margin-bottom: 20px;
}

#descriptionSample .inlineBlockTop+.inlineBlockTop{
    margin-right: 0;
    width: 122px;
}

.popupNav{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.popupNav a{
    display: block;
    width: 100%;
    padding: 22px 0;
    text-align: center;
    text-transform: uppercase;
    color: white;
    font-size: 23px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    background-color: #ed440e;
    text-decoration: none;
}

.popupNav a:hover{
    background-color: #ff5d10;
}

.popupNav.duoNav a{
    width: 65%;
    margin-right: -2px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
}

a.cancelButton{
    background-color: #a3a3a3;
}

a.cancelButton:hover{
    background-color: #b6b6b6;
}

.popupNav.duoNav a+a{
    width: 35%;
    margin-right: 0;
    left: auto;
    right: 0;
}

/* Form général */

.inputContainer{
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

.inputContainer label{
    font-size: 17px;
    color: #949292;

    display: inline-block;
    vertical-align: middle;
    width: 135px;
}

.inputContainer input{
    font-size: 16px;
    color: #949292;
    padding: 16px;

    display: inline-block;
    vertical-align: middle;

    width: -webkit-calc(100% - 139px);
    width: -moz-calc(100% - 139px);
    width: calc(100% - 139px);
    border: 1px solid #cccccc;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.inputContainer input, .inputContainer textarea{
    color: #585656 !important;
}

.innerPopup .inputContainer select{
    width: 401px !important;
}

.inputContainer input:focus{
    border: 1px solid #d3c0b3;
}

.inputContainer:last-child{
    margin-bottom: 0;
}

.inputContainer textarea{
    width: 100%;

    padding: 16px;
    font-size: 15px;

    border: 1px solid #cccccc;
    height: 120px;
}

.requiredField{
    font-size: 18px;
    color: #ff5d10;
    position: absolute;
    right: 8px;
    top: 8px;
}

/* -- Emptyblock -- */

.emptyBlock{
    border: 1px dashed #cccccc;
    margin-bottom: 35px;
    padding: 24px;
}

.emptyBlock h2{
    color: #9c9c9c;
    margin-bottom: 14px;
}

/* Custom checkblock */

.checkBlock{
    cursor: pointer;
    display: inline-block;
    position: relative;
    width:30px;
    height: 24px;
}

.emptyCheck, .blueV{
    background-image: url('https://www.mon-pave.fr/templates/interblocs//resources/checkboxSprite.png');
}

.emptyCheck{
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 24px;

    position: relative;
    top: -22px;
}

.blueV{
    width: 25px;
    height: 25px;
    background-position: 25px 0;
    display: inline-block;
    position: relative;
}

.checkBlock input{
    opacity: 0;
    z-index: 9999;
    cursor: pointer;
    width: 100%;
    height: 30px;
    top: 6px;
    left: -3px;
    position: absolute;
}

.checkBlock .iconMunk{
    position: absolute;
    top: -8px;
    left: -4px;
}

.checkBlock .blueV{
    top:-11px;
    opacity: 0;

    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.checkBlock input:checked+.blueV{
    top:3px;
    opacity: 1;

    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.checkBlock.radioBlock input:checked+.blueV{
    top: 5px;
}

.checkBlock input:checked+.blueV+.emptyCheck{
    background-position: 0 24px;
}

.correctedLabel{
    position: relative;
    top: -23px;
}

.subNavTrigger{
    background-image: url('https://www.mon-pave.fr/templates/interblocs/resources/menuHint.png');
    background-repeat: no-repeat;
    background-position: center 68px;
}

/* Correction popup newsletter */

.specialInputContainer{
    text-align: right;
    height: 34px;
    margin-top: -4px;
}

.specialInputContainer label{
    width: 222px;
    position: relative;
    top: -23px;
    font-size: 16px;
}


/* Legal checkblock */

.legalCondition{
    text-align: right;
    margin-bottom: 30px;
    margin-top: -12px;
}

.legalCondition.specialInputContainer{
    margin-top: -16px;
    margin-bottom: 0;
    height: auto;
}

.legalCondition>*{
    vertical-align: middle;
    display: inline-block;
}

.legalCondition label{
    position: relative;
    top: 4px;
    left: -1px;
    color: #8d8d8d;
    cursor: pointer;

    width: -webkit-calc(100% - 40px);
    width: -moz-calc(100% - 40px);
    width: calc(100% - 40px);
    margin-right: 3px;
    line-height: 160%;
}

#conditionalPhone{
    display: none;
}

.hidden{
    display: none;
}

/* Rework du footer :))))) */

.preFooter{
    padding: 34px 0;
}

.quarterFooter{
    float: left;
    vertical-align: top;
    margin-right: 45px;

    width: -webkit-calc(25% - 34px);
    width: -moz-calc(25% - 34px);
    width: calc(25% - 34px);
}

html footer .quarterFooter *{
    color: white;
    text-align: left;
}

html footer .quarterFooter a, html footer .quarterFooter p{
    margin-bottom: 7px;
    line-height: 150%;
    font-size: 15px;
    display: block;
    padding: 0;
}

html footer .quarterFooter p strong+a{
    display: inline-block;
}

html body .quarterFooter+.quarterFooter+.quarterFooter+.quarterFooter{
    margin-right: 0;
}

.quarterFooter:first-child img{
    margin-bottom: 14px;
}

footer .clearBoth{
    clear: both;
    display: block;
}

footer h3{
    font-size: 21px;
    margin-bottom: 11px;
    margin-top: 10px;
}

.footerSubBlock:first-child img{
    width: 67%;
    height: auto;
    max-width: 207px;
    margin-top: 3px;
}

.quarterFooter+.quarterFooter+.quarterFooter+.quarterFooter .footerSubBlock{
    margin-bottom: 20px;
}

.quarterFooter+.quarterFooter+.quarterFooter+.quarterFooter .footerSubBlock:last-child{
    margin-bottom: 10px;
}

.quarterFooter+.quarterFooter+.quarterFooter+.quarterFooter .footerSubBlock:last-child h3{
    margin-top: -5px;
}

.quarterFooter+.quarterFooter+.quarterFooter+.quarterFooter .footerSubBlock h3+a{
    margin-bottom: 0;
}

.footerSubBlock{
    margin-bottom: 22px;
}

.postFooter{
    padding: 12px 0;
}

.postFooter p{
    display: inline-block;
    text-align: left;
    font-size: 15px;
}

.postFooter p+p{
    text-align: right;
    float: right;
}

/* ----- Mediaqueries principales ----- */

/* Écrans 2000 et plus */
@media only screen and (max-width: 2000px){
    #caddyButton *{
        font-size: 19px;
    }
}

@media only screen and (max-width: 1800px){
    #caddyButton *{
        font-size: 18px;
    }
}


/* Écrans 1600 et plus */
@media only screen and (min-width: 1600px){
    .centerBlock {
        max-width: 1280px;
    }
}

@media only screen and (max-width: 1600px){
    .centerBlock {
        max-width: 1000px;
    }

    /* Mediaqueries du menu */

    #mainPart .littleNav a:not(.mainLogoLink){
        font-size: 15px;
        padding: 0 15px;
    }

    /* Corrections générales */

    h1{
        font-size: 35px;
    }

    h2, h1.fakeH2{
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    #mainLogo{
        margin-top: 20px;
        width: auto;
        height: 42px;
    }

    #mainPart .littleNav .subNav a{
        font-size: 15px !important;
    }

    #mainPart .littleNav .subNav:hover a, #mainPart .littleNav a:hover+.subNav a {
        padding: 20px 12px;
        padding-top: 19px;
    }

    /* Footer */

    .preFooter{
        padding-top: 28px;
        padding-bottom: 15px;
    }

    footer h3{
        font-size: 17px;
        margin-top: 9px;
    }

    html footer .quarterFooter a, html footer .quarterFooter p{
        font-size: 14px;
        line-height: 155%;
        margin-bottom: 5px;
    }

    .postFooter p{
        font-size: 14px;
    }

    .quarterFooter:first-child img {
        margin-bottom: 13px;
        width: 175px;
        height: auto;
    }

    html body .quarterFooter+.quarterFooter+.quarterFooter+.quarterFooter img{
        width: 175px;
        height: auto;
    }

    .quarterFooter{
        margin-right: 40px;
        width: -webkit-calc(25% - 30px);
        width: -moz-calc(25% - 30px);
        width: calc(25% - 30px);
    }

    .postFooter{
        padding: 9px 0;
    }

    .wrapper {
        margin: 0 auto -350px;
    }

    .push {
        height: 350px;
    }

    nav#socialNav a{
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 1450px){
    h1{
        font-size: 33px;
    }

    h2, h1.fakeH2{
        font-size: 20px;
    }

    h3 {
        font-size: 17px;
    }

    .blockLink{
        padding: 13px 14px;
    }

    .nextPartLink {
        padding-right: 33px;
    }

    .nextPartLink .fa {
        font-size: 20px;
        right: 10px;
        top: 10px;
    }

    .iconLink {
        padding-left: 40px;
    }

    .blockLink.iconLink .fa {
        font-size: 20px !important;
        left: 10px;
        top: 9px;
    }

    .sendButton {
        background-position: 10px 13px !important;
    }


    #topPart {
        height: 44px;
    }

    #mainPart{
        height: 74px;
    }

    #leftDeco, #rightDeco{
        height: 74px;
        width: auto;
    }

    #blogLink{
        margin-top: 7px;
    }

    #caddyButton *{
        line-height: 44px;
        font-size: 18px;
    }

    #mainPart .littleNav a:not(.mainLogoLink){
        height: 74px;
        line-height: 74px;
        font-size: 14px;
    }

    .subNavTrigger{
        background-position: center 57px;
        background-size: 18px;
    }

    .subNav{
        top: 74px;
        width: 207px;
    }

    #caddyButton{
        width: 60px;
    }

    #mainLogo {
        margin-top: 15px;
        width: auto;
        height: 38px;
    }

    nav#socialNav{
        top: 120px;
    }

    .legalCondition label{
        font-size: 15px;
    }


    footer p{
        font-size: 14px;
        line-height: 28px;
    }

    /* Footer */

    .preFooter{
        padding-top: 25px;
        padding-bottom: 12px;
    }

    footer h3{
        font-size: 16px;
        margin-top: 8px;
    }

    html footer .quarterFooter a, html footer .quarterFooter p{
        font-size: 14px;
        line-height: 150%;
        margin-bottom: 4px;
    }

    .postFooter p{
        font-size: 14px;
    }

    .quarterFooter:first-child img {
        margin-bottom: 13px;
        width: 165px;
        height: auto;
    }

    html body .quarterFooter+.quarterFooter+.quarterFooter+.quarterFooter img{
        width: 165px;
        height: auto;
    }

    .quarterFooter{
        margin-right: 40px;
        width: -webkit-calc(25% - 30px);
        width: -moz-calc(25% - 30px);
        width: calc(25% - 30px);
    }

    .postFooter{
        padding: 8px 0;
    }

    .footerSubBlock{
        margin-bottom: 21px;
    }

    .wrapper {
        margin: 0 auto -333px;
    }

    .push {
        height: 333px;
    }

    #caddyButton{
        right: 14px;
        top: 14px;
    }

    #caddyButton *{
        line-height: 43px;
        font-size: 17px;
    }

    nav#socialNav a{
        margin-bottom: 14px;
    }

    nav#socialNav a span.blogText{
        font-size: 10px;
        top: -8px;
    }
}

/* Écrans 1230 et plus */
@media only screen and (max-width: 1230px){
    .centerBlock{
        max-width: 850px;
        padding: 0 20px;
    }

    .subNavTrigger{
        background-position: center 54px;
        background-size: 15px;
    }

    nav .centerBlock{
        padding: 0;
    }

    /* Mediaqueries du menu */

    #caddyButton *{
        line-height: 50px;
        font-size: 20px;
    }

    #mainPart .littleNav a:not(.mainLogoLink){
        font-size: 13px;
        padding: 0 11px;
    }

    #mainLogo{
        margin-top: 17px;
        width: auto;
        height: 33px;
    }

    #mainPart{
        height: 69px;
    }

    #mainPart .littleNav a:not(.mainLogoLink){
        height: 72px;
        line-height: 72px;
    }

    #leftDeco, #rightDeco{
        height: 69px;
        width: auto;
    }

    footer p{
        font-size: 14px;
        line-height: 27px;
    }

    #topPart {
        height: 40px;
    }

    #topPart #searchBlock button {
        width: 30px;
        height: 30px;
    }

    #topPart #searchBlock input {
        height: 28px;
        padding-left: 11px;
        line-height: 28px;
        font-size: 13px;
        width: 144px;
    }

    #caddyButton{
        width: 55px;
    }

    #caddyButton *{
        line-height: 40px;
        font-size: 15px;
    }

    /* Corrections générales */

    h1{
        font-size: 30px;
    }

    h2, h1.fakeH2{
        font-size: 19px;
    }

    h3 {
        font-size: 16px;
    }

    p{
        font-size: 14px;
    }

    .subNav {
        top: 69px;
        width: 205px;
    }

    #blogLink{
        font-size: 12px;
        margin-top: 6px;
    }

    nav#socialNav{
        top: 112px;
    }

    .legalCondition label{
        font-size: 14px;
    }

    /* Footer */

    .preFooter{
        padding-top: 23px;
        padding-bottom: 11px;
    }

    footer h3{
        font-size: 15px;
        margin-top: 7px;
    }

    html footer .quarterFooter a, html footer .quarterFooter p{
        font-size: 13px;
        line-height: 150%;
        margin-bottom: 3px;
    }

    .postFooter p{
        font-size: 13px;
    }

    .quarterFooter:first-child img {
        margin-bottom: 11px;
        width: 145px;
    }

    html body .quarterFooter+.quarterFooter+.quarterFooter+.quarterFooter img{
        width: 145px;
    }

    .quarterFooter{
        margin-right: 32px;
        width: -webkit-calc(25% - 24px);
        width: -moz-calc(25% - 24px);
        width: calc(25% - 24px);
    }

    .postFooter{
        padding: 8px 0;
    }

    .footerSubBlock{
        margin-bottom: 21px;
    }

    .wrapper {
        margin: 0 auto -330px;
    }

    .push {
        height: 330px;
    }

    #caddyButton{
        right: 12px;
        top: 13px;
    }

    #caddyButton *{
        padding: 0;
    }
}

/* Petits écrans */
@media only screen and (max-width: 1130px){
    #caddyButton, #leftDeco, #rightDeco{
        display: none;
    }
}

/* Petits écrans */
@media only screen and (max-width: 1000px){
    .centerBlock{
        width: -webkit-calc(100% - 50px);
        width: -moz-calc(100% - 50px);
        width: calc(100% - 50px);
        padding: 0 25px;
    }

    h1{
        font-size: 27px;
    }

    h2, h1.fakeH2{
        font-size: 18px;
    }

    nav#socialNav{
        top: 143px;
        position: absolute;
    }

    #leftDeco, #rightDeco{
        display: none;
    }

    #conditionalPhone{
        display: block;
        text-align: center;
        height: 52px;
        background-color: #bfac9f;
    }

    #conditionalPhone p, #conditionalPhone p *{
        color: white;
        line-height: 52px;
        text-align: center;
    }

    .fa-phone{
        padding-right: 5px;
    }
}

@media only screen and (max-width: 1000px) {
    nav#socialNav {
        top: 121px;
        right: 0;
        left: inherit;
        width: 172px;
        text-align: right;
        margin-right: 10px;
    }

    nav#socialNav a {
        left: 3px;
        display: inline-block;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
    }

    nav#socialNav a:hover {
        left: 3px;
    }
}

@media only screen and (max-width: 990px){
    footer{
        width: 100%;
        height: auto;

        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .quarterFooter{
        width: -webkit-calc(25% - 16px);
        width: -moz-calc(25% - 16px);
        width: calc(50% - 16px);
        margin-bottom: 20px;
    }

    .quarterFooter, .quarterFooter *, html footer .quarterFooter a, html footer .quarterFooter p, html footer .quarterFooter h3{
        text-align: center;
    }

    html footer .quarterFooter p{
        max-width: 300px;
        margin: 5px auto;
    }

    .quarterFooter:nth-child(2n){
        margin-right: 0;
    }

    .quarterFooter+.quarterFooter+.quarterFooter{
        margin-bottom: 0;
    }

    .quarterFooter img{
        display: block;
        margin-right: auto;
        margin-left: auto;
    }

    .preFooter{
        padding-top: 26px;
    }
}

/* Version fin tablette -> début mobile */
@media only screen and (max-width: 900px){

    nav#socialNav {
        top: 143px;
    }

    nav .centerBlock{
        text-align: center;
    }

    body{
        overflow-x: hidden;
    }

    nav{
        position: absolute;
    }

    nav .centerBlock a{
        padding-right: 0;
        padding-left: 0;
        width: 100%;
        display: block;
    }

    nav .centerBlock a:first-child{
        max-width: 120px;
        margin: auto;
    }

    #brownListButton{
        display: block;
    }

    #topPart{
        display: none;
    }

    #mainPart{
        height: 90px;
    }

    #mainPart #mainLogo{
        display: none;
    }

    .leftPartNav, .rightPartNav{
        position: static;
        width: 100%;
        display: block;
    }

    #backUpMainLogo{
        display: block;
        padding-top: 18px;
        height: 48px;
    }

    #mainPart .littleNav{
        top: 20px;
        left: 0;
        z-index: 400;
        background-color: #bfac9f;
    }

    .littleNav a,#mainPart .littleNav a:not(.mainLogoLink){
        padding: 0 !important;
        font-size: 15px;
        display: block;
        width: 100%;
    }

    .littleNav a:hover{
        background-color: #d3c0b3 !important;
        border-bottom: 1px solid #dfcbbe !important;
    }

    .subNav{
        position: static;
        display: none;
        width: 100% !important;
        height: auto;
        background-color: #cab7aa !important;
    }

    #mainPart .littleNav .subNav a{
        display: block !important;
        font-size: 16px !important;
        width: 100% !important;
        padding: 22px 0 !important;
        text-align: center !important;

        line-height: 130%;
        padding-top: 21px;
        border-bottom: 1px solid #DAC9BD;
        text-transform: none;
        height: auto !important;
    }

    #mainPart .littleNav .subNav .halfBlock{
        width: 100% !important;
        display: block !important;
    }

    #mainPart .littleNav .subNav .halfBlock:first-child{
        border-top: 1px solid #c9b6a9;
    }

    #mainPart .monoNav.subNav .inlineBlockTop a{
        padding: 0 !important;
        height: 73px !important;
        line-height: 70px !important;
    }

    .subNavContainer{
        display: block;
    }

    #mainNav .trueMonoNav a{
        height: auto !important;
    }

    .leftHideSide, .rightHideSide{
        display: block;
        z-index: 200;
        cursor: default;
        top: 0;
        bottom: 0;
        left: 0;
        position: absolute;
        width: 12%;
    }

    .rightHideSide{
        left: auto;
        right: 0;
    }
}

@media only screen and (max-width: 600px){
    /* Mediaqueries popup pour mobile */

    .popupItself.centerHorizontallyVertically{
        top: 20px !important;
        bottom: 20px !important;
        height: auto !important;
    }

    .popupItself h2 {
        font-size: 20px;
    }

    .popupItself h3{
        line-height: 140%;
    }

    .popupItself .inlineBlockTop, .popupItself #descriptionSample .inlineBlockTop{
        width: 100%;
        margin: 0;
        margin-bottom: 25px;
        display: block;
    }

    .popupNav a, .popupNav.duoNav a, .popupNav.duoNav a+a{
        width: 100% !important;
        display: block;
        font-size: 17px !important;
        margin: 0;
        padding: 16px 0;
        position: static;
    }

    .innerPopup {
        height: -webkit-calc(100% - 146px);
        height: -moz-calc(100% - 146px);
        height: calc(100% - 146px);
        padding: 24px;
    }

    div.containerChoix{
        width: 100%;
        height: 0;
        padding-bottom: 100%;
        margin-right: 0;
        margin-bottom: 25px;
    }

    div.containerChoix img{
        max-width: none;
    }

    div.containerChoix .checkBlock{
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
    }

    .inputContainer label, .inputContainer input{
        display: block;
        width: 100%;
    }

    .inputContainer input{
        padding: 13px;
        margin-top: 13px;
    }

    .inputContainer .requiredField{
        right: 7px;
        top: 36px;
    }

    .innerPopup .inputContainer select{
        width: 100% !important;
    }

    .correctedLabel{
        position: static;
        margin-bottom: 13px;
    }

    .specialInputContainer label{
        display: inline-block;
        width: auto;
    }
}


/* Version grand mobile -> petit mobile */
@media only screen and (max-width: 520px){
    h1{
        font-size: 22px;
    }

    h2, h1.fakeH2{
        font-size: 17px;
        line-height: 130%;
    }


    h3 {
        font-size: 17px;
    }

    .quarterFooter{
        width: 100% !important;
        margin-right: 0 !important;
    }

    .quarterFooter:nth-child(2) .footerSubBlock{
        margin-bottom: 0;
    }

    footer .postFooter p{
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media only screen and (max-width: 370px){
    .specialInputContainer label{
        font-size: 14px;
    }
}