.fadeDialogue{
	position: fixed;
	z-index: 9999;
	padding-top: 20px;
	width: 100%;
	height: 100%;
	background-color: rgba(25, 25, 25, 0.5);
	display: none;
	top: 0;
	left: 0;
}
.dialog{
	margin: auto;
	background-color: white;
	border: 1px solid rgba(0,0,0,.2);
	background-clip: padding-box;
	border-radius: .3rem;
	width: 500px;
	padding: 20px;
	font-family: arial;
	display: flex;
	flex-direction: column;
}
.fadeDialogue.visible{
	display: block;
}

.dialog h1{
	margin: 0 0 1rem 0;
	font-size: 1.5rem;
}
.dialog p{
	margin: 0 0 1rem 0;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}
.dialog div{
}
.dialog .btn-dialog{
	margin: 0 1rem 0 0 ;

	display: inline-block;
	font-weight: 400;
	color: #212529;
	text-align: center;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	color: #000;
	background-color: #f8f9fa;
	border: 1px solid;
	border-color: #e1e1e1;

	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: .25rem;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;

}
.dialog .btn-dialog:hover {
	background-color: #f9fafb;
	border-color: #c4c6c8;
}

.dialog .btn-dialog:last-child{
	margin: 0;
}
.dialog button:not(:disabled) {
	cursor: pointer;
}
.dialog .btn-annuler{
	float: right;
}