@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;800&display=swap');

:root {
	--vertpale: #008CAA;
	--vertdark: #0C2313;
	--gris: #707070;
	--police: 'Open Sans', sans-serif;
}

html,
body {
height: 100%;
margin: 0;
padding: 0;
font-family: var(--police);
overflow:hidden;
}

h5, h6 {
  font-weight:300;
}

h6 {
	font-size: 0.75rem;
}


#map {
	height: 100%;
}

/* Éléments */

a {
	text-decoration: none;
	color: var(--vertpale);
}

a:hover {
	color: black;
}

h2 {
	text-transform: uppercase;
	font-weight: 800;
	font-size: 1.8rem;
}

p {
	font-size: 0.96rem;
	line-height: 1.5;
}

strong {
	font-weight: 600;
}


.toggle {
	position: relative;
	display: inline-block;
}

label.toggle-item {
	width: 3em;
	background: #2e394d;
	margin: 0.2rem auto 0;
	display: inline-block;
	border-radius: 50px;
	position: relative;
	transition: all .3s ease;
	transform-origin: 20% center;
	cursor: pointer;
}

label.toggle-item:before {
	content:"";
  display: block;
  transition: all 0.2s ease;
  width: 2.3em;
  height: 2.3em;
  top: 0.25em;
  left: 0.25em;
  border-radius: 2em;
  border: 2px solid #88cf8f;
  transition: 0.3s ease;
}

.transparent label {
	background: var(--vertpale);
	border: 3px solid #fff;
	height: 1.55rem;
}
.transparent label::before {
	border: 3px solid #fff;
	width: 0.7rem;
	height: 0.7rem;
	top: 0.25em;
	left: 0.35em;
	background: #fff;
	position: relative;
}

#transparent:checked + label:before {
  transform: translateX(1.3rem);
}

#transparent:checked + label {
  background: var(--vertdark);
}

/* Info vue actuelle */

.showDisplay {
	display: block;
}

.hideDisplay {
	display: none !important;
}

.infoVue {
	position: absolute;
	top: 6rem;
	left: 3rem;
	z-index: 999;
	background-color: #fffffff7;
	padding: 0.8rem 1.2rem;
	border-radius: 0.4rem;
	max-width: 25%;
}

.infoVue p {
	margin: 0rem;
	color: var(--vertpale);
	font-weight: bolder;
	font-size: 1.2rem;
}

.infoVue hr {
	border: 1px dashed var(--vertpale);
	margin: 0.25rem 0 0.8rem;
}

.infoVue span {
	font-weight: lighter;
	font-size: 0.8rem;
	line-height: 0.5rem;
}

.infoVue h4 {
	margin: 1rem 0 0.2rem 0;
	color: var(--vertpale);
	font-weight: initial;
}

.infoVue h6 {
	margin: 0;
	font-weight: normal;
}

.infoVue img {
	height: 1rem;
	vertical-align: sub;
	margin-right: 0.4rem;
}

/* Div pour sentier */

#infoSentier {
	position: absolute;
	z-index: 999999;
	padding: 0.4rem;
	background-color: white;
	display: none;
	font-size: 0.85rem;
	font-weight: bold;
	box-shadow: 0 0 0.4rem #00000024;
}


/* Quick */

.border-bottom {
	border-bottom: 1px lightgray solid;
}

.small {
	transform: scale(0.8);
}

.mr-1 {
	margin-right: 0.5rem !important;
}

.mr-2 {
	margin-right: 2rem !important;
}

.mr-3 {
	margin-right: 3rem !important;
}

.mr-4 {
	margin-right: 4rem !important;
}

.mt-1 {
	margin-top: 0.5rem !important;
}

.mt-2 {
	margin-top: 1.5rem !important;
}

.mt-4 {
	margin-top: 4rem !important;
}


/* Menu */

.menu-conteneur {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	z-index: 2;
	background-color: #fff;
	height: 5rem;
	justify-content: space-between;
}

