#contrl-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding-top: 50px;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	display: none;
}
.contrl-popup-box {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 600px;
	max-width: 100%;
	max-height: 100%;
	/* Use this for centering if unknown width/height */
	transform: translate(-50%, -50%);
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.contrl-popup-box h2 {
	font-size: 20px;
	color: #333;
	text-align: center;
	line-height: 40px;
	border-bottom: 1px solid #ccc;
}
.contrl-popup-box p {
	font-size: 16px;
	color: #333;
	padding: 20px;
	text-align: center;
}
.contrl-popup-box .btn {
	display: block;
	width: 100px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	margin: 0 auto;
	background-color: #f00;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	margin-top: 20px;
}
.contrl-popup-header {
	min-height: 24px;
}
.contrl-popup-close {
	position: absolute;
	top: 5px;
	right: 18px;
	color: lightgray;
	font-size: 24px;
	font-weight: bold;
	cursor: pointer
	}
.contrl-popup-close:hover {
	color: darkgray;
	}

.contrl-popup-body {
	height: 100%;
	}

/* Body when modal is open */
body.contrl-popup-open {
	height: 100vh;
	overflow-y: hidden;
	padding-right: 15px;
}