.overlay {
	background-color: rgba(0, 0, 0, 0.7);
	bottom: 0;
	cursor: default;
	left: 0;
	opacity: 0;
	position: fixed;
	right: 0;
	top: 0;
	visibility: hidden;
	z-index: 1;
    width: 100%;
    height: 100vh;
    z-index: 1000;
	-webkit-transition: opacity .5s;
	-moz-transition: opacity .5s;
	-ms-transition: opacity .5s;
	-o-transition: opacity .5s;
	transition: opacity .5s;
}
.popup,
.popup-alert{
	top: 40%;
	left: 50%;
	opacity: 0;
	position: fixed;
	z-index: 999999;
	min-width: 320px;
	visibility: hidden;
	display: inline-block;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: opacity .5s, top .5s;
	-moz-transition: opacity .5s, top .5s;
	-ms-transition: opacity .5s, top .5s;
	-o-transition: opacity .5s, top .5s;
	transition: opacity .5s, top .5s;
	border-radius: 4px;
    border: 1px solid #cccccc;
    background-attachment: fixed;
	border-radius: 4px;
	background: #fff;
}
.popup .title,
.popup-alert .title{
	font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 8px 0;
    margin: 0 0 18px;
	position: relative;
	background-color: #eeeeee;
}
.popup .fa-times,
.popup-alert .fa-times{
	cursor: pointer;
    font-size: 24px;
	position: absolute;
    top: 2px;
    right: 8px;
    color: #9E9E9E;
}
.popup .fa-times:hover,
.popup-alert .fa-times:hover{
    color: #000;
}
.popup-alert .warning_text{
	font-size: 16px;
	text-align: center;
	padding: 0 16px;
}
.popup-alert .btn{
	font-size: 16px;
	text-align: center;
	margin: 24px 36.5%;
	background: #de1f3e;
}
