@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

:root{
	--white: #cdd0d6;
	--white_hover: #FFF;
	--black: #292929;
}


body{
	background: var(--black);
	padding: 0;
	margin: 0;
	color: var(--white);
	text-align: center;
	font-family: 'Open Sans';
	font-size: 18px;
	font-variant: tabular-nums;
}

a{
	color: var(--white_hover);
}

h1{
	font-size: 38px;
	margin-top: 8px;
	margin-bottom: 16px;
	background:-webkit-linear-gradient(#f39200, #a51e00);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

h1 a{
	text-decoration: none;
	color: var(--white);
}

.hidden{
	display: none;
}

.label{
	width:300px;
	display:inline-block;
	text-align:right;
}

.alert{
	border: 1px solid;
	border-radius: 10px;
	display: inline-block;
	padding: 0 20px;
	color: #fb2222;
}

.alert .title{
	margin-top: 0;
	margin-bottom: 4px;
	text-decoration: underline;
}



.header{
	display: inline-block;
	position: relative;
}

.header img{
	max-width: 100px;
	max-height: 100px;
	position: absolute;
	top: 8px;
	right: -130px;
}


.footer{
	z-index:8000;
	position:fixed;
	bottom:0;
	background:black;
	width:100%;
	font-size:18px;
}

.footer a{
	text-decoration: none;
}



.red{
	color: #ff4e34;
}

.green{
	color: #00b44b;
}


.grille{
	border-collapse:collapse;
}

.grille th{
	background: #808080;
	color: var(--white_hover);
}

.grille th, .grille td{
	border:1px solid;
	padding:6px;
	min-width:20px;
}



a.btn{
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: #000;
}

form.grid{
	display: inline-grid;
	grid-template-columns: 1fr 350px;
	grid-gap: 24px 0;
}

form.grid div{
	text-align: right;
	margin-right: 8px;
}

input, select{
	font-size: 20px;
}

input[type=submit], .btn{
	background: #f39200;
	min-width: 125px;
	padding: 10px;
	border: 0;
	border-radius: 10px;
	transition: 0.3s;
	font: inherit;
}

input[type=submit].btn--small, .btn.btn--small{
	padding: 4px 10px;
	font-size: 18px;
}

input[type=file]{
	font-size: initial;
}

.btn--blue{
	background: #7575dc!important;
}

.btn--white{
	background: #FFF!important;
}

.btn--secondary{
	background: none;
	color: #FFF!important;
	border: 1px solid;
}

input[type=submit]:hover, .btn:hover{
	cursor: pointer;
	background: #bf7505;
}

.btn--blue:hover{
	background: #6363b5;
}

.link:hover{
	color: #f39200;
	transition: .3s;
}



.file-select-button{
	border: 1px solid;
	border-radius: 10px;
	padding: 0 14px;
	cursor: pointer;
}

.file-select-button:hover{
	background: #808080;
	color: var(--white_hover);
}

.file-select-name{
	margin-left: 14px;
}



select{
	border-radius: 10px;
	padding: 4px;
}

.table{
	margin-top: 40px;
}

.table{
	border-collapse:collapse;
}

.table td{
	border: 1px dashed;
	padding: 10px;
	vertical-align: top;
	max-width: 300px;
}

.comp{
	display:none;
}

#log_box{
	background:#515151;
	padding:4px;
}

#log_box a, #log_box span{
	margin-right:20px;
	margin-left:20px;
}

.bouton{
	border: 1px solid;
	display: inline-block;
	padding: 10px;
	text-decoration: none;
}

.bouton:hover{
	background: #f39200;
}

.menu_group{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.menu_box{
	border: 1px solid;
	border-radius: 10px;
	padding: 8px;
	margin: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 48px;
	text-decoration: none;
	transition: 0.3s;
}

.menu_small{
	padding: 0px;
	max-width: 300px;
}

.menu_box:hover{
	background: grey;
}

.liste{
	font-size: 26px;
	margin: 20px;
}

.bloc{
	padding-top: 60px;
	border-top: 8px solid;
}

.bloc img{
	float: left;
	margin-right: 20px;
}

.bloc span{
	float: right;
	margin-left: 20px;
}

.contact{
	margin: auto;
	margin-top: 60px;
	margin-bottom: 60px;
	color: white;
	width: 500px;
	height: 40px;
	font-size: 24px;
	background: url('contact.png');
	background-size: 100% 100%;
}

.flex{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.flexC{
	display: flex;
	align-items: center;
}

.flexC .icon{
	margin-right: 10px;
}

.inline{
	display: inline-block;
}

.mt{
	margin-top: 20px;
}

ul.inline{
	text-align: left;
	margin-top: 0;
}


.rubrique{
	width: 600px;
	margin: auto;
	margin-bottom: 60px;
	border: 1px solid;
	vertical-align: top;
}

.rubrique p{
	display: block;
	margin: 6px;
}

.rubrique h2{
	margin: 6px;
}

.rubrique div a{
	display: inline-block;
	font-size: 25px;
	margin: 0px;
}


.border{
	border: 1px solid;
	display: inline-block;
	padding: 10px;
	margin-top: -10px;
}



.left{
	text-align: left!important;
}



.tabs ul{
	display: flex;
	list-style: none;
	justify-content: center;
	padding: 0;
}

.tabs li a{
	border: 1px solid;
	border-radius: 10px;
	padding: 10px;
	margin: 10px;
	width: 200px;
	display: block;
	text-decoration: none;
	transition: .3s;
}

.tabs li a:hover{
	background: grey;
}

.tabs li a.active{
	background: grey;
}

.tabs div{
	display: none;
}

