@-webkit-keyframes pptmui-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pptmui-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes pptmui-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes pptmui-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.pptmui-fade-enter-active {
  -webkit-animation: 0.3s pptmui-fade-in both ease-out;
          animation: 0.3s pptmui-fade-in both ease-out;
}
.pptmui-fade-exit-active {
  -webkit-animation: 0.3s pptmui-fade-out both ease-in;
          animation: 0.3s pptmui-fade-out both ease-in;
}
.pptmui-overflow-hidden {
  overflow: hidden !important;
}
