* {
	box-sizing: inherit;
	margin: 0;
}

.q-itemSlider_Contents img {
	margin-right: 20px;
}

.scene-queue img {
	height: 180px;
	width: 320px;
}

.movie-queue img {
	height: 250px;
	width: 175px;
}

.q-itemSlider_Wrapper {
	position: relative;
	padding: 0 11px;
	box-sizing: border-box;
}

.q-itemSlider {
	/* Make this scrollable when needed */
	overflow-x: auto;
	/* We don't want vertical scrolling */
	overflow-y: hidden;
	/* For WebKit implementations, provide inertia scrolling */
	-webkit-overflow-scrolling: touch;
	/* We don't want internal inline elements to wrap */
	white-space: nowrap;
	/* If JS present, let's hide the default scrollbar */
	/* positioning context for advancers */
	position: relative;
	font-size: 0;
}

.js .q-itemSlider {
	/* Make an auto-hiding scroller for the 3 people using a IE */
	-ms-overflow-style: -ms-autohiding-scrollbar;
	/* Remove the default scrollbar for WebKit implementations */
}

.js .q-itemSlider::-webkit-scrollbar {
	display: none;
}

.q-itemSlider_Contents {
	float: left;
	-webkit-transition: -webkit-transform .2s ease-in-out;
	transition: -webkit-transform .2s ease-in-out;
	transition: transform .2s ease-in-out;
	transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
	position: relative;
}

.q-itemSlider_Contents-no-transition {
	-webkit-transition: none;
	transition: none;
}

.q-itemSlider_Link {
	text-decoration: none;
	color: #888;
	font-size: 1.2rem;
	font-family: -apple-system, sans-serif;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 44px;
	border: 1px solid transparent;
	padding: 0 11px;
}

.q-itemSlider_Link+.q-itemSlider_Link {
	border-left-color: #eee;
}

.q-itemSlider_Link[aria-selected="true"] {
	color: #111;
}

.q-Advancer {
	/* Reset the button */
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0;
	border: 0;
	/* Now style it as needed */
	position: absolute;
	top: 0;
	bottom: 0;
	/* Set the buttons invisible by default */
	opacity: 0;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
	background: rgba(0, 0, 0, .6);
	height: 44px;
	width: 44px;
}

.q-Advancer:focus {
	outline: 0;
}

.q-Advancer:hover {
	cursor: pointer;
}

.q-Advancer_Left {
	left: 0;
}

[data-overflowing="both"]~.q-Advancer_Left,
[data-overflowing="left"]~.q-Advancer_Left {
	opacity: 1;
}

.q-Advancer_Right {
	right: 0;
}

[data-overflowing="both"]~.q-Advancer_Right,
[data-overflowing="right"]~.q-Advancer_Right {
	opacity: 1;
}

.q-Advancer_Icon {
	width: 20px;
	height: 44px;
	fill: #bbb;
}

.q-itemSlider_Indicator {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 4px;
	width: 100px;
	background-color: transparent;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transition: background-color .2s ease-in-out, -webkit-transform .2s ease-in-out;
	transition: background-color .2s ease-in-out, -webkit-transform .2s ease-in-out;
	transition: transform .2s ease-in-out, background-color .2s ease-in-out;
	transition: transform .2s ease-in-out, background-color .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

.queueTitleBar {
	background: #999999;
	color: #ffffff;
	height: 52px;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	font-size: 36px;
	font-weight: bold;
	text-align: left;
	padding-left: 10px;
	padding-top: 8px;
}