@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,700,800&display=swap');

*{
  margin: 0;
  padding: 0;
  outline:none;
}

html, body{
  font-family: 'Montserrat', Gotham, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight:300;
  font-size: 16px;
  line-height: 20px;
  color:#000;
  background: #ffff;
  text-align: center;
}

a{
  color: #E30513;
  text-decoration: none;
  -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
a:hover, a:focus{
  color: #333;
}
a:hover img, a:focus img{
  text-decoration: none;
}

.rouge{
  color: #E30513;
}
.vert{
  color: #577a27;   
  }

h2 {
    font-size: 16px;
    margin: 0 0 25px 0;
    line-height: 26px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 1px;
}

#page{
  height:auto;
  margin:0 auto;
  width: 90%;
  padding: 50px 5%;
}

.logo{
	width: 300px;
	height: auto;
	margin: 0 auto;
  margin-bottom: 25px;
	-webkit-transition:all 0.3s ease-in-out;
  -moz-transition:all 0.3s ease-in-out;
  -o-transition:all 0.3s ease-in-out;
  transition:all 0.3s ease-in-out;
}

.logo img{
	width:100%;
	height: auto;
}
section.principal p{
    margin: 10px 0 25px 0;
}

input[type=submit]{
	font-size:18px;
	line-height:18px;
  height: auto;
  padding: 15px;
	border-radius:2.5px;
  color: #555;
	position: relative;
	cursor: pointer;
	
  background-color: #eee;
  border: .075rem solid #ddd;
	
	-webkit-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.3);
	box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.3);
}
input[type=submit]:hover, input[type=submit]:focus{
	/*color: #009ac8;*/
	color: #fff;
	background: #E30513;
}
input[type=submit]:active{
	color: #fff;
	background: #E30513;
}

.input-file-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
} 
.js .input-file-trigger {
  display: block;
  color: #555;
  background-color: #eee;
  border: .075rem solid #ddd;
  border-radius: .5rem;
  height: 16px;
  padding: 12px 10px;
  margin: 0 auto;
  box-shadow: inset 0 .2rem .4rem rgba(0,0,0,.05);
  transition: all .4s;
  cursor: pointer;
}
.js .input-file {
  position: absolute;
  top: 0; left: 0;
  width: 225px;
  opacity: 0;
  padding: 20px 10px;
  cursor: pointer;
}
.js .input-file:hover + .input-file-trigger,
.js .input-file:focus + .input-file-trigger,
.js .input-file-trigger:hover,
.js .input-file-trigger:focus {
	color: #fff;
	background: #E30513;
}

.file-return {
  margin: 0;
}
.file-return:not(:empty) {
  margin: 1em 0;
}
.js .file-return {
  font-style: italic;
  font-size: .9em;
  font-weight: bold;
}
.js .file-return:not(:empty):before {
  content: "Fichier sélectionné: ";
  font-style: normal;
  font-weight: normal;
}
table.pending{
  margin: 0 auto;
}
table.pending td{
  padding: 7px 15px;
}
table.pending tr:nth-child(odd){
  background-color:#eee;
}
section.principal{
    padding: 50px 0;
}
.font12{
  font-size:12px;
  line-height: 18px;
}

.clear{clear: both;line-height: 0; font-size: 0;}
.clear2{clear: both;line-height: 0; font-size: 0; margin:0 0 25px 0;}