.confirmation-popup-wrapper{
	overflow-y: auto;
	background: rgba(0, 0, 0, 0.5);
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 99999;
	display: none;
}

.confirmation-popup{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-width: 768px;
}

/*
.confirmation-popup-close{
	display: block;
	margin: 0 auto;
	margin-right: 0;
	background: white;
	border: 0;
	font-size: 30px;
	width: 50px;
	height: 50px;
}
*/

.confirmation-popup-content{
	background: white;
	padding: 30px;
}

.confirmation-popup-content button{
	background: #003581;
	color: white;
	border: 0;
	padding: 15px 30px;
}

.confirmation-popup-content h1{
	font-size: 28px;
}

.confirmation-popup-content p{
	margin: 30px 0;
}