.popout {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50000;
  max-width: 100%;
  max-width: 100vw;
  height: 100%;
  height: 100vh;
  height: 100dvh;
}
.popout_static > .popout.in_container {
  position: static;
}
.popout_static > .popout.in_container > .item {
  box-shadow: none;
  transform: translateX(0) !important;
  padding: 30px 0px 0px;
}
.popout_static > .popout.in_container > .item > .fullscreen,
.popout_static > .popout.in_container > .item > .resize {
  display: none;
}
.popout_container.popout_closed {
  display: none;
}
.popout > .item {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  background: var(--popout);
  transform: translateX(100%);
  padding: 30px;
  padding-right: 15px;
  transition: transform 0.8s ease-in-out;
  bottom: 0;
  top: 0;
  right: 0;
  position: relative;
  height: 100%;
  width: 100%;
}
.popout > .item > div {
  overflow: auto;
  overscroll-behavior-y: none;
  overflow-x: visible;
  padding-right: 15px;
}
.popout > .item.popout-active {
  z-index: 50001;
}
.popout > .item.has-iframe {
  overflow: visible;
}
.popout > .item > div.content,
.popout > .item > div.popout-ajax,
.popout > .item > iframe {
  height: 100%;
}
.popout > .item.expand {
  transform: translateX(0);
}
.popout > .item > .resize {
  position: absolute !important;
  top: 40px !important;
  left: 2px !important;
  bottom: 40px;
  cursor: ew-resize;
  vertical-align: middle;
  width: 12px;
}
.popout > .item > .resize > span {
  position: absolute;
  top: 50%;
  left: 0px;
}
.popout > .item > .close,
.popout > .item > .goback_iframe,
.popout > .item > .reload {
  position: absolute;
  top: 5px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
}
.popout > .item > .reload {
  right: 5px;
}
.popout > .item > .close {
  left: 5px;
}
.popout > .item.has_go_back > .close {
  left: 35px;
}
.popout > .item > .goback_iframe {
  left: 5px;
}
.popout > .item > .fullscreen {
  position: absolute;
  bottom: 5px;
  left: 5px;
}
.popout > .item > a {
  color: #000;
  opacity: 0.2;
}
.popout > .item > a:hover {
  opacity: 0.8;
}
.popout > .item > .pushback {
  position: absolute;
  bottom: 5px;
  right: 5px;
  display: none;
}
.popout.fullscreen {
  left: 0px;
  right: 0px;
  width: 100% !important;
}
.popout.fullscreen > .item > .resize {
  display: none;
}
.popout.multiple > .item > .pushback {
  display: block;
}
.popout.empty {
  display: none;
}
.popout.multiple > .item {
  position: absolute;
}
.popout.multiple > .item.last {
  position: relative;
}
.popout_container {
  position: relative;
}
.in_container.popout {
  position: absolute;
  left: 0px;
  right: 0px;
  width: 100% !important;
}
body.offline .popout {
  top: 32px !important;
}
@media screen and (max-width: 500px) {
  .popout > .item > .resize {
    display: none;
  }
  .popout > .item {
    padding: 30px 10px;
    min-width: 100vw;
    max-width: 100vw;
  }
}
popover-dialog {
  position: fixed !important;
  top: 100px;
  left: 100px;
  width: auto;
  height: 200px;
  border: 1px solid #ccc;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 0.8em;
  line-height: 1em;
  z-index: 10000000;
  max-width: calc(100vw - 200px);
  max-height: calc(100vh - 200px);
}
popover-dialog [slot] {
  display: block !important;
}
/*# sourceMappingURL=/system/extensions/popout/assets/css/serve.popout.less.css.map */