<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#confirmOverlay{
	width:100%;
	height:100%;
	position:fixed;
	top:0;
	left:0;	
	background-color: rgba(0, 0, 0, 0.6);
	z-index:100000;
}

#confirmBox{
	background:#fff;
	min-width:300px;
	max-width:460px;
	position:fixed;
	left:50%;
	top:50%;
	margin:-130px 0 0 -230px;
	border: 1px solid rgba(33, 33, 33, 0.6);
	
	-moz-box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
	-webkit-box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
	box-shadow: 0 0 2px rgba(255, 255, 255, 0.6) inset;
}

#confirmBox h1,
#confirmBox p{
	
	background:#fff;
	padding: 5px 10px;	
	color:#666;
}

#confirmBox h1{
	letter-spacing:0.3px;
	font-size:20px;		
	height:30px;
	line-height:30px;
	color:#222;
	border-bottom:1px solid #f2f2f2;
}

#confirmBox p{
	background:none;
	font-size:14px;
	line-height:1.4;
	padding-top: 10px;
	min-height:50px;
	color:#222;
	
}

#confirmButtons{
	padding:5px 10px;
	text-align:right;
	background:#f2f2f2;
	
	
}

#confirmBox .button:last-child{	margin-right:0;}

#confirmBox .button
{
    background:#495D7F!Important;
    padding:5px 10px;
    
}
</pre></body></html>