.popup__video {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,.8);
  z-index: 1030;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}

#popup_video:target {
  visibility: visible;
  opacity: 1;
}

.popup__video iframe {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(.25);
  transition: all .5s .1s;
}

.popup__product:target .popup__content {
  transform: translate(0,-50%) scale(1);
  opacity: 1;
  visibility: visible;
}

#popup_video:target iframe {
  transform: translate(-50%,-50%) scale(1);
  opacity: 1;
  visibility: visible;
}

.popup__close {
  color: #777;
}

.popup__close:hover, .popup__close:active {
  color: #555;
}

.popup__content img {
  width: 80%;
  margin: auto;
}

.popup__product:target {
  visibility: visible;
  opacity: 1;
}

.popup__product {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1030;
  visibility: hidden;
  opacity: 0;
}

.popup__product .popup__content {
  width: 80%;
  height: auto;
  background: white;
  position: relative;
  top: 50%;
  transform: translate(0,-50%) scale(.25);
  padding: 2.5%;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

