/* Fonts */
@font-face {
	font-family: 'Open Sans', sans-serif;
	src: url('../fonts/OpenSans-VariableFont_wdth,wght.ttf');
}

@font-face {
	font-family: 'Lemonmilk';
	src: url('../fonts/LEMONMILK-light.otf');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Lemonmilk';
	src: url('../fonts/LEMONMILK-Regular.otf');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Lemonmilk';
	src: url('../fonts/LEMONMILK-Medium.otf');
	font-weight: 500;
	font-style: normal;
}


@font-face {
	font-family: 'Lemonmilk';
	src: url('../fonts/LEMONMILK-Bold.otf');
	font-weight: 700;
	font-style: normal;
}


/**
 * Normalize
 *
 * Normalizing styles have been helped along thanks to the fine work of
 * Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
 */

 * {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}

html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

h1, h2, h3 { font-weight: normal; }

a {
	background-color: transparent;
	text-decoration: none;
	-webkit-transition: all .5s ease 0s;
	-o-transition: all .5s ease 0s;
	transition: all .5s ease 0s;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: 700;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 0;
}

hr {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

code,
kbd,
pre,
samp {
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
	-webkit-transition: all .5s ease 0s;
	-o-transition: all .5s ease 0s;
	transition: all .5s ease 0s;
}

select {
	text-transform: none;
}

button {
	overflow: visible;
}

button,
input,
select,
textarea {
	max-width: 100%;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
	opacity: .5;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input[type="checkbox"],
input[type="radio"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-right: 0.4375em;
	padding: 0;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button,
input[type="time"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-outer-spin-button,
input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-outer-spin-button,
input[type="week"]::-webkit-inner-spin-button,
input[type="week"]::-webkit-outer-spin-button,
input[type="month"]::-webkit-inner-spin-button,
input[type="month"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #d1d1d1;
	margin: 0 0 1.75em;
	min-width: inherit;
	padding: 0.875em;
}

fieldset > :last-child {
	margin-bottom: 0;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

optgroup {
	font-weight: bold;
}


/**
 * Alignments
 */

.alignleft {
	float: left;
	margin: 0.375em 1.75em 1.75em 0;
}

.alignright {
	float: right;
	margin: 0.375em 0 1.75em 1.75em;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 1.75em;
}

blockquote.alignleft {
	margin: 0.3157894737em 1.4736842105em 1.473684211em 0;
}

blockquote.alignright {
	margin: 0.3157894737em 0 1.473684211em 1.4736842105em;
}

blockquote.aligncenter {
	margin-bottom: 1.473684211em;
}

/*=====================================================
	GENERAL
======================================================*/

:root {
	--red1: #8f1d21;
	--red2: #f5060e;
    --blue1: #2f398d;
	--blue2: #59c4f7;
}

body{
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 16px;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px; 
	background-image: url(../img/background.jpg);
	background-position:center bottom;
	background-repeat:no-repeat;	
	background-size: cover;
	background-attachment: fixed;
} 

#main-wrapper {
	min-height: calc(100vh - 127px);
}

#main-content {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
}

#main-content::before {
	content: '';
    background: #475a47f2;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(42px);
    border-radius: 42px;
}

/* header */
#site-header {
	background-color: #fff;
}

#site-header #sh-row {
	align-items: center;
	justify-content: space-between;
}

#site-header .btn {
	box-shadow: none;
	letter-spacing: normal;
	font-size: 1em;
	border: none;
}

#site-header .btn i {
	margin-right: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    font-size: 15px;
	transition: all .5s ease 0s;
}

#site-header #sh-phone:hover i {
	color: var(--red1);
}

#site-header #sh-address {
	font-size: .7em;
    font-weight: 400;
    margin-right: 25px;
}

#site-header #sh-address i {
	color: var(--blue2);
}

#site-header #sh-address:hover i {
	color: var(--blue1);
}

#site-header #sh-phone {
	font-weight: 700;
}

#site-header #sh-phone i {
	color: var(--red2);
}

#bandeau-promo {
	background-color: var(--red2);
	background-image: linear-gradient(147deg, #b32b30 0%, rgba(255, 255, 255, 0) 100%);
	color: #fff;
	text-align: center;
	padding: 13px 0;
	font-size: 2em;
	text-transform: uppercase;
	margin-top: 5px;
	animation-duration: 3s;
	animation-name: clignoter;
	animation-iteration-count: infinite;
	transition: none;
}

