
/* Css for the example page. u can delete this */

body {
  margin: 0;
  font-family: arial;
}

#example {
  width: 40%;
  margin: auto;
  background: #eee;
  border-radius: 2px;
  margin-top: 120px;
  padding: 20px;
}

#answer { float: right; }

/* Use the css below for the dialog or change it as you wish */

#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: black;
  opacity: 0.7;
  z-index: 999;
}

#confirm-dialog {
  position: fixed;
  color: white;
  background-color: rgba(0,0,0,.85);
  z-index: 1000;
  width: 100%;
  top: 50%;
  transform: translate(0%, -50%);
  font-size: 13px;
}

#confirm-dialog .dialog-content {
  padding: 20px;
  padding-left: 10%;
  padding-right: 10%;
  width: 80%;
  float: left;
}

#confirm-dialog button {
  margin-right: 10px;
  float: right;
  padding: 10px;
  border: 0px;
  border-radius: 2px;
}

#confirm-dialog button.alert { background: #EB2E15; }

#confirm-dialog button.save { background: #8AC007; }
