html { margin: 0px; overflow-x: hidden; }
body {
	margin: 0px;
	overflow-x: hidden;
	background-color: white;
}

html, body {
		height: 100vh;
		width: 100vw;
		overflow-y: auto;
}

html::-webkit-scrollbar, body::-webkit-scrollbar  { display: none !important; }
html, body { -ms-overflow-style: none !important; scrollbar-width: none !important; }

.mobilOnly { display: none !important; }
.mobilOnlyRow { display: none !important; }
.mobilSupr { display: default !important; }
.mobilCenter { text-align: default !important; }
.tableCellMobil { display: none !important; }

/* BLOC */

.bloc {
	flex: 0 0 auto;
	height: 100%;
	margin-right: 2vw;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.bloc-sous {
	display: flex;
	flex-direction: row;
	flex-grow: 1;
	margin-top: 2vw;
} .bloc-sous:nth-child(1) { margin-top: 0vw; }

.bloc-sous.principal-tier { flex: 0 0 calc(1*(100% / 3)); }
.bloc-sous.principal-deuxtier { flex: 0 0 calc(2*(100% / 3)); }
.bloc-sous.principal-demi { flex: 0 0 50%; }
.bloc-sous.principal-quart { flex: 0 0 25%; }
.bloc-sous.principal-troisquart { flex: 0 0 75%; }
.bloc-sous.principal-entier { flex: 0 0 100%; }

.bloc-sous-sous {
	display: flex;
	flex-direction: column;
	/*flex: 0 0 auto;*/
	flex-grow: 1;
	margin-left: 2vw;
	padding: 2vh 2vw;
} .bloc-sous-sous:nth-child(1) { margin-left: 0; }

.bloc-sous-sous.no-padding { padding: 0; }
.bloc-sous-sous.ah-center { align-items: center; }
.bloc-sous-sous.ah-right { align-items: flex-end; }
.bloc-sous-sous.av-center { justify-content: center; }
.bloc-sous-sous.av-bottom { justify-content: end; }

.hover { cursor: pointer; transition-duration: 0.4s; }

.bg-gris.hover:hover { box-shadow: inset 0 0 0 20px var(--color-projet-tonique); }
.bg-dispo.hover:hover { box-shadow: inset 0 0 0 20px var(--color-gris-fonce); }

/* BOX // WIDTH */
.entier {width: calc((100% / 1) - 0px); padding: 0px 0px; }
.demi {width: calc((100% / 2) - 0px ); padding: 0px 0px; }
.tier {width: calc((100% / 3) - 0px); padding: 0px 0px; }
.deuxtier {width: calc(2*(100% / 3) - 0px); padding: 0px 0px; }
.quart {width: calc((100% / 4) - 0px); padding: 0px 0px; }
.troisquart {width: calc(3*(100% / 4) - 0px); padding: 0px 0px; }

/* FONT // FAMILY */

.font-thin { font-family: 'SansThin', sans-serif; }
.font-light { font-family: 'SansLight', sans-serif; }
.font-regular { font-family: 'SansRegular', sans-serif; }
.font-bold, b { font-family: 'SansBold', sans-serif; }

.font-cap { text-transform: uppercase; }
.font-underline { text-decoration: underline; }
.font-italique { font-style: italic; }

.para-left { text-align: left; }
.para-justify { text-align: justify; }
.para-center { text-align: center; }
.para-right { text-align: right; }

/* ALIGNEMENT */
.vertical-align-top { vertical-align: top; }
.vertical-align-bottom { vertical-align: bottom; }

/* ESPACE VIDE */

.espace-vide-10 { height: 10px; width: 100%; }
.espace-vide-20 { height: 20px; width: 100%; }
.espace-vide-30 { height: 30px; width: 100%; }
.espace-vide-50 { height: 50px; width: 100%; }
.espace-vide-60 { height: 60px; width: 100%; }
.espace-vide-80 { height: 80px; width: 100%; }
.espace-vide-100 { height: 100px; width: 100%; }

/*BANDES IMAGES*/

.bande-20 { min-height: 20vh; }
.bande-30 { min-height: 30vh; }
.bande-40 { min-height: 40vh; }
.bande-50 { min-height: 50vh; }
.bande-70 { min-height: 70vh; }

/* BG */

.bg-img {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.bg-dispo { background-color: var(--color-projet-tonique); }
.bg-gris { background-color: var(--color-gris-fonce); }
.bg-light { background-color: var(--color-gris-moyen); }
.bg-verylight { background-color: var(--color-gris-light); }

.bg-gris p, .bg-dispo p { color: white; }

/* H */

p, h1, h2, h3, h4, h5, a {
	color: var(--color-gris-fonce);
	font-family: 'SansRegular', sans-serif;
	text-decoration: none;
}

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

h3 {
	font-family: 'Serif', serif;
	font-size: 5vh;
	line-height: 5.5vh;
}

h4 {
	display: inline-block;
	padding: 0 0 1vh 0;
	box-shadow: inset 0 -2px 0 0 white;
	font-family: 'SansBold', serif;
	text-transform: uppercase;
	font-size: 1.3vh;
	line-height: 1.3vh;
	letter-spacing: 0.05vw;
	color: white;
}

h5 {
	font-family: 'Serif', serif;
	font-size: 2.6vh;
	line-height: 3.4vh;
	color: white;
	margin: 2vh 0;
}

a.bt-noir, a.bt-classique, a.bt-white {
	display: inline-block;
	padding: 1vh 0;
	box-shadow: inset 0 -2px 0 0 var(--color-gris-fonce);
	margin: 1vh 1vw;
	font-family: 'SansBold', serif;
	text-transform: uppercase;
	font-size: 1.3vh;
	line-height: 1.3vh;
	letter-spacing: 0.05vw;
	transition-duration: 0.2s;
	cursor: pointer;
}

a.bt-noir:hover { box-shadow: inset 0 -4px 0 0 var(--color-gris-fonce); }

a.bt-classique {
	color: var(--color-projet-tonique);
	box-shadow: inset 0 -2px 0 0 var(--color-projet-tonique);
} a.bt-classique:hover { box-shadow: inset 0 -4px 0 0 var(--color-projet-tonique); }

a.bt-white {
	margin: 0 auto;
	color: white;
	box-shadow: inset 0 -2px 0 0 white;
} a.bt-white:hover { box-shadow: inset 0 -4px 0 0 white; }


p.identifier-legende {
	text-align: center;
	font-family: 'SansBold', serif;
	text-transform: uppercase;
	padding: 0 0 1vh 0;
}

p.identifier-legende span {
	display: inline-block;
	width: 1.1vh;
	height: 1.1vh;
	margin: 0 0 0.1vh 1vh;
	transform: rotate(-135deg);
	box-shadow: inset 0.3vh 0.3vh 0 0 var(--color-gris-fonce);
}

a.pre-selection {
	display: block;
	background-color: white;
	font-size: 1.1vh;
	line-height: 1.3vh;
	padding: 0.6vh;
	margin: 1vh 0;
	text-transform: uppercase;
	font-family: 'SansBold', serif;
	transition-duration: 0.4s;
	cursor: pointer;
	text-align: center;
} a.pre-selection:hover {
	background-color: var(--color-gris-clair);
}

a.pre-selection-legende {
	display: inline-block;
	font-size: 1.1vh;
	line-height: 1.3vh;
	padding: 0.6vh;
	margin: 0.5vh auto;
	text-transform: uppercase;
	font-family: 'SansBold', serif;
	transition-duration: 0.4s;
	cursor: pointer;
	text-align: center;
}

a.pre-selection-legende.un { background-color: #a6d1c6; }
a.pre-selection-legende.deux { background-color: #b3d1ac; }
a.pre-selection-legende.trois { background-color: #cbd3a7; }
a.pre-selection-legende.quatre { background-color: #e0d0a9; }
a.pre-selection-legende.cinq { background-color: #a3aa82; }

a.pre-selection-legende:hover {
	background-color: var(--color-gris-clair);
}

a.pre-selection-legende.disabled:hover {
	background-color: #e0d0a9;
	cursor: default;
}

p.temp {
	font-family: 'Serif', serif;
	font-size: 2vh;
	line-height: 2.5vh;
}

p.appt {
	text-transform: uppercase;
	font-size: 1.6vh;
	line-height: 2vh;
	text-align: center;
}

p.appt i {
	display: inline-block;
	text-transform: uppercase;
	font-size: 1.1vh;
	line-height: 1.3vh;
	text-align: center;
	font-family: 'SansBold', serif;
}

p.appt span.chiffre {
	font-family: 'Serif', serif;
	font-size: 4vh;
	line-height: 4.5vh;
}

p.contact {
	text-transform: uppercase;
	font-size: 1.3vh;
	line-height: 1.8vh;
	padding: 0.3vh 0;
}

p.contact img {
	display: inline-block;
	vertical-align: middle;
	height: 5vh;
}

.goto { cursor: pointer; }

p.legende {
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	padding: 0.4vh 0;
}

p.legende span {
	display: inline-block;
	vertical-align: middle;
	width: 3vh;
	height: 3vh;
	margin: 0 1vh 0 0;
	box-shadow: inset 0 0 0 0.3vh var(--color-gris-fonce);
}


a.bloc-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

/* STRUCTURE */

#structure-menu {
	position: absolute;
	display: flex;
	flex-direction: row;
	top: 0px;
	left: 10vw;
	width: 80vw;
	height: 15vh;
}

#structure-scroll {
	position: absolute;
	top: 15vh;
	left: 0vw;
	width: 100vw;
	height: 70vh;
	overflow-x: auto;
	display: flex;
	flex-wrap: nowrap;
	-ms-overflow-style: none !important;
	scrollbar-width: none !important;
}

#structure-ariane {
	position: absolute;
	bottom: 0px;
	left: 10vw;
	width: 80vw;
	height: 15vh;
}

/* READ */

.read {
	position: absolute;
	top: 50%;
	left: -200vw;
	background-color: var(--color-gris-fonce);
	width: 100vw;
	height: 70vh;
	transform: translate(-50%, -50%);
	transition-duration: 1s;
	z-index: 10;
}

.read.active {
	left: 50%;
}

.read .bt-close {
	position: absolute;
	top: 2vw;
	right: 2vw;
	width: 5vw;
	height: 5vw;
	cursor: pointer;
}

.read .bt-close span {
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: var(--color-projet-tonique);
	width: 80%;
	height: 2px;
	transition-duration: 0.4s;
}

.read .bt-close span:nth-child(1) { transform: translate(-50%,-50%) rotate(-45deg); }
.read .bt-close span:nth-child(2) { transform: translate(-50%,-50%) rotate(45deg); }

.read .bt-close:hover span:nth-child(1) { transform: translate(-50%,1000%) rotate(0deg); }
.read .bt-close:hover span:nth-child(2) { transform: translate(-50%,-1000%) rotate(0deg); }

ul.read-contenu {
	display: table;
	width: 100%;
	height: 100%;
}

ul.read-contenu li {
	display: table-cell;
	vertical-align: middle;
	padding: 4vw;
}

ul.read-contenu li:nth-child(1) {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

ul.read-contenu li:nth-child(2) {
	width: 60%;
	min-width: 500px;
}

ul.read-contenu li p {
	color: white;
	padding: 1vh 0;
}

ul.read-contenu li p.read-titre {
	font-family: 'Serif', serif;
	font-size: 4vh;
	line-height: 5vh;
	padding-right: 20%;
}

ul.read-contenu li p.read-texte {
	font-family: 'SansRegular', serif;
	font-size: 1.6vh;
	line-height: 2.8vh;
	padding-right: 10%;
}

ul.read-contenu li p.read-texte-petit {
	font-family: 'SansRegular', serif;
	font-size: 1.3vh;
	line-height: 1.8vh;
	padding-right: 10%;
	padding-bottom: 0;
	margin-bottom: 0;
}

ul.read-contenu li p.read-sitation {
	font-family: 'Serif', serif;
	font-size: 2.4vh;
	line-height: 3vh;
	padding-left: 40%;
	text-align: right;
	color: var(--color-projet-tonique);
}

ul.read-contenu li p.read-auteur {
	font-family: 'SansRegular', serif;
	font-size: 1vh;
	line-height: 2vh;
	letter-spacing: 0.5vh;
	color: var(--color-projet-tonique);
	text-align: right;
	text-transform: uppercase;
}

/* MENU PRINCIPAL */

ul#structure-menu-identite {
	position: relative;
	height: 100%;
	display: table;
}

ul#structure-menu-auteurs {
	position: relative;
	height: 100%;
	display: table;
	table-layout: fixed;
}

ul#structure-menu-identite li,
ul#structure-menu-auteurs li {
	display: table-cell;
	vertical-align: middle;
	padding: 1vh 1vw;
}

ul#structure-menu-identite li p span.separation,
ul#structure-menu-auteurs li p span.separation {
	display: inline-block;
	width: 2px;
	height: 3vh;
	background-color: var(--color-gris-fonce);
}

ul#structure-menu-identite li:nth-child(3) p {
	font-family: 'Serif', serif;
	font-size: 1.2vw;
	line-height: 1.6vw;
	padding-right: 8vw;
}

