/** popup **/
#popup_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 3;
    left: 0;
    top: 0;
    overflow: hidden;
}

#popup_bg.show {
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup, .flash {
    display: block;
    left: 20%;
    max-height: 100%;
    max-width: 1000px;
    min-width: 300px;
    padding: 0;
    position: absolute;
    top: 10px;
    width: auto;
    z-index: 3;
    background-color: #ffffff;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.25);
    border-radius: 4px;
}

.flash {
    z-index: 4;
}

i.icon.close{
    cursor: pointer;
    height: 32px;
    position: absolute;
    right: 3px;
    top: 5px;
    min-width: 32px;
    width: 32px;
    z-index: 1;
}
/*
.inform > .main > .title {
    background-color: #edf1f6;
    line-height: 30px;
    text-align: center;
    font-size: 20px;
    color: #2c2c2c;
    padding: 12px 15px;
}*/


.inform > .main > .inner{
    padding: 44px 50px;
}

@media only screen and (max-width: 950px) {
    .inform > .main > .inner{
        padding: 30px 30px;
    }
}

@media only screen and (max-width: 720px) {
    .inform > .main > .inner{
        padding: 30px 15px;
    }
}
/** end popup **/