/*
 * Header
 * -----------------------------
*/

@font-face {
    font-family: 'Map Roman';
    src: url('../fonts/MapRoman-Normal.woff2') format('woff2'),
        url('../fonts/MapRoman-Normal.woff') format('woff'),
        url('../fonts/MapRoman-Normal.svg#MapRoman-Normal') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Map Roman Normal';
    src: url('fonts/MapRoman-Normal.woff2') format('woff2'),
        url('fonts/MapRoman-Normal.woff') format('woff'),
        url('fonts/MapRoman-Normal.svg#MapRoman-Normal') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
  --white-grey: #F0F0F0;
  --light-grey-plus: #e9e8e7;
  --light-grey: #C5C5C5;
  --middle-grey: #585858;
  --dark-grey: #424242;
  --dark-grey-transp: #4242420a;
  --main-font-family: "Montserrat", serif;
  /*--title-font : 'Montserrat', serif;*/
  --title-font : 'Map Roman', serif;
}

html {
	background-color: var(--dark-grey);
	height: 100vh;
}


a {
	text-decoration: none!important;
}

strong {
	font-weight: 600;
}

header {
	position: fixed;
	left: 0px;
	top: 10px;
	right: 0px;
	z-index: 10;
	height: 0;
	background-color: rgba(240, 240, 240, 0);
	-webkit-transition: all 0.5s ease 0.5s;
	-moz-transition: all 0.5s ease 0.5s;
	-o-transition: all 0.5s ease 0.5s;
	transition: all 0.5s ease 0.5s;

}

body.page header {
	position: unset;
}

body.home header, body.home nav {
	width: 100vw;
	-webkit-transition: all 0.2s ease 0.25s;
	-moz-transition: all 0.2s ease 0.25s;
	-o-transition: all 0.2s ease 0.25s;
	transition: all 0.2s ease 0.25s;
}

header {
	height: 95px;
	color: var(--light-grey);
}

body.home header .navbar-brand, body.home header .menuheader {
	opacity: 0;
	width: 0px;
	overflow: hidden;
	-webkit-transition: all 0.2s ease 0.25s;
	-moz-transition: all 0.2s ease 0.25s;
	-o-transition: all 0.2s ease 0.25s;
	transition: all 0.2s ease 0.25s;
}

header.bg-white-grey {
  animation: slideDownFadeIn 0.3s ease-out forwards;
}