img.logo-principal {
	display: inline-block;
	width: 14vw;
}

ul#structure-menu-auteurs li {
	text-align: center;
}

ul#structure-menu-auteurs li:nth-child(1) {
	text-align: right;
}

ul#structure-menu-auteurs li p {
	position: relative;
	font-family: 'Serif', serif;
	font-size: 0.9vw;
	white-space: nowrap;
}

ul#structure-menu-auteurs li p img.picto-contact { width: 1vw; margin-bottom: 0.4vh; }
ul#structure-menu-auteurs li p img.logo-vente { width: 5vw; }
ul#structure-menu-auteurs li p img.logo-location { width: 6.5vw; }

ul#structure-menu-auteurs li span.titre {
	position: absolute;
	top: 0%;
	left: 50%;
	transform: translate(-50%, -100%);
	font-family: 'SansRegular', sans-serif;
	font-size: 0.5vw;
	line-height: 1.0vw;
	letter-spacing: 0.1vw;
	text-transform: uppercase;
	padding-bottom: 0.4vh;
}

/* ARIANE */

ul#structure-ariane-fil {
	position: absolute;
	display: table;
	width: 100%;
	table-layout: fixed;
	top: 50%;
	transform: translateY(-50%);
}

ul#structure-ariane-fil li {
	display: table-cell;
	text-align: center;
	cursor: pointer;
	vertical-align: middle;
	transition-duration: 0.4s;
}

