@charset "utf-8";
/**
 * ATOM ENGINE Cascading Style Sheets
 * File Name : popup.css
 * Description : 팝업 스타일 시트 (모던화 및 관리자 크기 제어용)
 */

/* 팝업 랩퍼 */
.popup_wrap {
    background: #ffffff;
    border-radius: 10px; /* 둥근 모서리 */
    /* box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05);  */
    overflow: hidden;
    border: 1px solid #f0f0f0; 
}

/* 팝업 헤더 */
.popup_header { 
    background: #ffffff; 
    padding: 14px 20px; 
    text-align: left; 
    cursor: move;
    border-bottom: 1px solid #eeeeee;
}

.popup_head_center .title {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}


.popup_content_wrap { 
    background: #ffffff;  
}

.popup_content_body { 
    margin: 0 auto; 
    text-align: center; 
    overflow: hidden;
}

.popup_content_body img {
    max-width: 100%;
    height: auto;
    display: block; 
}


.popup_content_foot { 
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    padding: 12px 20px; 
    background: #fcfcfc; 
    border-top: 1px solid #eeeeee;
    color: #555555;
    font-size: 14px;
    justify-content: space-between;
}


.popup_content_foot .line {
    display: none; 
}


.popup_wrap input[type="checkbox"] { 
    width: 16px; 
    height: 16px;   
    margin: 0 6px 0 0;
    cursor: pointer;
    accent-color: #2269c1; 
}

.popup_content_foot a { 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 14px;
    padding: 8px 20px;
    background: #2269c1;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.popup_content_foot a:hover { 
    background: #444444; 
}

@media all and (max-width:740px) {
    #popup > div { 
        width: 90% !important; 
        left: 5% !important; 
        top: 10vh !important;
    }
    
    .popup_content_foot { 
        font-size: 13px;
        padding: 12px 16px;
        justify-content: space-between;
    }

    .popup_content_foot a {
        padding: 8px 16px;
        margin-left: 10px;
    }
}


.popup_close{
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #838383;
}