.notification_popup {
    width: 100%;
    height: 100%;
    background: #22222282;
    z-index: 10000;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    box-sizing: border-box;
}
.popup_inner {
    background: #fff;
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}
.pop_header {
    text-align: center;
    padding: 10px;
    background: #c1c1c1;
    text-transform: uppercase;
    position:relative;
}
.pop_main {
    padding: 15px;
}
.pop_main img {
    display: block;
    max-width:100%;
    margin:0 auto 15px;
}
.pop_main p {
    color:#222222;
    font-size:16px
}
.close_pop {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 10px;
}