ul#structure-ariane-fil li { box-shadow: inset 0 2px 0 0 var(--color-gris-light); }
ul#structure-ariane-fil li:hover { box-shadow: inset 0 4px 0 0 var(--color-gris-clair); }
ul#structure-ariane-fil li.active { box-shadow: inset 0 4px 0 0 var(--color-gris-fonce); }

ul#structure-ariane-fil li p {
	display: inline-block;
	font-family: 'Serif', serif;
	padding: 3vh 0;
	color: var(--color-gris-fonce);
	font-size: 1.2vw;
	line-height: 1.4vw;
}

/* DISPONIBILITE */

ul.disponibilite {
	display: inline-block;
	width: 90%;
}

ul.disponibilite li {
	text-align: center;
	padding: 0.3vh;
}

ul.disponibilite li p, ul.disponibilite li p a {
	color: white;
}

ul.disponibilite li:nth-child(1) p {
	font-family: 'SansBold', sans-serif;
	text-transform: uppercase;
	font-size: 1.6vh;
	line-height: 1.8vh;
	letter-spacing: 0.1vh;
}

ul.disponibilite li:nth-child(2) p {
	font-family: 'Serif', sans-serif;
	text-transform: uppercase;
	font-size: 4vh;
	line-height: 4.5vh;
} ul.disponibilite li:nth-child(2) p span {
	color: var(--color-projet-tonique);
	font-size: 5.5vh;
}

