/* Font

@font-face {
	font-family: Amsom;
	src: url(ITCAvantGardeStd-BoldCnObl.ttf);
}


div {
	font-family: Amsom !important;
} */



/* formatage du site */
body{
	background-color: #EDEDED;
}

::-webkit-input-placeholder { text-align:center; }
::-moz-placeholder { text-align:center; } /* firefox 19+ */
:-ms-input-placeholder { text-align:center; } /* ie */
input:-moz-placeholder { text-align:center; }

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*:before,*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html, button, input, select, textarea {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

ul {

	list-style-type: none;

}



li {

	display: inline-block;

}

input[type="email"]:focus,
select:focus,
textarea:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="text"]:focus{
	box-shadow: 5px 5px 5px rgb(131, 129, 35) !important;
	border-color: rgb(170, 169, 91) !important;
}

.custom-checkbox + label::before{
    content:"";
    display:inline-block;
    width:12px;
    height:12px;
    background:#fff;
    border-radius:0px;
}
/* Base for label styling */
.custom-checkbox:not(:checked),
.custom-checkbox:checked {
	position: absolute;
	left: -9999px;
}
.custom-checkbox:not(:checked) + label,
.custom-checkbox:checked + label {
	position: relative;
	padding-left: 1.95em;
	cursor: pointer;
}
/* checkbox aspect */
.custom-checkbox:not(:checked) + label:before,
.custom-checkbox:checked + label:before {
	content: '';
	position: absolute;
	left: 0; top: 0.15em;
	width: 1.25em; height: 1.25em;
	border: 2px solid #ccc;
	background: #fff;
	border-radius: 4px;
	box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
}
/* checked mark aspect */
.custom-checkbox:not(:checked) + label:after,
.custom-checkbox:checked + label:after {
	content: '\2713\0020';
	position: absolute;
	top: .25em; left: .15em;
	font-size: 1.2em;
	line-height: 0.8;
	color: #43435D;
	transition: all .2s;
	font-family: 'Lucida Sans Unicode', 'Arial Unicode MS', Arial;
}
/* checked mark aspect changes */
.custom-checkbox:not(:checked) + label:after {
	opacity: 0;
	transform: scale(0);
}
.custom-checkbox:checked + label:after {
	opacity: 1;
	transform: scale(1);
}
/* disabled checkbox */
.custom-checkbox:disabled:not(:checked) + label:before,
.custom-checkbox:disabled:checked + label:before {
	box-shadow: none;
	border-color: #bbb;
	background-color: #ddd;
}
.custom-checkbox:disabled:checked + label:after {
	color: #999;
}
.custom-checkbox:disabled + label {
	color: #aaa;
}
/* hover style just for information */
.custom-checkbox + label:hover:before {
	border: 2px solid #43435D!important;
}
/* Bouton d'ajout véhicule/réservation/utilisateur */
.fixed-bottom-left{
	position: fixed;
	bottom: 10px;
	left : 10px;
}



/* Bouttons de filtrage des stutus des réservations  */
#selectStatut .checked{
	background-color: #A4A128 ;
	color: #ffffff;
	box-shadow: 0px 0px 0px;
}

#selectStatut .checked:hover{
	background-color: rgb(131, 129, 35);
	border-color: rgb(131, 129, 35);
}

#selectStatut .unchecked{
	background-color: rgb(211, 211, 211);
	color: #000000;
	box-shadow: 0px 0px 0px;
}

#selectStatut .unchecked:hover{
	background-color: rgb(110, 142, 161);
	color: #000000;
	box-shadow: 0px 0px 0px;
}



/* Bulle des véhicules page de réservation */
.deselectedBubble{
	background-color: #D4D6D7;
}

.selectedBubble{
	background-color: #677F8E;
}

.carBubble:hover{
	cursor: pointer;
}



/* Zone de saisie des kilomètres */
.kilometrage::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	opacity: 0.5 !important;
}



/* alignement des tableau par défaut */
.table td {
    text-align: center;   
}



/* Formatage du formulaire de réseravation des utilisateurs */
#reserverForm th{
    cursor: not-allowed;
}

#reserverForm td{
    cursor: pointer;
}



/* mise en fomre de la popin de notification kilometrage */
#listeKilometrages *{
	margin : auto;
}

#listeKilometrages{
	width:100%;
	overflow:hidden;
	overflow-y:scroll;
}

#listeKilometrages td, th{
	padding: 3px;
	text-align: center;
}

#listeKilometrages p{
	margin : 0;
}

#listeKilometrages tr:hover{
	background: #BBBBBB;
}



/* Mise en fomre des popins par defaut */
#popin ::-webkit-scrollbar {									/* Scrollbars */
	width: 14px;
	height: 14px;
	background: none;
}

#popin ::-webkit-scrollbar-track-piece {
	border-right-width: 8px;
	margin: 4px;
}

#popin ::-webkit-scrollbar-thumb {
	border: solid 0 transparent;
	border-right-width: 4px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-border-top-right-radius: 9px 5px;
	border-top-right-radius: 9px 5px;
	-webkit-border-bottom-right-radius: 9px 5px;
	border-bottom-right-radius: 9px 5px;
	-webkit-box-shadow: inset 0 0 0 1px rgb(79,79,79), inset 0 0 0 6px rgb(102,102,102);
	box-shadow: inset 0 0 0 1px rgb(79,79,79), inset 0 0 0 6px rgb(102,102,102);
}

#popin ::-webkit-scrollbar-thumb:hover {						/* Barre */
	-webkit-box-shadow: inset 0 0 0 1px rgb(90,90,90), inset 0 0 0 6px rgb(110,110,110);
	box-shadow: inset 0 0 0 1px rgb(90,90,90), inset 0 0 0 6px rgb(110,110,110);
}

#popin{
	visibility: hidden;
}



/* Filtre */
.sidenav {
	font-family: "Lato", sans-serif;
	height: 100%;
	width: 0%;
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	background-color: rgba(52, 58, 64, 0.98);
	overflow-x: hidden;
	padding: 0%;
	padding-top: 1%;
	transition: 0.5s;
	-ms-overflow-style: none;
}

.sidenav a, h1 {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
	font-size: 1.6em;
    color: #818181;
    display: block;
    transition: 0.5s;
}

.sidenav a:hover {
	color: #f1f1f1;
}

.sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 2.5em;
}

#filtre{
	padding-left: 0;
	text-align: center;
	vertical-align: center;
	border-radius: 10px;
	background: grey;
	margin: 0 20px;
}

#filtre h4{
	color: #E5E5E5;
	margin: 0;
	font-size: 1.3em;
}

.option{
	margin: 2% 0;
}

#filtre input[type="checkbox"]{
	display: none;
}

#filtre label {
	padding: 10px;
	display: block;
	position: relative;
	margin: 10px;
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#filtre label::before {
	background-color: white;
	color: white;
	content: " ";
	display: block;
	border-radius: 50%;
	position: absolute;
	top: -5px;
	left: -5px;
	width: 25px;
	height: 25px;
	text-align: center;
	line-height: 28px;
	transition-duration: 0.4s;
	transform: scale(0);
}

#filtre label img {
	max-height: 50px;
	max-width: 50px;
	transition-duration: 0.2s;
	transform-origin: 50% 50%;
}

#filtre label::before {
	content: "✓"; 
	background-color: green;
	transform: scale(1);
}

#filtre :checked+label::before {
	content: "✗"; 
	background-color: red;
	transform: scale(1);
}

#filtre :checked+label img {
	transform: scale(0.8);
	box-shadow: 0 0 5px #333;
	z-index: 0;
}