@keyframes clignoter {
	0%   { opacity:1; }
	35%   {opacity: 1;}
	50%   {opacity: .3;}
	65%   {opacity: 1;}
	100% { opacity:1; }
}

#bandeau-promo .row {
	justify-content: center;
}

#bandeau-promo sup {
	font-size: 0.6em;
}

#bandeau-promo b {
	font-weight: 800;
	font-size: 1.1em;
}

#bandeau-promo #promo-label {
	text-align: right;
    font-size: 0.45em;
    margin: 0 15px;
    font-weight: 700;
    line-height: 1.2;
    transform: translateY(1.5px);
}

#bandeau-promo #promo-code {
	font-family: 'Lemonmilk';
	font-size: 1.2em;
    font-weight: 800;
    color: #fff; 
}



/* grid */
.container {
	max-width: 1550px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 50px;
}

.row { display: flex; }
.row.center { align-items: center; }
.col-33 { width: calc(100% / 3); }
.col-50 { width: 50%; }
.col-66 { width: calc(100% * (2 / 3)); }

/* contents */
h1 {
	font-family: 'Lemonmilk';
    color: #fff;
    letter-spacing: 3px;
    text-align: center;
    font-weight: 300;
    margin-bottom: 45px;
}

h1.main-title {
	text-align: center;
}

h1.main-title::after {
	content: '-------';
    display: block;
    margin-top: 15px;
    font-size: .8em;
    letter-spacing: 7px;
}

h2 {
	font-size: 1.2em;
}

h3 {
	font-weight: 800;
}

h3 span {
	color: var(--blue1);
}

ul {
	list-style: none;
  }
  
ul li::before {
	content: "\2022";
	color: var(--red2);
	font-weight: bold;
	display: inline-block; 
	width: 1em;
	margin-left: -1em;
}


.btn {
	font-family: 'Lemonmilk';
    background-color: var(--red2);
    background-image: linear-gradient(147deg, var(--red1) 0%, rgba(255, 255, 255, 0) 100%);
    text-transform: uppercase;
    padding: 8px 15px;
    color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.45);
    box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.45);
    border: none;
    outline: none;
    letter-spacing: 2.2px;
    font-size: .85em;
	cursor: pointer;
	text-decoration: none;
	transition: all .5s ease 0s; 
}

.btn:hover {
	background-color: var(--red1);
}

.btn.blue {
	background-color: var(--blue2);
	background-image: linear-gradient(147deg, var(--blue1) 0%, rgba(255, 255, 255, 0) 100%);
}

.btn.blue:hover {
	background-color: var(--blue1);
}

.btn.grey {
	background-color: #e7e7e7;
    background-image: linear-gradient(147deg, #e7e7e700 0%, #fff 100%);
    color: #000
}

.btn.grey:hover {
	background-color: #fff;
}

.has-icon-l, .has-icon-r {
	display: flex;
	align-items: center;
}

.has-icon-l i {
	margin-right: 10px;
}

.has-icon-r i {
	margin-left: 10px;
}

/* footer */
#main-footer {
	background-color: #32499d;
}

#main-footer a {
	color: #fff;
	font-weight: 700;
}

#main-footer a:hover {
	color: var(--blue2);
}

#main-footer .logo img {
	filter: brightness(0%) invert(1); /* logo blanc */
	width: 255px;
}

#main-footer #mf-row {
	padding-top: 20px;
	justify-content: space-between;
	align-items: center;
}

#main-footer #mf-address span br {
	content: " ";
    margin: 0 3px;
}

#main-footer #mf-row a {
	margin-right: 40px;
}

#main-footer #mf-row a i {
	color: #fff;
	transition: all .5s ease 0s;
}

#main-footer #mf-row a:hover i {
	color: var(--red2);
}

ul#mf-nav {
	text-align: center;
	padding: 15px 0;
}

ul#mf-nav li {
    /* font-family: 'Lemonmilk'; */
    text-transform: uppercase;
    font-size: .9em;
    display: inline-block;
}
ul#mf-nav li:not(:last-child)::after {
    content: "\2022";
    color: var(--red2);
    margin: 0 7px;
    font-size: 1.5em;
    vertical-align: middle;
    line-height: 0;
}

ul#mf-nav li::before {
    display: none;
}