ul.disponibilite li:nth-child(3) p {
	font-family: 'SansBold', sans-serif;
	text-transform: uppercase;
	font-size: 1vh;
	line-height: 1.2vh;
	letter-spacing: 0.1vh;
}

ul.disponibilite a.bt-white {
	font-size: 1.2vh;
	line-height: 1.2vh;
	letter-spacing: 0.05vh;
}

/* ACTU */

#actualite h3 {
	display: inline-block;
	width: 90%;
	color: white;
	font-size: 3vh;
	line-height: 3.2vh;
	text-align: right;
}

#actualite ul {
	display: table;
	width: 90%;
}

#actualite ul li {
	display: table-cell;
	padding: 1.4vh 0 0.2vh 0;
	text-align: right;
}

#actualite ul li p {
	display: inline-block;
	font-family: 'SansBold', sans-serif;
	color: white;
	font-size: 1.2vh;
	line-height: 1.4vh;
	text-transform: uppercase;
	padding-bottom: 1vh;
	box-shadow: inset 0 -0px 0 0 white;
}

#actualite ul li a {
	color: var(--color-gris-fonce);
	display: inline-block;
	font-family: 'SansBold', sans-serif;
	font-size: 1.2vh;
	line-height: 1.4vh;
	text-transform: uppercase;
	padding-bottom: 1vh;
	box-shadow: inset 0 -2px 0 0 var(--color-gris-fonce);
	cursor: pointer;
	transition-duration: 0.2s;
} #actualite ul li a:hover { box-shadow: inset 0 -4px 0 0 var(--color-gris-fonce); }

