.vlt-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
  max-width: 100%;
}

.vlt-poster {
  width: 100%;
  border-radius: 0px;
  display: block;
}

.vlt-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.vlt-container:hover .vlt-play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}

/* Lightbox styling */
.vlt-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.vlt-lightbox-content {
    position: relative;
    margin: 10% auto;
    width: 80%;
    max-width: 900px;
}

@media only screen and (max-width: 1000px) and (min-width: 747px){
	.vlt-lightbox-content {
		width: 90%;
		margin: 30% auto;
	}
}

@media only screen and (max-width: 747px){
	.vlt-lightbox-content {
		width: 90%;
		margin: 60% auto;
	}
}

.vlt-lightbox video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.vlt-close {
  position: absolute;
  top: -35px;
  right: 0;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  font-weight: bold;
}