﻿.modaltitle h4 {
	padding:0;
	margin:0;
}
.dialogContent {
	position:inherit;
	width:auto;
	top: 20%;
	left: 42%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#popup {
	width: 100%;
	height: 100%;
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	background: rgba(0,0,0,0.20);
	z-index: 1110;
}
/* Inner */
.popup-inner {
	position: absolute;
	width:200px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	box-shadow: 0px 2px 6px rgba(0,0,0,1);
	border-radius: 5px;
	background: #fff;
	border:1px solid #25262c;
	overflow: hidden;
}
.popup-content {
	position: relative;
}
.popup-title {
	padding:15px;
	background:#fff;
	color: #232323;
	text-align:center;
/*	color: rgba(255,255,255,.6);
	text-shadow: 3px 2px 3px rgba(255,255,255,.2); */
}
.popup-close {
	position: absolute;
	top:4px;
	right: 10px;
	font-size: 22px;
	text-align: center;
	padding: 0px 5px 0px 5px;
	cursor: pointer;
}
.popup-dialog-close {
	position: absolute;
	top:4px;
	right: 5px;
	font-size: 20px;
	text-align: center;
	padding: 0px 5px 0px 5px;
	cursor: pointer;
}
.popup-close:hover {
	color: red;
}
.popup-footer {
	position:absolute;
	width:100%;
	bottom:0;
	padding:5px;
	border-top:1px solid #ccc;
	background:#f1f1f1;
}
.popup-footer button {
	width:70px;
	height:28px;
	cursor:pointer;
}
