#__popupConfirm {
	z-index: 99999;
	display: flex;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgb(92, 108, 141, 0.77);
	align-items: center;
	justify-content: center;
	
}
#__popupConfirm > div {
	min-width: 500px;
	max-width: 600px;
	min-height: 250px;
	background-color: white;
	border-radius: 10px;
	text-align: center;
	overflow: hidden;
	position: relative;
	-webkit-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.25);
}
#__popupConfirm .__msg {
	color: #8F9CB5;
	font-weight: 700;
	font-size: 1.5rem;
	min-height: 180px;
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
#__popupConfirm .__btns {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
		-khtml-user-select: none; /* Konqueror HTML */
			-moz-user-select: none; /* Old versions of Firefox */
			-ms-user-select: none; /* Internet Explorer/Edge */
					user-select: none; /* Non-prefixed version, currently
																supported by Chrome, Opera and Firefox */
}
#__popupConfirm .__btns > div {
	float: left;
	height: 70px;
	line-height: 70px;
	color: white;
	font-size: 1.2rem;
	font-weight: 900;
	width: 50%;
	cursor: pointer;
	transition: 0.3s;
}
#__popupConfirm .__btns > div:nth-child(1) {
	background-color: #BAD26E;
}
#__popupConfirm .__btns > div:nth-child(2) {
	background-color: #FE7065;
}
#__popupConfirm .__btns > div:nth-child(1):hover {
	background-color: #adc55c;
}
#__popupConfirm .__btns > div:nth-child(2):hover {
	background-color: #f35b50;
}
#__popupConfirm .__x {
	right: 15px;
	top: 15px;
	position: absolute;
	cursor: pointer;
	width: 20px;
	height: 20px;
}