html,
body {
    overflow: hidden;
    background: rgba(0, 0, 0, 0);
    color: #fff;
    margin: 0;
    padding: 0;
}

a {
    color: #fff;
}

#notification {
    height: 80px;
    width: 400px;
    margin: 0;
    position: relative;
    font-family: Helvetica, Arial, sans-serif;
    background-image: linear-gradient(rgba(48, 68, 93, 0.95), rgba(48, 68, 93, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-sizing: border-box;
    -webkit-app-region: drag;
    -webkit-user-select: none;
}

#notification.vertical.single {
    height: 120px;
}

#notification.vertical.double {
    height: 160px;
}

#notification .icon {
    width: 70px;
    height: 80px;
    float: left;
    margin-left: 15px;
}

#notification .icon img {
    padding: 10px 15px 0 15px;
    width: 50px;
}

#notification.actions {
    -webkit-app-region: no-drag;
}

#notification,
#notification .icon,
#notification .icon img,
#notification .message,
#notification .message:before,
#notification .message h2,
#notification .message p {
    -webkit-app-region: drag;
}

#notification.actions .message {
    width: 205px;
}

#notification.vertical.actions .message {
    width: 308px;
}

#notification .message {
    height: 80px;
    width: 310px;
    float: left;
    text-overflow: clip;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

#notification .message:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

#notification .message.onlyTitle h2 {
    padding: 30px;
}

#notification .message h2 {
    padding: 20px 0 0 0px;
    margin: 0 0 5px;
    font: bold 12px Myriad, Helvetica, Arial, sans-serif;
}

#notification .message p {
    padding: 0;
    margin: 0;
    font: bold 12px Myriad, Helvetica, Arial, sans-serif;
    font-weight: normal;
}

#notification #buttons {
    float: right;
    position: relative;
}

#notification.horizontal #buttons {
    border-left: 1px solid #fff;
    box-shadow: inset 1px 0 rgba(255, 255, 255, 0.4);
}

#notification.horizontal #buttons .Accept {
    background-color: green
}

#notification.horizontal #buttons .Reject {
    background-color: rgb(255, 0, 0)
}

#notification.vertical #buttons {
    width: 100%;
    position: absolute;
    top: 80px;
}

#notification.vertical.single #buttons a {
    height: 40px;
    line-height: 40px;
}

#notification.vertical #buttons a {
    padding-left: 20px;
    text-align: left;
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-top: 1px solid #fff;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
}

#notification.single .crossIcon,
#notification.double .crossIcon {
    height: 50px;
    text-decoration: none;
    color: #fff;
    position: absolute;
    left: 5px;
    top: 5px;
}

#notification.double #buttons a {
    height: 40px;
    line-height: 40px;
}

#notification.double.horizontal #buttons a:nth-child(2) {
    border-top: 1px solid #fff;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.4);
}

#notification.double #buttons a:nth-child(2) {
    top: 40px;
}

#notification.single #buttons a {
    height: 80px;
    line-height: 80px;
}

#notification #buttons a {
    box-sizing: border-box;
    top: 0;
    display: block;
    width: 100px;
    font: 13px Helvetica, Arial, sans-serif;
    text-align: center;
    text-decoration: none;
    right: 0;
}

#notification #buttons a:active {
    background-color: rgba(75, 74, 74, 0.95);
}