.vjs-image-overlay {
  background-color: transparent;
  color: white;
  position: absolute;
  width: 100%;
  height: auto;
  font-size: 50px;
  display: flex;
  justify-content: flex-start;
}
.vjs-image-overlay img {
  width: 100%;
  height: auto;
  cursor: pointer;
  animation: fadeIn 1s;
}
.vjs-image-overlay img.hide {
  animation: fadeOut 1s;
  opacity: 0;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*# sourceMappingURL=videojs-image-overlay.css.map */
