#success-dialog {
    position: absolute;
    display: none;
    width: 400px;
    height: 200px;
    z-index: 9999;
    top: 25%;
    background:white;
    border: 1px solid black;
    -webkit-box-shadow:0 0 10px rgba(0,0,0,0.4);
    -moz-box-shadow:0 0 10px rgba(0,0,0,0.4);
    box-shadow:0 0 10px rgba(0,0,0,0.4);
}

.dialog-text {
    height: 175px;
}
.dialog-footer {
    width: 100%;
    height: 25px;
}

.dialog-footer button {
    float: right;
    margin-top: 4px;
    margin-right: 10px;
}