body {
	height: 100vh;
	width: 100%;
	margin: 0;
	overflow: hidden;
	font-family: "Open Sans", Arial, sans-serif;
}

/* ERROR */
.custom-icon {
	font-size: 48px;
	text-align: center;
	color: #f0ad4e;
	width: 100%;
}

.error-container {
	display: none;
	padding: 10% 0;
	position: fixed;
	width: 100%;
}

.error {
	width: 100%;
	margin: 25px auto;
	text-align: center;
	color: #fff;
}

#player-container {
	position: relative;
}

#player-container .preview-message {
	box-sizing: border-box;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.4);
	color: #fff;
	font-size: 3vw;
	display: none;
	flex-direction: column;
	align-items: center;
	align-content: center;
	width: 100%;
	padding: 25px;
	z-index: 2;
}

#player-container #preview-text {
	display: inline-block;
	margin-top: 10px;
}

/* The Modal (background) */
.modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 1;
	/* Sit on top */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
	background-color: rgb(0, 0, 0);
	/* Fallback color */
	background-color: rgba(0, 0, 0, 0.4);
	/* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
	background-color: #fefefe;
	margin: 10% auto;
	/* 10% from the top and centered */
	padding: 20px;
	border: 1px solid #888;
	min-width: 350px;
	width: 40%;
	/* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	margin-top: -45px;
	font-weight: bold;
	margin-right: -15px;
	padding: 0 10px 3px;
	border-radius: 2px;
	box-shadow: 0 1px 3px;
}

.header {
	font-size: 14pt;
}

.footer-button {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

#paypal {
	font-size: 8vh;
	background: #add5f0;
	color: #fff;
	text-decoration: none;
	border: none;
	background-color: #2196f3;
	box-shadow: 0 1px 2px -1px;
	font-family: inherit;
	padding: 5px 17px;
	transition: ease-in-out 0.6s;
}

#paypal:hover {
	background: #0d87e9;
	cursor: pointer;
}

/* spinner container */
.spinner-container {
	display: none;
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	position: fixed;
	height: 100vh;
	width: 100%;
	z-index: 999;
}


/* spinner */
.spinner {
	width: 80px;
	height: 80px;
	background-color: #2980b9;

	margin: 100px auto;
	-webkit-animation: sk-rotateplane 1.7s infinite ease-in-out;
	animation: sk-rotateplane 1.7s infinite ease-in-out;
}

.spinner-text {
	margin: 25px auto;
	text-align: center;
}

@-webkit-keyframes sk-rotateplane {
	0% {
		-webkit-transform: perspective(120px)
	}

	50% {
		-webkit-transform: perspective(120px) rotateY(180deg)
	}

	100% {
		-webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
	}
}

@keyframes sk-rotateplane {
	0% {
		transform: perspective(120px) rotateX(0deg) rotateY(0deg);
		-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
	}

	50% {
		transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
		-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
	}

	100% {
		transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
		-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
	}
}

/* dailyProgramming */
#player-container:hover #dailyProgramming {
	display: block;
}

#dailyProgramming {
	display: none;
	position: fixed;
	bottom: 40px;
	width: 100%;
	background: rgba(33, 33, 33, .5);
	transition: all 1s;
}

#dailyProgramming.triggered {
	transition: all 1s;
	background: rgba(0, 0, 0, 0.3);
}

#dailyProgramming.triggered::before {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
	font-size: 24pt;
	content: 'Drop here'
}

@media (max-width:768px) {
	#player-container:hover #dailyProgramming {
		display: none;
	}
}

.livePreview {
	height: 100vh;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-color: black;
	background-size: contain;
}

.draggable {
	/*disabled transition because of pagination*/
	/*transition: opacity 0.3s;*/
	padding-left: 0;
	padding-right: 0;
}

.dragging {
	opacity: 0.5;
}

/* FLOWPLAYER */
.flowplayer .fp-logo {
	left: auto;
	right: 3%;
	height: 64px;
	width: 64px;
	bottom: 4em;
	pointer-events: none;
	/* disable link */
	cursor: default;
	/* disable link */
}

.flowplayer .fp-logo img {
	border-radius: 50%;
	height: 100%;
	width: 100%;
	opacity: 0.7;
}

.flowplayer .fp-logo img:hover {
	opacity: 0.9;
}

/* change flowplayer default color */
.flowplayer .fp-color {
	background-color: rgb(0, 162, 209);
}

/* hide logo mouseout+notpaused*/
.flowplayer.is-mouseout:not(.is-paused) .fp-logo {
	display: none;
}

/* BIG LOGO */
.big-logo {
	height: auto !important;
	width: 18% !important;
	bottom: 2em !important;
}


/* SIDEBAR SCHEDULE */
.flowplayer .fp-controls {
	background-color: rgba(0, 0, 0, 0.30);
	z-index: 999;
}

.sidebar {
	display: none;
	overflow: auto;
	min-width: 25%;
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: 99;
	margin: 0px;
	bottom: 2.8em;
	padding: 0.5em 0.5em 0.5em;
	background-color: rgba(0, 0, 0, 0.30);
}

.sidebar li {
	list-style-type: none;
	margin-bottom: 0.5em;
}

.show-cast-button {
	color: #00A9CF;
	font-size: 1.5em;
	line-height: 1.6em;
}

.fp-controls .show-cast-button {}

#close-btn {
	position: absolute;
	padding: 0.1em 0.2em;
	top: 0;
	right: 0;
	cursor: pointer;
	color: #ccc;
	font-size: 16px;
	line-height: 0;
	margin-top: 3px;
	z-index: 999;
}

/* CAST THUMBNAILS */
.cast-thumbnail {
	width: 100% !important;
}

