* {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

::-webkit-scrollbar { width: 0.5rem; height: 0.5rem; margin-left: 0.25rem; }
::-webkit-scrollbar-track { background: #282828; }
::-webkit-scrollbar-thumb { background: #888; border-radius: 0.5rem; }

html,
body {
	margin: 0;
	padding: 0;
}

body {
	background-color: #282828;
	color: #eeeeee;
}

header {
	background: url('img/barre_haute.png') repeat-x;
	height: 3.125rem;
	width:100%;
	position: fixed;
	top: 0;
	z-index: 10;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	font-size: 0.75rem;
	color: #282828;
}

header > h1 {
	margin: 0;
	padding: 0.5rem;
}

header > img {
	height: 2rem;
	padding: 0.5rem;
	cursor: pointer;
}

main.list {
	position: fixed;
	top: 3.125rem;
	width: 100%;
	height: calc(100% - 3.125rem);
	overflow: auto;
}

main.main {
	position: fixed;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0.5rem;
}

main.main > h3,
main.main > h1
{
	margin: 0;
	padding: 0.5rem;
	text-align: center;
}

.seeLine {
	background-color: #282828;
	color: #eeeeee;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	font-size: 16px;
	width: 100%;
	height: 3rem;
}

.seeLine:hover {
	background-color: #eeeeee;
	color: #282828;
}

.imgIcone {
	width: 2rem;
	height: 2rem;
	margin-right: 0.5rem;
}

.blockNameIcone {
	display: flex;
	flex-direction: row;
	align-items: center;
	font-size: 16px;
	height: 3rem;
	padding: 0.5rem;
	cursor: pointer;
	z-index: 3 !important;
}

.blockNameIcone > img,
.blockNameIcone > span {
	z-index: 1 !important;
}

.blockQte {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	font-size: 16px;
	height: 3rem;
	padding: 0.5rem;
}

.back {
	position: sticky !important;
	top: 0 !important;
	border-bottom: 1px solid #eeeeee;
	z-index: 10;
}

.blockFileInfo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	flex-wrap: wrap;
	font-size: 16px;
	height: 3rem;
	padding: 0.5rem;
}

.selectFile {
	position: fixed;
	top: 3.125rem;
	height: calc(100% - 3.125rem);
	width: 100%;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0.5rem;
	z-index: 300;
}

.box {
	background-color: #555555;
	border: 1px solid #282828;
	border-radius: 0.5rem;
	min-width: 350px;
}

.box-header {
	padding: 0.5rem;
	background-color: #282828;
	color: #eeeeee;
	font-size: 1rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.box-body {
	padding: 0.5rem;
	font-size: 1rem;
	text-align: center;
}

.box-body > h3 > a {
	color: yellow;
	text-decoration: none;
}

.box-footer {
	padding: 0.5rem;
	font-size: 0.75rem;
	text-align: center;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.btnClose {
	color: #ffffff;
	background-color: #dc3545;
	border-color: #dc3545;
	cursor: pointer;
}

.btnDl {
	color: #ffffff;
	background-color: #007bff;
	border-color: #007bff;
	cursor: pointer;
}

.btnSeeGoogle {
	color: #ffffff;
	background-color: #138496;
	border-color: #117a8b;
	cursor: pointer;
}