body.noScroll {
  /* ...or body.dialogShowing */
  overflow: hidden;
}

#video_popup_container {
  display: flex;
	position: absolute;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100vh;
	transition: top 0.4s;
	border-style: solid;
	/*border-color: blueviolet;*/
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2;
 }
 #video_popup_wrapper {
  position: relative;
}
#video_popup_close {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 5px;
  margin: 1px;
  background-color: rgba(0, 0, 0, 0.4);
  font-family: sans-serif;
  font-size: 1.3rem;
  color: rgb(200, 200, 200);
}
#video_popup_close:hover {
  cursor: pointer;
  color: rgb(129, 86, 0);
}
