.flexRow { display: flex; flex-direction: row; }
.flexColumn { display: flex; flex-direction: column; }

@media (max-width:600px) {
	.presentation-screen {
		margin-left: 0!important;
		margin-right: 0!important;
	}
}

.center-img {
	display: block; 
	margin-left: auto; 
	margin-right: auto; 
	width: 20%;

	margin-top: 20px; 
	margin-bottom: 20px;
}
.img-container { display: flex; width: 100%; }


.color-blue { color: #0099A9; }
.color-green { color: #dfdb01; }
.color-white-on-blue { background-color: #0099A9; color: white; border-radius: 50px; }
.color-black-on-gray { background-color: #f5f5f5; color: black; border-radius: 50px; }

.help-icon { color: #979594; }



.selection-input { padding-left: 5px;  padding-right: 5px; }
.selection-input-filled { cursor: pointer;  color: #0099A9;  font-weight: bold; }
/* .selection-select { width: 150px;  color: #0099A9;  font-weight: bold; background-color: white; } */
.selection-select { width: auto;  color: #0099A9;  font-weight: bold; background-color: white; }
.selection-select2 { width: 50px;  color: #0099A9;  font-weight: bold; background-color: white; }


.slider {
	-webkit-appearance: none;
	width: 100%;
	height: 10px;
	background: #f5f5f5;
	outline: none;
	opacity: 0.7;
	-webkit-transition: .2s;
	transition: opacity .2s;
	border-radius: 100px;
}
.slider:hover {
	opacity: 1;
}
.slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 25px;
	height: 25px;
	background: #0099A9;
	cursor: pointer;
	border-radius: 100px;
}
.slider::-moz-range-thumb {
	width: 25px;
	height: 25px;
	background: #0099A9;
	cursor: pointer;
	border-radius: 100px;
}


.modal-title { color:#0099A9; margin-left: 20px; }
.modal-list { overflow: auto; width: 100%; }


.list-title { font-size: 12px; font-weight: bold; }


/*


.section-full {
	display: flex; 
	flex-direction: column; 
	width: 100%;
}

.section-select {
	width: 150px; 
	color: #0099A9; 
	font-weight: bold;
	background-color: white;
}

.section-select2 {
	width: 50px; 
	color: #0099A9; 
	font-weight: bold;
	background-color: white;
}


.button-heater {
	font-size: 10px;
}





.slider {
	-webkit-appearance: none;
	width: 100%;
	height: 10px;
	background: #f5f5f5;
	outline: none;
	opacity: 0.7;
	-webkit-transition: .2s;
	transition: opacity .2s;
	border-radius: 100px;
  }
  
  .slider:hover {
	opacity: 1;
  }
  
  .slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 25px;
	height: 25px;
	background: #0099A9;
	cursor: pointer;
	border-radius: 100px;
  }
  
  .slider::-moz-range-thumb {
	width: 25px;
	height: 25px;
	background: #0099A9;
	cursor: pointer;
	border-radius: 100px;
  }


 .resultats-text {
	 border: 1px solid #0099A9;
	 border-radius: 10px;
	 padding: 10px;
	 width: 80%;
 }

 .resultats-tot {
	 color: #0099A9;
	 font-size: 50px;
	 margin: 10px;
 }

 .resultats-tot2 {
	color: #979594;
	font-size: 30px;
	margin: 10px;
}




.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
  }
  
  .switch input {
	opacity: 0;
	width: 0;
	height: 0;
  }
  
  .slider2 {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #979594;
	-webkit-transition: .4s;
	transition: .4s;
  }
  
  .slider2:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
  }
  
  input:checked + .slider2 {
	background-color: #0099A9;
  }
  
  input:focus + .slider2 {
	box-shadow: 0 0 1px #0099A9;
  }
  
  input:checked + .slider2:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
  }
  
  .slider2.round {
	border-radius: 34px;
  }
  
  .slider2.round:before {
	border-radius: 50%;
  }  */