@charset "utf-8";
/************************************************************************
 * 프로젝트   : 숲길자원정보API 구축사업
 * 파일명      : puremodal.css
 * 설명         : 순수 자바스크립트 구현 modal
 * 작성일      : 2021.11
 * 버   전      : 1.0
************************************************************************/
/* image modal */
.modal {
   display: none; /* 모달창 숨겨 놓기 */
    position: fixed; 
    z-index: 9999; /* 모달창을 제일 앞에 두기 */
    padding-top: 70px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto; /* 스크롤 허용 auto */
    cursor: pointer; /* 마우스 손가락모양 */
    background-color: rgba(0, 0, 0, 0.8);
}
.modalBox {
   	margin: auto;
    display: block;
    width: 100%; 
    height: 100%;
    max-width: 1000px;
    border-radius: 10px;
    animation-name: zoom;
    animation-duration: 0.8s;
    padding: 20px 20px 20px 20px;
    text-align: center; /* horizontal */
}

/* image modal end */