.pp-popup {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pp-popup .pp-box {
  background: rgba(0, 0, 0, 0.3);
  position: relative;
}

.pp-popup .pp-close {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1900;
  outline: 0;
  border: none;
  padding: 0;
  margin: 0;
  color: #333;
  cursor: pointer;
  background: none;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  opacity: 0.65;
  font-family: Arial, monospace, sans-serif;
  font-weight: normal;
  font-size: 28px;
}

.pp-popup .pp-close:hover {
  opacity: 1;
}

.pp-popup .pp-box-inner {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 100vh;
}

.pp-popup .pp-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  width: calc(min(95vw, 95vh * 16 / 9));
}

.pp-popup .pp-video-wrapper iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
