/* Partie diaporama */
#carroussel {
  position: relative;
  overflow: hidden;
}

#carroussel img {width: 100%;}

#carroussel .item {
  /* Les items sont tous cach├®s sur la droite du carroussel (hors du flux)*/
  position: absolute;
  width: 100%;
  top: 0;
  left: 100%;
  z-index: 100;
}

#carroussel .default {
  /* L'item par d├®faut permet de maintenir la hauteur du bloc carroussel */
  position: relative;
  left: 0;
  z-index: 200;
}

#carroussel .fa {
  /* forme g├®n├®rale des fl├¿ches de navigation */
  position: absolute;
  top: 42%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 60px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  z-index: 1000;
  cursor: pointer;
}

.fa-chevron-right {
  right: -30px;
  padding-left: 15px;
}

.fa-chevron-left {
  left: -30px;
  padding-right: 15px;
  text-align: right;
}
/* partie carte et formulaire réservation */
#carteResa {position: relative;}
#map {height:500px;}
#resa {padding: 10px; display: none;}
section {margin: 10px auto;}

/* Visuel de réservation */
#visuelResa img {
	display: none;
}

/* Partie signature */
#modal {
	text-align: center;
	position: absolute;
	top:50%; left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(204,204,204,0.8);
	width: 400px;
	height: 300px;
	padding: 10px;
	border-radius: 10px;
	display: none;
}

#modal canvas {
	border: 1px solid black;
	background-color:  #fff;
}

