#video-modal {
	position: fixed;
	display: none;
	padding: 20px;
	box-shadow: 0 0 10px 10px #ccc;
	z-index: 100;
	width: 1000px;
	height: 600px;
	left: 50%;
	margin-left: -500px;
	background: #000;
	top: 50%;
	margin-top: -200px;
	border-radius: 10px;
	transition: all 0.5s ease-in;
}
