.barun_popup{
    max-width: 500px;
    position: absolute;
    left: 2%;
    top: 10%;
    display: none;
}
.barun_popup.on {
    display: block;
}

.barun_popup img {
    width: 100%;
}

.barun_popup.popup2 {
    top: 10%;
    left: 29%;
}

.pop_close_box {
    display: flex;
    text-align: center;
    box-shadow: 2px 2px 10px #ccc;
}

.pop_close_box span {
    display: block;
    width: 50%;
    height: 56px;
    padding: 3% 0 0 0;
    cursor: pointer;
    color: #000000;
}

.pop_close_box span:hover{
    background-color: #5574a1;
    color: #fff;
}

.pop_close_box span:first-child {
    border-right: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
    .barun_popup {
        left: 5%;
        top: 10%;
        width: 100%;
        height: 100%;
        min-width: 300px;
        max-width: 400px;
    }
    .barun_popup.popup2 {
        top: 10%;
        left: 5%;
    }
    .pop_close_box {
        background: #fff;
    }
}


