.pptmui-popup {
  position: fixed;
  max-height: 100%;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-overflow-scrolling: touch;
  z-index: 100;
}
.pptmui-popup--center {
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}
.pptmui-popup--center.pptmui-popup--round {
  border-radius: 16px;
}
.pptmui-popup--top {
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.pptmui-popup--top.pptmui-popup--round {
  border-radius: 0 0 16px 16px;
}
.pptmui-popup--right {
  top: 50%;
  right: 0;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}
.pptmui-popup--right.pptmui-popup--round {
  border-radius: 16px 0 0 16px;
}
.pptmui-popup--bottom {
  bottom: 0;
  left: 0;
  width: 100%;
}
.pptmui-popup--bottom.pptmui-popup--round {
  border-radius: 16px 16px 0 0;
}
.pptmui-popup--left {
  top: 50%;
  left: 0;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}
.pptmui-popup--left.pptmui-popup--round {
  border-radius: 0 16px 16px 0;
}
.pptmui-popup-slide-top-enter-active,
.pptmui-popup-slide-left-enter-active,
.pptmui-popup-slide-right-enter-active,
.pptmui-popup-slide-bottom-enter-active {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.pptmui-popup-slide-top-exit-active,
.pptmui-popup-slide-left-exit-active,
.pptmui-popup-slide-right-exit-active,
.pptmui-popup-slide-bottom-exit-active {
  -webkit-transition-timing-function: ease-in;
          transition-timing-function: ease-in;
}
.pptmui-popup-slide-top-enter,
.pptmui-popup-slide-top-exit-active {
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
}
.pptmui-popup-slide-top-enter-active,
.pptmui-popup-slide-top-exit {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.pptmui-popup-slide-right-enter,
.pptmui-popup-slide-right-exit-active {
  -webkit-transform: translate3d(100%, -50%, 0);
          transform: translate3d(100%, -50%, 0);
}
.pptmui-popup-slide-right-enter-active,
.pptmui-popup-slide-right-exit {
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}
.pptmui-popup-slide-bottom-enter,
.pptmui-popup-slide-bottom-exit-active {
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
}
.pptmui-popup-slide-bottom-enter-active,
.pptmui-popup-slide-bottom-exit {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.pptmui-popup-slide-left-enter,
.pptmui-popup-slide-left-exit-active {
  -webkit-transform: translate3d(-100%, -50%, 0);
          transform: translate3d(-100%, -50%, 0);
}
.pptmui-popup-slide-left-enter-active,
.pptmui-popup-slide-left-exit {
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}
