.caption {
	width: 100%;
	max-width: 427px;
	margin: 0 auto;
	padding: 20px 0;
}

.container {
    margin: 0 auto;
    width: 70%;
    
}

/*  VIDEO PLAYER CONTAINER
 ############################### */
.vid-container {
	position: relative;
	padding-bottom: 52%;
	padding-top: 30px;
	height: 0;
}

.vid-container iframe, .vid-container object, .vid-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*  VIDEOS PLAYLIST
 ############################### */
.vid-list-container {
	alignment-adjust: center;
	background: #fff none repeat scroll 0 0;
	margin-top: 20px;
	overflow: hidden;
	width: 100%;
}

.vid-list {
	width: 1344px;
	position: relative;
	top: 0;
	left: 0;
}

.vid-item {
	display: block;
	width: 148px;
	height: 148px;
	float: left;
	margin: 0;
	padding: 10px;
}

.thumb {
	/*position: relative;*/
	overflow: hidden;
	height: 84px;
}

.thumb img {
	width: 100%;
	position: relative;
	top: -13px;
}

.vid-item .desc {
	color: #7F0400;
	text-transform: capitalize;
	font-size: 15px;
	margin-top: 5px;
}
.vid-item .desc:hover {
	color: #fff;
	font-size: 15px;
	margin-top: 5px;
}
.vid-item:hover {
	background: #5FA022;
	cursor: pointer;
}
.arrows {
	position: relative;
	width: 100%;
}

.arrow-left {
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-right: 15px solid #5FA022;
	position: absolute;
	left: -25px;
	top: -130px;
	z-index: 99;
	cursor: pointer;
}

.arrow-right {
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 15px solid #5FA022;
	position: absolute;
	right: -25px;
	top: -130px;
	z-index: 100;
	cursor: pointer;
}

.arrow-left:hover {
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-right: 15px solid #7bd213;
	position: absolute;
	left: -25px;
	top: -130px;
	z-index: 99;
	cursor: pointer;
}

.arrow-right:hover {
	width: 0;
	height: 0;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 15px solid #7bd213;
	position: absolute;
	right: -25px;
	top: -130px;
	z-index: 100;
	cursor: pointer;
}

@media (max-width: 624px) {
	body {
		margin: 15px;
	}
	.caption {
		margin-top: 40px;
	}
	.vid-list-container {
		padding-bottom: 20px;
	}

	/* reposition left/right arrows */
	.arrows {
		position: relative;
		margin: 0 auto;
		width: 96px;
	}
	.arrow-left {
		left: 0;
		top: -17px;
	}

	.arrow-right {
		right: 0;
		top: -17px;
	}
}