.logo {
	width: 16.6666666666%;
	padding: 0rem 4rem;
	display: flex;
	align-items: center;
	height: 100%;
}

.logo img {
	max-height: 80%;
}

.slogan {
	background-color: #8DCE65;
	text-align: center;
}

.slogan img {
	max-width: 70%;
	padding: 1.2rem 0;
}

.filtres {
	height: 100%;
	background-color: white;
	padding: 0 2.5rem;
	display: flex;
	align-items: center;
}

#filtres {
	text-transform: uppercase;
	font-weight:800;
	cursor:pointer;
}

.filtres span i {
	margin-left:1rem;
	color: var(--vertpale);
	transition: 0.5s;
}

.legende {
	display:none;	
}

.rotation {
	transform: rotate(90deg);
	transition: 0.5s;
}

.filtres-menu {
	display: none;
	height: fit-content;
	background-color: white;
	position: fixed;
	right: 0px;
	top: 5rem;
	z-index: 3;
	max-width: 30%;
	border-radius: 0 0 0 0.4rem;
	box-shadow: -9px 10px 10px #0000000f;
}

.filtres-actifs {
	margin-left: 1rem;
	color: red;
}

.menu-item{
	padding: 1rem 2.5rem 2rem;
}

.filtres-menu h2 {
	font-size: 0.9rem;
	font-weight: 600;
}

.sc-all {
	font-size: 0.7rem;
	text-transform: initial;
	position: relative;
	margin-top: 0.8rem;
	margin-left: 0.5rem;
}

.sc {
	margin-top: 1.5rem;
}

.sc button {
	background-color: white;
	border: 1px solid var(--vertpale);
	border-radius: 0.5rem;
	padding: 0.4rem 0.8rem;
	font-size: 0.7rem;
	margin: 0.2rem;
}

.sc button:hover {
	background-color: var(--gris) !important;
	color: white;
	transition:0.3s;
}

.button-selected, .apply:hover, .sc_selected {
	background-color: var(--vertdark) !important;
	color: white;
	transition:0.3s;
}

.apply {
	background-color: var(--vertpale);
	color: white;
	border: none;
	border-radius: 0.5rem;
	padding: 0.5rem 1rem;
	text-transform: uppercase;
	font-weight: 300;
	font-size: 0.8rem;
	margin: 1rem 0;
}

.apply i {
	margin-left: 0.6rem;
}

.cancel  {
	margin-top: 1rem;
	background-color: var(--vertdark);
	color: white;
	border: none;
	border-radius: 0.5rem;
	padding: 0.5rem 0.8rem;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 0.69rem;
	display: inline-block;
}

.cancel:hover  {
	color:white;
}

/* Saisons */

.saison {
	display: flex;
	align-items: center;
	height: 100%;
}

.saison span {
	width: 2rem;
	border: 1px solid #7070703d;
	text-align: center;
	height: 2rem;
	display: flex;
	margin: 0 0.2rem;
	border-radius: 10rem;
	color: var(--gris);
}

.saison span:hover, .saison_active {
	transition: all 0.2s;
	background-color: var(--vertpale);
	color: white !important;
}

.saison span i {
	align-self: center;
	margin: 0 auto;
}

.saison span img {
	margin: 0.3rem;
}

.saison span img:hover, .saison_active img {
	filter: invert(100%); 
}

/* Grille */

.display {
	display: flex;
	align-items: center;
	background-color: white;
	text-align: center;
	height: 100%;
}

.display span {
	font-weight: 500;
	align-items: center;
	display: flex;
	margin: 0 0.67rem;
	font-size: 0.9rem;
}

.grid-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #018DAB99;
	display: none;
	z-index: 1;
}

.liste {
	position: relative;
	margin: 9rem auto;
	width: 57%;
	display: flex;
	flex-wrap: wrap;
	height: 71%;
	max-height: 71%;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}

