.popup_wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: none;
}
.popup_content_wrapper {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    width: 100%;
    height: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    z-index: 10;
	padding: 30px;
	box-sizing: border-box;
}
.popup_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
	cursor: pointer;
}
.popup_content_block {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 35px 30px;
    display: inline-block;
    position: relative;
    box-shadow: 0px 0px 50px -15px;
    max-width: 100%;
    margin-left: 0 !important;
    margin-top: 0;
	box-sizing: border-box;
}
.popup_close {
	width: 35px;
    height: 35px;
    position: absolute;
    top: -25px;
    right: -25px;
    cursor: pointer;
    border-radius: 100%;
    box-sizing: border-box;
	background-color: #ff5722;
}
.popup_close:hover{

}
.popup_content {
    min-width: 50px;
    min-height: 50px;
    text-align: left;
	overflow: auto;
}
.popup_content img{
	max-height: 100%;
	max-width: 100%;
}
.popup_close:before{
    content: '';
    display: block;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    height: 3px;
    width: 21px;
    border-radius: 3px;
    background-color: #FFFFFF;
    position: absolute;
    top: 16px;
    left: 7px;
}
.popup_close:after{
    content: '';
    display: block;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    height: 3px;
    width: 21px;
    border-radius: 3px;
    background-color: #FFFFFF;
    position: absolute;
    top: 16px;
    left: 7px;
}
.popup_content h2{
    font-size: 18px;
    margin: 20px 0 10px;	
}
.popup_content h3{
    font-size: 16px;
    margin-top: 15px;
	margin-bottom: 0px;
    font-weight: bold;	
}
.popup_content{
    font-size: 14px;	
}
.popup_link{
	text-decoration: underline;
	cursor: pointer;
}
.popup_link:hover{
	text-decoration: none;
}