@keyframes slideDownFadeIn {
  from {
    top: 15px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

header.bg-white-grey, .bg-white-grey, body.page header {
	background: url('../img/Trame_WEB_10.png') center / 600px 600px;
	background-color: rgba(240, 240, 240, 0.8);
}

header  .navbar-brand {
	width: 75px;
}

.navbar-brand {
	width: 125px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.navbar-toggler, .navbar-toggler:focus {
  border: 0px solid var(--bs-navbar-toggler-border-color)!important;
}

button:focus:not(:focus-visible) {
  outline: unset!important;
}

.navbar-toggler i {
	color: var(--dark-grey);
	font-size: 24px;
}

.logo {
	height: 50px;
}

.menu-item {
	display: flex;
	align-items: center;
	width: fit-content;
}

.menu-item.current-menu-item {
	background-color: var(--dark-grey-transp);
	border-radius: 5px;
}

.menu-item.current-menu-item a, .menu-item.current-menu-item span, .text-white-grey {
	color: var(--dark-grey);
}

.menu-item a, .menu-item span {
	color: var(--dark-grey);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 10px 0px!important;
	text-align: center;
	display: inline-flex;
}

header nav .reseaux-sociaux li.apply-btn span{
	color: var(--light-grey);
}


.menu-item.current-menu-item a, .menu-item.current-menu-item span {
	color: var(--dark-grey);
	padding: 10px 25px!important;
}

.nav-item:last-of-type a, .menu-item:last-of-type a, .menu-item:last-of-type span {
  border-left: var(--noir) 0px solid;
}

.reseaux-sociaux {
	display: flex;
  z-index: 20;
  justify-content: flex-end;
  flex-direction: row-reverse;
  padding-left: 0px;
  width: 100%;
}

.reseaux-sociaux.rs-home {
	top: 32px;
	left: 0;
  position: absolute;
  flex-direction: row;
}

.text-grey-light {
	color: var(--white-grey);
}

.reseaux-sociaux.rs-home li:last-of-type {
	margin-right: 0;
}

#navcol-1 ul.reseaux-sociaux li {
	color: var(--dark-grey);
}

body.page .reseaux-sociaux.reseaux-sociaux-outside, body.page .reseaux-sociaux.rs-home {
  display: none;
}

header.bg-white-grey .menu-item a, header.bg-white-grey .menu-item span,
header.bg-white-grey nav .reseaux-sociaux li.apply-btn span,
body.page header nav .reseaux-sociaux li.apply-btn span {
	color: var(--dark-grey);
}

.reseaux-sociaux.reseaux-sociaux-outside li.apply-btn {
  background-color: rgba(240, 240, 240, 0);
}



.reseaux-sociaux li {
	margin-right: 30px;
	display: flex;
	align-items: center;
	cursor: pointer;
}


/*.reseaux-sociaux:not(.reseaux-sociaux-outside) li:not(.apply-btn) i {
	font-size: 23px;
}*/

.apply-btn, .reseaux-sociaux, .booking-steps {
	-webkit-transition: all 0.2s ease 0.7s;
	-moz-transition: all 0.2s ease 0.7s;
	-o-transition: all 0.2s ease 0.7s;
	transition: all 0.2s ease 0.7s;
}

.apply-btn.connected {
/*	min-width: fit-content;*/
	min-width: 205px;
	margin-right: 30px;
}

.apply-btn {
/*	min-width: fit-content;*/
	min-width: 160px;
	margin-right: 30px;
}

.apply-btn i {
	font-size: 19px;
	margin-left: 6px;
}

body.home .navbar-brand, body.home .menuheader, .navbar-toggler {
	opacity: 0;
	width: 0%;
	overflow: hidden;
	-webkit-transition: all 0.2s ease ;
	-moz-transition: all 0.2s ease ;
	-o-transition: all 0.2s ease ;
	transition: all 0.2s ease ;
}

.navbar-collapse.visible-car,.return-home.visible-car, #menu-header.visible-car {
	opacity: 1!important;
	width: 100%;
}

.navbar-toggler.visible-car {
	opacity: 1!important;
	width: 50px;
}

body.home .navbar-brand.visible-car {
	opacity: 1!important;
	width: 135px;
}

body.home .navbar-brand.visible-car {
	height: unset;
}

/* End of Header */


/*
 * Content
 * -----------------------------
 */

html, body {
/*  touch-action: pan-y; /* Désactive le scroll horizontal sur mobile */*/
}

html body {
	background-color: var(--white-grey);
	font-family: var(--main-font-family);
	color: var(--dark-grey);
}

html body.home {
	position: relative;
}

body.home {
	width: 100vw;
	height: 100vh;
	top: 0vh;
	bottom: 0vh;
	left: 0vw;
	right: 0vw;
  overflow: hidden;
	-webkit-transition: all 0.5s ease 0.5s;
	-moz-transition: all 0.5s ease 0.5s;
	-o-transition: all 0.5s ease 0.5s;
	transition: all 0.5s ease 0.5s;

}

body.home.go-left {
	left: 100vw;
	overflow-x: hidden;
	max-width: 100%;
  box-sizing: border-box;
}

body.home.go-right {
	left: -100vw;
	overflow-x: hidden;
	max-width: 100%;
  box-sizing: border-box;
}

body.home.go-down {
	top: -100vh;
	left: 0vw;
	right: 100vw;
	bottom: 200vh;
	overflow: hidden;
}

body.home.go-up {
	top: 100vh;
	left: 0vw;
	right: 100vw;
	bottom: 0vh;
	overflow: hidden;
}

body.page {
	background:
  url('../img/Trame_WEB_10.png') center / 600px 600px repeat fixed, var(--white-grey);
}

h1, h2, h3 {
	font-family: var(--main-font-family);
	text-transform: uppercase;
}

h2 {
	font-size: 20px;
	text-align: center;
	font-weight: 600;
}

h3 {
	font-size: 18px;
	text-align: center;
	font-weight: 900;
}

.home .mt-start {
	margin-top: 185px;
}

.mt-start {
	margin-top: 120px;
}

.txt-light-grey {
	color: var(--light-grey);
}

.bg-light-grey {
	background-color: var(--light-grey);
}

.text-dark-grey {
	color: var(--dark-grey);
}


/* BG Gris */
.whole-page-background-grey {
	position: fixed;
	top: 0vh;
	bottom: 100vh;
	left: 0vw;
	right: 100vw;
	width: 100vw;
	height: 100vh;
}

.whole-page-background-grey .part-white-grey {
	background: url('../img/Trame_WEB_10.png') center / 600px 600px repeat fixed;
	background-color: var(--white-grey);
	height: 0px;
}

.whole-page-background-grey .part-white-grey.page-content {
	height: 100vh ;
}

.whole-page-background-grey .part-dark-grey {
	background-color: var(--dark-grey);
	height: 0vh;
}

.whole-page-background-grey .part-middle-grey {
	background-color: var(--middle-grey);
	height: 100vh;
	position: relative;
  overflow: hidden;
}

.whole-page-background-grey .part-middle-grey video {
	position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100vw;
  min-height: 100vh;
  /*width: 150vw;*/
  /*height: 150vh;*/
  transform: translate(-50%, -50%);
  /*object-fit: cover;*/
  opacity: 0.5;
}

.whole-page-background-grey .part-middle-grey.page-content {
	height: calc(100vh - 500px) ;
}

.whole-page-background-grey .part-white-grey,
.whole-page-background-grey .part-middle-grey,
.whole-page-background-grey .part-dark-grey {
	-webkit-transition: all 0.15s ease 0.5s;
	-moz-transition: all 0.15s ease 0.5s;
	-o-transition: all 0.15s ease 0.5s;
	transition: all 0.15s ease 0.5s;
}


/* Contenus */
.whole-page {
	position: absolute;
	height: 100vh;
	width: 100vw;
	/*background: url('../img/Trame_WEB.png') center / 600px 600px repeat fixed;*/
	-webkit-transition: all 0.15s ease;
	-moz-transition: all 0.15s ease;
	-o-transition: all 0.15s ease;
	transition: all 0.15s ease;
}


/* Menu page entière */
.whole-page-menu {
	top: 0vh;
	bottom: 0vh;
	left: 0vw;
	right: 0vw;
}

.left-btn, .right-btn, .top-btn, .bottom-btn {
	cursor: pointer;
}

.flower-button {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-direction: column;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.flower-button div.arrow {
	height: 25px;
	width: 25px;
	transform: rotate(45deg);
}

.flower-button div.arrow.arrow-up, .flower-button div.arrow.arrow-left {
	border-top: 4px dotted var(--light-grey) ;
	border-left: 4px dotted var(--light-grey) ;
}

.flower-button div.arrow.arrow-right, .flower-button div.arrow.arrow-bottom {
	border-bottom: 4px dotted var(--light-grey) ;
	border-right: 4px dotted var(--light-grey) ;
}

.flower-button img {
	width: 100px;
}

.flower-button p {
	font-size: 10px;
	color: var(--light-grey);
	text-align: center;
	text-transform: uppercase;
	font-weight: 600;
}

.top-btn, .bottom-btn,.left-btn, .right-btn {
	position: relative;
	display: flex;
}

.top-btn, .bottom-btn {
	height: 25vh;
}

.left-btn, .right-btn {
	width: 25vw;
	align-items: center;
}

.center-logo {
	width: 50vw;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.center-logo h2 {
	font-family: var(--title-font);
	font-size: 17px;
  line-height: 1;
  text-align: center;
}

	.center-logo img {
		width: 80%;
	}

.top-btn {
	align-items: end;
	justify-content: center;
}

.go-sides {
	height: 50vh;
	position: relative;
	display: flex;
}

.left-btn .flower-button,
.right-btn .flower-button {
	transform: rotate(-90deg);
}

.left-btn {
	justify-content: end;
}

.bottom-btn {
	justify-content: center;
	align-items: flex-start;
}


.round-hover {
	height: 0vh;
  width: 0vh;
  background-color: var(--light-grey);
  border-radius: 0%;
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.15s ease;
	-moz-transition: all 0.15s ease;
	-o-transition: all 0.15s ease;
	transition: all 0.15s ease;
}

.left-btn .round-hover {
  left: -500vh;
}

.left-btn .flower-button {
  padding-bottom: 0px;
}

.left-btn:hover .round-hover {
	height: 300vh;
  width: 500vh;
  border-radius: 50%;
  left: -470vh;
  opacity: 0.05;
}

.left-btn:hover .flower-button {
  padding-bottom: 20px;
}

.right-btn .round-hover {
  right: -500vh;
}

.right-btn .flower-button {
  padding-top: 0px;
}

.right-btn:hover .round-hover {
	height: 300vh;
  width: 500vh;
  border-radius: 50%;
  right: -470vh;
  opacity: 0.05;
}

.right-btn:hover .flower-button {
  padding-top: 20px;
}

.bottom-btn .round-hover {
  bottom: -500vh;
}

.bottom-btn .flower-button {
  padding-top: 0px;
}

.bottom-btn:hover .round-hover {
	height: 300vh;
  width: 500vh;
  border-radius: 50%;
  bottom: -270vh;
  opacity: 0.05;
}

.bottom-btn:hover .flower-button {
  padding-top: 20px;
}

.top-btn .round-hover {
  top: -500vh;
}

.top-btn .flower-button {
  padding-bottom: 0px;
}

.top-btn:hover .round-hover {
	height: 300vh;
  width: 500vh;
  border-radius: 50%;
  top: -270vh;
  opacity: 0.05;
}

.top-btn:hover .flower-button {
  padding-bottom: 20px;
}

/* Home about */
.whole-page-about {
	overflow-y: scroll;
	overflow-x: hidden;
	top: 0vh;
	bottom: 100vh;
	left: -100vw;
	right: 0vw;
	height: 100vh;
}

/* Home Membership */
.whole-page-Membership {
	overflow-y: scroll;
	overflow-x: hidden;
	top: 0vh;
	bottom: 100vh;
	left: 100vw;
	right: 0vw;
	height: 100vh;
}

/* Home contact */
.whole-page-contact {
	overflow-y: scroll;
	overflow-x: hidden;
	top: -100vh;
	bottom: 100vh;
	left: 0vw;
	right: 0vw;
	height: 100vh;
}

/* Home booking */
.whole-page-booking {
	overflow-x: hidden;
	overflow-y: scroll ;
  top: 100vh;
  bottom: 100vh;
  left: 0vw;
  right: -100vw;
  height: 100vh;
}

.form-booking, .form-contact {
	padding: 0% 8.33333333% 8.33333333% 8.33333333%;
  color: var(--dark-grey);
  /*background-color: var(--dark-grey-transp);*/
  background-color: var(--light-grey-plus);
  border-bottom: 20px solid var(--light-grey);
  border-right: 20px solid var(--light-grey);
  border-radius: 5px;
  margin-bottom: 160px;
}

.form-contact {
	padding: 8.33333333%;
}

.form-booking form, .form-contact form {
	padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  position: relative;
  overflow: hidden;
}

.form-booking form input[type=radio], .form-contact form input[type=radio] {
	width: 0;
	height: 0;
}

.form-booking form .booking-steps input[type=radio] + label, .form-contact form .booking-steps input[type=radio] + label {
	margin-top: 30px;
	width: 100%;
	margin-right: var(--bs-gutter-x);
  background-color: var(--white-grey);
  color: var(--dark-grey);
  height: 100px;
  border-radius: 5px;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.15s ease;
	-moz-transition: all 0.15s ease;
	-o-transition: all 0.15s ease;
	transition: all 0.15s ease;
}

.form-booking form .booking-steps input[type=radio] + label:hover,
.form-booking form .booking-steps input[type=radio]:checked + label,
.form-contact form .booking-steps input[type=radio] + label:hover,
.form-contact form .booking-steps input[type=radio]:checked + label  {
	width: 100%;
  background-color: var(--dark-grey);
  color: var(--light-grey);
}

.form-booking form .booking-steps .label-select, .form-contact form .booking-steps .label-select {
	margin-right: 35px;
	color: var(--white-grey);
	font-weight: 600;
}

.acf-basic-uploader {
	display: flex;
	align-items: center;
}

.acf-basic-uploader .btn-for-file {
	display: inline-block;
	font-weight: 600;
	padding: 12px 20px;
	width: fit-content;
	margin-bottom: 0;
}

input[type=text],input[type=date],select,input[type=tel],input[type=email],input[type=number],input[type=password],.acf-field-google-map .acf-input .title input, .btn-for-file {
	height: 45px;
	color: var(--dark-grey);
	border-radius: 5px;
	background-color: white;
	width: 100%;
	margin-bottom: 20px;
	padding: 0 10px;
	border: 0;
}
.form-booking form .booking-steps input[type=date] {
	margin-top: 60px;
}
.form-booking form input[type=radio] + label:last-of-type {
	margin-right: 0;
}

.step-numbers {
	display: flex;
	height: 100px;
	opacity: 0;
}
.step-numbers.visible {
	opacity: 1;
}
.step-numbers li {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.step-numbers li div.fillet {
	height: 1px;
	background-color: #666;
	width: calc( 50% - 20px );
}
.step-numbers li div.step-number-x {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--title-font);
	font-size: 25px;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	background-color: #666;
	color: var(--white-grey);
}
.step-numbers li div.step-number-x.step-number-active {
	background-color: var(--light-grey);
}
.form-booking form .step-return, .form-booking form .next-step,
div.acf-form-submit input, button.button.button-secondary.activated, #wp-submit, button.login-submit,
.module-cta.module-cta-bloc-promo .box-cta .libelle {
	width: 100%;
	background-color: var(--dark-grey);
	font-weight: 700;
	text-transform: uppercase;
	height: 45px;
	margin-top: 25px;
	border: 0;
	color: var(--white-grey);
	border-radius: 5px;
}
button.button.button-secondary {
	width: 100%;
	background-color: var(--light-grey);
	font-weight: 700;
	text-transform: uppercase;
	height: 45px;
	margin-top: 25px;
	border: 0;
	color: var(--white-grey);
	border-radius: 5px;
}
.form-booking form .booking-steps .selecteur-date {
	background-color: var(--white-grey);
  border-radius: 5px;
  padding: 30px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  max-height: 450px;
  position: relative;
}

#caretop {
	color: var(--white-grey);
  font-size: 40px;
  width: 100%;
  height: 20px;
  text-align: end;
  padding-right: 10px;
}

#date-prev, #date-next {
	font-size: 23px;
	color: var(--dark-grey);
	position: absolute;
	top:30px;
	z-index: 50;
  border: 0;
  background-color: var(--white-grey);
}
#date-prev {
	left:60px;
}
#date-next {
	right:60px;
}
#date-prev:disabled, #date-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.form-booking form .booking-steps .selecteur-date .month {
	width: 100%;
	padding: 0 12px;
	position: relative;
	margin-bottom: 60px;
	display: none; /* Cacher tous les mois par défaut */
}
.form-booking form .booking-steps .selecteur-date div ul {
	display: flex;
}
.form-booking form .booking-steps .selecteur-date div ul li,
.form-booking form .booking-steps .selecteur-date div p.month-title
 { 
	height: 50px;
	width: 100%;
	position: relative;
	font-weight: 800;
	color: var(--dark-grey);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.form-booking form .booking-steps .selecteur-date div p.month-title {
	text-align: center;
	text-transform: uppercase;
	width: 100%;
}
.form-booking form .booking-steps .selecteur-date div ul li label {
	height: 50px;
	margin-top: 0px;
	position: absolute;
	top: 0;
	left: 0;
}
.form-booking form .booking-steps .selecteur-date div ul li label.faded {
	color: var(--light-grey);
}
.form-booking form .booking-steps .selecteur-date div ul li label.checked {
  background-color: var(--dark-grey);
  color: var(--light-grey);
}
.form-booking form .booking-steps .your-information {
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 60px;
}
.form-booking form .booking-steps .your-information input {
	width: 100%;
}
.form-booking form .booking-steps.booking-step-3 select {
	width: unset;
}

/* Modules */
.module-margin-small {
  margin-bottom: 0px;
}

.module-margin-medium {
  margin-bottom: 100px;
}

.module-margin-large {
  margin-bottom: 200px;
}

.module.module-texte, .module.module-images, .module.module-videos {
	color: var(--dark-grey);
	background: url('../img/Trame_WEB.png') center / 600px 600px repeat fixed;
	/*background-color: var(--middle-grey);*/
}

.contenu-custom p[style*="text-align"] {
  text-align: unset !important;
}

.custom-slider-arrows-outside .slick-next {
  right: 35px;
}

.custom-slider-arrows-outside .slick-prev {
  left: 35px;
}

.module.module-images .container .row .slide, 
.module-images-slider-full-size .module-slider-full .slide{
  width: 100%;
  height: auto;
  aspect-ratio: 27/20;
}

.module.module-images-texte .container .row .slide {
  width: 100%;
  height: auto;
  height: 500px;
}

.module-images-texte.module-66-images-33-texte .col-12,
.module-images-texte.module-33-images-66-texte .col-12 {
	 background-color: var(--light-grey-plus);
	 display: flex;
	 justify-content: center;
	 align-items: center;
}

.module-images-texte .contenu-module {
  padding: 35px 50px;
  background-color: var(--light-grey-plus);
}

.module-texte-titre-gauche-texte-droite h2 {
	text-align: left;
}

.module-texte-titre-gauche-texte-droite .col-11 .col-md-7 {
	border-left: 0px var(--middle-grey) solid;
	/*border-bottom: 1px var(--middle-grey) solid;*/
	padding-left: 0px;
	padding-bottom: 20px;
	/*margin-bottom: 40px;*/
}

.module-listes.module-listes-bloc .background-liste {
  background-color: var(--light-grey-plus);
  padding: 50px;
}

.module-listes.module-listes-bloc .background-liste .bloc-liste {
  border-bottom: 1px var(--middle-grey) solid;
  margin-bottom: 50px;
}

.module-listes.module-listes-bloc .background-liste .bloc-liste:last-of-type {
  border-bottom: 0px var(--middle-grey) solid;
  margin-bottom: 0px;
}

.module-listes.module-listes-bloc .background-liste .bloc-liste .icone {
  height: unset;
}

.module-listes.module-listes-bloc .background-liste .bloc-liste .icone i {
  font-size: 25px;
}

.module-listes.module-listes-bloc .background-liste .bloc-liste .texte {
  /*height: 40px;*/
  display: flex;
  align-items: center;
}

.module-listes.module-listes-bloc .background-liste .bloc-liste .titre-bloc {
  font-size: 18px;
}

.module-cta.module-cta-bloc-promo .box-cta .content {
  padding: 50px;
}

.module-cta.module-cta-bloc-promo .box-cta .overlay {
  background-color: var(--light-grey);
  opacity: 0.4;
}

.module-cta.module-cta-bloc-promo .box-cta .content .libelle, .module-cta.module-cta-bloc-promo .box-cta .content .abstract {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	color: var(--dark-grey);
	background-color: unset;
}

.module-faq.module-faq-accordeons .accordion .box-accordeon .titre-accordeon {
  font-size: 14px;
  font-weight: 600;
  background-color: var(--light-grey-plus);
  position: relative;
}

.module-faq.module-faq-accordeons .accordion .box-accordeon .contenu-accordeon h3 {
  text-align: left;
}

.module-faq.module-faq-accordeons .accordion .box-accordeon .contenu-accordeon ul.fa-ul {
  padding-left: 0px;
  flex-direction: column;
  display: flex;
}

.module-faq.module-faq-accordeons .accordion .box-accordeon .contenu-accordeon ul.fa-ul li {
  margin-bottom: 20px;
}

/*jquey ui datepicker*/
body.home .acf-ui-datepicker {
  z-index: 9999 !important;
  top: 100vh;
  position: absolute;
}

body.page-template-tpl-confirmation .acf-ui-datepicker {
  top: 0vh !important;
  position: fixed;
  height: 0vh !important;
  bottom: 100vh !important;
  left: 0px !important;
  right: 0px !important;
}

.ui-datepicker {
/*	width: 837px !important;*/
  margin-top: 15px;
  height: 450px;
  padding: 50px !important;
}

.ui-datepicker {
/*	width: 838px !important;*/
	left: 5vw !important;
  top: 20vh !important;
  padding: 20px !important;
  width: 90vw !important;
}

body .acf-ui-datepicker .ui-datepicker .ui-datepicker-header, 
body .acf-ui-datepicker .ui-datepicker thead tr th, body .acf-ui-datepicker .ui-datepicker-today .ui-state-highlight {
  border: none;
  background: white;
  color: var(--dark-grey);
  text-transform: uppercase;
  font-weight: 600;
}

body .acf-ui-datepicker .ui-datepicker tbody tr td, body .acf-ui-datepicker .ui-datepicker tbody tr td a {
	height: 50px;
	width: 25px;
}

body .acf-ui-datepicker .ui-datepicker tbody tr td a {
	display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600!important;
}

body .acf-ui-datepicker .ui-datepicker-today .ui-state-highlight {
  background: var(--light-grey) !important;
}

body .acf-ui-datepicker .ui-datepicker td .ui-state-active, body .acf-ui-datepicker .ui-datepicker td .ui-state-hover {
  background: var(--dark-grey);
}

.acf-ui-datepicker .ui-datepicker td .ui-state-active, .acf-ui-datepicker .ui-datepicker td .ui-state-hover {
  background: #007cba;
  color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*#ui-datepicker-div {
	background-color: white;
  border-radius: 5px;
  padding: 30px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}

.ui-widget-header {
  border: 0px solid #aaaaaa;
  background: unset;
  color: var(--dark-grey);
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.ui-state-default, .ui-widget-content .ui-state-default {
	width: 100%;
  background-color: white;
  color: var(--dark-grey);
  height: 50px;
  background: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 0px solid #d3d3d3;
}

.ui-state-default.ui-state-active {
	background-color: var(--dark-grey);
  color: white;
}

.ui-datepicker-buttonpane.ui-widget-content {
	display: none;
}*/

/*ACF Form*/
#acf-form .acf-fields {
	background: unset;
	border: unset;
	display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#acf-form .acf-fields > .acf-field {
  border-top-width: 0px;
  padding: 0px 0px;
  width: 100%;
}

#acf-form .acf-label label, .blocs-collection h3 {
  font-size: 22px;
  line-height: 2rem;
  font-weight: 600;
  margin-bottom: 21px;
  font-family: var(--main-font-family);
}

