.product-add-form .gallery {
  position: fixed;
  z-index: 11;
  left: 30px;
  bottom: 20px;
  border: 3px solid;
  background: black;
  border-radius: 10px;
}
.product-add-form .gallery iframe {
  border: none;
  width: 100%;
}
.product-add-form form {
  margin-bottom: 50px;
}
.gallery__text {
  text-align: right;
  font-weight: 600;
  bottom: 4px;
  width: 100%;
  margin-top: -10px;
}
.gallery__text span {
  font-size: 11px;
}
.gallery__text > span:first-child {
  color: #8e8e8e;
}
.gallery__text a > span {
  color: teal;
}

.gallery__img {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  height: 100%;
  object-fit: cover;
}
.gallery__img:hover {
  opacity: 0.7;
}
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 11;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(29, 30, 30, 80%);
}
.gallery-modal__video {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 800px;
  position: relative;
}
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}
@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.gallery-modal__close {
  position: absolute;
  right: -2px;
  top: -35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
.gallery__play {
  background: black;
  height: 40px;
  width: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.gallery__play img {
  height: 100%;
  margin: 0px auto;
  display: block;
}
.gallery__video {
  cursor: pointer;
  height: 100px;
}
