.pp-media-overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.25s linear 0s;
  transition: all 0.25s linear 0s;
}

.pp-media-content {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.pp-icon {
  display: inline-block;
  line-height: 1;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.pp-icon i,
.pp-icon svg {
  width: 1em;
  height: 1em;
  position: relative;
  display: block;
}

.pp-image-scroll-wrap,
.pp-image-scroll-container {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.pp-image-scroll-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.pp-image-scroll-container {
  width: 100%;
}

.pp-container-scroll {
  overflow: auto;
}

.pp-image-scroll-container .pp-image-scroll-horizontal {
  position: relative;
  width: 100%;
  height: 100%;
}

.pp-image-scroll-container .pp-image-scroll-horizontal.pp-image-scroll-image img {
  max-width: none;
  height: 100%;
  width: auto;
}

.pp-image-scroll-container .pp-image-scroll-vertical.pp-image-scroll-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.pp-image-scroll-ver {
  position: relative;
}

.pp-image-scroll-container .pp-image-scroll-overlay {
  background: rgba(2, 2, 2, 0.3);
}

.pp-image-scroll-container .pp-image-scroll-link,
.pp-image-scroll-container .pp-image-scroll-overlay {
  z-index: 4;
}

.pp-image-scroll-content {
  display: inline-block;
  position: absolute;
  height: auto;
  top: 50%;
  right: 50%;
  text-align: center;
  z-index: 5;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.pp-container-scroll-instant .pp-image-scroll-image img {
  -webkit-transition: all 0s ease-in-out !important;
  transition: all 0s ease-in-out !important;
}

.pp-image-scroll-container .pp-image-scroll-overlay,
.pp-image-scroll-container .pp-image-scroll-content {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

.pp-image-scroll-container:hover .pp-image-scroll-overlay,
.pp-image-scroll-container:hover .pp-image-scroll-content {
  opacity: 0;
}

.pp-image-scroll-container:hover .pp-image-scroll-content {
  visibility: hidden;
}

.pp-image-scroll-content .pp-image-scroll-icon {
  display: inline-block;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.pp-mouse-scroll-horizontal {
  -webkit-animation-name: pp-scroll-horizontal;
          animation-name: pp-scroll-horizontal;
}

.pp-mouse-scroll-vertical {
  -webkit-animation-name: pp-scroll-vertical;
          animation-name: pp-scroll-vertical;
}

@-webkit-keyframes pp-scroll-vertical {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}

@keyframes pp-scroll-vertical {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
}
@-webkit-keyframes pp-scroll-horizontal {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
}
@keyframes pp-scroll-horizontal {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
}