.popup-entity-popup {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  max-width: 100vw;
  max-height: 100vh;
  z-index: 999;
  box-sizing: border-box;
  box-shadow: 3px 3px 7px 0 rgba(2, 2, 2, 0.23);
  overflow: auto;
}
.popup-entity-popup.popup-entity-hide {
  display: none;
}
.popup-entity-popup.popup-entity-white {
  background: #FFF;
  padding: 20px;
}
.popup-entity-popup.popup_top {
  top: 0;
}
.popup-entity-popup.popup_middle {
  top: 50%;
}
.popup-entity-popup.popup_bottom {
  top: initial;
  bottom: 0;
}
.popup-entity-popup.popup_left {
  left: 0;
}
.popup-entity-popup.popup_left.popup_top {
  transform: translateY(0);
}
.popup-entity-popup.popup_left.popup_middle {
  transform: translateY(-50%);
}
.popup-entity-popup.popup_left.popup_bottom {
  transform: translateY(0);
}
.popup-entity-popup.popup_center {
  left: 50%;
}
.popup-entity-popup.popup_center.popup_top {
  transform: translateX(-50%);
}
.popup-entity-popup.popup_center.popup_middle {
  transform: translate(-50%, -50%);
}
.popup-entity-popup.popup_center.popup_bottom {
  transform: translateX(-50%);
}
.popup-entity-popup.popup_right {
  left: initial;
  right: 0;
}
.popup-entity-popup.popup_right.popup_top {
  transform: translateY(0);
}
.popup-entity-popup.popup_right.popup_middle {
  transform: translateY(-50%);
}
.popup-entity-popup.popup_right.popup_bottom {
  transform: translateY(0);
}
.popup-entity-popup .popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 99;
}
.popup-entity-popup .popup-close:before {
  position: relative;
  display: block;
  font-size: 16px;
  content: "X";
}
.popup-entity-popup > .content {
  position: relative;
}
.popup-entity-popup > .content > .contextual {
  display: none;
}
.popup-entity-popup > .content img {
  display: block;
}

/*# sourceMappingURL=style.css.map */
.popup-entity-popup.popup-entity-white{
  background: var(--topbar-bg);
  color: #FFF;
  box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 20px;
}


.popup-entity-popup.popup-entity-white a{
  color: #FFF;
}