/*모달 팝업 영역 스타일링*/

#modal {
    display: none;
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 10000000;
}
#modal .modal_contents {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    height: auto;
    width: 80%;
    z-index: 200;
}
#modal .modal-back {
    /*팝업 배경*/
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 100;
}
#modal .modal_contents .close_btn {
    color: #fff;
    cursor: pointer;
    position: absolute;
    z-index: 500;
    top: -15%;
    right: 0;
    font-size: 3rem;
}