
.modal .modal_popup h2{ text-align: center; }

.modal_btn {
    display: block;
    margin: 40px auto;
    padding: 10px 20px;
    background-color: royalblue;
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: box-shadow 0.2s;
}
.modal_btn:hover {
    box-shadow: 3px 4px 11px 0px #00000040;
    
}

/*모달 팝업 영역 스타일링*/
.modal {
/*팝업 배경*/
	display: none; /*평소에는 보이지 않도록*/
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(0,0,0,0.5);
}
.modal .modal_popup {
/*팝업*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -170%);
    padding: 15px;
    background: #fff; 
    border-radius: 10px;
    width:300px;
}
.modal .modal_popup img{ width:75px; margin-bottom:10px; }
.modal .modal_popup p{ font-size:13px;}
.modal .modal_popup .close_btn {
    display: block;
    padding: 7px 20px;
    background-color: royalblue;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: box-shadow 0.2s;
}
.modal .modal_popup .title{
 font-size:16px;
 font-weight:600;
 margin-bottom:10px;
}
