
/*팝업창*/
#popup {
    display: none; /*숨기기*/
    position: fixed;
    top:0px;
    left:0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
}

#popmenu {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 300px;
    height: 250px;
    text-align: center;
    background: #fff;
    border-radius:5px;
}

#popmenu p {
    margin-top: 80px;
}

.exit {
    position: absolute;
    right: 0px;
    top: 10px;
    transform: translate(-50%,0);
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    background: #eee;
    cursor: pointer;
    border-radius:3px;
    font-size:15pt;
    border: 1px solid #ccc;
}

/*버튼내용*/
#c_popup {

    cursor: pointer;
}