
.popupBg {
	display: none;
	opacity: 0.0;
	background: rgba(0,0,0,0.5);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition: opacity 0.15s ease;
	text-align: center;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.popupLocker {
	display: none;
	background: rgba(0,0,0,0.1);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.popupContent {
	display: inline-block;
	position: fixed;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	opacity: 1.0;
	min-width: 10px;
	min-height: 10px;
	max-width: 90%;
	box-shadow: 0 0 4px 0 rgba(0,0,0,0.5);
	text-align: left;
	transition: all 0.15s ease;
}

.popupContent > * {
	margin: 0 !important;
}

.popupContentInfo {
	background: #CCC;
	color: #333;
	padding: 20px 40px;
	border-radius: 5px;
	font-size: 11px;
	text-align: center;
}

.popupContentError {
	background: #CCC;
	color: #B00;
	padding: 30px 40px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}

.popupContentDialog {
	background: #FFF;
	color: #000;
	padding: 10px;
	border-radius: 10px;
	overflow: hidden;
}

.popup__form-dialog {
}

.popup-hide,
.popupHide,
.popup-close,
.popupClose,
.dialog-hide,
.dialogHide,
.dialog-close,
.dialogClose {
	
}


