/* VIDEO MODAL POP UP*/

.video-pop-up {
  position: fixed;
  bottom: 0px;
  z-index: 99;
  overflow-y: hidden;
  display: block;
  width: 100%;
  height: 0;
  background-color: #fff;
}

.video-pop-up.open {
  height: 60%;
}

.videoWapperPosition {
  position: relative;
	width: 600px;
  top: 15%;
	margin: 0 auto;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 0.48275862069%;
	height: 0;
}

.yt-iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-pop-up-close {
  position: absolute;
  right: 5%;
  top: 5%;
  cursor: pointer;
}

@media (max-width: 625px){
  .videoWapperPosition{
    width: 96%;
  }
}