﻿.panel-confirm {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    background: transparent;
}
.confirm-dialog {
    background: lightgray;
    margin: 0 auto;
    width: 70%;
    margin-top: 10%;
    border-radius: 10px;
}
.confirm-message {
    padding: 25px;
    text-align: center;
}
.confirm-actions {
    border-top: 1px solid #f8f8f8;
    overflow: auto;
}
    .confirm-actions > .action {
        width: 50%;
        cursor:pointer;
        float: left;
        padding: 10px;
        text-align: center;
    }
.action.yes {
    border-right: 1px solid #f8f8f8;
    color:blue;
}
.action.no{
    color:red;
}