/* FORMULAIRE CONTACT */

table.formulaire-contact {
	width: 100%;
	table-layout: fixed;
	vertical-align: middle;
}

table.formulaire-contact td {
	padding: 0.4vw;
	vertical-align: middle;
}

table.formulaire-contact td.credits { vertical-align: bottom; }

#contact p.credits {
	font-family: 'SansRegular', sans-serif;
	font-size: 0.6vw;
	line-height: 1vw;
}

#contact p.credits img { width: 2vw; }

table.formulaire-contact input,
table.formulaire-contact select,
table.formulaire-contact textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	height: 100%;
	padding: 10px 10px 20px 10px;
	width: calc(100% - 20px);
	border: none;
	font-size: 1.2vh;
	line-height: 1.6vh;
	font-family: 'SansRegular', sans-serif;
	box-shadow: inset 0 0 0 0px var(--color-gris-moyen);
	border-radius: 0px;
	background-color: var(--color-gris-light);
}

table.formulaire-contact select {
	padding: 7px 10px 19px 7px;
}


table.formulaire-contact select {
	width: 100%;
	text-transform: uppercase;
	letter-spacing: 1px;
	background-image: url('../svg/fleche-bas.svg');
	background-repeat: no-repeat;
	background-size: 10px;
	background-position: calc(100% - 10px) 50%;
	color: var(--color-gris-fonce);
}

table.formulaire-contact input[type="submit"] {
	border: none;
	box-shadow: inset 0 0 0 0px var(--color-gris-fonce);
	background-color: var(--color-projet-tonique);
	padding: 0;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 4px;
	padding: 15px 0px 15px 0px;
	width: calc(100% - 0px);
	color: white;
	cursor: pointer;
	font-family: 'SansBold', sans-serif;
	transition-duration: 0.4s;
}

table.formulaire-contact input[type="submit"]:hover {
	background-color: var(--color-gris-fonce);
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  opacity: 1; /* Firefox */
  font-family: 'SansRegular', sans-serif;
	text-transform: uppercase;
	color: var(--color-gris-fonce);
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
	text-transform: uppercase;
}

::-ms-input-placeholder { /* Microsoft Edge */
	text-transform: uppercase;
}

/* DISTANCES */

ul.distances {
	margin: 1vh 0;
}

ul.distances li {

}

ul.distances li p {
	text-align: center;
	text-transform: uppercase;
	font-size: 1.5vh;
	line-height: 2.0vh;
}

ul.distances li p b {
	font-family: 'SansBold', sans-serif;
}

.formulaire-contact-problemes p {
	text-align: center;
	color: var(--color-selecteur-vendu);
	padding: center;
	text-transform: uppercase;
	font-size: 1vh;
	line-height: 1.4vh;
	font-family: 'SansBold', sans-serif;
}