#acf-form .acf-field-radio.big-btn-list .acf-radio-list {
	display: flex;
	flex-direction: column;
}

#acf-form  .acf-field-radio.big-btn-list .acf-radio-list.acf-bl li {
	width: 100%;
	margin-top: 60px;
}

#acf-form  .acf-field-radio.big-btn-list .acf-radio-list.acf-bl li label {
  background-color: var(--dark-grey-transp);
  color: var(--dark-grey);
  height: 100px;
  border-radius: 5px;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

#acf-form  .acf-field-radio.big-btn-list .acf-radio-list.acf-bl li label:hover {
  background-color: var(--dark-grey);
  color: var(--light-grey);
}

#acf-form  .acf-field-radio.big-btn-list .acf-radio-list.acf-bl li:last-of-type label {
	margin-right: 0;
}

#acf-form  .acf-field-radio ul.acf-field-radio.big-btn-list .acf-radio-list:focus-within, #acf-form  .acf-field-radio ul.acf-checkbox-list:focus-within {
  border: 0px solid #A5D2E7;
}

#acf-form  .acf-field-google-map, #acf-form  .acf-field-google-map .acf-input, #acf-form  .acf-field-google-map .acf-input div {
	border-radius: 5px;
}

#acf-form  .acf-field-radio.big-btn-list .acf-radio-list.acf-bl li:first-of-type,
#acf-form  .acf-label, #acf-form  .acf-field-group > .acf-label,
#acf-form  .acf-field-google-map .canvas, span.acf-required {
	display: none;
}

