.pzp-overlay {
  width: 0;
  height: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  opacity: 0;
  -webkit-transition: opacity .2s ease-in-out 0s;
  -moz-transition: opacity .2s ease-in-out 0s;
  -o-transition: opacity .2s ease-in-out 0s;
  transition: opacity .2s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.pzp-popup.open .pzp-overlay {
  width: 100%;
  height: 100%;
}

.pzp-popup-position {
  position: fixed;
  width: 0;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999999;
  outline: 0;
  font-size: 100%;
  color: #000;
}

.pzp-popup.open .pzp-popup-position {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

.pzp-popup-box {
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity .4s ease-in-out 0s;
  -moz-transition: opacity .4s ease-in-out 0s;
  -o-transition: opacity .4s ease-in-out 0s;
  transition: opacity .4s ease-in-out 0s;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.pzp-popup.open .pzp-popup-box {
  margin: auto;
  height: auto;
  opacity: 1;
}

.pzp-popup-container {
  position: relative;
}

.pzp-close {
  cursor: pointer;
  min-width: 1em;
  z-index: 2;
  text-decoration: none;
  text-align: center;
  position: absolute;
  left: auto;
  right: 0;
  bottom: auto;
  top: 0;
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 1px 1px 3px 0px rgba(2,2,2,.23);
  text-shadow: 0px 0px 0px rgba(0,0,0,.23);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  margin-right: 5px;
}