.dialog, .dialog-bg {
  display: none;
  position: fixed;
}

.dialog {
  min-width: 230px;
  max-width: 320px;
  border-radius: 3px;
  border: 1px solid;
  margin: 10px;
  z-index: 1200;
}

.dialog-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1199;
  background-color: #000000;
  opacity: 0.7;
}

.dialog-title {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  margin: 3px;
  text-align: center;
  font-weight: bold;
  min-height: 25px;
}

.dialog-close {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}

.dialog-content {
  padding: 15px 10px 15px 50px;
  background-repeat: no-repeat;
  background-position: 10px center;
}

.dialog-buttons {
  text-align: center;
}

.plain .dialog-content {
  padding: 15px 10px 15px 10px;
}

.dialog.plain {
  color: #555555;
  background-color: #eeeeee;
}

.plain .dialog-title {
  border-bottom: 1px solid #555555;
}

.dialog.info {
  color: #00529B;
  background-color: #BDE5F8;
}

.info .dialog-content {
  background-image: url("/images/dialog/info.png");
}

.info .dialog-title {
  border-bottom: 1px solid #00529B;
}

.dialog.success {
  color: #4F8A10;
  background-color: #DFF2BF;
}

.success .dialog-content {
  background-image: url("/images/dialog/success.png");
}

.success .dialog-title {
  border-bottom: 1px solid #4F8A10;
}

.dialog.warning {
  color: #9F6000;
  background-color: #FEEFB3;
}

.warning .dialog-content {
  background-image: url("/images/dialog/warning.png");
}

.warning .dialog-title {
  border-bottom: 1px solid #9F6000;
}

.dialog.error {
  color: #D8000C;
  background-color: #FFBABA;
}

.error .dialog-content {
  background-image: url("/images/dialog/error.png");
}

.error .dialog-title {
  border-bottom: 1px solid #D8000C;
}
/*# sourceMappingURL=dialog.css.map */