/* PARTIES PRINCIPALES */

#selecteur-gauche {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 520px;
  height: auto;
  min-height: 100vh;
  box-shadow: inset 0 0 0 0px red;
}

#selecteur-droite {
  position: fixed;
  top: 0px;
  left: 490px;
  width: calc( 100vw - 490px );
  height: 100vh;
  background: url('../svg/icon-principal.svg') 90% top no-repeat, url('../svg/icon-principal.svg') 10% 110% no-repeat;
  background-size: 180px;
}

#contenu-webgl {
  position: fixed;
  top: 0px;
  left: 575px;
  width: calc(100% - 575px);
  height: 100%;
  overflow: hidden;
  /*background-color: rgba(0,0,0,0.025);*/
  /*background-image: url('../image/fond-image-selecteur.jpg');*/
  /*background-repeat: no-repeat;*/
  /*background-size: cover;*/
  /*background-position: center;*/
}

#loader-webgl {
  position: fixed;
  top: 50%;
  left: calc(300px + 50vw);
  width: 30%;
  height: 100%;
  overflow: hidden;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
 /* background-color: rgba(0,0,0,0.025);*/
}

/* TABLEAU */

#tableau-selecteur div {
	position: relative;
	border-radius: 0px;
	display: table;
	width: calc(100% - 80px);
	margin: 0px 40px;
	overflow: hidden;
	overflow: visible;
  border-left: 1px solid var(--color-gris-moyen);
  border-right: 1px solid var(--color-gris-moyen);
  border-top: 1px solid var(--color-gris-moyen);
  transition-duration: 0.4s;
}

#tableau-selecteur div:last-of-type {
  border-bottom: 1px solid var(--color-gris-moyen);
}

#tableau-selecteur div ul {
	display: table;
	table-layout: fixed;
	width: 100%;
	margin: 0;
}

#tableau-selecteur div ul li {
	display: table-cell;
	padding: 10px;
	text-align: center;
	vertical-align: middle;
}

#tableau-selecteur div.disponible ul li:first-of-type { background-color: var(--color-selecteur-dispo); }
#tableau-selecteur div.reservé ul li:first-of-type { background-color: var(--color-gris-clair); }
#tableau-selecteur div.loué ul li:first-of-type { background-color: var(--color-gris-clair); }

#tableau-selecteur div.disponible ul li:last-of-type p { color: var(--color-selecteur-dispo); }
#tableau-selecteur div.reservé ul li:last-of-type p { color: var(--color-gris-clair); }
#tableau-selecteur div.loué ul li:last-of-type p { color: var(--color-gris-clair); }

#tableau-selecteur div ul li.dl a img {
  display: inline-block;
  vertical-align: middle;
  opacity: 0.4;
  width: 1vw;
  transition-duration: 0.2s;
}

#tableau-selecteur div ul li.dl a:hover img {
  opacity: 0.7;
}

#tableau-selecteur div ul li p {
	font-family: "regular";
	font-size: 1vw;
	line-height: 1.2px;
	text-transform: uppercase;
}

#tableau-selecteur div ul li p b {
	font-family: "black";

}

#tableau-selecteur div ul li sup {
	font-family: "regular";
	font-size: 0.6vw;
  line-height: 0px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-style: normal;
}

/* SVG */

.cls-1 { fill: var(--color-gris-moyen); }
.cls-2 { fill: white; }
.cls-3 { fill: #c6c6c6; }
.cls-4 { fill: #fff; }
.cls-5 { fill: #706f6f; }

.cls-2.poly-dispo { fill: var(--color-selecteur-dispo) }
.cls-2.poly-reser { fill: var(--color-selecteur-reser) }
.cls-2.poly-vendu { fill: var(--color-selecteur-vendu) }

.cls-2 { opacity: 0; transition-duration: 0.8s; }
.cls-2.polyHover { opacity: 0.6; }
.cls-2.polyClick { opacity: 1; }

div.lot.lineHover { background-color: rgba(0,0,0,0.05); }
div.lot.lineClick { background-color: rgba(0,0,0,0.15); }