#acf-form .acf-field-message {
	padding: 50px 0px 0px !important;
}

#acf-form .acf-field-message .acf-label {
	display: inline-block;
}

#acf-form .acf-field .acf-input, #acf-form .acf-field .acf-field-67d7df257368d, #acf-form .acf-field .acf-field-67d7df727368e {
  margin-bottom: 20px;
}

#acf-form .acf-field-67d41825bf09e, #acf-form .acf-field-67d41825bf09e .acf-label,#acf-form .acf-field-67d7df257368d, #acf-form .acf-field-67d7df257368d .acf-label,#acf-form .acf-field-67d7df727368e, #acf-form .acf-field-67d7df727368e .acf-label {
	display: flex;
	align-items: center;
}
#acf-form .acf-field-67d41825bf09e .acf-label, #acf-form .acf-field-67d41825bf09e .acf-input,
#acf-form .acf-field-67d7df257368d .acf-label, #acf-form .acf-field-67d7df257368d .acf-input,
#acf-form .acf-field-67d7df727368e .acf-label, #acf-form .acf-field-67d7df727368e .acf-input,
#acf-form .acf-field-google-map .acf-input .title input {
	margin-bottom: 0;
}
#acf-form .acf-field-67d41825bf09e .acf-label,
#acf-form .acf-field-67d7df257368d .acf-label,
#acf-form .acf-field-67d7df727368e .acf-label {
	margin-right: 20px;
}
#acf-form .acf-field-67d7df257368d .acf-label,
#acf-form .acf-field-67d7df727368e .acf-label {
	min-width: 150px;
	justify-content: end;
}
#acf-form .acf-field-67d41825bf09e .acf-input {
	width: 100%;
}
#acf-form .acf-field-67d7df257368d .acf-input,
#acf-form .acf-field-67d7df727368e .acf-input {
	width: 25%;
}
#acf-form .acf-field-67d41825bf09e .acf-label label,
#acf-form .acf-field-67d7df257368d .acf-label label,
#acf-form .acf-field-67d7df727368e .acf-label label {
	margin-bottom: 0;
	font-size: 15px;
}

