/* Responsive Navigation styles begin here */

a {
  color: #00AEEB;
  font-family: Source Sans Pro, sans-serif;
  font-size: 1.0em;
  text-decoration:none;
}

h2 {
  font-family: Source Sans Pro, sans-serif;
  color:#00AEEB;
  font-size: 1.2em;
}

h1 {
  color: #000000;
  font-family: Source Sans Pro, sans-serif;
  font-size: 2.5em;
}

select{
  margin:10px;
  padding-left:10px;
  padding-right:10px;
  border-radius:20px;
  border:2px solid #00AEEB;
  box-shadow: 2px 2px 4px #000;
  font-family: Source Sans Pro, sans-serif;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  color:#00AEEB;
}

.inputliste{
  margin:10px;
  padding-left:10px;
  padding-right:10px;
  border-radius:20px;
  border:2px solid #00AEEB;
  box-shadow: 2px 2px 4px #000;
  font-family: Source Sans Pro, sans-serif;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  color:#00AEEB;
}

.texteStandard {
  color: #000000;
  font-family: Source Sans Pro, sans-serif;
  font-size: 2em;
}

.texteStandardBleu {
  color: #00AEEB;
  font-family: Source Sans Pro, sans-serif;
  font-size: 1.2em;
}

.texteStandardsmall {
  color: #000000;
  font-family: Source Sans Pro, sans-serif;
  font-size: 1.2em;
}

.inputsaisie{
  margin:10px;
  padding-left:10px;
  padding-right:10px;
  border-radius:20px;
  width:80%;
  border:2px solid #00AEEB;
  font-family: Source Sans Pro, sans-serif;
  font-size: 1.6em;
  color:#00AEEB;
  font-weight: bold;
  text-decoration: none;
}

.inputsaisiesmall{
  margin:10px;
  padding-left:10px;
  padding-right:10px;
  border-radius:20px;
  width:80%;
  border:2px solid #00AEEB;
  font-family: Source Sans Pro, sans-serif;
  font-size: 1em;
  color:#00AEEB;
  font-weight: bold;
  text-decoration: none;
}

.inputsaisiesmall1{
  margin:10px;
  padding-left:10px;
  padding-right:10px;
  border-radius:20px;
  width:80%;
  border:2px solid #00AEEB;
  font-family: Source Sans Pro, sans-serif;
  font-size: 0.7em;
  color:#00AEEB;
  font-weight: bold;
  text-decoration: none;
}

.inputbouton{
  margin:10px;
  border-radius:20px;
  border:2px solid #00AEEB;
  background-color: #00AEEB;
  font-family: Source Sans Pro, sans-serif;
  font-size: 1.2em;
  color:#FFF;
  font-weight: bold;
  text-decoration: none;
  cursor:pointer;
}

.textebouton{
  margin:auto;
  padding-left:10px;
  padding-right:10px;
  width:160px;
  border-radius:20px;
  border:2px solid #00AEEB;
  background-color: #00AEEB;
  font-family: Source Sans Pro, sans-serif;
  font-size: 1.2em;
  color:#FFF;
  font-weight: bold;
  text-decoration: none;
  cursor:pointer;
}

.inputboutoncrit{
  margin:10px;
  border-radius:20px;
  border:2px solid #E85B5B;
  background-color: #E85B5B;
  font-family: Source Sans Pro, sans-serif;
  font-size: 1em;
  color:#FFF;
  font-weight: bold;
  text-decoration: none;
  cursor:pointer;
}

.buttontransparent {
  background-color: Transparent;
  background-repeat:no-repeat;
  border: none;
  cursor:pointer;
  overflow: hidden;
  font-family: Source Sans Pro, sans-serif;
  font-size: 1.2em;
  color:#FFF;        
}

.titreParagraphe {
  color: #00AEEB;
  font-family: Source Sans Pro, sans-serif;
  font-size: 2.8em;
}

.textOuremotions {
  color: #FFFFFF;
  font-family: Source Sans Pro, sans-serif;
  font-size: 1.8em;
}

.textFooter {
  color: #FFFFFF;
  font-family: Source Sans Pro, sans-serif;
  font-size: 1em;
  text-decoration:none;
}

.textFooter a{
  color: #FFFFFF;
  font-family: Source Sans Pro, sans-serif;
  font-size: 0.8em;
}

/***********************************************************************/
/*                       checkbox plus de criteres                     */
/***********************************************************************/

/* Customize the label (the container) */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border:2px solid #00AEEB;
  border-radius:5px;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 6px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}