#dialogShadow {
  visibility: hidden;
  position: fixed;
  z-index: 200001; 
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  opacity: 0.3;
}
#dialogShadow.green {
  background-color: #00636E;
  opacity: 0.9;
}
#dialogBox {
  visibility: hidden;
  position: fixed;
  z-index: 200002;
  background-color: #ffffff;
  color: #666666;
  border: 1px solid #cccccc;
  border-radius: 8px;
  box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
  padding: 10px;
  top: 40%; 
  transform: translateY(-40%);
}
.farSide {
  text-align: right;
}
.dialogBoxSize-default {
  width: 60%;
  left:20%;
}
.dialogBoxSize-1 {
  width: 800px;
  left: calc((100% - 800px) / 2);
}
.dialogBoxSize-2 {
  width: 600px;
  left: calc((100% - 600px) / 2);
}
.dialogBoxSize-3 {
  width: 450px;
  left: calc((100% - 450px) / 2);
}
.dialogBoxSize-4 {
  width: 500px;
  left: calc((100% - 500px) / 2);
}
.dialogBoxSize-5 {
  width: 650px;
  left: calc((100% - 650px) / 2);
}
#dialogBoxMsg {
  margin:20px;
}
#dialogBoxMsg h1 {
  font-size: 1.5em;
}
#dialogBox button {
  min-width: 5em;
}
#dialogBoxCtrls {
  margin: 10px;
}

#interdictionBox {
  visibility: hidden;
  position: fixed;
  z-index: 200003;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  background-color: #0097A7;
}
#interdictionBoxContent {
  box-sizing: border-box;
  position: fixed;
  width: 100%;
  top: 50%; 
  transform: translateY(-50%);
  padding: 10px;
}
#interdictionBoxContent h1 {
	color: #ffffff;
	font-size: calc(2em + 1vw);
	font-weight: 700;
	text-transform: uppercase;
}
#interdictionBoxContent h1 .fas {
	font-size: calc(3em + 1vw);
	text-transform: none;
	opacity: 0.65;
}
#interdictionBoxContent h2 {
	color: #ffffff;
	font-size: calc(1em + 1vw);
	font-style: italic;
	opacity: 0.65;
	font-weight: normal;
}
.info-highlight {
	padding: 15px;
	background-color: rgba(127, 203, 211, 0.25);
	border-radius: 10px;
}	

/* GESTION TAILLE ECRAN */

@media only screen and (max-width: 500px) {
	body {
	 overflow: hidden !important;
	}

	#interdictionBox {
		visibility: visible;
  }
}