body.lc-dialog-open {
  overflow: hidden;
}

.lc-dialog-wrapper {
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  padding: 50px 10px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.lc-dialog-wrapper > .dialog {
  min-width: 300px;
  max-width: 600px;
  min-height: 100px;
  background-color: #fff;
  position: relative;
  margin: 0 auto;
}
.lc-dialog-wrapper > .dialog > .header {
  background-color: #009bde;
  color: #fff;
  border-bottom: 1px #ccc solid;
  padding: 15px;
}
.lc-dialog-wrapper > .dialog > .content {
  padding: 15px;
}
.lc-dialog-wrapper > .dialog > .footer {
  text-align: right;
  border-top: 1px #ccc solid;
  padding: 15px;
}
.lc-dialog-wrapper > .dialog > .footer > .lc-button {
  margin-left: 10px;
}
