body.selecteur { background-color: rgba(0,0,0,0); }

#contenu-visuel {
  position: fixed;
  width: 100vw;
  height: 100vh;
}

#contenu-webgl {
  position: fixed;
  top: 0px;
  left: 0px;
  width: calc(100% - 330px);
  height: 100%;
  overflow: hidden;
}

#loader-webgl {
  position: fixed;
  top: 0px;
  left: 0px;
  width: calc(100% - 200px);
  height: 100%;
  overflow: hidden;
  background-color: #f7f7f7;
}

#boite-survol {
  position: absolute;
  -ms-transform: translate(-50%, -140%);
  transform: translate(-50%, -140%);
  display: none;
}

#contenu-droite {
  position: absolute;
  right: 0px;
  height: auto;
  margin: 20px;
}

#contenu-navigation {
  position: fixed;
  width: 250px;
  top: 0px;
  z-index: 10000;
}

#contenu-navigation img {
  margin: 20px 0;
}

#contenu-navigation p a.bouton-retour {
  position: relative;
  text-transform: uppercase;
  font-size: 12px;
  font-family: 'bold', sans-serif;
  padding: 6px 10px 5px 10px;
  letter-spacing: 2px;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.8), inset 0px 0 0 0 #81b896;
  cursor: pointer;
  transition-duration: 1s;
}

#contenu-navigation p a.bouton-retour:hover { box-shadow: inset 0 0 0 2px rgba(0,0,0,0.8), inset 500px 0 0 0 #e6c54f; }

#contenu-client {
  position: fixed;
  width: 350px;
  height: 100px;
  bottom: 0px;
  background-image: url("../svg/logo-kempter-valimmobilier.svg");
  background-position: center;
  background-size: 80%;
  z-index: 1000;
}

/* LISTE LOT */

.lot {
  padding: 0px;
  transition-duration: .4s;
  cursor: pointer;
  margin: 10px 0;
  border: 2px solid rgba(0,0,0,0.8);
}

.lot:hover {
  margin: 20px 0;
}

.lot table.info-secondaire {
  display: none;
}

.lot.open table.info-secondaire {
  display: table;
}

.lot.dispo td.disponibilite { color: #81b896; }
.lot.reser td.disponibilite { color: #b69e3f; }
.lot.vendu td.disponibilite { color: #c90b19; }

.lot.dispo table.info-principal td.picto-fleche { background-color: #81b896; }
.lot.reser table.info-principal td.picto-fleche { background-color: #b69e3f; }
.lot.vendu table.info-principal td.picto-fleche { background-color: #c90b19; }

.lot table { width: 100%; }
.lot table sup { line-height: 0px; font-size: 8px; }

.hidePiece { display: none !important; }
.hideEtage { display: none !important; }
.hideRangePrix { display: none !important; }
.hideRangeSurface { display: none !important; }

table.info-principal td, table.info-secondaire td {
  width: auto%;
  height: auto;
  vertical-align: bottom;
  font-family: 'regular', sans-serif;
  font-size: 12px;
  line-height: 14px;
  padding: 7px 10px 6px 10px;
  text-transform: uppercase;
}

table.info-principal td.no-padding { margin: 0px; }

table td.br { border-right: 2px solid rgba(0,0,0,0.8); }
table td.bb { border-bottom: 2px solid rgba(0,0,0,0.8); }
table td.bt { border-top: 2px solid rgba(0,0,0,0.8); }

table.info-principal td.txt-lot { font-size: 10px; text-align: center; }

.lot table.info-principal td.picto-fleche {
  background-image: url('../svg/picto-select-down.svg');
  background-position: center;
  background-size: 20%;
}

.lot.open table.info-principal td.picto-fleche {
  background-image: url('../svg/picto-select-up.svg');
}

table.info-principal td.big {
  font-size: 16px;
}

table.info-secondaire td.titre {
  font-family: 'light', sans-serif;
  font-size: 10px;
}

table.info-secondaire td.data {
  text-align: right;
  font-size: 14px;
}

table.info-secondaire td.telechargements {
  text-align: center;
  font-size: 10px;
  line-height: 12px;
  background-color: rgba(0,0,0,0.2);
  transition-duration: 0.4s;
} table.info-secondaire td.telechargements:hover { background-color: rgba(0,0,0,0); }


/* BOITE SURVOL */

#boite-survol {
  position: fixed;
  left: 40vw;
  top: 40vh;
  background-color: rgba(255,255,255,0);
  z-index: 2000;
}

#boite-survol table {
  position: relative;
  width: 100%;
  text-align: center;
  font-family: 'light', sans-serif;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.8);
  background-color: rgba(255,255,255,1);
}

#boite-survol table sup { line-height: 0px; }
#boite-survol table td { padding: 5px 10px; }

#boite-survol table td.numero-lot {
  font-family: 'bold', sans-serif;
  font-size: 10px;
  border-bottom: 2px solid rgba(0,0,0,0.8);
  padding: 10px 0 5px 0;
  letter-spacing: 1px;
}

#boite-survol:after {
  content: "";
  display: block;
  position: relative;
  left: calc(50% - 1px);
  width: 2px;
  height: 20px;
  background-color: rgba(0,0,0,0.8);
}

#boite-survol:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -30px;
  left: calc(50% - 15px);
  width: 30px;
  height: 30px;
  background-color: red;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.8);
  background-image: url("../svg/picto-select-down.svg");
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
}

