@import 'reset.css';
/*popup start*/

#popup_container{
	background: white;
	/*padding: 20px;*/
	-webkit-box-shadow: 7px 5px 21px -9px rgba(0,0,0,0.52);
	-moz-box-shadow: 7px 5px 21px -9px rgba(0,0,0,0.52);
	box-shadow: 7px 5px 21px -9px rgba(0,0,0,0.52);
}
#popup_container #popup_title{
	padding: 7px;
	color: white;
	background: #09C688;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
#popup_title span{
	font-family: caps;
	font-size: 15px;
	color: white;
}
#popup_message{
	padding: 15px;
	text-align: center;
}
#popup_container .alert{
	margin-bottom: 0;
	text-align: center;
	min-width: 350px !important;
}
#popup_panel{
	text-align: center;
	margin-bottom: 15px;
}
#popup_panel input[type="button"]{
	margin-right: 5px;
}
.popup_under {
	display:none;
	height:100%;
	width:100%;
	position:absolute;
	top:0;
	left:0;
	background-color:#111;
	opacity:0.4;
}
.popup {
	display:table-cell;
	height:auto;
	width:100%;
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	opacity:0;
	background: rgba(0, 0, 0, 0.4);
}
.popup-header {
	background-color: #e9e9e9;
    position: relative;
    height: 64px;
    -webkit-border-top-left-radius: 4px;
    -webkit-border-top-right-radius: 4px;
    -moz-border-radius-topleft: 4px;
    -moz-border-radius-topright: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.popup_container_block {
	width:100%;
	height:100%;
	display:table-cell;
	vertical-align:middle;
	position:relative;
	overflow:hidden;
}
.popup_container {
	display:inline-block;
	position:relative;
	text-align:center;
	overflow:auto;
}
.popup_content {
	position:relative;
	min-height:150px;
	min-width:305px;
	max-width: 1000px;
	display:inline-block;
	background-color:#FFF;
	box-shadow: 0 0 20px #666;
	text-align:left;
	/*border:2px solid #466b8e;*/
	margin:30px 0;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.popup_title {
	background-color: #0394d6;
    padding: 0 20px;
    margin: 0;
    display: block;
    color: #FFF;
    font-weight: normal;
    font-size: 14px;
    border-bottom: none;
    height: 40px;
    line-height: 42px;
    font-family: caps;
    -webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	
}
.popup_body {
	margin: 0;
	padding: 15px;
}
.popup_close {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    display: block;
    cursor: pointer;
    background-image: url('../../img/close.svg');
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    margin: 0;
    padding: 0;
    -webkit-border-top-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	border-top-right-radius: 5px;
}
.popup_close:hover {
	background-color: #015880;
}
.popup_loader {
	display:block;
	margin:50px auto;
	text-align:center;
}
.popup_loader_img {
	width: 31px;
	height: 31px;
	background: transparent url('../../img/plugin-loader.gif');
	text-align:center;
	background-position: center;
    display: inline-block;
    background-size: cover;
}
.popup_loader_text {
	font-size:12px;
	margin:8px 0 0 0;
	text-align:center;
}
.popup_active_body {
	overflow: hidden;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}
.popup_scrollbar_width {
	display:none;
	visibility:hidden;
	opacity:0;
	width:20px;
	height:20px;
	overflow:scroll;
}
/*popup end*/