* {
	padding:0;
	margin:0;
	box-sizing: border-box;
}

body,
html {
	height:100%;
	font-size:62.5%; /*62.5% => 1rem = 10px*/
}
body {
    color: #505050;
	font-weight:300;
	font-size:16px;
	font-size:1.6rem;
}

.container:after {
    content: '';
    display: block;
    clear: both;
}

a,
.btn {
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
a{
	text-decoration:none;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
a:active,
a:focus {
    outline: 0
}


h1,
h2,
h3,
h4,
h5 {
	margin-bottom:25px;
    font-size: 3rem;
	font-weight:normal;
}
h1 {
    font-size: 5rem;
}
h2 {
    font-size: 4rem;
}

ul {
    list-style: none;
    padding: 0;
}
p{
	margin-bottom:20px;
	line-height:2.5rem;
}
table{
	width:100%;
	border-spacing : 0;
	border-collapse : collapse;
	text-align:left;
}
table th,
table td{
	padding:10px;
}
table th{
	color:#000;
	font-weight:normal;
}

table.striped tr:nth-child(odd){
	background:#e6e6e6;
}


section{padding:50px 0;}
section.head{padding:150px 0 0;}
section.head .container{padding:50px 0;}

.white{color:#FFF;}
.left{float:left;}
.right{float:right;}

.btn {
    text-align: center;
	padding:10px 20px;
	cursor:pointer;
	display:inline-block;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border:none;
}

.text-center{
	text-align:center;
}
.text-right{
	text-align:right;
}
.text-left{
	text-align:left;
}
.col.center{
	float:none;
	margin:0 auto;
}
.hidden{display:none;}
.clear{clear:both;}
.no-padding{padding:0}

form{
	position:relative;
	overflow:hidden;
}
form .raison{
	position:absolute;
	left:-200%;
}

.ligne_form{
	width:100%;
	position:relative;
	margin-bottom:20px;
	clear:both;
}
.ligne_form label{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	cursor:pointer;
	padding:15px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.ligne_form input:focus + label,
.ligne_form input.blur + label,
.ligne_form textarea:focus + label,
.ligne_form textarea.blur + label{
	padding:0 15px;
	font-size:1.4rem;
}
.ligne_form input.blur,
.ligne_form input:focus,
.ligne_form textarea.blur,
.ligne_form textarea:focus {
	padding:20px 15px 10px;
}
.ligne_form.no_label input.blur,
.ligne_form.no_label input:focus,
.ligne_form.no_label textarea.blur,
.ligne_form.no_label textarea:focus {
	padding: 15px;
}

.ligne_form#sujet{
	position:absolute;
	right:-200%;
}


input,
select,
option,
textarea{
	width:100%;
	padding:15px;
	border:none;
	font-size:1.4rem;
	line-height:16px;
	border:1px solid #b2b2b2;
}
input[type=radio],
input[type=checkbox]{
	width:auto;
	padding:0;
	margin:0;
}

.liste_radio input{
	position:absolute;
	z-index:-1;
	margin:5px;
}
.liste_checkbox,
.liste_radio {
    width: 100%;
    margin-bottom: 20px;
    clear: both;
}
.liste_radio label{
	padding:7px;
	cursor:pointer;
	text-transform:uppercase;
	background:#000;
	color:#FFF;
	display:inline-block;
	margin-right: 15px;
	text-align:center;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.liste_radio label:hover,
.liste_radio input:checked + label{
	background: #505050;
	color:#FFF;
}

.liste_radio input:disabled + label:hover,
.liste_radio input:disabled + label{
	background: #ccc;
	color:#efefef;
	/* opacity:0.2; */
	cursor:no-drop;
}
.liste_checkbox{
    overflow: hidden;
}
.liste_checkbox span{
    display: block;
    float: left;
}
.liste_checkbox .checklist{
    display: block;
    float: left;
    padding: 0 10px;
}
.liste_checkbox .checklist input{
    margin: 0 5px 10px 0;
    cursor: pointer;
}
.liste_checkbox .checklist label{
    cursor: pointer;
}
textarea{
	max-width:100%;
	min-width:100%;
	min-height:200px;
	height:200px;
	max-height:300px;
	resize: vertical;
}
strong{
	font-weight:700;
}
.tooltip {
	position:relative;
}

.mytooltip {
	display:block;
	position: absolute;
	top:100%;
	left:50%;
	margin-left:-60px;
	z-index: 1;
	width: 120px;
	background: #000;
	color: #fff;
	text-align: center;
	padding: 5px;
	text-transform:none;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.mytooltip:after {
	content:'';
	display:block;
	position: absolute;
	top:-5px;
	left:50%;
	margin-left:-5px;
	width: 10px;
	height: 10px;
	background: #000;
	transform: rotate(45deg);
}

.popup{
	position:fixed;
	padding: 100px 0 50px;
	z-index:999;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.7);
	display:none;
}
.popup.message_session{
	display:block;
}
.popup .popup_content{
	margin:0 auto;
	overflow-y:auto;
	max-height:100%;
	max-width: 600px;
	width:100%;
	background:#FFF;
	top:100px;
    display: flex;
}
.popup .popup_content .icon{
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #FFF;
}
.popup .popup_content .icon.message{
    background: rgb(86, 180, 86);
}
.popup .popup_content .icon.erreur{
    background: rgb(168, 39, 39);
}
.popup .content{
	max-height:100%;
	max-width: 600px;
	width:100%;
	padding:50px;
	position:relative;
    display: flex;
    align-items: center;
}
.popup .content p{
    margin: 0;
}
.popup .content .close{
	position:absolute;
	top:5px;
	right:5px;
	padding:10px;
	cursor:pointer;
}
.popup .content input,
.popup .content select{
	border:1px solid #e5e5e5;
}


/* COOKIE */
/* .overlay{
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 900;
} */
#cookie #cookie_content{
    position:fixed;
    z-index: 900;
    bottom: 20px;
    right: 20px;
    width: 600px;
    padding: 20px;
    background: #FFF;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
#cookie #cookie_content p,
#cookie #cookie_content a{
    font-size: 1.4rem;
    line-height: 1.8rem;
}
#cookie #cookie_content h4{
    font-size: 1.8rem;
    line-height: 2rem;
}


/* RESPONSIVE */
@media screen and (max-width: 768px){
	
	html{
		font-size:50%;
	}
	.popup .content{
		padding:25px;
	}
	.text-right{
		text-align:center;
	}
	.text-left{
		text-align:center;
	}

    #cookie #cookie_content{
        left:20px;
        width: auto;
    }

}
