#dialog {
  display: none;
  position: fixed;
  z-index: 240;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  overflow: auto;
  background-color: var(--popup_overlay);
}
#dialog.wButtons .dialog_content {
  padding-bottom: 1em;
}
#dialog .dialog_content {
  z-index: 210;
  margin: auto;
  background: var(--dialog_background);
  padding: 4em 1em;
  border-bottom: solid 1px var(--border-color);
  max-width: 100%;
  width: 40em;
}
#dialog .dialog_content .fa-times {
  float: right;
  background: White;
  border: solid 1px #ccc;
  border-radius: 4px;
  margin-top: -3em;
}
#dialog .dialog_content .fa-times:hover {
  background: #31ADD0;
  color: White;
  border: solid 1px White;
}
#dialog .dialog_content .btn {
  display: inline-block;
}
#dialog.player .dialog_content {
  background: #edeef0;
  height: 90%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 80em;
  width: 100%;
  padding: 0;
  text-align: right;
}
#dialog.player .dialog_content > .btn {
  margin-top: 1em;
  margin-left: -4em;
  position: absolute;
}
#dialog.player .dialog_content > button.fa-times {
  margin-top: 1em;
  position: fixed;
  margin-left: -4em;
}
#dialog.player .dialog_content .text_content {
  box-shadow: none;
  padding: 0;
}
#dialog.player .dialog_content h3.page_title {
  margin-top: -0.5em;
  margin-left: 0;
}
#dialog.player .dialog_content #dialog_body {
  height: 100%;
}
#dialog.player .dialog_content #dialog_body iframe {
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=dialog.module.css.map */