.pageoverlay_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: none;
}
.pageoverlay {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 400px;
  /*max-height: 90%;*/
  display: none;
  z-index: 9997;
}
.pageoverlay > .pageoverlay_close {
  position: fixed;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 22px;
  font-size: 16px;
  -webkit-border-radius: 11px;
  border-radius: 11px;
  background: #fff;
  color: #000;
  text-decoration: none;
}
.pageoverlay > .pageoverlay_close > i {
  line-height: 22px;
}
.pageoverlay > .content {
  position: relative;
  float: left;
  display: block;
  width: 100%;
}
.pageoverlay.scale .App,
.pageoverlay.scale .scale0 {
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.pageoverlay.scale.active .App {
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
#content_inject {
  position: relative;
  float: left;
  width: 100%;
  overflow: hidden;
}
#content_inject > .content {
  display: inline-block;
}
/*# sourceMappingURL=pageoverlay.css.map */