#simple-exit-notifier-modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
display: none;
}
.simple-exit-notifier-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
}
.simple-exit-notifier-content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
width:750px;
max-width:90%;
}
.simple-exit-notifier-header {
padding:10px 20px;
background:#ccc;
}
.simple-exit-notifier-header h2 {
margin:0;
padding:0;
}
.simple-exit-notifier-message {
padding:20px 20px 0;
}
.simple-exit-notifier-actions {
padding-bottom:20px;
text-align:center;
}
.simple-exit-notifier-content button,
.simple-exit-notifier-content a {
margin: 10px;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
text-decoration: none;
display: inline-block;
}
#simple-exit-notifier-cancel {
background: #f44336;
color: #fff;
}
#simple-exit-notifier-proceed {
background: #4caf50;
color: #fff;
}