﻿#popup_container {
    min-width: 300px !important; /* Dialog will be no smaller than this */
    max-width: 620px !important; /* Dialog will wrap after this width */
    font-family: '맑은 고딕', 'Malgun Gothic';
    background: #FFF;
    border: 1px solid #595959;
    border-radius: 0;
    padding: 5px;
    font-size: 12px;
    color: #000;
    position: fixed !important;
    top: 40vh !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}

#popup_title {
    margin: 0em;
    padding: 8px 15px;
    line-height: 1.75em;
    background-color: #235FA3;    
    font-size: 12px;
    color: #FFF;
    font-weight:bold;
    text-align: left;
    cursor: default;    
}

#popup_content {
	margin: 0em;
    padding: 0em;
    text-align:center;
}

#popup_message {
    padding: 15px;
    font-family: '맑은 고딕', 'Malgun Gothic';
    font-size: 12px;  
    line-height:20px;
    color: #666;
}

#popup_panel {
    margin: 0;
    padding: 8px 15px;
    border-top: 1px solid #EBEBEB;
    text-align: right;
}

#popup_ok {
    padding: 5px 10px;
    background-color: #235FA3;
    box-shadow: none;
    border: 1px solid #235FA3;
    border-radius: 2px;
    font-size: 12px;
    color: #FFF;
    outline:none;
    cursor: pointer;
}
    #popup_ok:hover {
        background-color: #1C72FF;
    }

#popup_cancel {
    padding: 5px 10px;
    background-color: #E8E8E8;
    box-shadow: none;
    border: 1px solid #D6D6D6;
    border-radius: 2px;
    font-size: 12px;
    color: #999;
    outline: none;
    cursor: pointer;
}
 
#popup_prompt {
	margin: .5em 0em;
}