.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: rgba(18, 25, 33, 0.85);
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.overlay.active {
	opacity: 1;
	visibility: visible;
	z-index: 999;
}

.popup {
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) scale(0.6);
	-moz-transform: translate(-50%, -50%) scale(0.6);
	-ms-transform: translate(-50%, -50%) scale(0.6);
	-o-transform: translate(-50%, -50%) scale(0.6);
	transform: translate(-50%, -50%) scale(0.6);
	width: -webkit-calc(100% - 20px);
	width: -moz-calc(100% - 20px);
	width: calc(100% - 20px);
	max-width: 600px;
	max-height: 100%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.overlay.active .popup {
	z-index: 1;
	opacity: 1;
	visibility: visible;
	-webkit-transform: translate(-50%, -50%) scale(1);
	-moz-transform: translate(-50%, -50%) scale(1);
	-ms-transform: translate(-50%, -50%) scale(1);
	-o-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
}

.popup .heading {
	height: 52px;
	line-height: 52px;
	text-align: center;
	background-image: -webkit-linear-gradient(135deg, #5d9cec 0%, #0e65d7 100%);
	background-image: -moz-linear-gradient(135deg, #5d9cec 0%, #0e65d7 100%);
	background-image: -o-linear-gradient(135deg, #5d9cec 0%, #0e65d7 100%);
	background-image: linear-gradient(-45deg, #5d9cec 0%, #0e65d7 100%);
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	position: relative;
}

.popup .heading .popup-close {
	background: url(/revenue/agent/template/image/ico-close.svg);
	width: 59px;
	height: 20px;
	position: absolute;
	right: -5px;
	top: 16px;
	cursor: pointer;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	background-position: center center;
}

.popup .heading .close:after {
	content: '';
	background: url(/revenue/agent/template/image/ico-close.svg);
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.popup .heading .close:hover:after {
	opacity: 1;
}

.popup .container {
	padding: 24px;
	background: #18212b;
}

.popup .popup-btn {
	width: 100%;
	text-align: center;
	height: 42px;
	line-height: 42px;
	font-size: 14px;
	text-transform: none;
}

.popup .label-desc {
	white-space: normal !important;
	vertical-align: top;
	line-height: 20px;
}

.popup input[type=checkbox]+span {
	vertical-align: top;
}

.popup .popup-btn {
	height: 42px;
	text-align: center;
	background-image: -webkit-linear-gradient(135deg, #5d9cec 0%, #0e65d7 100%);
	background-image: -moz-linear-gradient(135deg, #5d9cec 0%, #0e65d7 100%);
	background-image: -o-linear-gradient(135deg, #5d9cec 0%, #0e65d7 100%);
	background-image: linear-gradient(-45deg, #5d9cec 0%, #0e65d7 100%);
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	line-height: unset;
	border: 0px;
}

.popup .label {
	color: #fff;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
	padding-top: 10px;
}

#maintenance-info {z-index:9999}

.warning {
	padding: 15px;
	text-align: center;
	background: #FFF;
	color: #c51d1d;
}