#boite-survol.dispo:before { background-color: #81b896; }
#boite-survol.reser:before { background-color: #b69e3f; }
#boite-survol.vendu:before { background-color: #c90b19; }

#boite-survol.dispo td.prix { color: #81b896; }
#boite-survol.reser td.prix { color: #b69e3f; }
#boite-survol.vendu td.prix { color: #c90b19; }

/* BOUTON BAS */

/*

ul#control-web-gl {
  position: absolute;
  display: table;
  text-align: center;
  bottom: 0px;
  margin: 40px;
  width: 100%;
}

ul#control-web-gl li {
  display: inline-flex;
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 50%;
  border: 8px solid white;
  box-shadow: inset 0 0 0 2px black;
  margin: 0 10px;
  transition-duration: 0.4s;
  background-position: center;
  background-repeat: no-repeat;
}

ul#control-web-gl li.turn-left, ul#control-web-gl li.turn-right { cursor: pointer; }
ul#control-web-gl li.turn-left:hover, ul#control-web-gl li.turn-right:hover { background-color: rgba(255,255,255,0.5); }

ul#control-web-gl li.turn-left { background-image: url('../svg/picto-selecteur-turn-left.svg'); background-size: 70%; }
ul#control-web-gl li.turn-right { background-image: url('../svg/picto-selecteur-turn-right.svg'); background-size: 70%; }
ul#control-web-gl li.rose-vents { background-image: url('../svg/picto-selecteur-rose-vent.svg'); background-size: 100%; }

*/

/* FILTRES */

a.bouton-filtres {
  display: block;
  position: relative;
  width: 100%;
  vertical-align: middle;
  text-align: center;
  font-family: 'bold', sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: center;
  background-color: white;
  padding: 14px 0 12px 0;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.8), inset 0px 0 0 0 #81b896;
  margin: 0 0 10px 0;
  transition-duration: 1s;
}

a.bouton-filtres:hover { box-shadow: inset 0 0 0 2px rgba(0,0,0,0.8), inset 2000px 0 0 0 #e6c54f; }

#zone-filtre {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  background-color: white;
  text-align: center;
  margin: 0 0 14px 0;
  padding: 10px 0 0 0;
  cursor: pointer;
}

#zone-filtre.hide { display: none; }

a.validation-filtres {
  display: block;
  position: relative;
  width: 100%;
  vertical-align: middle;
  text-align: center;
  font-family: 'bold', sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: center;
  background-color: white;
  padding: 14px 0 12px 0;
  margin: 20px 0 0 0;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.8), inset 0px 0 0 0 #81b896;
  transition-duration: 1s;
}

a.validation-filtres:hover { box-shadow: inset 0 0 0 2px rgba(0,0,0,0.8), inset 2000px 0 0 0 #e6c54f; }

ul#filtre-pieces, ul#filtre-etage {
  display: table;
  width: 100%;
  margin: 5px 0px;
  text-align: justify;
  border-left: 1px solid rgba(0,0,0,0.8);
  border-right: 1px solid rgba(0,0,0,0.8);
}

ul#filtre-pieces li, ul#filtre-etage li {
  display: table-cell;
  width: 33%;
  font-family: "bold", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: white;
  transition-duration: 0.4s;
  text-align: center;
  border-top: 2px solid rgba(0,0,0,0.8);
  border-bottom: 2px solid rgba(0,0,0,0.8);
  border-left: 1px solid rgba(0,0,0,0.8);
  border-right: 1px solid rgba(0,0,0,0.8);
}

ul#filtre-pieces li.titre, ul#filtre-etage li.titre { width: 25%; text-align: center; }
ul#filtre-pieces li.select, ul#filtre-etage li.select { text-align: center; }

ul#filtre-pieces li span, ul#filtre-etage li span {
  display: inline-block;
  position: relative;
  margin: 0px;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 10px 0;
  background-color: white;
  transition-duration: 0.4s;
} ul#filtre-pieces li:hover span, ul#filtre-etage li:hover span { background-color: rgba(0,0,0,0.1); }

ul#filtre-pieces li.active span, ul#filtre-etage li.active span {
  background-color: rgba(0,0,0,0.8);
  color: white;
}

/* SLIDER */

.titre-section {
  display: block;
  width: 100%;
  margin: 10px 0px 5px 0px;
  font-family: "regular", sans-serif;
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#slider-budget, #slider-surface {
  position: relative;
  width: 100%;
  height: 20px;
  margin: 5px 0px;
  background-color: rgba(0,0,0,0);
  border-radius: 0px;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.8);
}

.ui-widget.ui-widget-content {
  border: none !important;
}

.ui-slider-horizontal .ui-slider-range {
  background-color: rgba(0,0,0,0.8);
  border-radius: 0px;
}

.ui-corner-all {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active { border: none !important; background-color: white; box-shadow: inset 0 0 0 1px #575756;}
.ui-slider-horizontal .ui-slider-handle { top: 0px; }

.ui-slider-horizontal .ui-slider-handle {
  display: none;
  margin-left: 0px;
  width: 20px;
  height: 20px;
  top: 0px;
}
