/* QUEUE CONTROLLER */
#queue-controller {
	position: fixed;
	top: 0;
	right: -320px;
	bottom: 0;
	z-index: 2000;
	width: 320px;
	background: #fff;
	border-left: 5px solid #ccc;
	overflow-y: auto;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}
#queue-controller.open {
	right: 0;
}

.queue-controller-header {
	border-bottom: 1px solid #ddd;
	text-align: center;
	overflow: hidden;
}
.queue-controller-header h2 {
	float: left;
	padding: 1rem 0 1rem 1.5rem;
	line-height: 1;
}
.queue-controller-header a {
	float: right;
	margin: 1rem 1.5rem 0 0;
}
.queue-controller-body {
	padding: 1.5rem;
}

.queue-station-name {
	padding: 1rem;
	border: 1px solid #ddd;
	border-radius: 0.5rem;
	line-height: 1;
	text-align: center;
}
.queue-station-name h3 {
	margin: 0;
}

.queue-controller-current {
	margin-top: 1rem;
	padding: 1rem;
	border: 1px solid #ddd;
	border-radius: 0.5rem;
	line-height: 1;
	text-align: center;
	overflow: hidden;
}
.queue-controller-current span {
	display: block;
	font-size: 8rem;
	font-weight: bold;
}
.queue-controller-current-name {
	margin-bottom: 1rem;
	font-size: 2rem;
}

.queue-controller-action-timer {
	display: none;
	margin-top: 0.5rem;
	width: 100%;
}
.queue-controller-action-timer.active {
	display: block;
}

.queue-controller-queue-stations-list {
	padding: 0;
}
.queue-controller-queue-stations-list a {
	display: block;
	padding: 0.5rem 1rem;
	border-bottom: 1px solid #ddd;
	color: #333;
	text-decoration: none;
}
.queue-controller-queue-stations-list a:last-child {
	border-bottom: none;
}
.queue-list ul,
.queue-list li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.btn-queue-item-option {
	position: absolute;
	top: 0;
	right: 0;
	border: 0;
	background-color: #fff;
	font-size: 1.4rem;
}
.queue-item-options a {
	margin-top: 0 !important;
	border-bottom: 1px solid #eee;
	text-transform: uppercase;
}
.queue-item-options a:last-child {
	border-bottom: 0;
}
.queue-item-options a:hover {
	background-color: rgb(31, 163, 207);
	color: #fff;
}