/* RESET CSS */
html, body {
	margin: 0;
	padding: 0;
	touch-action: none;
}

html {
	height: 100%;
	width: 100%;
	position: relative;
}

body {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.loader {
	background-image: url(ajax_loader.gif);
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

/* COULEUR PAR DEFAUT DES LIENS */
a {
	color: #0073B5;
}

a:hover {
	color: #FF9C31;
}

/* STYLE DES SCROLLBARS
 */
.scrollable {
	overflow: auto;
	pointer-events: auto !important; /* Pour éviter le problème d'affichage du Scrollbar s'il existe plusieurs sur la page */
}

.scrollable::-webkit-scrollbar {
	-webkit-appearance: none;
}

.scrollable::-webkit-scrollbar:vertical {
	width: 11px;
}

.scrollable::-webkit-scrollbar:horizontal {
	height: 11px;
}

.scrollable::-webkit-scrollbar-thumb {
	border-radius: 8px;
	border: 2px solid silver; /* should match background, can't be transparent */
	background-color: rgba(0, 0, 0, .5);
}

.scrollable::-webkit-scrollbar-track {
	background-color: #d0d0d0;
	border-radius: 8px;
}