/* Product page */
.iz-product-video {
  margin: 1.5rem 0;
}

.iz-product-video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* Listing */
.iz-listing-video {
  position: relative;
  margin-top: .5rem;
}

.iz-listing-video__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background .2s;
}

.iz-listing-video__btn:hover {
  background: rgba(0, 0, 0, .9);
}

.iz-listing-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: #000;
}

.iz-listing-video__overlay video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iz-listing-video__close {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  line-height: 1;
  cursor: pointer;
  font-size: 14px;
}