@keyframes hover_icon {
	from {
		height: 100%;
		width: 100%;
	}
	to {
		height: 110%;
		width: 110%;
	}
}
@keyframes done_icon {
	from {
		height: 110%;
		width: 110%;
	}
	to {
		height: 100%;
		width: 100%;
	}
}
@keyframes border_raduis_hover {
	from{
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
	}
	to{
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
	}
}
@keyframes border_raduis_done {
	from{
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
	}
	to{
		-webkit-border-radius: 0;
		-moz-border-radius: 0;
		border-radius: 0;
	}
}

*{
	margin: 0;
	padding: 0;
	font-family:Helvetica,Arial,sans-serif;
}

body{
	background-color: #444444;
	/*background: url('../img/bg.jpg')fixed;*/
	color: #fff;
}
.header{
	height: 55px;
	width: 100%;
	background-color: #222222;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 500;
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-o-user-select: none;
	user-select: none;
	box-shadow: 0px 3px 5px #222222;
}
.logo-nav{
	height: 50px;
	width: auto;
	float: left;
	margin: 5px auto auto 2em;
}
.header nav ul{
	margin: 15px 0 0 0;
	float: right;
	list-style: none;
}
.header nav ul li{
	margin: auto 2em auto 0;
	display: inline-block;
}
.header nav ul li a{
	position: relative;
	color: #eee;
	font-size: 1.3em;
	text-decoration: none;
}
.header nav ul li a:hover{
	color: #eee;
}
.header nav ul li a:before{
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #eee;
	visibility: hidden;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.header nav ul li a:hover:before{
	visibility: visible;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}
.corp{
	min-height: 100vh;
	display: flex;
	justify-items: stretch;
	background: #444444;
	box-shadow: 0px 3px 5px #222222;
}
/*Alert*/
.alertAll{
	display: none;
	background: rgba(0, 0, 0, 0.8);
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9998;
}
.alertAll p{
	z-index: 9999;
	position: fixed;
	/*display: none;*/
	top:25%;
	margin: auto;
	color: red;
	font-size: 3em;
}
.alertInfo{
	position: absolute;
	z-index: 500;
	top: 10px;
	width: 50%;
	height: 50px;
	margin: 0 25% 0 25%;
	display: block;
	text-align: center;
	line-height: 50px;
	font-size: 1.5em;
	border-radius: 5px;
}
.error{
	background: red;
}
.valide{
	background: green;
}

/*article content*/

.article_content{
	width: 100%;
	min-height: 100%;
	height: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.miniInfo_right{
	position: fixed;
	z-index: 9999;
	height: 20px;
	bottom: 0;
	right: 10vw;
	max-height: 50px;
	border-radius: 5px 5px 0 0;
	background-color: #222222;
	box-shadow: 0px 3px 5px #222222;
	padding: 5px 5px 0px 5px;
	text-align: center;
}
.miniInfo_right h2{
	font-size: 1.2em;
}
.miniInfo_right h2,progress{
	display: inline-block;
}

/*left info*/

.left_info_btn{
	position: fixed;
	top: 15vh;
	left : 0vw;
	width: 50px;
	height: 50px;
	color: white;
	font-size: 35px;
	text-align: center;
	background-color: rgba(0,0,0,0.7);
	transition: 0.5s;
	border-radius: 0 5px 5px 0;
	z-index: 999;
	cursor: pointer;
}

.left_info{
	box-sizing: border-box;
	font-family:Helvetica,Arial,sans-serif;
	width: 25vw;
	height: 100%;
	padding: 10px;
	background-color: rgba(0,0,0,0.7);
	overflow: auto;
	overflow-x: hidden;
	position: fixed;
	z-index: 900;
	top: 0;
	left: -25vw;
	transition: 0.5s;
}
.left_info ul{
	/*width: 90%;*/
	margin: 0 0 5px 0;
	display: block;
	list-style: none;
	padding: 0;
}
.left_info ul li{
	margin-bottom: 10px;
	background-color: #1679bb;
	padding: 5px;
	text-align: center;
	display: block;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	animation-name: border_raduis_done;
	animation-duration: 0.5s;
}
.left_info ul li a{
	text-decoration: none;
	color: #eee;
	font-size: 1.3em;
	display: block;
}
.left_info ul li:hover{
	text-decoration: underline;
	color: #ddd;
	cursor: pointer;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	animation-name: border_raduis_hover;
	animation-duration: 0.5s;
}
.cadre_bleu{
	margin: 10px auto 0 auto;
	border: solid #1679bb 2px;
}
.news{
	/*border-bottom: solid 4px #1679bb;*/
	padding: 20px 10% 10px 10%;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	min-height: 250px;
	text-align: center;
}
.news p{
	margin-top: 10px;
}
.news_no_pad{
	padding: 20px 10px 10px 10px !important;
}
.news:last-child{
	border: none;
}
.news:nth-child(2n){
	background: rgba(0, 0, 0, 0.3);
	/* color:#004d90; */
}
.limit_height{
	max-height: 300px;
	overflow-y: auto;
}
.limit_width_25_vw{
	width: 25vw !important;
}
.news_header{
	margin-bottom: 10px;
}
.news_content{
	text-align: center;
	margin-bottom: 10px;
}
.news_footer{
	margin-bottom: 5px;
}
.news_footer aside{
	color: #aaa;
	display: inline-block;
}
.news_footer a{
	float: right;
	position: relative;
	color: #000;
	text-decoration: none;
	display: inline-block;
}
.news_footer a:hover{
	color: #000;
}
.news_footer a:before{
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #000;
	visibility: hidden;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.news_footer a:hover:before{
	visibility: visible;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}
/*.news video{
	width: 80%;
	margin: 20px 10% auto 10%;
}*/
.news_nav{
	width: 80%;
	display: block;
	position: fixed;
	top: 90px;
	left: 10%;
	z-index: 100;
	height: 80px;
	background: #222222;
	box-shadow: 0px 3px 5px #222222;
	overflow: hidden;
	border-radius: 8px;
	/*text-align: center;*/
}
.news_nav button,.news_nav a{
	display: inline-block;
	margin: 5px;
	text-align: center;
}
.news_nav h2, .news_nav p{
	display: inline-block;
	margin: 15px 10px;
}
.news_nav form{
	display: inline-block;
	margin: auto;
	width: auto;
}
.news_nav input[type="number"]{
	max-width: 5%;
	min-width: 70px;
}

.not_fixed{
	position: absolute !important;
}

.title{
	display: inherit;
	height: 100vh;
	background: url("../img/slider-1.png") center center / cover no-repeat fixed;
	flex-direction: column;
}
.title div{
	width: 100%;
	text-align: center;
	display: flex;
}
.title img{
	display: inherit;
	height: 30vh;
	text-align: center;
	margin: auto;
	margin-top: 25vh;
}
.title h2{
	display: inherit;
	margin: auto;
	margin-top: 20px;
	font-size: 1.7em;
	text-align: center;
}
/*.news_nav .button_blue{
	float: left;
}*/

.p_class{
	text-align: center;
	color: red;
	margin-bottom: 15px;
}

p a{
	color:#1679bb;
}

.box_50{
	width: 48.5%;
}
.box_right{
	float: right;
}
.box_left{
	float: left;
}
.margin_nav{
	margin-top: 65px;
}

.thematics_title{
	font-size: 2em;
	text-decoration: underline;
	margin:auto;
	text-align: center;
}


.icon_extra{
	height: 100%;
	width: 100%;
	animation-name: done_icon;
	animation-duration: 0.2s;
}
.icon_extra:hover{
	height: 110%;
	width: 110%;
	animation-name: hover_icon;
	animation-duration: 0.2s;
}
.avatar{
	position: relative;
	width: 100%;
	/*padding-bottom: 100%;*/
	float: left;
	/*height: 0;*/
}
.avatar img{
	width: 100%;
	/*height: 100%;*/
	height: auto;
	/*position: absolute;*/
	position: relative;
	left: 0;
}
.img_left{
	float: left;
	margin-right: 15px;
}

/*Formulaire*/
form{
	display: flex;
	flex-direction: column;
	/*border-right: solid;
	border-left: solid;
	border-radius: 5px;
	border-color: #222222;*/
	padding: 5px;
}
form *{
	margin-bottom: 5px;
}
form label{
	font-size: 1.3em;
	display: block;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(255,255,255,0.8);
  opacity: 0.8; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: rgba(255,255,255,0.8);
}
::-ms-input-placeholder { /* Microsoft Edge */
  color: rgba(255,255,255,0.8);
}

form ~ form{
	margin-top: 50px;
}

button a{
	text-decoration: none;
	color: black;
}

.ptit_text{
	height: 25px;
}
textarea{
	min-height: 300px;
}
.text_height{
	font-size: 1.3em;
}
.text_info{
	font-size: 1em;
	color: #eee;
	text-align: center;
}
.color_red{
	color: red;
}
.color_green{
	color: #00ff00;
}
.color_orange{
	color: #1679bb;
}

/*input*/
input[value='Remove']{
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	color: #ffffff;
	font-size: 12px;
	background: #e80000;
	padding: 5px;
	text-decoration: none;
	margin: 5px 5px 0 0;
	box-sizing: content-box;
}
input[value='Remove']:hover {
	background: #ff5757;
	text-decoration: none;
	cursor: pointer;
}

input[type="image"]{
	width: 10px;
}

.outilsCenter{
	display: inline-block;
	position: relative;
	margin: 10px 0 10px 0;
}

.inline-block{
	display: inline-block;
}

.on-top{
	z-index: 500;
}
.on-top *{
	z-index: 500;
}

ul li input[type=radio]{
	position: absolute;
	visibility: hidden;
}
ul li input[type=checkbox]{
	position: absolute;
	visibility: hidden;
}

ul li label{
	display: block;
	position: relative;
	font-weight: 300;
	font-size: 0.8em;
	padding: 7px 7px 7px 40px;
	height: 30px;
	z-index: 9;
	cursor: pointer;
	-webkit-transition: all 0.15s linear;
	color: #FFFFFF;
}

ul li label:hover{
	color: #FFCD01;
}

ul li .check{
	display: block;
	position: absolute;
	/* border: 5px solid #AAAAAA; */
	border: 3px solid #FFFFFF;
	border-radius: 100%;
	height: 7px;
	width: 7px;
	top: 10px;
	left: 12px;
	z-index: 5;
	transition: border 0.25s linear;
	-webkit-transition: border 0.25s linear;
	box-sizing: content-box;
}

/* ul li:hover .check {
	border: 3px solid #FFFFFF;
} */

ul li .check::before {
	display: block;
	position: absolute;
	content: '';
	border-radius: 100%;
	height: 3px;
	width: 3px;
	top: 2px;
	left: 2px;
	margin: auto;
	transition: background 0.25s linear;
	-webkit-transition: background 0.25s linear;
}

input[type=radio]:checked ~ .check {
	border: 3px solid #9EFF17;
}

input[type=radio]:checked ~ .check::before{
	background: #9EFF17;
}

input[type=radio]:checked ~ label{
	color: #9EFF17;
}

input[type=checkbox]:checked ~ .check {
	border: 3px solid #9EFF17;
}

input[type=checkbox]:checked ~ .check::before{
	background: #9EFF17;
}

input[type=checkbox]:checked ~ label{
	color: #9EFF17;
}

input:hover, button:hover, select:hover{
	cursor: pointer;
}

/*button*/

.button_default{
	display: block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  padding: 10px;
  border: 3px solid #ffffff;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font: normal 16px/normal Arial, Helvetica, sans-serif;
  color: rgba(255,255,255,1);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: rgba(0,0,0,0);
  -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
}
.button_blue{
	width: auto;
	margin-bottom: 10px;
	background-color: #ffffff;
	padding: 5px;
	text-align: center;
	display: block;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: 2px solid white;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	animation-name: border_raduis_hover;
	text-decoration: none;
	color: #eee;
	font-size: 1.3em;
}
.button_blue:hover, .button_default:hover{
	text-decoration: underline;
	color: #ddd;
	cursor: pointer;
}

.button_blue img, .button_default img{
	display: inline-block;
	height: 16px;
}

.bleu_plein{
	margin-top: 5px;
	background-color: #1679bb;
	padding: 5px;
	text-align: center;
	display: block;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font-size: 1.3em;
}
.bg_green{
	background-color: #00AD26 !important;
}
.bg_red{
	background-color: #AD2100 !important;
}
.br_purple{
	background-color: #8A00E8 !important;
}

.blue_squar_button{
	height: 10vw;
	width: 10vw;
	border-radius: 5px;
	background-color: #1679bb;
	display: inline-block;
	margin: 10px;
	text-align: center;
	color: #eee;
	font-size: 1.3em;
	overflow: hidden;
	text-decoration: none;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.blue_squar_button:hover{
	box-shadow: 3px 3px #003559;
	transition-duration: 100ms;
	text-decoration: underline;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.svg path{
	fill: #eee;
}
.blue_squar_button svg{
	height: 7vw;
	width: 7vw;
	margin: 1vw auto 0 auto;
	display: block;
}
.blue_squar_button h3{
	margin: 10px auto;
	display: block;
	font-size: 0.7em;
	text-align: center;
}
.float_right{
	float: right;
}

/*slider*/
.slider_content{
	padding: 10px 10px 0 10px !important;
}
.slider {
	position: relative;
	width: 100%;
	padding-bottom: 50%;
	float: left;
	height: 0;
	overflow: hidden;
	margin: 0 auto 10px auto;
}

.slider ul {
	height: 100%;
	position: absolute;
	left: 0;
	list-style: none;
}

.slider ul li {
	position: relative;
	display: block;
	float: left;
	width: 100%;
	height: 100%;
	background: #ccc;
	text-align: center;
}
.slider ul li img{
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
}
/*.slider ul li p{
	display: block;
	background-color: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 50px;
	margin-top: -50px;
}*/
a.control_prev, a.control_next {
	position: absolute;
	top: 40%;
	z-index: 400;
	display: block;
	padding: 4% 3%;
	width: auto;
	height: auto;
	background: #2a2a2a;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
	opacity: 0.8;
	cursor: pointer;
}

a.control_prev:hover, a.control_next:hover {
	opacity: 1;
	-webkit-transition: all 0.2s ease;
}

a.control_prev {
	border-radius: 0 2px 2px 0;
}

a.control_next {
	right: 0;
	border-radius: 2px 0 0 2px;
}

.slider_option {
	position: relative;
	margin: 10px auto;
	width: 160px;
	font-size: 18px;
}

/* Image Edition */
.canvas_content{
	display: block;
	overflow-y: hidden;
	overflow-x: auto;
	position: relative;
	margin: auto auto 25px auto;
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-o-user-select: none;
	user-select: none;
	vertical-align: bottom;
}
.canvas_content canvas{
	vertical-align: bottom;
	top: 0;
	left: 0;
}
.canvas_content #canvas{
		position: absolute;
		top: 0;
		left: 0;
}
.canvas_content::selection { background: transparent; color:inherit; }
.canvas_content::-moz-selection { background: transparent; color:inherit; }
/*.canvas_content canvas:first-child{
	margin-bottom: -18px;
}*/
@-moz-document url-prefix(){
	.canvas_content canvas:first-child{
		margin-bottom: -21px;
	}
}

.rectangle_info{
	cursor: default;
}
.message{
	overflow-y: auto;
}

.speech_bubble {
	z-index: 200;
	position: absolute;
	top: 0px;
	left: 0px;
	background: #222222;
	border-radius: .4em;
	padding: 15px;
}

.speech_bubble:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 0;
	border: 20px solid transparent;
	border-top-color: #222222;
	border-bottom: 0;
	margin-left: -20px;
	margin-bottom: -20px;
}


/*Float windows*/
.windowsFloat{
	position: fixed;
	z-index: 550;
	background: rgba(0, 73, 123, 0.7);
	min-width: 450px;
	min-height: 200px;
	max-width: 600px;
	max-height: 600px;
	overflow: auto;
	top: 25vh;
	left: 60vw;
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-o-user-select: none;
	user-select: none;
	cursor: move;
	/*padding: 10px;*/
}
.windowsFloat::selection { background: transparent; color:inherit; }
.windowsFloat::-moz-selection { background: transparent; color:inherit; }
.windowsFloat > *{
	background: rgba(0, 0, 0, 0.3);
	padding: 5px;
	cursor: default;
}
.windowsFloat h1{
	background: #474747;
	border-bottom: solid 4px #1679bb;
	font-size: 1.1em;
	cursor: move;
}
.windowsFloat h4{
	margin-top: 10px;
}
.windowsFloat input{
	cursor: pointer;
}

.windowsFloatIcon{
	height: 50px;
	width: 50px;
	max-height: 50px;
	max-width: 50px;
	position: fixed;
	z-index: 9999;
	top: calc(100vh - 50px);
	left: 50px;
	border-radius: 5px 5px 0 0;
	background-color: #222222;
	user-select: none;
	box-shadow: 0px 3px 5px #222222;
	cursor: pointer;
}
.windowsFloatIcon svg{
	margin: 5px;
	width: 40px;
	height: 40px;
}


/*Table*/

table{
	width: 100%;
	max-width: 100%;
	border-collapse: collapse;
	word-wrap: break-word;
	table-layout: fixed;
}

table ~ table{
	margin-top: 50px;
}
/* Ordre important entre les deux*/
label ~ table{
	margin-top: 5px;
}

table ~ label{
	margin-top: 10px;
}

table tr th, td{
	width: auto;
	padding: 5px;
	text-align: center;
	word-wrap: break-word;
	max-width: 80vw;
}
table a{
	color: #00ddff;
}
.not_transpa tr{
	background: #1679bb;
}
tr:nth-child(odd){
	background: rgba(0,0,0,0.3);
}
tr[onclick]{
	cursor: pointer;
}
tr[onclick]:hover{
	text-decoration-line: underline;
	font-weight: bold;
	color: #00AD26;
}
th{
	text-decoration: underline;
	background: rgba(0,0,0,0.5);
}
.not_transpa tr:nth-child(odd){
	background: #0F527F;
}
.not_transpa th{
	background: #222222;
}

.defaultHidden{
	display: none;
}

.displayBlock{
	display: block!important;
}
/*Species Nav*/

.darkscreen{
	background-color: rgba(0, 0, 0, 0.5);
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 999;
	display: none;
	top: 0;
	left: 0;
}
.content_object_list{
	height: 90%;
	width: 90%;
	overflow: auto;
	margin: 4% auto auto 5%;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 20px;
	box-sizing: border-box;
}

span.dropBottom,
span.dropRight {
	display: block;
	box-shadow: inset 2px 0px 0px #FFF;
	position: absolute;
	left: 0px;
	width: 100%;
	height: 100%;
	top: 0px;
}

span.dropBottom {
	box-shadow: inset 0px 2px 0px #FFF;
	position: absolute;
	width: 100%;
	bottom: 0px;
}

.species_nav {
	display: block;
	margin: 0 0 0 5px;
	box-shadow: 0px 2px 0px #0A3552;
	z-index: 600;
}

.species_nav ul {
	min-width: 200px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.species_nav ul ul {
	min-width: 200px;
	/*opacity: 0;*/
	position: absolute;
	top: 100%;
	/*visibility: hidden;*/
	transition: all .25s ease;
	-webkit-transition: all .25s ease;
}

.species_nav ul ul ul {
	min-width: 200px;
	top: 0%;
	left: 75%;
	opacity: 0;
	visibility: hidden;
}

.species_nav ul ul li:hover > ul {
	top: 0%;
	left: 100%;
	opacity: 1;
	visibility: visible;
}

.species_nav ul li:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.species_nav ul li {
	float: left;
	position: relative;
	background-color: #1679bb;
	cursor: pointer;
	min-width: 200px;
	min-height: 40px;
}

form .species_nav ul li{
	margin-bottom: -5px !important;
}

.species_nav ul ul li { float: none; }

.species_nav ul h1 {
	text-decoration: none;
	display: block;
	color: #FFF;
	padding: 10px 15px;
	width: 6em;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	text-shadow: 0px -1px 0px rgba(0,0,0,.2);
	font-size: 0.8em;
}

.species_nav ul li:hover { background-color: #0A3552; }

.species_nav ul li a:hover { background-color: #0A3552; }

/*Scroll*/
.windowsFloat::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.windowsFloat::-webkit-scrollbar
{
	width: 12px;
	background-color: #F5F5F5;
}

.windowsFloat::-webkit-scrollbar-thumb
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}
.no-select{
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.no-select::selection { background: transparent; color:inherit; }
.no-select::-moz-selection { background: transparent; color:inherit; }

/*Footer*/
.footer{
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	height: 25px;
	text-align: center;
	line-height: 25px;
	background: #222222;
	z-index: -1;
}
.logoFooter{
	width: 100%;
	position: fixed;
	bottom: 25px;
	left: 0;
	height: 100px;
	text-align: center;
	line-height: 25px;
	background: #222222;
	padding: 10px 0 0 0;
	z-index: -1;
}
.logoFooter img{
	height: 100%;
	margin: 0 auto 0 auto;
	max-width: 25%;
}

/*Files*/
.fileContent{
	width: 95%;
	margin: auto;
}
.fileContent .fileContent-block{
	width: 20%;
	height: 0;
	overflow: hidden;
	position: relative;
	display: inline-block;
	padding-bottom: 23%;
	margin: 10px 1% 0 1%;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}
.fileContent-block:hover{
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

.fileContent-block :not(li){
	width: 100%; height: 100%;
	position: absolute;
	left: 0; top: 0;
}
.fileContent-block h3{
	font-size: 0.5em;
	color: #fff;
	top:85%;
	height: auto;
	text-align: center;
	padding: 5px;
	box-sizing: border-box;
	overflow-wrap: break-word;
	border-radius: 10vh;
}
.fileContent-block h4{
	font-size: 0.8em;
	color: #fff;
	top:25%;
	text-align: center;
	margin-left: 12%;
}
.fileContent-block .frame_number{
	top: 3%;
	position: absolute;
	height: 12px;
	background-color: green;
	width: 50px;
}

.fileContent-block ul{
	top:35%;
	left:15%;
	font-size: 1em;
	text-align: left;
	list-style: none;
	position: absolute;
	color: black;
}
.fileContent-block ul li{
	display: block;
}

.fileContent-block h3.NA{
	background-color: #E80C7A;
}
.fileContent-block h3.training{
	background-color: #F56900;
}
.fileContent-block h3.none{
	background-color: red;
}
.fileContent-block h3.testing{
	background-color: #19A800;
}
.fileContent-block h3.tag{
	background-color: #F08080;
	top: 60%;
}

/*Other*/

.cross_quit{
	border: 2px solid red;
	border-radius: 5px;
	margin: 15px 15px auto auto;
	right: 0;
	top:  0;
	width: 1em;
	height: 1em;
	position: fixed;
	z-index: 1000;
}
.cross_quit:hover{
	cursor: pointer;
}
.cross_quit svg{
	color: white;
	fill: currentColor;
	stroke: currentColor;
	width: 1em;
	height: 1em;
}

.fleches{
	height: 20px;
	cursor: pointer;
	float: right;
}

.frame_color{
	border: 2px solid black;
	border-radius: 4px;
	margin: 5px;
	padding: 5px;
}
.frame_color__green{
	border: 2px solid green;
}
.frame_color__red{
	border: 2px solid red;
}
.center_box{
	margin: 0 auto;
	text-align: center;
}
.margin_top_box{
	margin-top: 20px;
}

.waitGif{
	height: 50px;
	width: 50px;
}

.minPic{
	top: 38% !important;
	left: 16.25% !important;
	width: 65% !important;
	height: 42% !important;
}

.img_ratio{
	max-width: 100%!important;
	height: auto!important;
	max-height: 100%;
}

.font_resize{
	font-size: 0.7em;
}

.litle_button{
	display: initial;
	width: 20%;
	max-width: 200px;
}

.file_view_number{
	display: inline-block;
}
.file_view_number input{
	display: inline-block;
}

hr{
	width: 50%;
	border: 2px solid #222222;
	border-radius: 5px;
}

.user_rank{
	font-size: 1em;
	display: inline-block;
}
.unverified{color:#999;}
.annoteur{color:#00ff00;}
.moderator{color:#ff5500;}
.admin{color:#ff0000;}

.display_windows_container{
	z-index: 900;
	position: fixed;
	/*display: none;*/
	top:25%;
	margin: auto;
	left: 35%;
	width: 30%;
	background-color: #222222;
	border-radius: 5px;
	box-shadow: 0px 5px 7px #222222;
}

.all_width{
	width: 100%;
}

.border_int_green{
	border: solid green 3px;
	box-sizing: border-box;
}

.border_int_red{
	border: solid red 3px;
	box-sizing: border-box;
}

.border_int_yellow{
	border: solid yellow 3px;
	box-sizing: border-box;
}

/*chatBox*/
.chatBox_content{
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
}
.chatBox_content input[type='text']{
	display: inline-block;
	width: 75%;
	float: left;
}
.chatBox_content input[type='button']{
	display: inline-block;
}
.chatBox_content .chatBox_update{
	position: absolute;
	top: 10px;
	left: 10px;
	height: 25px;
	width: 25px;
	z-index: 400;
}
.chatBox_content .chatBox_update:hover{
	cursor: pointer;
}
.chatBox{
	display: block;
	height: 75vh;
	min-height: 75%;
	width: 100%;
	background: rgba(0, 0, 0, 0.3);
	overflow: auto;
}
.chatBox .chatBox_message{
	display: flex;
	width: calc(100% - 30px);
	margin: 10px 10px 0 10px;
	float: left;
	padding: 5px;
	background: rgba(0, 0, 0, 0.1);
}
.chatBox .chatBox_corp{
	text-align: center;
	width: calc(75% - 30px);
	margin: 0 15px 0 15px;
}
.chatBox .chatBox_info{
	width: 25%;
	border-bottom: solid 2px;
}
.chatBox h1{
	text-align: center;
	display: block;
	font-size: 1.1em;
}
.chatBox h4{
	text-align: center;
	display: block;
	font-size: 0.6em;
}

/*paragraphe*/

.p_error{
	text-align: center;
	color: red;
}
.p_center{
	text-align: center;
}

/*wait diplay*/

.wait_display{
	display: none;
	z-index: 999999;
	width: 100vw;
	height: 100vh;
	margin: 0;
	background: rgba(0,0,0,0.7);
	position: fixed;
	top: 0;
	left: 0;
	text-align: center;
}
.wait_display img{
	position: fixed;
	display: block;
	width: 25vh;
	height: 25vh;
	text-align: center;
	margin: 25vh calc(50% - 15vh);
}
.wait_display h1{
	position: fixed;
	text-align: center;
	display: block;
	text-align: center;
	top: 55vh;
	left: 45vw;
}

/*Media Query*/

@media only screen and (max-width : 640px){
	.corp{
		flex-direction: column;
	}
	.logo-nav{
		display: none;
	}
	.article_content{
		width: 100%;
		margin-top: 75px;
	}
	.left_info{
		float: none;
		width: 100%;
		height: auto;
		border: none;
	}
	.font_resize{
		font-size: 0.2em;
	}
	.fileContent-block h3{
		font-size: 0.3em;
	}
	.fileContent-block h4{
		font-size: 0.2em;
	}
	.fileContent-block ul{
		font-size: 0.2em;
	}
}
@media (max-width : 840px){
	.not_mobile{
		display: none;
	}
	.font_resize{
		font-size: 0.4em;
	}
	.fileContent-block h3{
		font-size: 0.5em;
	}
	.fileContent-block h4{
		font-size: 0.25em;
	}
	.fileContent-block ul{
		font-size: 0.25em;
	}
}
@media (max-width : 1024px){
	.box_50{
		width: 100%;
	}
}
@media (min-width : 1025px){
	.header nav{
		margin-right: 15%;
	}
	.logo-nav{
		margin: 5px auto auto 15%;
	}
	.corp{
		width: 100%;
		min-height: 100vh;
	}
	.logoFooter{
		width: 100%;
		margin: 0 auto 0 0;
	}
	.font_resize{
		font-size: 0.5em;
	}
	.fileContent-block h3{
		font-size: 0.7em;
	}
	.fileContent-block h4{
		font-size: 0.7em;
	}
	.fileContent-block ul{
		font-size: 0.6em;
	}
}

@media (min-width : 1920px){
	.font_resize{
		font-size: 0.7em;
	}
	.fileContent-block h3{
		font-size: 0.9em;
	}
}
@media (min-width : 2560px){
	.font_resize{
		font-size: 0.8em;
	}
	.fileContent-block h3{
		font-size: 1em;
	}
	.fileContent-block h4{
		font-size: 1em;
	}
	.fileContent-block ul{
		font-size: 1em;
	}
}

.onglets {
	padding-left: 0;
	background: none;
}

.onglets span {
	background: rgba(0, 0, 0, 0.1);
	padding: 9px;
	cursor: pointer;
}

.onglets span:hover {
	background: rgba(0, 0, 0, 0.2);
}

.onglets span.selected {
	background: rgba(0, 0, 0, 0.3);
}

.onglets span.selected:hover {
	cursor: default;
}

.favorite-star {
	 background: #e0a800;
	 -webkit-mask: url('../img/star.svg') no-repeat center;
	 mask: url('../img/star.svg') no-repeat center;
}

.favorite-star:hover {
	-webkit-mask: url('../img/star-fill.svg') no-repeat center;
	mask: url('../img/star-fill.svg') no-repeat center;
}

.favorite-star:active {
	background: #FAE35C;
}

.favorite-star-checked {
	background: #e0a800;
	-webkit-mask: url('../img/star-fill.svg') no-repeat center;
	mask: url('../img/star-fill.svg') no-repeat center;
}

.selection-card {
	cursor: pointer;
	transition: transform ease-out 100ms;
}

.selection-card:hover {
	transform: scale(1.02, 1.02);
}
