body {
	font-family: 'Barlow', sans-serif;
}

.timer {
	font-family: 'Roboto Mono', monospace;
	line-height: 1;
	padding: 10px;
	font-size: 4em;
	font-weight: bold;
	height: 85px;	
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4CB050;
	position: fixed;
	top: 0px;
	width: 100%;
}

.progress {
	background-color: #101010;
	position: fixed;
	top: 85px;
	height: 15px;
	border-top: 1px solid #525252;
	border-bottom: 1px solid #525252;
	border-radius: 0;
	width: 100%;
	z-index: 100;
}

.current-title {
	display: flex !important;
	align-items: baseline !important;
}

.container-fluid {
	padding: 0;
	display: grid;
	height: 100vh;
}

.viewer-mode {
	grid-template-columns: 1fr;
}

.producer-mode {
	grid-template-columns: auto 350px;
}

.producer-menu {
	padding: 40px 20px 220px 20px;
	border-left: 1px solid #525252;
	position: fixed;
	right: 0;
	height: 100%;
	z-index: 0;
	width: 350px;
	background: #212121;
	top: 100px;
	box-shadow: -20px 0px 40px #212121;
	overflow: scroll;
}

.producer-menu-wrapper {
	overflow: scroll;
    height: 680px;
}

div.stetch, div.wrap {
	display: inline-block;
	line-height: 1;
	padding: 10px;
	font-size: 3em;
	font-weight: bold;
	display: none;
}

.warning > .timer {
	color: #FEE938 !important;
}

.danger > .timer {
	color: #F44236 !important;
}

.bg-success {
	background-color: #4CB050 !important;
}

.bg-warning {
	background-color: #FEE938 !important;
}

.bg-danger {
	background-color: #F44236 !important;
}

.btn-standard {
	background: #4B4B4B; 
	border-radius: 0;
	font-size: 1.2em;
}

.btn-standard:hover {
	background: #3B3B3B; 
}

.main-controls {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	grid-gap: 1px;
	margin-bottom: 3rem;
}

.btn-standard {
	height: 50px;
}

.main-controls > .btn-standard {
	width: 60px;
	height: 60px;
}

.script { 
	height: 8em;
	overflow-y: auto;
	padding-top: 40px !important;
}

.script ul br { display: none }
.script p, ul { margin-bottom: 0px;}

.card-header { 
	background: unset;
	border: unset;
	padding: 0;
	display: flex;
    align-items: center;
}

.card-body {
	padding: 0;
	font-weight: 400;
	/* padding for the Pit Crew Show for eyeline */
	padding-left: 600px;
}

.button-with-label {
	margin-bottom: 3rem;
}

.button-label {
	font-size: 1.2em;
	margin-bottom: 0.5rem;
}

.card {
	background: #222222;
	border: unset;
	border-radius: 0;
	padding: 20px 40px 40px 40px;
}

.prompter-text {
	padding-bottom: 240px;
	overflow: scroll;
	min-width: 1100px;
	position: fixed;
	top: 100px;
	
}

.prompter-text > .card-header {
	display: unset;
}

.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 2px;
}

.input-and-button {
	display: flex;
	flex-direction: row;
	align-items: center;
}

#input-goto {
	font-size: 1.2em;
	display: inline;
	height: 50px;
	border-radius: 0;
	background-color: #0f0f0f;
    color: white;
    border: 1px solid #525252;
}

.scroll-up-down {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 2px;
}

.line-number {
	background: #3D3D3D;
	padding: 20px 30px;
    width: 60px;
    display: flex;
    justify-content: center;
	align-items: center;
	font-size: 3em;
	margin-right: 20px;
	color: white;
	height: 100%;
}

.badge-info {
	border-radius: 0;
	margin-right: 10px;
	background-color: #0576c1;
}

.current-segment-number {
	width: 60px;
	min-width: 60px;
	height: 60px;
	padding: 0;
}

.up-next {
	display: flex;
	align-items: center;
	flex-direction: row;
	height: 100%;
	padding: 0;
}

.up-next-content {
	overflow: hidden;
}

.up-next-content > h2 {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.up-next-content > h3 {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	display: flex;
    align-items: center;
}

.footer {
	display: grid;
	grid-template-columns: 1fr 1fr;
	position: fixed;
	bottom: 0;
	min-height: 175px;
	background-color: #101010;
	grid-gap: 20px;
	padding: 20px;
	width: 100%;
	border-top: 1px solid #525252;
	z-index: 100;
}


.mirror {
	transform: scale(-1, 1);
	-moz-transform: scale(-1, 1);
	-webkit-transform: scale(-1, 1);
	-o-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	transform: scale(-1, 1);
}