.home #acf-form .acf-form-submit {
	padding-left: 10px;
}

.home .form-contact #acf-form .acf-form-submit {
	padding-left: 0px;
}

#acf-form .acf-field-group.sub-group {
	padding: 30px 0;
	border-top: 1px solid var(--light-grey);
	position: relative;
}

#acf-form .acf-field-group.sub-group .edit-button-container {
	position: absolute;
	top: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

#acf-form .acf-field-group.sub-group .edit-button-container .edit-button {
	font-size: 19px;
	color: var(--middle-grey);
	background-color: unset;
	border: 0;
}

/*#acf-form .acf-field-group.sub-group .acf-label , #acf-form .acf-field-group.sub-group .acf-fields .acf-field .acf-label, #acf-form .acf-field-group.sub-group .acf-fields .acf-field .acf-input {
	display: block;
	margin-bottom: 0;
}*/

#acf-form .acf-field-group.sub-group .acf-label label {
	font-size: 16px;
	text-transform: uppercase;
}

#acf-form .acf-field-group.sub-group .acf-fields .acf-field .acf-label label {
	text-transform: capitalize;
	font-weight: 700;
	margin-bottom: 0px;
}

#acf-form .acf-field-group.sub-group .acf-label , #acf-form .acf-field-group.sub-group .acf-fields .acf-field {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-bottom: 5px;
	margin-left: 0px;
}

#acf-form .acf-field-group.sub-group input[type="text"], #acf-form .acf-field-group.sub-group input[type="date"], #acf-form .acf-field-group.sub-group select, #acf-form .acf-field-group.sub-group input[type="tel"], #acf-form .acf-field-group.sub-group input[type="email"], #acf-form .acf-field-group.sub-group input[type="number"], #acf-form .acf-field-group.sub-group .acf-field-google-map .acf-input .title input {
  height: 30px;
  color: var(--dark-grey);
  border-radius: 5px;
  background-color: var(--light-grey);
  width: 100%;
  margin-bottom: 0px;
  padding: 0 10px;
  border: 0;
  margin-left: 10px;
}

.page-template-tpl-confirmation #acf-form .acf-label, .page-template-tpl-confirmation #acf-form .acf-input {
	margin: 0 0 3px 10px;
}