#credits {
	text-align: center;
    font-size: .8em;
    color: #fff;
    background-color: var(--blue1);
	padding: 12.5px 0;
}

#credits > .container {
	opacity: .6;
}

#credits a {
	color: #fff;
}

#credits a:hover {
	color: var(--blue2);
}


/* CSS pages */

.bigTitle { 
	display: flex;
	align-items: center;
	background-color: var(--blue2);
    font-family: 'Lemonmilk';
    color: #fff;
    letter-spacing: 3px;
    padding: 10px 25px;
    border-radius: 4px;
	-webkit-box-shadow: 5px 5px 10px 2px rgba(0,0,0,0.75); 
	box-shadow: 5px 5px 10px 2px rgba(0,0,0,0.75);
}

.bigTitle.has-btn {
    width: calc(100% - 25px);
    margin-left: auto;
    position: relative;
	padding-left: 115px;
}

.bigTitle.has-btn .btn {
	position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: .75em;
    padding: 5px 10px;
}

/* prestation */
.wrapPresta {
	background-color: #fff;
    display: flex;
    flex-wrap: wrap;
	align-items: center;
    justify-content: space-between;
	margin-bottom: 20px;
	border-radius: 4px;
	-webkit-box-shadow: 5px 5px 10px 2px rgba(0,0,0,0.75); 
	box-shadow: 5px 5px 10px 2px rgba(0,0,0,0.75);
	height: 70px;
	padding: 0 130px 0 25px;
	width: calc(100% - 35px);
}

.wrapTxt {
	background-color: #f0f0f2;
	align-items: center;
	justify-content: space-between;
	margin-top: 50px;
	border-radius: 4px;
	-webkit-box-shadow: 5px 5px 10px 2px rgba(0,0,0,0.75); 
	box-shadow: 5px 5px 10px 2px rgba(0,0,0,0.75);
	height: auto;
	padding: 2em;
	width: calc(100% - 35px);
}

.wrapTxt ul {
	margin: .8em 0 .8em 16px;
}

.wrapTxt ul li {
	margin-bottom: .3em;
}

#main-wrapper.main-wrapper-actu {
	min-height: calc(100vh - 244px);
}

#une-actu {
	background-color: #f0f0f2;
	align-items: center;
	justify-content: space-between;
	margin: 3em auto;
	border-radius: 4px;
	-webkit-box-shadow: 5px 5px 10px 2px rgba(0,0,0,0.75); 
	box-shadow: 5px 5px 10px 2px rgba(0,0,0,0.75);
	height: auto;
	padding: 2em;
	width: 100%;
	max-width: 900px;
}

#une-actu h1 {
	color: #32499d;
	font-weight: bold;
	letter-spacing: 0;
}

div#rdv-160::before {
            content: 'BON PLAN';
	    background: url(../css/img/bandeau.svg);
	    position: absolute;
	    /* top: -52px; */
	    /* left: -185px; */
	    width: 411px;
	    height: 145px;
	    font-size: 51px;
	    text-align: center;
	    display: flex;
	    justify-content: center;
	    transform: rotate(-45deg) scale(.22) translate(-627px, -721px);
	    color: #fff;
	    font-weight: 700;
	    background-repeat: no-repeat;
	    background-size: contain;
	    line-height: 2.1em;
    text-shadow: 0px 0px 4px #0000008a;
}

.infoPresta {
	display: flex;
    flex-wrap: wrap;
    align-items: center;
	margin-top: -5px;
}

#divPrix {
	display: flex;
	align-items: center;
	margin-right: 25px;
	min-width: 140px;
}

.libPrice {
	font-weight: 800;
	margin-right: 15px;
	font-size: 0.84em;
}

.thePrice {
	position: relative;
	display: inline-block;
	margin-right: 15px;
	font-weight: 700;
    font-size: .8em;
	border-radius: 50%;
    height: 80px;
    width: 80px;
    line-height: 80px;
    border: solid 1px var(--red2);
    -webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.45);
    box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.45);
    color: var(--red2);
    font-weight: 800;
    font-size: 2.2em;
    text-align: center;
	background-color: #fff;
}

.thePrice.medium {
	box-shadow: none;
    width: 65px;
    height: 65px;
    line-height: 65px;
    font-size: 1.8em;
} 

.thePrice span {
    font-size: .6em;
    display: inline-block;
    line-height: 1;
    vertical-align: super;
}