.liste-item {
	width: 16%;
	margin: 0 1rem 2rem;
}

.liste-item img {
	width: 100%;
	border-radius: 1.3rem;
	margin-bottom: 0.4rem;
}

.liste-item i {
	font-size: 1.5rem;
	color: var(--vertpale);
	margin-right: 1rem;
}

.liste-item span {
	color: white;
	font-weight: 400;
	font-size: 0.8rem;
	position: relative;
	top: -0.1rem;
}

.membre p {
	font-size:1rem;
}


/* Info Window */

.imgLeft {
	float: left;
	width: 35%;
	min-height: 56vh;
	height: 100%;
	background-size: cover;
	border-radius: 1rem 0 0 1rem;
	text-align: center;
	background-position-x: center;
}

.logomembre {
	float: left;
	max-height: 41px;
	max-width: 41px;
	width: auto;
	height: auto;
	margin-right: 1rem;
}

.contentRight {
	float: right;
	width: 57%;
	padding: 1rem 2rem 0 0;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: initial;
}

.contentRight h1 {
	text-transform: uppercase;
	max-height: 6rem;
	overflow-y: auto;
	min-height: 4rem;
	width: 90%;
	margin: 0;
}
.contentRight p {
	font-size: 0.79rem !important;
	font-weight: 300;
}
.etiquette {
	padding: 0.18rem 0.85rem 0.21rem;
	font-size: 0.8rem;
	border-radius: 0.2rem;
	margin: 0.1rem 0.4rem 0.3rem 0px;
	display: inline-block;
	background-color: #ffffffba;
	color: black;
	text-transform: uppercase;
}
.IW-tags {
	position: absolute;
	left: 1rem;
	top: 1rem;
	width: 30%;
}
.IW-text {
	float: left;
	width: 56%;
	padding-right: 2rem;
	height: 15.5rem;
	overflow-y: auto;
}

.IW-text > * {
	margin: 0.5rem 0 0 0;
}

.IW-info {
	float: right;
	width: 37%;
	margin: -15% -3% 0 0;
	height: 20rem;
	overflow-y: auto;
}

.IW-info h4 {
	margin: 0 0 0.5rem 0;
}

.entretien {
	position: absolute;
	right: 0;
	width: 40px;
	height: 40px;
	padding: 1rem;
	font-size: 1.7rem;
	text-align: center;
}

.entretien-div {
	display: none;
	position: absolute;
	background: white;
	padding: 2rem;
	z-index: 999;
	width: 50%;
	left: 25%;
	top: 25%;
	box-shadow: 0 0 70px rgba(0,0,0,0.5);
	border-radius: 0.5rem;
}

.entretien-div i {
	position: absolute;
	top: 1rem;
	right: 1.3rem;
	font-size: 1.5rem;
	cursor: pointer;
}

.docs {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	background-color: #ffffffd6;
	padding: 0.5rem 1rem;
	border-radius: 0.2rem;
}

.docs h4 {
	margin: 0px;
}

.docs p {
	margin: 10px 0;
	font-size: 0.77rem;
	font-weight: 200;
}

/* Item grid */

.grid-item {
	width: 55% !important;
	height: 56% !important;
}

.marker {
	width: 1rem !important;
	margin: 0 0.4rem -0.11rem 0 !important;
}

/* À propos */

.imgLeftAP {
	float: left;
	width: 35%;
	min-height: 400px;
	height: 100%;
	background-size: cover;
	border-radius: 1rem 0 0 1rem;
	text-align: center;
	background-position-x: center;
}

.imgLeftAP img {
	width: 50%;
	margin: 2rem auto;
}

.aproposbutton {
	position: absolute;
	bottom: 3rem;
	right: 3rem;
	background: white;
	padding: 1rem 1.5rem;
	border-radius: 2rem;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	z-index: 2;
}

.aproposbutton i {
	margin-right:0.7rem;	
}