.page-template-tpl-confirmation #acf-form .acf-field-group.sub-group .acf-input,
.page-template-tpl-confirmation #acf-form .acf-field-group.sub-group .acf-input .acf-input-wrap,
.page-template-tpl-confirmation #acf-form .acf-field-group.sub-group .acf-input .acf-input-wrap span {
	display: flex;
	flex-direction: row;
	align-items: center;
	min-width: 250px;
	margin-left: 0px;
}

#acf-form .acf-field-group.sub-group .acf-fields .acf-field-textarea {
	flex-direction: column;
}

#acf-form .acf-field-group.sub-group .acf-field-textarea .acf-label label {
	display: none;
}

#acf-form .acf-field-group.sub-group .acf-field-textarea .acf-label p.description {
	color: var(--dark-grey)!important;
	font-weight: 600!important;
	margin: 15px 0 10px;
}

#acf-form .acf-field-group.sub-group .acf-field-textarea .acf-label,
#acf-form .acf-field-group.sub-group .acf-field-textarea .acf-input {
	width: 100%;
}

/*Contact form*/
.form-inter-title {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 20px;
}

.form-inter-content {
	margin-bottom: 50px;
	font-size: 14px;
	display: flex;
	flex-wrap: wrap;
}

.form-inter-content strong {
	font-weight: 600;
	text-transform: uppercase;
}

.form-inter-content a {
	color: var(--white-grey);
}

.form-inter-content div {
	width: 98%;
	margin-right: 2%;
	margin-bottom: 10px;
}

.form-inter-content div:last-of-type {
	margin-right: 0%;
}

/* Modal */
.modal {
	border-radius: 5px;
}

.modal .modal-body {
	color: var(--dark-grey)!important;
	background-color: var(--white-grey)!important;
	border-radius: 0 0 5px 5px;
}

/*.modal .modal-body h2 {
	text-align: center!important;
}*/

/*MODAL LOGIN*/
#connexion-modal .modal-content, #info-modal .modal-content {
	background-color: var(--dark-grey);
	color: var(--white-grey)!important;
}

#connexion-modal.modal .modal-body, #loginform, #info-modal.modal .modal-body {
	background-color: var(--middle-grey)!important;
	color: var(--white-grey)!important;
}

#loginform {
	margin-top: 20px;
}

#loginform .login-username label, #loginform .login-password label {
	display: none;
}

#loginform .login-submit p a, .span-title, #connexion-modal p.mt-3 a {
	color: var(--white-grey);
	font-weight: 600;
}

/*Modules About*/
.blocs-textimages, .blocs-collection {
	padding: 100px 0;
	background-color: #5858586b;
}

.blocs-textimages .container .row:nth-of-type(even) {
	flex-direction: row-reverse;
}

.blocs-textimages .container .row .bg-white-grey {
	padding: 115px 50px;
}

.blocs-textimages-img {
	min-height: 250px;
}

.slick-initialized .slick-slide.slide-vehicule {
	display: unset;
}

.blockColl-img, .blockColl-text {
	height: 600px;
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding: 30px;
}

.blockColl-img {
	/*height: 260px;*/
	border-radius: 5px;
	position: relative;
}

.blockColl-img .blockColl-text {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	justify-content: flex-end;
	background-color: var(--middle-grey);
}

.blockColl-text {
	border-radius: 0 5px 5px 0;
	color: var(--dark-grey);
	background-color: var(--light-grey-plus);
}

.blockColl-text p {
	margin-bottom: 10px;
}

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

.modal .slick-track, .modal .blockColl-img {
	height: 325px;
}

.modal .blockColl-img {
	border-radius: 5px 5px 0 0;
}

.fa-ul li {
	display: inline-flex;
}

.fa-ul li span:last-of-type {
	padding-left: 10px;
}

.fa-ul li span.fa-li i {
	font-size: 18px;
}

.prev-vehicule, .next-vehicule {
	display: flex;
	justify-content: center;
	align-items: center;
}

.prev-vehicule i, .next-vehicule i {
	font-size: 29px;
	color: var(--dark-grey);
}

/* Videos  */
.module-images-slider-mid-size video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.error-message {
	color: var(--dark-grey);
	text-transform: uppercase;
}

/* Cards */
.card-base {
	border-radius: 10px;
	aspect-ratio: 1.7;
	width: 90%;
	transition: transform 0.6s ease;
	box-shadow: 0px 3px 6px var(--dark-grey-transp);
}

.card-front {
	background-color: var(--light-grey);
	position: absolute;
	left: 0%;
	top: 13%;
}

.card-front.in-front, .card-back.in-front {
	z-index: 5;
}

.card-back {
	position: absolute;
	left: 0%;
	top: 13%;
  overflow: hidden;
}

.card-back p {
	font-size: 11px;
	line-height: 1.2;
}


/* pas de transition sur transform pendant l’anim */
.card-base { will-change: transform; }

/* phase 1 : aller au décalage */
.out-phase1 { animation: outHalf 0.3s ease forwards; }
.in-phase1  { animation: inHalf  0.3s ease forwards; }

/* phase 2 : retour à l'origine */
.out-phase2 { animation: backFromOut 0.3s ease forwards; }
.in-phase2  { animation: backFromIn  0.3s ease forwards; }

@keyframes outHalf      { from {transform: translate(0,0);}     to {transform: translate(-5%, 5%);} }
@keyframes inHalf       { from {transform: translate(0,0);}     to {transform: translate( 5%,-5%);} }
@keyframes backFromOut  { from {transform: translate(-5%, 5%);} to {transform: translate(0,0);} }
@keyframes backFromIn   { from {transform: translate( 5%,-5%);} to {transform: translate(0,0);} }


.card-back::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(240, 240, 240, 0.85); /* couleur et opacité du calque */
  pointer-events: none;
}

.card-back .row {
	z-index: 1;
  position: absolute;
}

.card-bkg {
	background-color: var(--dark-grey);
	float: right;
  margin-bottom: 15%;
}

.card-bkg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/Trame_WEB_10.png') center / 600px 600px;
  pointer-events: none;
}

.card-logo {
	display: flex;
	justify-content: center;
	align-items: end;
	/*width: 65%;*/
	padding-bottom: 5px;
}

.card-logo img {
	width: 20%;
}

.card-logo p {
	margin-top: 10px;
	margin-left: 10px;
	text-align: left!important;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 500;
}

.card-base ul.fa-ul {
	margin-left: 0;
}

.card-base.card-front li {
	display: inline-block;
	margin-top: 5px;
	font-size: 10px;
	line-height: 1.2;
}

.card-base.card-front li span.fa-li {
	padding-left: 0px;
	font-size: 15px;
}

