﻿#popup {
	width: 100%;
	height: 100%;
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	background: rgba(0,0,0,0.70);
	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;
	padding:20px;
}
.popup-title {
	padding: 5px 5px 5px 5px;
	color: #232323;
	text-align:center;	
	border-bottom:1px solid #aeaeae;
/*	color: rgba(255,255,255,.6);
	text-shadow: 3px 2px 3px rgba(255,255,255,.2); */
}
.popup-title h4 {
	color: #232323;
}
.popup-close h4 {
	font-size: 28px;
}
.popup-close {
	position: absolute;
	top:2px;
	right: 10px;
	font-size: 28px;
	text-align: center;
	padding: 0px 5px 0px 5px;
	cursor: pointer;
}
.popup-dialog-close {
	position: absolute;
	top:4px;
	right: 5px;
	font-size: 28px;
	text-align: center;
	padding: 0px 5px 0px 5px;
	cursor: pointer;
}
.popup-close:hover {
	color: red;
}
.popup-footer {
	padding:5px;
	text-align:center;	
	border-top:1px solid #aeaeae;
	background:#f1f1f1
}
.popup-footer button {
	width:70px;
	height:28px;
	cursor:pointer;
}