.productGallery .thumbs .video-thumb-item a {
  display: block;
  position: relative;
  cursor: pointer;
}

.productGallery .video-thumb-wrapper {
  position: relative;
  display: block;
  width: 55px;
  height: 55px;
  overflow: hidden;
}

.productGallery .video-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.productGallery .video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  margin-left: -11px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
  pointer-events: none;
}

.productGallery #image .custom-product-video {
  width: 388px;
  height: 388px;
  max-width: 100%;
  margin: 0 auto;
  background: #000;
  position: relative;
  overflow: hidden;
}

.productGallery #image .custom-product-video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.productGallery #image {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .productGallery #image .custom-product-video {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}