.card-base.card-front li span.fa-li i {
	font-size: 15px;
}

.swap-cards {
	background-color: unset;
  border: 0;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  margin-top: 20px;
  color: var(--dark-grey)!important;
}



/* End of Content */


/*
 * Footer
 * -----------------------------
 */

footer {
	padding: 20px;
	width: 100vw;
  background-color: var(--dark-grey);
  color: var(--light-grey);
  z-index: 21;
  -webkit-transition: all 0.2s ease 1s;
	-moz-transition: all 0.2s ease 1s;
	-o-transition: all 0.2s ease 1s;
	transition: all 0.2s ease 1s;
}

body.page footer {
	width: 100vw;
  background-color: var(--dark-grey);
  color: var(--light-grey);
  position: unset;
}

footer.full-height {
	height: 130px;
}

footer .reseaux-sociaux {
	flex-direction: row!important;
	justify-content: start!important;
	padding-left: 0!important;
	flex-wrap: wrap;
}

footer .reseaux-sociaux li {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	border: 2px solid var(--light-grey);
	margin-right: 25px;
}

footer .reseaux-sociaux li:last-of-type {
	margin-right:0;
}

footer .reseaux-sociaux:not(.reseaux-sociaux-outside) li {
  margin-left: 0px;
  margin-right: 5px;
  margin-bottom: 5px;
}

footer .reseaux-sociaux:not(.reseaux-sociaux-outside) li:last-of-type  {
  /*margin-left: 0px;*/
  /*margin-right: 0px;*/
}

footer p {
	/*text-align: right;*/
	font-weight: 600;
	font-size: 13px;
}

footer .row-return {
	position: absolute;
	width: 100vw;
	top: -100px;
	left: -10px;
}

footer .menu-footer {
	display: flex;
	flex-direction: column;
}

footer .menu-footer a, footer .menu-footer .menu-item.current-menu-item a {
	color: var(--light-grey);
	padding: 10px 0px !important;
}

.return-home {
	opacity: 0;
  -webkit-transition: all 0.2s ease 0.5s;
  -moz-transition: all 0.2s ease 0.5s;
  -o-transition: all 0.2s ease 0.5s;
  transition: all 0.2s ease 0.5s;
  transform: rotate(-90deg);
/*  right: -92vw;
  top: 80vh;
  bottom: 0;
  position: absolute;
  z-index: 50;*/
  cursor: pointer;
}

body.page .return-home, .ui-datepicker-buttonpane.ui-widget-content, .acf-fields::after, .mejs-controls {
	display: none!important;
}

footer .store-links {
	position: relative;
	display: flex;
	align-items: center;
  justify-content: space-around;
  border-radius: 10px;
  padding: 10px;
  border: 1px var(--light-grey) solid;
  background-color: var(--dark-grey);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

footer .store-links i {
	font-size: 20px;
}

footer .store-links div.contents p {
	line-height: 1;
	border-right: 0;
}

footer .store-links div.contents p:first-of-type {
	font-size: 9px;
}

/* End of Footer */


/*
 * Media Queries
 * -----------------------------
 */

@media screen and (max-width: 1399px) {



}

@media screen and (max-width: 1199px) {



}

@media screen and (min-width: 767px) {

	.center-logo img {
		width: 180px;
	}

	#navcol-1 ul.reseaux-sociaux li {
		color: var(--light-grey);
	}

	.reseaux-sociaux {
	  width: unset;
	}

	.card-logo {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 65%;
	}

	.card-logo img {
		width: 70%;
	}

	.card-logo p {
		margin-top: 10px;
		text-align: center!important;
		text-transform: uppercase;
		font-size: 15px;
		font-weight: 500;
	}

	.card-back p {
		font-size: 14px;
		line-height: 1.2;
	}

	.card-base.card-front li {
		display: inline-block;
		margin-top: 5px;
		font-size: 14px;
		line-height: 1.2;
	}

}