.apropos-conteneur {
	display:none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 3;
}

.apropos {
	width: 75%;
	margin: 11vh auto;
	background-color: white;
	z-index: 1000;
	display: block;
	height: 75%;
	border: 1px solid var(--gris);
	border-radius: 2rem;
	box-shadow: 0px 0px 11rem 300rem rgba(0,0,0,0.5);
	position:relative;
}

.apropos-close, .recherche-close {
	position: relative;
	color: white;
	border: 2px solid white;
	border-radius: 6rem;
	padding: 0.3rem 0.5rem;
	margin: -2rem;
	float: right;
	font-size: 0.6rem;
	cursor: pointer;
	display: flex;
}

.apropos-nav {
	margin-top: 3rem;
	border-bottom: 2px solid #70707038;
	padding-bottom: 0.7rem;
}

.apropos-nav div {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-right: 3rem;
}

.apropos-content {
	margin: 1rem -1rem 2rem 0;
	overflow-y: hidden;
	overflow-x:hidden;
}

#partenaires-div {
	height: 56vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

#partenaires-div img {
	width: 39%;
	margin: 0 1rem 1rem 0;
}

#coordonnees-div i {
	color: #b5b5b5;
	margin-right: 1.5rem;
}

.contact {
	position: absolute;
	bottom: 1rem;
}

.social i {
	color: black !important;
	font-size: 1.8rem;
	margin: 0.5rem 0;
}

.social img {
	height: 1.5rem;
	margin-right: 6px;
	vertical-align: sub;
}


.small-info {
	font-size: 1.3rem !important;
	margin-right: 10px !important;
}

/* Catégories */

.cat-cercle {
	width: 0.6rem;
	height: 0.6rem;
	display: inline-block;
	border-radius: 1rem;
	margin-right: 0.4rem;
	position: relative;
}

/* Galerie */

.galerie_wrapper {
	display:none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #0000009c;
	z-index: 2;
}

.galerie_container {
	width: 76%;
	height: 80%;
	background-color: #fffffff2;
	border-radius: 1.5rem;
	margin: 5vh auto;
	padding: 2rem 6rem;
	overflow-y: auto;
}

.galerie_close {
	float: right;
	font-size: 2rem;
	margin-top: -1rem;
	cursor: pointer;
	margin-right: -4rem;
}

#grid-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: masonry;
	gap: 10px;
	align-tracks: end;
}

.lightbox img {
	display: block;
	border: 0;
	width: 100%;
	height: auto;
}

.lightbox-container {
	display:none;
	position: absolute;
	width: 100vw;
	height: 100vh;
	background-color: #000000C2;
	top: 0;
	left: 0;
}

.lightbox-content {
	width: 60vw;
	height: 80vh;
	margin: 10vh auto;
	text-align: center;
}

.lightbox-content img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
}

.lightbox-close {
	top: 3.4rem;
	font-size: 2rem;
	right: 8rem;
	cursor: pointer;
	color: white;
	position: absolute;
}

/* Recherche */

.recherche-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0C23137D;
	display: none;
	z-index: 1;
}

.search-wrapper {
	position: fixed;
	bottom: 2rem;
	left: 3rem;
	width: 1rem;
	height: 2rem;
	background-color: white;
	border-radius: 2rem;
	padding: 0.3rem 1rem 0.25rem;
	text-align: center;
	transition: width 0.3s ease-in-out;
	z-index: 1;
}

.search-wrapper-active {
	transition: width 0.3s ease-in-out;
	width: 15rem;
}

.search-box input {
	display: none;
	border: 2px solid #fbfbfb;
	margin: 0px -0 0 0.6rem;
	border-radius: 0.26rem;
	font-family: var(--police);
	width: 57%;
	box-shadow: 0 0 0.13rem var(--gris);
	padding: 0.3rem 0.5rem;
	font-size: 0.8rem;
	float: left;
}