#divPrix .promoPrice {

}

#divPrix del {
    font-weight: 700;
    color: #4c4c4c;
}


/* icon presta */

#rdv-160 h3, #rdv-170 h3, #rdv-180 h3, #rdv-190 h3, #rdv-1100 h3, #rdv-1110 h3,  #rdv-1120 h3,  #rdv-1130 h3 {
	display: flex;
	align-items: center;
}

#rdv-160 h3::before, #rdv-170 h3::before, #rdv-180 h3::before, #rdv-190 h3::before, 
#rdv-1100 h3::before, #rdv-1110 h3::before,  #rdv-1120 h3::before,  #rdv-1130 h3::before {
	content: '';
	background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    display: inline-block;
    margin-right: 20px;
}

#rdv-160 h3::before { background-image: url(../img/icon-essence.png); }
#rdv-170 h3::before { background-image: url(../img/icon-diesel.png); }
#rdv-180 h3::before { background-image: url(../img/icon-vehcol.png); }
#rdv-190 h3::before { background-image: url(../img/icon-camion.png); }
#rdv-1100 h3::before { background-image: url(../img/icon-caravan.png); }
#rdv-1110 h3::before { background-image: url(../img/icon-4x4.png); }
#rdv-1120 h3::before { background-image: url(../img/icon-ecocar.png); }
#rdv-1130 h3::before { background-image: url(../img/icon-elecar.png); }


.divTypePresta { cursor: pointer; padding: 15px 0; transition: all .5s ease 0s; }

.divTypePresta:hover { color: var(--red1); }

/* .divTypePresta {border:2px solid transparent;-webkit-border-radius: 10;-moz-border-radius: 10; border-radius: 10px;position:relative;height:60px;width:100%;background-color: #fff;} */
/* .divTypePresta:hover{border:2px solid #0052CC;cursor:pointer} */

/* .divTypePrestaTxt {font-weight: 800; } */
.btnSelectTypePresta{position: absolute; right: 50px;}




.clsBtnSupprimer{background-image: url(img/btnSupprimer.png);background-position: 0px 0px; background-repeat:no-repeat;width:15px;height:15px;margin:0px;border:0px}
.clsBtnSupprimer:hover{background-position: 0px -25px;cursor:pointer; }




/* form */
input[type=text] {
	width: 100%;
	padding: 12px 20px;
	margin: 6px 0;
	box-sizing: border-box;
	border: 1px solid #999;
	background-color: #fff;
	border-radius: 5px;
	outline: none;
	font-size: 0.95em;
  }
  
  
  input[type=text]:focus {
	border-color: #c5d7e9;
	outline: none;
  }
  
  input[type=text]:focus {
	background-color: rgba(63, 136, 205, 0.15);
  }

input[type=password] {
	width: 100%;
	padding: 12px 20px;
	margin: 6px 0;
	box-sizing: border-box;
	border: 1px solid transparent;
	background-color: #f3f3f3;
	border-radius: 5px;
	outline: none;
	font-size: 0.95em;
  }
  
  
  input[type=password]:focus {
	border-color: #c5d7e9;
	outline: none;
  }
  
  input[type=password]:focus {
	background-color: rgba(63, 136, 205, 0.15);
  }
.lblTitre{}


/*=====================================================
	Choix date
======================================================*/

.label-selec {
	font-family: 'Lemonmilk';
    color: #fff;
    letter-spacing: 3px;
	margin-left: 25px;
}

#headerChoixdate {
	background-color: #ffffff94;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	align-items: center;
	margin-top: 15px;
	margin-bottom: 50px;
	border-radius: 4px;
    border: solid 1px #fff;
	-webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.45);
    box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.45);
}

#headerChoixdate h3 {
	padding-left: 25px;
}

#headerChoixdate #divPrix {
	padding-top: 15px;
	padding-bottom: 15px;
}

#headerChoixdate #hcd-duree {
	width: 100%;
	background-color: #fff;
	text-align: center;
	padding: 5px 25px;
}

#headerChoixdate #hcd-duree span {
	color: var(--red2);
}

#headerTabChoixDate {
	display: flex;
    margin-left: -5px;
    margin-right: -5px;
    margin-top: 40px;
    margin-bottom: 12px;
}

