.video-rotator {

	position: relative;
	border-top: 1px solid lightgrey;
	padding: 1em 0em;	
	margin: 3em 0em;
}

.video-rotator .vr-name-container {

	position: absolute;
	top: -25px;
	left: -10px;
	background-color: white;
}

.video-rotator .vr-name-container:hover .vr-name a {

	color: #F89C42;
}

.video-rotator .vr-name {

	padding: 10px;
	color: #007AC3;
	font-weight: bold;
	font-size: 1.5em;
}

.video-rotator .vr-video-container .video-container {

	position: relative;
	display: inline-block;
	width: 200px;
	vertical-align: top;
	height: 175px;
	margin: 0px 10px;
	z-index: 0;
}

.video-rotator .vr-video-container .video-container:hover {

	color: #F89C42;
}

.video-rotator .vr-video-container .video-container img {

	max-width: 100%;
}

.video-rotator .vr-video-container .video-container .video-container-active {
	
	text-align: center;
}

.video-rotator .vr-video-container .video-container .video-title {

	padding: 1em .5em;
	text-align: center;
	font-weight: bold;
}

.video-rotator .vr-total {

	display: inline-block;
}

.video-rotator .vr-videos {

	position: relative;
	overflow: hidden;
	height: 175px;
	z-index: 2;
	background-color: white;
}

.video-rotator .left-button {

	width: 48px;
	height: 48px;
	position: absolute;
	bottom: 45%;
	left: -33px;
	background-color: white;
	border: 1px solid lightgrey;
	border-radius: 3px;
	box-shadow: 2px 2px 3px grey;
	background-image: url('/support/videolibrary/images/arrow-left.png');
	background-size: 24px 24px;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	z-index: 1;
}

.video-rotator .left-button:hover {

	z-index: 4;
}

.video-rotator .right-button {

	width: 48px;
	height: 48px;
	position: absolute;
	bottom: 45%;
	right: -37px;
	background-color: white;
	border: 1px solid lightgrey;
	border-radius: 3px;
	box-shadow: 2px 2px 3px grey;
	background-image: url('/support/videolibrary/images/arrow-right.png');
	background-size: 24px 24px;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	z-index: 1;
}

.video-rotator .right-button:hover {

	z-index: 4;
}

.vr-current {

	background-color: red;
}

/**
	MEDIA QUERIES
*/
@media all and (max-width: 1250px) {

	.video-rotator .left-button {
		
		height: 20px;
		left: 0px;
		bottom: -20px;
		display: none;
	}
	
	.video-rotator .right-button {
	
		height: 20px;
		right: 0px;
		bottom: -20px;
		display: none;
	}
	
	.video-rotator .vr-videos {

		overflow-x: auto;
	}
}