.video-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.video-overlay:target {
  visibility: visible;
  opacity: 1;
}
.popup {
  margin: 0auto;
  padding: 0;
  background: none;
  border-radius: 5px;
  width: 100%;
  position: relative;
  transition: all 2s ease-in-out;
}
.popup .close {
  position: absolute;
  top: 14px;
  right: 23px;
  height: 25px;
  width: 17px;
  margin: 0;
  text-align: center;
  line-height: 18.4px;
  padding: 0 10px;
  border-radius: 100px;
  background: white;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  z-index: 100;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}
.embed-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=video-popup.css.map */