.popup_wrap {
    position: fixed;
    top: 3%;
    left: 16%;
    z-index: 110;
}

.popup {
    display: none;
    display: inline-block;
    vertical-align: top;
    width: 455px;
    margin: 0 7px;
}

.popup .cont {
    background-color: #fff;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.2);
}

.popup .cont img {
    max-width: 100%;
}

.popup .closee {
    padding: 5px;
    position: relative;
    background-color: #fff;
    box-shadow: 4px 4px 8px rgba(0,0,0,0.2);
}

.popup .closee input[type=checkbox] {
    -webkit-appearance: checkbox;
    width: 14px;
    height: 14px;
    vertical-align: top;
    margin-top: 3px;
}

.popup .closee input[type=checkbox] + label {
    display: inline-block;
    font-size: 13px;
    line-height: 20px;
    cursor: pointer;
    margin-left: 4px;
}

.popup .closee button {
    position: absolute;
    bottom: 5px;
    right: 5px;
    padding: 0 8px;
    height: 20px;
    line-height: 20px;
    background-color: #5181BF;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
}

@media screen and (max-width:767px) {
    .popup_wrap {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
    }

    .popup_wrap .popup {
        width: 100%;
        padding: 0 20px;
        margin: 20px 0;
    }
}