.search-box button {
	display: none;
	background-color: transparent;
	border: none;
	color: var(--vertpale);
	font-size: 1.2rem;
	margin: -0.2rem 0.4rem 0 0.2rem;
	position: relative;
	float: right;
}

.resetSearch {
	display: none;
	background-color: transparent;
	border: none;
	color: var(--gris);
	font-size: 1.2rem;
	margin: -0.2rem 0 0.2rem;
	position: relative;
	float: right;
}

.search-box i {
	float: left;
	padding-top: 0.53rem;
	cursor: pointer;
}

.recherche-titre h1, .recherche-titre h2 {
	margin: 0;
}

.search-close {
	position: fixed;
	right: 21rem;
	top: 8rem;
	font-size: 2rem;
	color: white;
	z-index: 1;
}


/* Google Maps Overwrite */

.gm-style .gm-style-iw-c {
	padding: 0px;
	box-shadow: 0 2px 7px 200rem rgba(0,0,0,0.3);
	overflow: inherit;
	font-weight: 300;
	font-size: 0.9rem;
	letter-spacing: 0.02rem;
	border-radius: 1rem;
	width: 54vw !important;
	max-width: 11% !important;
	height: 56vh;
}

.gm-style-iw-chr {
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	overflow: visible;
	position: absolute;
	width:100%;
}

.gm-ui-hover-effect {
	top: -2rem !important;
	right: -2rem !important;
	border: 2px solid white !important;
	border-radius: 2rem !important;
	display: flex !important;
	align-items: center;
	width: unset !important;
	height: unset !important;
}

.gm-ui-hover-effect span {
	display: flex !important;
	width: 18px !important;
	height: 18px !important;
	margin: 4px 4px 4px 3px !important;
}

.gm-ui-hover-effect img {
	pointer-events: none !important;
	display: block !important;
	width: 1.3rem !important;
	height: 1.3rem !important;
	margin: 0rem auto !important;
}

.gm-style-iw-d {
    overflow: hidden !important;
    height: 56vh !important;
}


/* Select 2 overwrite */

.select2-search__field {
	margin-top: 8px !important;
	margin-left: 9px !important;
	height: 21px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
	padding-left: 8px !important;
}

.select2-container--default .select2-selection--single {
	border: 1px solid var(--vertdark) !important;
	border-radius: 4px !important;
	padding: 1rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	margin-top: -0.8rem !important;
	padding-left: 0px !important;
	margin-left: -0.3rem  !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 33px !important;
	top: 1px !important;
	right: 8px !important;
	width: 23px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: var(--vertpale) transparent transparent transparent !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
	border: solid var(--vertdark) 1px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: gray !important;
	font-size: 0.8rem !important;
	font-weight: 200 !important;
}

.select2-container--default .select2-selection--multiple {
	border: 1px solid var(--vertdark) !important;
}

.select2-container .select2-search--inline .select2-search__field {
	width: 100%;
	color: #000 !important;
	font-size: 0.8rem !important;
	font-weight: 500 !important;
	font-family: var(--police);
	letter-spacing: -0.1px;
}

@media screen and (max-aspect-ratio: 1.55) and (min-width: 1101px) {
	.gm-style .gm-style-iw-c {
		width: 80vw !important;
	}
}

@media screen and (max-height: 840px) and (min-width: 1101px) {
	.IW-text {
		height: 10.5rem;
	}
	
}

@media screen and (max-height: 765px) and (min-width: 1101px) {
	.IW-text {
		height: 11.5rem;
	}
	
}

@media screen and (max-height: 735px) and (min-width: 1101px) {
	.IW-text {
		height: 10rem;
	}
}

@media screen and (max-height: 715px) and (min-width: 1101px) {
	.IW-text {
		height: 7.5rem;
	}
	.gm-style .gm-style-iw-c {
		width: 80vw !important;
	}
}

/* MOBILE */