@media screen and (min-width: 992px) {

	body.page {
		background:
	  url('../img/Trame_WEB_10.png') center / 600px 600px repeat fixed, linear-gradient(to bottom, var(--white-grey) 40.99vh, var(--middle-grey) 41vh);
	  background:
	  url('../img/Trame_WEB_10.png') center / 600px 600px repeat fixed, var(--white-grey);
	}

	h2 {
		font-size: 20px;
	}


	.logo {
		height: 60px;
	}


	.center-logo h2 {
		font-size: 20px;
	}

	.apply-btn {
		margin-right: 0px;
	}

	.reseaux-sociaux li:last-of-type {
		margin-left: 0px;
		margin-right: 0px;
	}

	.menu-item.apply-btn.current-menu-item a, .menu-item a, .menu-item span {
		padding: 10px 25px!important;
	}

	.menu-item.current-menu-item a, .menu-item.current-menu-item span {
		padding: 10px 25px!important;
		color: var(--dark-grey);
	}

	.reseaux-sociaux {
		display: flex;
	  z-index: 20;
	  flex-direction: row;
	  /*padding-left: 24px;*/
	  width: unset;
	}

/*	.reseaux-sociaux li i {
	  color: var(--white-grey);
	}*/

	header.bg-white-grey .reseaux-sociaux.mb-4 li i, body.page header .reseaux-sociaux.mb-4 li i {
	  color: var(--dark-grey);
	}

	.reseaux-sociaux:not(.reseaux-sociaux-outside) li {
	  margin-left: 30px;

	}

	.flower-button div.arrow {
		height: 40px;
		width: 40px;
		transform: rotate(45deg);
	}

	.flower-button p {
		font-size: 12px;
	}

	.top-btn, .bottom-btn {
		height: 15vh;
	}

	.left-btn, .right-btn {
		width: 15vw;
	}

	.center-logo {
		width: 70vw;
	}

	.go-sides {
		height: 70vh;
	}

/*	footer .reseaux-sociaux {
		justify-content: center!important;
	}*/

	footer .reseaux-sociaux:not(.reseaux-sociaux-outside) li {
	  margin: 5px;
	}

	footer .menu-footer {
		flex-direction: row;
		margin-right: 10px;
		justify-content: end;
	}

	footer .menu-footer a, footer .menu-footer .menu-item.current-menu-item a {
		padding: 10px 0px 10px 20px!important;
	}

	footer div:has(.menu-footer) p {
		padding: 0 10px;
		border-right: 1px solid white;
	}

	footer div:has(.menu-footer) p:last-of-type {
		border-right: 0px solid white;
	}

	.form-booking form .booking-steps input[type=radio] + label {
		margin-top: 60px;
	}

	.form-booking form .booking-steps .selecteur-date {
	  padding: 30px 60px 60px;
	  max-height: 490px;
	}

	.form-booking form .booking-steps .selecteur-date .month {
		width: 50%;
	}

	.form-booking form .booking-steps .your-information input {
		width: 49%;
	}

	.module.module-texte, .module.module-images, .module.module-videos {
		color: var(--dark-grey);
		background: url('../img/Trame_WEB.png') center / 600px 600px repeat fixed;
		/*background-color: var(--middle-grey);*/
	}

	.module-texte-titre-gauche-texte-droite h2 {
		text-align: right;
	}

	.form-inter-content div {
		width: 48%;
		margin-right: 2%;
		margin-bottom: 0px;
	}

	#acf-form .acf-field-radio.big-btn-list .acf-radio-list {
		flex-direction: row;
	}

	#acf-form .acf-field-radio.big-btn-list .acf-radio-list.acf-bl li label {
  	margin-right: var(--bs-gutter-x);
	}

	#acf-form .acf-field-67d7df257368d .acf-input,
	#acf-form .acf-field-67d7df727368e .acf-input {
		width: 10%;
	}

	body .acf-ui-datepicker .ui-datepicker tbody tr td, body .acf-ui-datepicker .ui-datepicker tbody tr td a {
	  width: 50px;
	}

	.acf-field-67d418ccbf0a0, .acf-field-67d418e6bf0a1, .acf-field-67d41917bf0a2, .acf-field-67d7df0e7368c, 
	#acf-form .acf-field-google-map, .acf-field-67d417fdbf09d, .acf-field-67d41776bf09c, .acf-field-67daa5b0a6029, .acf-field-67daa675a602a,
	.acf-field-6800ac9778cba, .acf-field-6800ac9778cef, .acf-field-6800ac9778d25, .acf-field-6800ac9778d5a, .acf-field-6800ae8955b67, .acf-field-6800ac9778e29,
	.acf-field-6800ac9778e5e, .acf-field-680760fb23ea2, .acf-field-681201580eef7, .acf-field-680760fb23ed8, .acf-field-680760fb23f0e, .acf-field-680760fb23f43, .acf-field-681201580ee20, .acf-field-681201580ee56, .acf-field-681201580ee8c, .acf-field-681201580eec1, .acf-field-681201580f037, .acf-field-681201580f06d {
		width: 49%!important;
	}

	.acf-field-67d7dfb37368f, .acf-field-67d7e03b73690, .acf-field-67d7e07973691, .acf-field-6800ac9778d90, .acf-field-6800ac9778dbd, .acf-field-6800ac9778df3, .acf-field-680760fb24019,
	.acf-field-680760fb2404e, .acf-field-680760fb24084, .acf-field-681201580ef97, .acf-field-681201580efcc, .acf-field-681201580f002 {
		width: 32%!important;
	}

	.acf-field-6800af0e55b68, .acf-field-6800af4955b69, .acf-field-681201580ef2c, .acf-field-681201580ef61 {
		width: 23.5%!important;
	}

	.ui-datepicker {
    left: calc(50% + 25vw) !important;
    top: calc(50% + 250px) !important;
    width: 50vw !important;
    padding: 50px !important;
	}

	.page-template-tpl-confirmation .ui-datepicker, .page .ui-datepicker {
    left: 25vw !important;
    top: 25vh !important;
	}

	.form-inter-content div {
		width: 23%;
		margin-right: 2%;
	}

	footer.full-height {
		height: 110px;
	}

	.slick-initialized .slick-slide.slide-vehicule {
		display: flex;
	}

	.blockColl-img, .blockColl-text {
		height: 600px;
	}

	.blockColl-img {
		/*height: 260px;*/
		border-radius: 5px 5px 0 0;
	}

	.blockColl-text {
		border-radius: 0 0 5px 5px;
	}

	footer .store-links:hover {
	  border: 1px var(--dark-grey) solid;
	  color: var(--dark-grey);
	  background-color: var(--light-grey);
	}

	/* Cards */
	.card-base {
		aspect-ratio: 1.7!important;
	}

	.card-base {
		border-radius: 10px;
		aspect-ratio: 0.5;
		width: 90%;
		transition: transform 0.6s ease;
		box-shadow: 0px 3px 6px var(--dark-grey-transp);
	}

	.card-front {
		background-color: var(--light-grey);
		position: absolute;
		left: 0%;
		top: 13%;
	}

	.card-front.in-front, .card-back.in-front {
		z-index: 5;
	}

	.card-back {
		position: absolute;
		left: 0%;
		top: 13%;
	  overflow: hidden;
	}


	/* pas de transition sur transform pendant l’anim */
	.card-base { will-change: transform; }

	/* phase 1 : aller au décalage */
	.out-phase1 { animation: outHalf 0.3s ease forwards; }
	.in-phase1  { animation: inHalf  0.3s ease forwards; }

	/* phase 2 : retour à l'origine */
	.out-phase2 { animation: backFromOut 0.3s ease forwards; }
	.in-phase2  { animation: backFromIn  0.3s ease forwards; }

	@keyframes outHalf      { from {transform: translate(0,0);}     to {transform: translate(-5%, 5%);} }
	@keyframes inHalf       { from {transform: translate(0,0);}     to {transform: translate( 5%,-5%);} }
	@keyframes backFromOut  { from {transform: translate(-5%, 5%);} to {transform: translate(0,0);} }
	@keyframes backFromIn   { from {transform: translate( 5%,-5%);} to {transform: translate(0,0);} }




	.card-back::after {
	  content: "";
	  position: absolute;
	  inset: 0;
	  background: rgba(240, 240, 240, 0.85); /* couleur et opacité du calque */
	  pointer-events: none;
	}

	.card-back .row {
		z-index: 1;
	  position: absolute;
	}

	.card-bkg {
		background-color: var(--dark-grey);
		float: right;
	  margin-bottom: 15%;
	}

	.card-bkg::after {
	  content: "";
	  position: absolute;
	  inset: 0;
	  background: url('../img/Trame_WEB_10.png') center / 600px 600px;
	  pointer-events: none;
	}

	.card-base ul.fa-ul {
		margin-left: 0;
	}

	.card-base li {
		display: inline-block;
		margin-top: 15px;
		font-size: 16px;
	}

	.card-base li span.fa-li {
		padding-left: 0px;
	}

	.swap-cards {
		margin-top: 0px!important;
	}



}



@media screen and (min-width: 1200px) and (max-width: 1399px) {



}

@media screen and (min-width: 992px) and (max-width: 1199px) {



}

@media screen and (min-width: 768px) and (max-width: 991px) {



}


/* End of Media Queries */