.video-container {
  display: flex;
}

.video-center {
  justify-content: center;
}

.video-right {
  justify-content: flex-end;
}

.video-file-video {
  max-width: 100%;
  object-fit: fill;
}

.video-file-overlay {
  position: relative;
  width: 100%;
  margin: 0 auto;
  cursor: pointer;
}
.video-file-overlay video {
  width: 100%;
  display: block;
}
.video-file-overlay:before {
  content: "";
  position: absolute;
  border-radius: 5px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.video-file-overlay-hide:before {
  width: 0;
  height: 0;
}

.video-file-overlay-play {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 90px;
}

.video-file-overlay-play-hide {
  opacity: 0;
}