.formulaire-contact-envoi p {
	text-align: center;
	color: var(--color-projet-tonique);
	padding: center;
	text-transform: uppercase;
	font-size: 1vh;
	line-height: 1.4vh;
	font-family: 'SansBold', sans-serif;
}

/* LIVE */

a#bt-live {
	position: fixed;
	top: 20vh;
	left: 0;
	background-color: var(--color-gris-light);
	color: #b20f21;
	font-family: 'SansBold', sans-serif;
	text-transform: uppercase;
	font-size: 0.9vw;
	line-height: 1.1vw;
	padding: 0.8vw 2vw 0.8vw 1vw;
	box-shadow: 4px 0 0 0 #fff;
	animation: blinkShadow 1.2s infinite;
	transition-duration: 0.4s;
}

/* STOP l’animation au hover */

a#bt-live:hover {
	padding: 0.8vw 2.5vw 0.8vw 1.5vw;
}

@keyframes blinkShadow {
	0% { box-shadow: 4px 0 0 0 #fff; }
	50% { box-shadow: 4px 0 0 0 #b20f21; }
	100% { box-shadow: 4px 0 0 0 #fff; }
}

/* GALERIE IMAGE */

.galerie-image, #galerie-360 {
	position: fixed;
	top: 0px;
	width: 100vw;
	height: 100vh;
	z-index: 10000;
	transform: translateY(-200vh);
	transition-duration: 1s;
	background-color: var(--color-gris-fonce);
}

.galerie-image.open, #galerie-360.open {
	transform: translateY(0vh);
}

.galerie-image ul.images {
	position: absolute;
	display: block;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: var(--color-gris-fonce);
}

.galerie-image ul.images li {
	position: absolute;
	display: none;
	top: 0px;
	left: 0px;
	width: calc(100% - 0px);
	height: calc(100% - 0px);
	background-size: cover;
	background-position: center;
	background-color: var(--color-gris-fonce);
}

.galerie-image ul.images li.active { display: block; }

.galerie-image ul.vignettes {
	position: absolute;
	text-align: center;
	bottom: 5vh;
	left: 50%;
	display: table;
	width: auto;
	margin: 0 auto;
	height: 4vw;
	border: none;
	background-color: white;
	transform: translateX(-50%);
	padding: 3vh;
}

.galerie-image ul.vignettes li {
	position: relative;
	display: inline-flex;
	width: 4vw;
	height: 4vw;
	margin: 0;
	background-size: cover;
	background-position: center;
	transition-duration: 0.4s;
	cursor: pointer;
	border: none;
}

.galerie-image ul.vignettes li:before {
	position: relative;
	content: "";
	height : 0;
	width : 0;
	border-right : 15px solid transparent;
	border-bottom : 15px solid white;
	border-left : 15px solid transparent;
	top: 0%;
	left: 50%;
	transform-origin: center;
	transform: translate(-50%, -100%);
	opacity: 0;
	transition-duration: 0.5s;
}

.galerie-image ul.vignettes li:hover:before {
	opacity: 1;
	transform: translate(-50%, -100%);
	border-bottom : 15px solid var(--color-gris-fonce);
}

.galerie-image ul.vignettes li.active {
	box-shadow: inset 0 0 0 0.5vw var(--color-gris-fonce);
}

.galerie-image ul.vignettes li.active:before {
	opacity: 1;
	transform: translate(-50%, -95%);
	border-bottom : 15px solid var(--color-gris-fonce);
}

.galerie-image .bouton-avant, .galerie-image .bouton-apres {
	position: absolute;
	display: block;
	bottom: 5vh;
	width: 3vw;
	height: 7vw;
	cursor: pointer;
	background-color: white;
	transition-duration: 0.4s;
}

.galerie-image .bouton-avant:hover,
.galerie-image .bouton-apres:hover {
	width: 4vw;
}

.galerie-image .bouton-avant { left: 0px; }
.galerie-image .bouton-apres { right: 0px; }

.galerie-image .bouton-avant span,
.galerie-image .bouton-apres span {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1.5vw;
	height: 1.5vw;
	background-color: rgba(0,0,0,0);
	box-shadow: inset -4px -4px 0 0 var(--color-gris-fonce);
	transition-duration: 0.4s;
}

.galerie-image .bouton-avant span { transform: translate(-25%, -50%) rotate(135deg); }
.galerie-image .bouton-apres span { transform: translate(-75%, -50%) rotate(-45deg); }

div.bouton-close {
	position: absolute;
	top: 45vh;
	right: 0px;
	width: 5vw;
	height: 5vw;
	cursor: pointer;
	transition-duration: 0.4s;
	background-color: white;
}

div.bouton-close:hover {
	width: 7vw;
}

div.bouton-close span {
	position: absolute;
	display: block;
	background-color: var(--color-gris-fonce);
	width: 2vw;
	height: 4px;
	top: 50%;
	left: 50%;
	transition-duration: 0.4s;
}

div.bouton-close span:nth-child(1) { transform: translate(-50%, -50%) rotate(-45deg); }
div.bouton-close span:nth-child(2) { transform: translate(-50%, -50%) rotate(45deg); }
div.bouton-close:hover span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
div.bouton-close:hover span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

#galerie-360 #iframe-360 {
	width: 100%;
	height: 100%;
}