#headerTabChoixDate .selectJour, #headerTabChoixDate .selectJourC {
    background-color: #3f88cd;
    border-radius: 5px;
    font-family: 'Lemonmilk';
    color: #fff;
    letter-spacing: 3px;
    font-size: .9em;
    text-align: center;
    padding: 8px 15px;
    margin: 0 5px;
}

#tabChoixDate .rowChoixDate {
	display: flex;
    text-align: center;
	align-items: center;
    background: #fff;
    margin-bottom: 10px;
	padding: 15px;
}

#tabChoixDate .rowChoixDate .col-50.btn {
	width: 35%;
    margin: 0 auto;
    padding-top: 12px;
    padding-bottom: 12px;
	cursor: pointer;
	border: none;
}

#tabChoixDate .rowChoixDate .col-50.btn.grey {
	color: grey;
}

/* .selectJour {border:2px solid #7FB4FF;cursor:pointer }


.selectJourC {border:2px solid #7FB4FF;cursor:pointer;box-shadow: 3px 10px 10px #E8E8E8; }
.selectJourC:hover {box-shadow: 3px 10px 10px #919191; }
.selectJourCDis {border:2px solid #505050;background-color:#f0f0f0; } */

/*=====================================================
	Choix heure
======================================================*/

#tabChoixHeure {
	margin-top: 50px;
}

#tabChoixHeure fieldset {
	width: 50%;
	border: none;
	padding: 20px 10px;
}

#tabChoixHeure fieldset legend {
	width: 100%;
	background-color: #3f88cd;
    border-radius: 5px;
    font-family: 'Lemonmilk';
    color: #fff;
    letter-spacing: 3px;
    font-size: .9em;
    text-align: center;
	padding: 10px 15px;
}

#tabChoixHeure .wrapHour {
	position: relative;
}

#tabChoixHeure .wrapHour .btnSelectHeure {
	position: absolute;
    top: 5px;
    right: 5px;
    width: 50%;
    text-align: center;
    height: calc(100% - 10px);
    border-radius: 5px;
    max-width: 220px;
    cursor: pointer;
	padding-top: 11px;
}

.selectHeure {
	background: #fff;
    border-radius: 4px;
    padding: 15px 25px;
    font-weight: 800;
	margin-bottom: 20px;
	cursor: pointer;
	-webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.45);
	box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.45);
	transition: all .5s ease 0s;
}

.selectHeure:hover {
	opacity: 0.8;
}

/* .selectHeure {border:2px solid #7FB4FF;-webkit-border-radius: 10;-moz-border-radius: 10; border-radius: 10px;position:relative; }

.selectHeure:hover {border:2px solid #0069FF;-webkit-border-radius: 10;-moz-border-radius: 10; border-radius: 10px;cursor:pointer} */

/*=====================================================
	Confirm RDV
======================================================*/

fieldset .wrap-legend {
	margin-bottom: 10px;
}

form[name="frmValidRdv"] fieldset {
	border: none;
	padding: 0;
}

form[name="frmValidRdv"] fieldset legend {
	width: 100%;
	background-color: #3f88cd;
    border-radius: 5px;
    font-family: 'Lemonmilk';
    color: #fff;
    letter-spacing: 3px;
    font-size: .9em;
    text-align: center;
	padding: 10px 15px;
	-webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.45);
	box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.45);
}

form[name="frmValidRdv"] .wrap-form {
	flex-wrap: wrap;
	background-color: #fff;
	padding: 25px;
	border-radius: 5px;
	-webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.45);
	box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.45);
}

form[name="frmValidRdv"] .wrap-form .col-33 {
	padding-left: 15px;
	padding-right: 15px;
}

fieldset label {
	display: block;
    width: 100%;
    font-size: 0.65em;
    font-weight: 800;
    font-family: 'Lemonmilk';
    margin-left: 10px;
}

form[name="frmValidRdv"] .model-veh {
	width: 50%;
	padding-right: 15px;
}

form[name="frmValidRdv"] .immat-veh {
	width: 50%;
	padding-left: 15px;
}


form[name="frmValidRdv"] .rowVdsVehicule {
	align-items: center;
    margin-top: 20px;
    font-family: 'Lemonmilk';
    font-weight: 800;
    font-size: .75em;
}

.rowVdsVehicule label {
	margin-right: 15px;
	font-size: 1em;
}

