
.openDialog {
    width: 100% !important;
    height: 100% !important;
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
    z-index: 20000 !important;
}

#dialogOverlay {
    position: fixed; 
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    filter: alpha(opacity=0);
    z-index: -1;
    transition: opacity .1s linear;
}

#dialogContainer {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    display: inline-block;
    height: 300px;
    width: 100%;
    margin: auto;
    background-color: rgba(0,0,0,0.85);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.85);
}

#dialogBox {
    margin: auto;
}

#dialogBox div {
    float: left;
    height: 215px;
}

#dialogBox span {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 1em;
    width: 100%;
}

#dialogBox span p {
    margin: 0px;
    text-align: center;
    /*padding-left: 5px;*/
    background-image: url('../image/CardioPulse.png');
    background-repeat: no-repeat;
    background-position: 5px center;
    background-size: contain;

}

#dialogLogo {
    background-repeat: no-repeat;
    background-position: center;
    width: 125px;
}

#dialogContent {
    display: table;
    width: 425px;
}

#dialogContent p {
    display: table-cell;
    vertical-align: middle;
    color: white;
    padding: 15px;
    font-size: .9em;
}

#dialogButton {
    width: inherit;
    text-align: center;
}

#dialogBox button {
    font-family: Roboto;
    width: auto;
    height: 30px;
    border: none;
    cursor: pointer;
    background-color: rgb(2,82,158);
    color: white;
    border-radius: 0px;
    outline: none;
}

#dialogBox button:active {
    background-color: rgb(2,34,65);
    border: none;
}

#dialogBox button:hover {
    background-color: rgb(2,66,126);
}

