.dlgOverlay {
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(11, 11, 11, 0.1)), to(rgba(11, 11, 11, 0.6))) repeat-x rgba(11, 11, 11, 0.2);
	position: absolute;
	top: 0;
	left: 0;
	display: flex !important;
	justify-content: center;
	height: 100vh;
	width: 100vw;
	z-index: 100000;
	overflow: hidden;
}

.dlgBoite {
	aspect-ratio: 3/1;
	font-size: 2rem;
	font-family: Arial, Helvetica, sans-serif;
	position: fixed;
	display: flex;
	flex-direction: column;
	min-width: 300px;
	max-width: 600px;
	user-select: none;
	animation-name: monte;
	animation-duration: 0.2s;
	animation-fill-mode: forwards;
	animation-timing-function: linear;
	background-color: #ffffff;
	color: #000000;
}

@keyframes monte {
	from {
		top: 100vh;
	}

	to {
		top: 30vh;
	}
}

.dlgBoite div {
	padding: 1rem;
}

.dlgTitre {
	color: #ffffff;
	background-color: #000000;
}

.dlgTexte {
	flex-grow: 1;
	/*
	color: #000000;
	background-color: #ffffff;
	*/
	overflow: auto;
}

.dlgBoutons {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 1fr;
	text-align: center;
	padding: 0 !important;
}

.dlgBouton {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	color: #000000;
	background-color: #dadada;
	padding: 0.5rem 0.5rem 0.5rem 0.5rem;
	overflow: hidden;
	/*
	border-radius: 0.5rem;
	margin: 0 1rem 0 1rem;
	*/
	margin-left: 0.1rem;
	margin-right: 0.1rem;
	text-decoration: none;
	cursor: pointer;
}

.dlgBouton:hover {
	/*
	border-left-color: #bbbbbb;
	border-bottom-color: #bbbbbb;
	border-right-color: #bbbbbb;
	*/
	background-color: #999999;
	color: #ffffff;
}

.dlgBouton:first-child {
	margin-left: 0;
}

.dlgBouton:last-child {
	margin-right: 0;
}

.dlgProgres,
.dlgProgres:before {
	height: 2rem;
	margin: 0;
	padding: 0 !important;
}

.dlgProgres {
	background-color: #aaaaaa;
	display: -webkit-flex;
	display: flex;
}

.dlgProgres:before {
	background-color: #000000;
	content: '';
	width: 20%;
	-webkit-animation: running-progress 3s linear forwards infinite;
	/* cubic-bezier(0.4, 0, 0.2, 1) infinite; */
	animation: running-progress 3s linear forwards infinite;
	/* cubic-bezier(0.4, 0, 0.2, 1) infinite; */
}

@-webkit-keyframes running-progress {
	0% {
		margin-left: 0%;
		margin-right: 100%;
	}

	50% {
		margin-left: 40%;
		margin-right: 40%;
	}

	100% {
		margin-left: 100%;
		margin-right: 0;
	}
}

@keyframes running-progress {
	0% {
		margin-left: 0;
		margin-right: 100%;
	}

	50% {
		margin-left: 40%;
		margin-right: 40%;
	}

	100% {
		margin-left: 100%;
		margin-right: 0;
	}
}