/* Error handler design */
body {
    position: relative;
    /* set scrollbar to always show */
}
.rounded {
    -moz-border-radius: 10px;
    border-radius: 10px; 
}
.error-handler {
    position: fixed;
    top: 25px;
    right: 25px;
    width: 500px;
    padding: 15px;
    background-color: #ed2d2d;
    color: #fff;
    opacity: 0.95;
}
.error-handler h3 {
    background-color: #b51818;
    padding: 10px;
    font-size: 19px;
    padding-left: 30px;
    text-align: center;

}
.notification {
    width: 600px;
    font-size: 12px;
    text-align: center;
    background-color: green;
    color: white; 
    padding: 15px;
    margin: 0 auto;
    margin-bottom: 10px;
    bottom: 25px;
}