.cast-thumbnail .cast-info-area {
	display: inline-block;
	width: 100%;
	padding: 3px;
	background-color: rgba(0, 0, 0, 0.55);
	position: absolute;
	bottom: 0px;
	color: #fff;
	font-weight: 700;
	font-size: 0.8em;
}

.cast-info-area .title {
	/*truncate*/
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cast-info-area .start-time {
	margin-top: 2px;
	font-weight: 500;
}

@media (max-width: 576px) {
	.sidebar {
		min-width: 35%;
	}

	.cast-thumbnail .cast-info-area {
		font-size: 0.7em;
		font-weight: 500;
	}
}

.cast-thumbnail .image {
	width: 100%;
	height: 100%;
	background-position: center;
	position: relative;
	padding-top: 56.25%;
	background-size: cover;
	transition: all 1s;
}

/* BOX VIDEO ON AIR */
#onair-box {
	background: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0px;
	padding: 5px 0 0 5px;
}

#onair-box>svg {
	height: 24px;
	width: 24px;
	/*   transform: scale(5); */
}

@media (max-width: 576px) {
	#onair-box>svg {
		height: 12px;
		width: 12px;
	}
}

@media (max-width: 768px) {
	#onair-box>svg {
		height: 16px;
		width: 16px;
	}
}

#onair-box>svg path#on-air-out {
	animation: on-air-out 2s infinite;
}

#onair-box>svg path#on-air-in {
	animation: on-air-in 2s infinite;
}

#onair-box>svg ellipse {
	transform-origin: 50% 50%;
	animation: on-air-circle 2s infinite;
}

@keyframes on-air-circle {
	0% {
		opacity: .1;
		transform: scale(1);
	}

	25% {
		opacity: 1;
		transform: scale(2.4);
	}

	50% {
		opacity: 1;
	}

	75% {
		opacity: 1;
		transform: scale(1)
	}

	100% {
		opacity: .3;
	}
}

@keyframes on-air-in {
	0% {
		opacity: .3;
	}

	25% {
		opacity: .3;
	}

	50% {
		opacity: 1;
	}

	75% {
		opacity: 1;
	}

	100% {
		opacity: .3;
	}
}

@keyframes on-air-out {
	0% {
		opacity: .3;
	}

	50% {
		opacity: .3;
	}

	75% {
		opacity: 1;
	}

	100% {
		opacity: .3;
	}
}

.next-program {
	height: 100vh !important;
	position: relative;
	width: 100%;
	color: #FAFAFA;
	z-index: 9999;
}

.next-program .background {
	position: absolute;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .3) center no-repeat;
	background-size: cover;
}

.next-program .loading h1 {
	color: #FAFAFA;
}

.next-program .overlay {
	position: absolute;
	background: rgba(0, 0, 0, 0.3);
	width: 100%;
	height: 100%;
	margin: 0;
}

.next-program h2 {
	background: rgba(0, 0, 0, 0.4);
	line-height: 2em;
	width: 70%;
	color: #DADADA;
	text-align: center;
}

.next-program h2 span {
	font-weight: bold;
	color: #FAFAFA;
}

.next-program .no-video {
	font-size: 36pt;
	text-align: center;
}

.countdown {
	height: 50%;
	width: 70%;
	z-index: 9999;
}

.countdown .column {
	background: rgba(0, 0, 0, 0.4);
	width: 24%;
	text-align: center;
}

.countdown .column .key {
	border-top: 1px solid #FAFAFA;
	text-transform: uppercase;
	font-size: 16pt;
	line-height: 8rem;
}

.countdown .column .value {
	line-height: 96pt;
	font-size: 36pt;
}

@media(max-width : 1200px) {
	.next-program {
		height: 100%;
	}

	.next-program .no-video {
		font-size: 20pt;
	}
}

@media(max-width : 992px) {
	.next-program {
		height: 100%;
	}

	.next-program .no-video {
		font-size: 20pt;
	}

	.countdown .column .value {
		line-height: 78pt;
		font-size: 28pt;
	}
}

@media(max-width : 768px) {
	.next-program {
		height: 100%;
	}

	.next-program h2 {
		font-size: 14pt;
		line-height: 1.5em;
	}

	.next-program .no-video {
		font-size: 18pt;
	}

	.countdown {
		width: 95%;
	}

	.countdown .column .value {
		line-height: 78pt;
		font-size: 28pt;
	}

	.countdown .column .key {
		font-size: 9pt;
		line-height: 4rem;
	}
}

@media(max-width : 580px) {
	.next-program {
		height: 100%;
	}

	.next-program .no-video {
		font-size: 16pt;
	}

	.countdown .column .value {
		line-height: 56pt;
		font-size: 22pt;
	}

	.next-program h2 {
		font-size: 12pt;
		line-height: 1.3em;
	}
}

@media(max-width : 480px) {
	.next-program {
		height: 100%;
	}

	.next-program .no-video {
		font-size: 14pt;
	}
}

/* CUSTOM SCROLLBAR */
#theplayer ::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	background-color: #F5F5F5;
}

#theplayer ::-webkit-scrollbar {
	width: 5px;
	background-color: #F5F5F5;
}

#theplayer ::-webkit-scrollbar-thumb {
	background-color: rgb(0, 162, 209);
	background-image: -webkit-gradient(linear, 0 0, 0 100%,
		color-stop(.5, rgba(255, 255, 255, .2)),
		color-stop(.5, transparent), to(transparent));
}

#fbbut {
	box-shadow: 0 1rem 3rem 0 rgba(77, 77, 77, 0.3);
	border: 1px solid rgba(77, 77, 77, 0.7);
	background-color: rgba(77, 77, 77, 0.1);
	padding: 1% 1.5% 0.5%;
	margin-top: 2%;
}

#fbbut:hover {
	border: 1px solid rgba(255, 255, 255, 0.7);
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}