#divTxtCodePromo {
	display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.btnVerifierCode  {
	cursor: pointer;
	margin-left: 15px;
	border: none;
	padding: 15px 20px;
}

.btnValiderCoordonnee{    
	width: 300px;
    cursor: pointer;
    padding: 15px;
    font-size: 1.1em;
}

#divCodePromoInfoCum u.btn {
	display: inline-block;
	margin-left: 15px;
	margin-top: 10px;
}

#divCodePromoInfo .thePrice {
	margin-left: 10px;
}

#divCodePromoInfo #divPrix {
	margin-top: 15px;
	color: #000;
	font-size: 0.8em;
}

#divCodePromoInfo #divPrix .thePrice {
	width: 55px;
	height: 55px;
	line-height: 55px;
}

.divInfoObg{color: var(--red2);font-weight: 700;}

/* .btnValiderCoordonnee:hover{border:2px solid #000;cursor:pointer} */





/* ---------- */


/* .txtInDiv{position:absolute;top:25%;width:100%;text-align:center;font-weight:bold;overflow:hidden;font:20px arial;color:#0069FF;} */
/* .txtInDivDis{position:absolute;top:30%;width:100%;text-align:center;font-weight:bold;overflow:hidden;font:20px arial;color:#222;} */


.cssJrFerme{border:2px solid #767676;-webkit-border-radius: 10;-moz-border-radius: 10; border-radius: 10px;position:relative; width:100%;height:45px;background-color:#EFEFEF;}
.cssJrFermeTxt{position:absolute;top:30%;width:100%;text-align:center;font-weight:bold;overflow:hidden;font:20px arial;color:#767676; }


/* .btnSelectHeure { background-color:#0069FF;-webkit-border-radius: 10;-moz-border-radius: 10; border-radius: 10px;color:#fff;height:50px;width:50%;position:relative ; } */
/* 
.btnVerifierCode {border:2px solid #d90000; background-color:#d90000;-webkit-border-radius: 5;-moz-border-radius: 5; border-radius: 5px;color:#fff;padding:5px }
.btnVerifierCode:hover {border:2px solid #000000;cursor:pointer} */



#selectDate{border:1px solid #C5C9CC;-webkit-border-radius: 15;-moz-border-radius: 15; border-radius: 15px;background:#C5C9CC;font:15px arial;font-weight:bold;text-align:left;height:35px;text-align:center;width:200px}
#selectDate:hover{cursor:pointer;border:1px solid #d90000;-webkit-border-radius: 15;-moz-border-radius: 15; border-radius: 15px;background:#C5C9CC;font:15px arial;font-weight:bold;text-align:left;height:35px;text-align:center}

#selectDate{border:1px solid #C5C9CC;-webkit-border-radius: 15;-moz-border-radius: 15; border-radius: 15px;background:#C5C9CC;font:15px arial;font-weight:bold;text-align:left;height:35px;text-align:center;width:200px}

#selectDate:hover{cursor:pointer;border:1px solid #d90000;-webkit-border-radius: 15;-moz-border-radius: 15; border-radius: 15px;background:#C5C9CC;font:15px arial;font-weight:bold;text-align:left;height:35px;text-align:center}


.cellListingRdv{height:5px;width:100%;position:relative;border-bottom:1px solid #999999; cursor:pointer; }
.cellListingRdvVide{height:5px;width:100%;position:relative;border-bottom:1px solid #999999;cursor:pointer;  }
.cellListingRdvVide:hover{border-bottom:1px solid #000;background:#C5C9CC;  }
.codeCell0{background:#3399CC}
.codeCell1{background:#CCFF99}
.codeCell2{background:#FF99CC}
.codeCell3{background:#FFFF99}
.codeCell4{background:#DE69EF}






.clsImgEtat0{background-image: url(img/imgEtat.png);background-position: 0px 0px;background-repeat:no-repeat;width:20px;height:20px;}
.clsImgEtat1{background-image: url(img/imgEtat.png);background-position: 0px -20px;background-repeat:no-repeat;width:20px;height:20px;}
.clsImgEtat2{background-image: url(img/imgEtat.png);background-position: 0px -20px;background-repeat:no-repeat;width:20px;height:20px;}
.clsImgEtat3{background-image: url(img/imgEtat.png);background-position: 0px -20px;background-repeat:no-repeat;width:20px;height:20px;}
.clsImgEtat-1{background-image: url(img/imgEtat.png);background-position: 0px -40px;background-repeat:no-repeat;width:20px;height:20px;}



/*=====================================================
	Responsive
======================================================*/

@media screen and (max-width: 1023px) {  

	.container {padding: 0 25px; }

	/* header */
	.logo img { width: 290px; }

	/* index */
	.wrapPresta { height: auto; }
	div#rdv-160::before { transform: rotate(-45deg) scale(.22) translate(-611px, -736px); }
	.divTypePresta { width: 50%; padding-right: 15px; }
	.infoPresta { margin-top: 0; width: 50%; justify-content: right; }
	.btnSelectTypePresta { right: 25px; }

	/* confirmRDV */
	#divCodePromoInfo #divPrix { margin-bottom: 15px; }
	#divCodePromoInfoCum u.btn { margin-left: 0; display: block; max-width: 277px; }
}

@media screen and (max-width: 916px) {
	div#rdv-160::before { transform: rotate(-45deg) scale(.22) translate(-572px, -775px); }

}

@media screen and (max-width: 781px) {  

	/* header */
	#site-header .btn span { display: none; }
	#site-header .btn i { margin-right: 0; }
	#bandeau-promo { font-size: 1.6em; }

	/* index */
	.wrapPresta { padding-right: 75px; }
	
	/* confirm RDV */
	form[name="frmValidRdv"] .wrap-form .col-33 { width: 100%; margin-bottom: 15px; padding-left: 0; padding-right: 0; }
	form[name="frmValidRdv"] .wrap-form .col-33:nth-child(3) { margin-bottom: 0; }
	form[name="frmValidRdv"] .model-veh { width: 100%; padding-right: 0; margin-bottom: 15px; }	
	form[name="frmValidRdv"] .immat-veh { width: 100%; padding-left: 0; }

	/* footer */
	#main-footer #mf-row { flex-wrap: wrap; }
	#main-footer #mf-row a { margin: 0 auto; }
	#main-footer #mf-row > .row { width: 100%; margin-top: 20px; margin-bottom: 20px; }

}

@media screen and (max-width: 690px) {  

	.wrapPresta { position: relative; width: 100%; margin-bottom: 35px; padding-right: 25px; }
	.btnSelectTypePresta { right: 50%; transform: translateX(50%); bottom: -15px;  }
	.infoPresta { margin-top: 8px; margin-bottom: 15px; }
	#divPrix { margin-right: 0; min-width: 120px; }
	#divPrix .thePrice { font-size: 2em; width: 65px;height: 65px;line-height: 65px; }
	.bigTitle.has-btn { padding-left: 25px; }


	/* confirmRDV */
	form[name="frmValidRdv"] .wrap-form { padding: 25px 20px; }
	#divTxtCodePromo { display: block; }
	#divTxtCodePromo .btnVerifierCode { width: 100%; margin-left: 0; max-width: 283px; margin-bottom: 15px; }
	#textCodePromo { width: 100%!important; margin-bottom: 20px; }
	
}

@media screen and (max-width: 640px) {  
	* {
		box-sizing: border-box;
	}
	
	/* passer body (et tous les éléments de largeur fixe) en largeur automatique */

	/* body {
		width: auto;
		margin: 0;
		padding: 0;
	} */
	
	/* fixer une largeur maximale de 100% aux éléments potentiellement problématiques */

	img,
	table,
	td,
	blockquote,
	code,
	pre,
	textarea,
	input,
	iframe,
	object,
	embed,
	video {
		max-width: 100%;
	}
	
	/* conserver le ratio des images */

	img {
		height: auto;
	}
	
	/* gestion des mots longs */

	textarea,
	table,
	td,
	th,
	code,
	pre,
	samp {
		-webkit-hyphens: auto; /* césure propre */
		-moz-hyphens: auto;
		hyphens: auto;
		word-wrap: break-word; /* passage à la ligne forcé */
	}
	
	code,
	pre,
	samp {
		white-space: pre-wrap; /* passage à la ligne spécifique pour les éléments à châsse fixe */
	}
	
	/* Passer à une seule colonne (à appliquer aux éléments multi-colonnes) */

	.element1,
	.element2 {
		float: none;
		width: auto;
	}
	
	/* masquer les éléments superflus */

	.hide_mobile {
		display: none !important;
	}
	
	/* Un message personnalisé */

	/* body:before {
		content: "Version mobile du site";
		display: block;
		text-align: center;
		font-style: italic;
		color: #777;
	} */

	#main-content::before { background: #475a474f; }
	body { background-position: left top; }
	h1 { font-size: 1.8em; }
	h2 { font-size: 1em; }
	h3 { font-size: 1.1em; }

	.bigTitle.has-btn { padding-top: 25px; width: 100%; }
	.bigTitle.has-btn .btn { left: 20px; top: 0; transform: translateY(-50%); }


	#sh-address, #sh-phone span { display: none; }

	/* choix date */
	#headerChoixdate { padding-top: 20px; }
	#headerChoixdate #divPrix { width: 100%; justify-content: center; }
	#headerChoixdate h3 { text-align: center; width: 100%; padding: 0 10px; }
	#headerChoixdate .left { width: 100%; }
	#tabChoixDate .rowChoixDate .col-50.btn { width: 45%; }

	/* choix heure */
	#tabChoixHeure .wrapHour .btnSelectHeure { padding-left: 5px; padding-right: 5px; font-size: 0.7em; }

	/* footer */
	#main-footer { font-size: 0.9em; }
	#credits { font-size: 0.7em; }
}

@media screen and (max-width: 515px) {

	.container { padding: 0 15px; }

	#bandeau-promo { font-size: 1.4em; }

	/* index */
	.wrapPresta { padding-right: 5px; padding-left: 15px; }
	.libPrice { margin-right: 10px; font-size: 0.8em; }
	#divPrix { min-width: 95px; }
	#divPrix .thePrice { width: 50px; height: 50px; line-height: 50px; font-size: 1.6em; margin-right: 10px; }
	div#rdv-160::before { transform: rotate(-45deg) scale(.22) translate(-543px, -740px); }

	/* choix date */
	#headerTabChoixDate, #tabChoixDate .rowChoixDate { flex-wrap: wrap; }
	#headerTabChoixDate .col-33, #tabChoixDate .rowChoixDate .col-33 { width: 100%; margin-bottom: 10px; }
	#headerTabChoixDate .col-66, #tabChoixDate .rowChoixDate .col-66 { width: 100%; }

	/* footer */
	#main-footer #mf-row .row { flex-wrap: wrap; }
	#main-footer #mf-row .row > a { width: 100%; justify-content: center; margin: 5px 0; }
	ul#mf-nav { padding-top: 0; }

}  

@media screen and (max-width: 415px) {

	h1 { font-size: 1.6em; }
	h2 { font-size: 0.85em; }
	h3 { font-size: 1em; }
	#main-content > div >div > .row.center { flex-wrap: wrap; }

	/* header */
	.logo img { width: 200px; margin-top: 7.5px; margin-bottom: 7.5px; }
	#site-header #sh-phone { padding: 5px 10px; }
	#site-header #sh-phone i { font-size: 0.85em; }
	#bandeau-promo { font-size: 1.05em; }

	/* index */
	.libPrice { width: 100%; text-align: right; margin-bottom: 5px; }
	#divPrix { min-width: auto; }
	.btnSelectTypePresta { width: max-content; }
	.wrapPresta { padding-bottom: 15px; }
	div#rdv-160::before { transform: rotate(-45deg) scale(.22) translate(-553px, -729px); }


	/* choixDate */
	#headerChoixdate { margin-bottom: 30px; }
	#headerTabChoixDate { margin-top: 30px; }
	#headerTabChoixDate .selectJour, #headerTabChoixDate .selectJourC { padding-left: 10px; padding-right: 10px; }
	#tabChoixDate .rowChoixDate { padding-left: 0; padding-right: 0; }
	.label-selec { margin-top: 10px; margin-left: 0; width: 100%; }

	/* choixHoraire */
	#tabChoixHeure { margin-top: 30px; }
	#tabChoixHeure fieldset { padding: 20px 5px; }
	.selectHeure { margin-bottom: 10px; }
	#tabChoixHeure .wrapHour .btnSelectHeure { width: calc(100% - 10px); }

	/* confirmRDV */
	fieldset .wrap-legend { width: 100%; }
	form[name="frmValidRdv"] fieldset { margin-bottom: 20px; }
	.btnValiderCoordonnee { width: 100%; }

}

@media (max-device-width:768px) and (orientation: landscape) {
  html {
   -webkit-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
  }
}
