.pbox {
	margin-top: 20px;
  display: none;
  position: fixed;
  z-index: 1000;

  width: 90%;
  max-width: 760px;

  max-height: 85vh;

  overflow-y: auto;
  overflow-x: hidden;

  box-sizing: border-box;

  background: #ffffff;
  color: #333333;

  border-radius: 16px;
  border: none;

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);

  background-clip: padding-box;
}


/* Tablet und Desktop */
@media (min-width: 600px) {
  .pbox {
    width: 80%;
    max-width: 760px;
    max-height: 85vh;
  }
}


/* Inhalt */
.pbox .pbody {
  padding: 24px 26px;
  box-sizing: border-box;
}


/* Dunkler Hintergrund */
.poverlay {
  opacity: 0;
  filter: alpha(opacity=0);

  position: fixed;
  top: 0;
  left: 0;

  z-index: 900;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.55) !important;
}


/* Schließen-Button */
a.pboxclose {
  float: right;

  margin-top: 8px;
  margin-right: 8px;

  cursor: pointer;

  width: 36px;
  height: 36px;

  color: #ffffff;

  border-radius: 50%;
  background: #006600;

  font-family: Arial, sans-serif;
  font-size: 27px;
  font-weight: normal;

  text-align: center;
  line-height: 36px;

  padding: 0;

  z-index: 1001;

  transition: background 0.2s ease;
}

a.pboxclose:hover {
  background: #004d00;
}

.pboxclose:before {
  content: "×";
}


/* Smartphone */
@media (max-width: 599px) {
  .pbox {
    width: 94%;
    max-width: none;
    max-height: 90vh;

    border-radius: 12px;
  }

  .pbox .pbody {
    padding: 20px 16px;
  }

  a.pboxclose {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 24px;

    margin-top: 5px;
    margin-right: 5px;
  }
}