.agree_pop_up {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999999;
    display: none;
}

.pop_box {
    width: 700px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    overflow: hidden;
}

.pop_box p {
    width: 100%;
    padding: 15px 20px;
    background-color: #0059a3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    color: #fff;
    font-family: 'Pretendard-Bold', sans-serif;
    box-sizing: border-box;
}

.pop_box i {
    cursor: pointer;
}

.pop_inner {
    width: 100%;
    height: 60vh;
    padding: 20px;
    box-sizing: border-box;
    overflow: auto;
    white-space: pre-line;
    font-size: 16px;
    line-height: 23px;
    color: #111;
    font-family: 'Pretendard-Regular', sans-serif;
}


/* mobile */
@media screen and (max-width: 767px){ 
 .pop_box {
        width: 85%;
    }

    .pop_box p {
        font-size: 16px;
    }

    .pop_box i {
        cursor: inherit;
    }

    .pop_inner {
        height: 40vh;
        font-size: 13px;
        line-height: 18px;
    }
}

/* tablet */
@media screen and (min-width: 768px) and (max-width: 1024px){

    .pop_box {
            width: 60%;
        }

        .pop_box p {
            font-size: 16px;
        }

        .pop_box i {
            cursor: inherit;
        }

        .pop_inner {
            height: 40vh;
            font-size: 14px;
            line-height: 20px;
        }
    }