.popup_parent {	
	position: fixed;
    z-index: 9999;
    top: 30%;
    display: none;
	color:white;
}
.popup_parent::before {
	background: black;
    opacity: 0.7;
    content: '';
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 98;
    top: 0;
    left: 0px;
}
.popup_parent .close{
	cursor: pointer;
    height: 50px;
    width: 50px;
    text-align: center;
    border: 0;
    position: absolute;
    right: 0;
    z-index: 100;
    outline: none;
    box-shadow: none;	
}
.popup_wrapper {
    background: #22262E;
    position: relative;
    z-index: 99;
    width: 100%;
    height: auto;
    padding: 30px;
}