
.dialog-info {
     position: relative;

}

.dialog-body {
    width: 200px;    
    position: absolute;
    /* top: 60%; */
    /* left: 50%; */
    margin: -100px 0 0 -100px;
     border-radius: 3px;
     background-color: #b0b0b0;
     border: 1px solid #b0b0b0;
     box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
     z-index: 900;
}

.dialog-body .dialog-title {
    padding: 5px;
    text-align: center;
}


/*버튼*/
.dialog-body .dialog-button-foot {
    display: flex;
    padding: 0px;
    box-sizing: border-box;
    text-align: center;
}

.dialog-button-foot .dialog-button-ok {
    color: #ffffff;
    background-color: #2a8f4d;
    flex-basis: 100%;
    border-right: 1px #d2d2d2;
    border-right-style: solid;
    padding: 11px;
    border-top: 1px #666666;
    border-bottom: 1px #666666;
    border-left: 1px #666666;
}

.dialog-button-foot .dialog-button-close {
    color: #ffffff;
    background-color: #666666;
    flex-basis: 100%;
    padding: 11px;
    border-top: 1px #666666;
    border-right: 1px #666666;
    border-bottom: 1px #666666;
}