.ct-dialog {
    width: 500px;
    margin:5% auto 0 auto ;
    border-radius: 3px;
    .ct-dialog-wrap {
        .ct-dialog-head {
            border-bottom: 1px solid $border-color;
            padding: 10px;
            box-sizing: border-box;
            position: relative;
            .ct-dialog-title {
                padding-right: 20px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                font-size: 14px;
                font-weight: bold;
            }
            .ct-dialog-close {
                position: absolute;
                top: 13px;
                right: 10px;
            }
        }
        .ct-dialog-body {
            
            padding: 10px;
            .ct-dialog-body-wrap  {
                padding-bottom: 10px;
                font-size: 12px;
            }
            .ct-dialog-btn-area {
                text-align: right;
                .ct-button {
                    margin-left: 10px;
                }
            }
        }
    }
}