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

#popmenu2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 300px;
    height: 480px;
    text-align: center;
    background: #f7f7f7;
    
}

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

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