/* CODE */

div#code {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: auto;
	max-width: 400px;
}

div#code img.logo-code {
	display: inline-block;
	width: 100%;
	padding: 2vw 0;
}

form.pass input[type="password"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	height: 100%;
	padding: 10px 10px 20px 10px;
	width: calc(100% - 20px);
	border: none;
	font-size: 1.2vh;
	line-height: 1.6vh;
	font-family: 'SansRegular', sans-serif;
	box-shadow: inset 0 0 0 0px var(--color-gris-moyen);
	background-color: var(--color-gris-light);
	margin: 1vh 0;
}

form.pass input[type="submit"] {
	border: none;
	box-shadow: inset 0 0 0 0px var(--color-gris-fonce);
	background-color: var(--color-projet-tonique);
	padding: 0;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 4px;
	padding: 15px 0px 15px 0px;
	width: calc(100% - 0px);
	color: white;
	cursor: pointer;
	font-family: 'SansBold', sans-serif;
	transition-duration: 0.4s;
	margin: 1vh 0;
}

form.pass input[type="submit"]:hover {
	background-color: var(--color-gris-fonce);
}

/* GOOGLE */

.grecaptcha-badge {
	display: none;
}

/* POP-UP */

#pop-up {
	position: fixed;
	top: 50%;
	left: 50%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	padding: 4vh 5vw;
	background-color: white;
	z-index: 10000;
	text-align: center;
	box-shadow: 0 0 0 100vw rgba(0,0,0,0.4);
	transition-duration: 1s;
	transition-timing-function: ease-in-out;
}

#pop-up.close {
	top: -200vh;
	box-shadow: 0 0 0 0vw rgba(0,0,0,0.2);
}

.pop-titre {
	font-size: 1.8vw;
	line-height: 2.6vw;
	text-transform: uppercase;
	padding: 0.5vh 0;
	font-family: 'SansBold', sans-serif;
}

.pop-date {
	font-size: 1.6vw;
	line-height: 1.8vw;
	padding: 0.5vh 0;
	text-transform: uppercase;
}

.pop-adresse {
	font-size: 1.4vw;
	line-height: 1.6vw;
	padding: 0.5vh 0;
	text-transform: uppercase;
	color: var(--color-projet-corpo);
}

.pop-info {
	font-size: 1vw;
	line-height: 1.3vw;
	padding: 0.5vh 0;
	text-transform: uppercase;
}

#pop-up a {
	font-family: 'SansBold', sans-serif;
	cursor: pointer;
}

a.pop-up-close {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 3vw;
	height: 3vw;
	background-color: var(--color-projet-corpo);
}

a.pop-up-close span {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform-origin: center;
	width: 70%;
	height: 0.15vw;
	background-color: white;
}

a.pop-up-close span:nth-of-type(1) {
	transform: translate(-50%, -50%) rotate(-45deg);
}

a.pop-up-close span:nth-of-type(2) {
	transform: translate(-50%, -50%) rotate(45deg);
}