@media screen and (max-width: 1100px) {

	.saison {
		position: inherit;
		bottom: 0;
		width: 100%;
		background-color: white;
		justify-content: center;
		height: fit-content;
		padding: 0.8rem 0;
	}

	.infoVue {
		top: 9rem;
		left: 1rem;
		border-radius: 0.4rem;
		max-width: 54%;
		display: none;
	}
	h2 {
		margin: 1rem 0;
	}
	.menu-conteneur {
		width: 100%;
		z-index:3;
	}
	.slogan {
		display:none !important;
	}
	.logo {
		height: 9vh;
		align-self: center;
		padding: 0 1.5rem;
	}
	.logo img {
		max-width: unset;
		max-height: 100%;
	}
	.display {
		width: 100%;
		font-size: 0.8rem;
		position: absolute;
		justify-content: center;
		top: 5rem;
		height: fit-content;
		background-color: #ffffffd4;
	}
	
	.legende {
		display: block;
		position: absolute;
		left: 1.5rem;
		color: var(--gris);
		cursor: pointer;
		font-size: 1rem;
	}
	
	.legende:hover, .legende:active {
		color: var(--vertpale);
	}
	
	.gm-style-iw-d {
		overflow: hidden !important;
		max-height: revert !important;
	}
	.apropos-conteneur {
		display: none;
		position: fixed;
		width: 90%;
		height: 86%;
		z-index: 5;
		background-color: white;
		-webkit-overflow-scrolling: touch;
		top: 7%;
		left: 5%;
		border-radius: 1rem;
		box-shadow: 0 0 1rem #757579a1;
	}
	.apropos-content {
		margin: 1rem -1rem 2rem 0;
		max-height: 15rem;
		overflow-y: auto;
	}

	.aproposbutton {
		right: 1rem;
		bottom: 5rem;
		z-index: 3;
		color: white;
		padding: 0px;
		background-color: var(--gris);
	}
	.filtres {
		padding: 0.65rem 1rem;
		text-align: center;
		height: initial;
		min-height: 33px;
	}
	.filtres-menu {
		z-index: 9;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		height: 70%;
		padding-bottom: 5rem;
		width: 100%;
		max-width: 100%;
	}
	.aproposbutton span {
		display:none;
	}
	.aproposbutton i {
		margin-right: 0;
		font-size: 1.5rem;
	}	
	.apropos-nav div {
		display: inline-block;
		font-size: 0.79rem;
		font-weight: 600;
		margin-right: 1rem;
	}
	#partenaires-div {
		height: unset;
		overflow-y: unset;
	}
	.select2-container .select2-search--inline .select2-search__field {
		text-align: center;
	}
	.apropos {
		width: 100% !important;
		margin: 0 auto;
		background-color: white;
		z-index: 1000;
		display: block;
		height: 100%;
		border: unset;
		border-radius: 0;
		box-shadow: unset;
	}
	
	.entretien {
		top: 4rem;
		right: 0rem;
	}
	.entretien-div {
		width: 80%;
		left: 2%;
	}
	.imgLeft {
		float: left;
		width: 35%;
		min-height: 8vh;
		height: 11rem;
		background-size: cover;
		background-position: center;
		top: 20rem;
		position: absolute;
		border-radius: 0;
		left: 1rem;
	}
	
	.imgLeftAP {
		width: 100%;
		height: 38%;
		min-height: unset;
		border-radius: unset;
		margin-top: 4rem;
		background-position-y: center;
	}
	.imgLeftAP img {
		height: 42%;
		width: unset;
		margin-top: 1.5rem;
	}
	
	.apropos-nav {
		position: absolute;
		top: -3.3rem;
		width: 100%;
		left: 0;
		text-align: center;
		background-color: white;
		height: 5vh;
		padding-top: 2rem;
	}
	.contentRight {
		float: right;
		width: 85%;
		padding: 0 1.5rem;
		font-family: 'Open Sans', sans-serif;
		letter-spacing: initial;
		margin: 0;
		height: 75%;
	}
	
	.contentRight h1 {
		font-size: 1.2rem;
		position: relative;
		width: 90%;
		top: 1rem;
		margin-bottom: 1.5rem;
	}	
	.docs {
		bottom: 4.8rem;
		transform: scale(0.8);
		left: -1rem;
	}
	.contact {
		position: absolute;
		bottom: -0.8rem;
		left: 8rem;
		transform: scale(0.85);
	}
	.caracteristiques {
		position: relative;
	}
	
	.apropos .contentRight {
		overflow-y: hidden;
		overflow-x: hidden;
	}
	
	#apropos {
		padding-bottom: 4rem;
	}
	.moreImg {
		position: relative;
		margin: 0;
	}
	.IW-text {
		width: 100%;
		height: 7rem;
		max-height: unset;
	}
	.IW-info {
		position: absolute;
		width: 53%;
		font-size: 80%;
		right: 0;
		top: 20rem;
		height: 5rem;
		margin: 0;
		padding: 0 1rem 1rem;
		overflow-y: auto;
	}
	.IW-info h4 {
		font-size: 1rem;
	}
	.IW-tags {
		top: 17.5rem;
		width: 100%;
		overflow-x: scroll;
		width: 92%;
		white-space: nowrap;
	}
	.etiquette {
		background-color: var(--vertpale);
		color: white;
	}
	.recherche-titre {
		margin: 3rem 1rem 2rem;
		color: white;
	}	
	.recherche-titre h1 {
		font-size: 1rem;
		text-transform: uppercase;
	}
	.recherche-titre h2 {
		font-size: 0.8rem;
	}
	.cancel {
		margin-top: 0.2rem;
		background-color: var(--vertdark);
		color: white;
		border: none;
		border-radius: 2rem;
		padding: 0.5rem 0.8rem;
		text-transform: uppercase;
		font-weight: 600;
		font-size: 0.69rem;
		display: inline-block;
	}
	.apropos-close {
		position: fixed;
		color: var(--gris);
		border: 2px solid #FFF;
		border-radius: 6rem;
		margin: unset;
		top: 0.5rem;
		font-size: 1rem;
		cursor: pointer;
		z-index: 4;
		right: 0.83rem;
		background-color: #fff;
		height: fit-content;
	}
	
	.grid-item {
		height: 100% !important;
	}
	
	.search-wrapper {
		bottom: 5rem;
		left: 1rem;
		z-index: 4;
		font-size: 0.9rem;
		padding: 0.15rem 0.6rem 0 0.7rem;
	}
	.search-box input {
		font-size: 0.74rem;
	}
	.recherche-close {
		position: absolute;
		top: 3rem;
		right: 3rem;
	}
	.search-close {
		position: fixed;
		right: 1rem;
		top: 13rem;
		font-size: 2rem;
		color: white;
		z-index: 1;
	}
	.gm-ui-hover-effect span {
		width: 2rem !important;
		height: 2rem !important;
	}
	#grid-container {
		grid-template-columns: repeat(1, 1fr);
	}
	.lightbox-content {
		width: 91vw;
		height: 80vh;
		margin: 15vh auto;
	}
	.lightbox-close {
		right: 2rem;
	}
	.galerie_close {
		color: black;
		z-index: 1;
		position: absolute;
		right: 7rem;
	}
}
@media screen and (max-width: 640px) {
	.menu-item {
		padding: 0.5rem 2rem 1rem;
	}
	.sc-all {
		display: none;
	}
	.sc {
		margin-top: 1rem;
	}
	.apply {
		margin-top: 1rem;
		background-color: var(--vertpale);
		color: white;
		border: none;
		border-radius: 2rem;
		padding: 0.5rem 1.3rem;
		text-transform: uppercase;
		font-weight: 600;
		font-size: 0.8rem;
	}

	.display span {
		top: -1.1rem;
	}
	.apropos-content {
		padding: 0;
	}

	label.toggle-item {
		width: 3.8em;
	}
	.transparent label::before {
		width: 0.8rem;
		height: 0.8rem;
	}
	.gm-style .gm-style-iw-c {
		width: 93vw !important;
		max-width: 93vw !important;
		height: 84vh;
		max-height: 84vh !important;
		overflow-y: auto;
		overflow-x: hidden;
	}
	.gm-ui-hover-effect {
		top: 1rem !important;
		right: 1rem !important;
		border: 2px solid white !important;
		border-radius: 2rem !important;
		background-color: white !important;
	}
	.galerie_container {
		width: 69%;
		margin: 5vh auto;
		padding: 1rem 2rem;
	}
	.galerie_close {
		color:white;
	}
}


	
@media screen and (max-width: 1100px) and (orientation: portrait) {
	.liste {
		margin: 9rem 3rem;
		width: 79vw;
		max-height: 67vh;
	}
	.liste-item {
		width: 39%;
	}
}
@media screen and (max-width: 1100px) and (orientation: landscape) {

	.infoVue {
		max-height: 10rem;
		overflow-y: auto;
	}
	
	.apropos-conteneur {
		height: 74%;
		top: 14%;
	}
	
	.apropos-close {
		top: 1rem;
	}
	
	.gm-style .gm-style-iw-c {
		width: 90vw !important;
		max-width: 11% !important;
		height: 68vh !important;
		max-height: unset !important;
	}
	
	.IW-text {
		position: relative;
		height: 9rem;
		max-height: unset;
		width: 60%;
		left: 14.5rem;
	}
	
	.imgLeft {
		position: absolute;
		top: 0rem;
		left: 0rem;
		height: 9rem;
		border-radius: 1rem 0 0 0;
		width: 25%;
	}
	.contentRight h1 {
		margin: 1rem 0 0 9em;
		top: unset;
		width:72%;
	}
	.contact {
		transform: scale(0.85);
		left: 1rem;
	}
	.entretien {
		top: -0.5rem;
		right: -1rem;
	}
	.docs {
		display: none;
	}
	.IW-info {
		position: absolute;
		width: 25%;
		left: 0.3rem;
		top: 9.3rem;
		height: 5.5rem;
		margin: 0;
		padding-right: 1rem;
		transform: scale(0.85);
	}
	.caracteristiques {
		margin: -1rem 0 0 10rem;
		margin-left: 14.5rem;
	}
	#transparent:checked + label::before {
		transform: translateX(0.75rem);
	}
	.liste {
		margin: 9rem 2rem;
		height: 44vh;
		max-height: 44vh;
		max-width: 92vw;
		width: 92vw;
		justify-content: center;
	}
	.contentRight {
		width: 94%;
	}
	.apropos .contentRight {
		overflow-y: auto;
	}
	.lightbox-close {
		top: 2.4rem;
		right: 1rem;
	}
	.imgLeftAP {
		width: 25%;
	}
	.apropos-content {
		position: absolute;
		top: 4rem;
		right: 2.5rem;
		width: 24rem;
		height: 62%;
		overflow-y: auto;
	}
}

@media screen and (max-width: 751px) and (orientation: landscape) {
	.contentRight h1 {
		margin: 1rem 0 1rem 9em;
	}
	.caracteristiques {
		margin-left: 11rem;
	}
	.IW-text {
		left: 11rem;
	}
}

@media screen and (max-width: 701px) and (orientation: landscape) {
	.contentRight h1 {
		margin: 1rem 0 1rem 9em;
	}
	.caracteristiques {
		margin-left: 11rem;
	}
	.IW-text {
		left: 11rem;
	}
}

@media screen and (max-width: 380px) {
	.liste-item {
		width: 81%;
	}
	
}
/* Raccourcis bootstrap */

.d-none {
	display:none;
	visibility:hidden;
}