html {
	padding: 0; margin: 0;
}
body {
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	/*background-position-y: 0%;*/
	background-image: url(/images/background-opt2.jpg);
	padding: 0; margin: 0;
	font-size: 13pt;
/*	font-family: Verdana, Helvetica, Arial, Sans-serif;*/
	font-family: "Segoe UI", Verdana, Helvetica, sans-serif;
	color: white;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a {
	color: white;
	text-decoration: none;
}
input {
	outline: none;
}
label {
	transition: background 0.1s ease-out, color 0.1s ease-out;
}
label:after {
	content: ":";
}
/*
a:hover, a:active {
	text-decoration: underline;
}
*/
::selection {
  color: #000000;
  background-color: #E8DBC9;
}
::-moz-selection {
  color: #000000;
  background-color: #E8DBC9;
}
.clear {
	float: none; clear: both;
	height: 0; line-height: 0;
	padding: 0; margin: 0;
	border: 0;
	display: block;
	width: 100%;
}
.center {
	text-align: center !important;
}
.left {
	float: left;
}
.right {
	float: right;
}

article.page {
	position: relative;
	width: 1200px;
	margin: 0 auto;
}
article.page > h1 {
	display: none;
}

#content-wrapper {
	/*position: relative;*/
}
#content-wrapper > h2 {
	display: none;
}

/* dlg-error, dlg-warning, dlg-info */
.message-container {
	position: fixed;
	top: 0; left: 0;
	padding: 0; margin: 0;
	width: 100%;
	z-index: 99999;
}
.message {
	width: 100%;
	height: 32px; line-height: 32px;
	overflow: hidden;
	text-align: center;
	color: white;
	background-color: rgba(255,0,0,1);
	overflow: hidden;
	z-index: 999;
	box-shadow: 0 2px 3px 2px rgba(0, 0, 0, 0.25);
	/*position: fixed;*/
	cursor: pointer;
}
#dlg-warning {
	color: black;
	background-color: rgba(255,210,0,1)
}
#dlg-info {
	background-color: rgba(0,148,255,1)
}
.message:empty {
	height: 0; line-height: 0;
	box-shadow: 0 0 0 0 transparent;
}

/* Gombok */
.button {
	background-color: rgba(0,0,0,0.5);
	border: none;
	border-radius: 3px;
	color: white;
	padding: 0;
	cursor: pointer;
	white-space:nowrap;
	outline: none;
	transition: background 0.1s ease-out;
	position: relative;
	overflow: hidden;
}
.button:focus {
	background-color: rgba(255,165,0,0.5);
}
.button:hover {
	background-color: rgba(255,165,0,1);
}
.button:disabled {
	cursor: default;
	color: rgba(255, 255, 255, 0.33);
}
.button:disabled:hover {
	background-color: rgba(0,0,0,0.5) !important;
}
#popup-content .button:disabled:hover {
	background-color: rgba(0,0,0,0.75) !important;
}
.big-button {
	width: 230px;
	height: 40px; line-height: 40px;
	font-size: 17pt;
}
.popup-button {
	width: 100%;
	font-size: 13pt;
	height: 28px; line-height: 28px;
}
.small-button {
	background-color: transparent;
	padding: 4px 8px;
	position: relative;
	overflow: hidden;
}
.small-button:disabled {
	cursor: default;
}

/* Általános táblázat-szabályok */
div.form {
	position: relative;
	background-color: rgba(0,0,0,0.66);
	padding: 10px;
	border-radius: 3px;
	/*width: 1000px;*/
	width: 1180px;
	margin: 10px auto;
}
div.form div.input-line input[type="text"] + label,
div.form div.input-line input[type="password"] + label {
	left: 240px;
}
div.form h2 {
	font-size: 16pt;
	text-align: center;
	padding: 0 0 0.2em 0;
	margin: 0 0 1em 0;
	background-color: rgba(255,165,0,0.2);
	cursor: default;
}
table.table {
	/*background-color: rgba(0,0,0,0.66);*/
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
	cursor: default;
	padding: 4px;
	/*border: 1px solid rgba(255,165,0,0.66);*/
}
table.table thead th {
	text-align: left;
}
table.table tbody tr {
	transition: border 0.1s ease-out, background 0.1s ease-out;
}
table.table tbody tr:hover {
	background-color: rgba(255,165,0,0.5);
}
table.table tbody td:last-child {
	text-align: right;
}
table.table td, table.table th {
	vertical-align: middle;
	padding: 2px 4px;
}
table.table td .small-button, table.table th .small-button {
	vertical-align: text-top;
	background-color: rgba(255,165,0,0.33);
}
table.table tr:hover td .small-button, table.table tr:hover th .small-button {
	/*background-color: transparent;*/
}
table.table td .small-button:disabled, table.table th .small-button:disabled {
	vertical-align: text-top;
	background-color: rgba(255,255,255,0.15);
	color: rgba(255,255,255,0.2);
}
table.table td .small-button:hover, table.table th .small-button:hover,
table.table tr:hover td .small-button:hover, table.table tr:hover th .small-button:hover {
	background-color: rgba(255,165,0,1);
}
table.table td .small-button:disabled:hover, table.table th .small-button:disabled:hover,
table.table tr:hover td .small-button:disabled:hover, table.table tr:hover th .small-button:disabled:hover {
	background-color: rgba(255,255,255,0.15);
}

/* input-error */
span.input-error {
	position: absolute;
	display: inline-block;
	background-color: rgba(192, 0, 0, 1);
	color: white;
	font-size: 10pt;
	padding: 3px 6px;
	left: 750px;
	/*left: 300px; top: 0;*/
	border-radius: 3px;
	z-index: 99999;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
span.input-error:empty {
	display: none;
	box-shadow: 0 0 0 0 transparent;
}

/* Login-képernyő */
div.tarr-mobiltv-logo {
	position: relative;
	height: 260px;
	margin-bottom: 40px;
}
div.tarr-mobiltv-logo img {
	display: block;
	position: relative;
	top: 50%;
	margin: -75px auto 0 auto;
}
div.input-line {
	position: relative;
	text-align: center;
	padding: 5px 0;
}
div.input-line.inline {
/*	display: inline-block;
	text-align: left;*/
}
div.input-line.inverse {
	font-size: 11pt;
	text-align: left;
	display: block;
	text-indent: 40px;
	margin-left: 40px;
	margin-bottom: 10px;
}
div.input-line.inverse::first-line {
	text-indent: -40px;
	margin-left: -40px;
}
div.input-line.inline label {
	cursor: pointer;
}
div.input-line.inline label.radio {
	display: inline-block;
	margin-right: 20px;
}
div.input-line.inline label.radio:last-child {
	margin: 0;
}
div.input-line.inline label:after {
	content: "";
}
div.input-line input[type="text"],
div.input-line input[type="password"] {
	background-color: rgba(0,0,0,0.5);
	width: 272px;
	height: 29px; line-height: 32px;
	color: #EEEEEE;
	font-size: 13pt;
	border: 1px solid white;
	border-radius: 3px;
	padding: 2px 4px;
	font-size: 15pt;
	transition: border 0.1s ease-out, box-shadow 0.1s ease-out;
	margin-bottom: 4px;
}
div.input-line input[type="text"] + label,
div.input-line input[type="password"] + label {
	display: block;
	width: 200px;
	text-align: right;
	position: absolute;
	font-size: 18pt;
	font-weight: normal;
	left: 250px;
	top: 3px;
	transition: color 0.1s ease-out;
}
div.input-line input[type="text"] + label + div.hint {
	/* display: none;*/
	position: absolute;
	background-color: rgba(0,0,0,0.66);
	border-radius: 3px;
	font-size: 18pt;
	top: 5px; left: 750px;
	padding: 1px 5px;
	height: 32px; line-height: 30px;
	opacity: 0;
	transition: opacity 0.1s ease-out;
}
div.input-line input[type="text"]:focus,
div.input-line input[type="password"]:focus {
	border: 1px solid rgba(255, 153, 51, 1);
	box-shadow: 0 0 10px rgba(255, 153, 51, 1);
}
div.input-line input[type="text"]:focus + label,
div.input-line input[type="password"]:focus + label {
	color: rgba(255, 153, 51, 1);
}
div.input-line input[type="text"]:focus + label + div.hint {
	/* display: block;*/
	opacity: 1;
}
div.input-line input[type="text"].phone {
	letter-spacing: 3px;
	font-size: 24px;
}
div.input-line input[type="checkbox"],
div.input-line input[type="radio"] {
	display: none;
}
.checkbox {
	display: inline-block;
	background-color: rgba(0,0,0,0.5);
	padding: 2px 4px;
	font-size: 18pt;
	width: 20px; height: 24px; line-height: 20px;
/*	border: 1px solid rgba(255, 153, 51, 1);*/
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: rgba(255, 255, 255, 0.15);
	border-radius: 4px;
	margin-right: 5px;
	cursor: pointer;
	transition: border 0.1s ease-out, color 0.1s ease-out;
}
div.input-line.inverse .checkbox {
	background-color: rgba(255,255,255,0);
	border: 1px solid rgba(0, 0, 0, 1);
	color: rgba(0, 0, 0, 0.1);
	margin-right: 10px;
	margin-left: 0;
	text-indent: 0;
}
div.input-line input[type="radio"]:disabled + label {
	color: rgba(255, 255, 255, 0.05);
}
div.input-line input[type="radio"]:disabled + label .checkbox {
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.05);
}
div.input-line input[type="checkbox"]:checked + label .checkbox,
div.input-line input[type="radio"]:checked + label .checkbox {
/*	border: 1px solid rgba(255,165,0,1);
	color: rgba(255,165,0,1);*/
	border: 1px solid rgba(255,255,255,1);
	color: rgba(255,255,255,1);
}
div.input-line.inverse input[type="checkbox"]:checked + label .checkbox,
div.input-line.inverse input[type="radio"]:checked + label .checkbox {
/*	border: 1px solid rgba(255,165,0,1);
	color: rgba(255,165,0,1);*/
	border: 1px solid rgba(0, 0, 0, 1);
	color: rgba(0, 0, 0, 1);
}
div.input-line input[type="checkbox"] + label,
div.input-line input[type="radio"] + label {
	display: inline-block;
	font-size: 12pt;
	color: rgba(255, 255, 255, 0.3);
}
div.input-line.inverse input[type="checkbox"] + label,
div.input-line.inverse input[type="radio"] + label {
	color: rgba(0, 0, 0, 0.75);
	display: inline !important;
	font-style: normal !important;
	font-weight: bold;
}
#popup-content div.input-line.inverse label {
	display: inline;
	width: auto;
}
div.input-line input[type="checkbox"]:checked + label,
div.input-line input[type="radio"]:checked + label {
	color: rgba(255,255,255,1);
}
div.input-line.inverse input[type="checkbox"]:checked + label,
div.input-line.inverse input[type="radio"]:checked + label {
	color: rgba(0, 0, 0, 1);
}

/* Wrapper az egész tartalom körül a saját scrollbar miatt */
#bodyWrapper > .ps-scrollbar-x-rail { bottom: 0 !important; }
#bodyWrapper > .ps-scrollbar-y-rail { right: 0 !important; }

/* Menü */
nav.main-menu {
	position: relative;
	width: 1200px;
	height: 100px;
	top: 0;
	background-color: rgba(0, 0, 0, 0.3);
	padding: 0; margin: 0;
}
nav.main-menu ul {
	list-style-type: none;
  text-align: center;
  position: relative;
  padding: 20px 0 0 0; margin: 0;
}
nav.main-menu li {
	display: block;
	border-radius: 2px;
	float: left;
	/*margin-right: 48px;*/
	/*border: 1px solid transparent;*/
	/*transition: border 0.1s ease-out, box-shadow 0.1s ease-out;*/
	overflow: hidden;
}
nav.main-menu li:first-child {
	/*margin-left: 132px;*/
}
/*  1 elem */	nav.main-menu li:first-child:nth-last-child(1)                                                        { width: 100%; }
/*  2 elem */	nav.main-menu li:first-child:nth-last-child(2),  nav.main-menu li:first-child:nth-last-child(2) ~  li { width: 50%; }
/*  3 elem */	nav.main-menu li:first-child:nth-last-child(3),  nav.main-menu li:first-child:nth-last-child(3) ~  li { width: 33.33333%; }
/*  4 elem */	nav.main-menu li:first-child:nth-last-child(4),  nav.main-menu li:first-child:nth-last-child(4) ~  li { width: 25%; }
/*  5 elem */	nav.main-menu li:first-child:nth-last-child(5),  nav.main-menu li:first-child:nth-last-child(5) ~  li { width: 20%; }
/*  6 elem */	nav.main-menu li:first-child:nth-last-child(6),  nav.main-menu li:first-child:nth-last-child(6) ~  li { width: 16.66666%; }
/*  7 elem */	nav.main-menu li:first-child:nth-last-child(7),  nav.main-menu li:first-child:nth-last-child(7) ~  li { width: 14.28571%; }
/*  8 elem */	nav.main-menu li:first-child:nth-last-child(8),  nav.main-menu li:first-child:nth-last-child(8) ~  li { width: 12.5%; }
/*  9 elem */	nav.main-menu li:first-child:nth-last-child(9),  nav.main-menu li:first-child:nth-last-child(9) ~  li { width: 11.11111%; }
/* 10 elem */ nav.main-menu li:first-child:nth-last-child(10), nav.main-menu li:first-child:nth-last-child(10) ~ li { width: 10%; }
/* 11 elem */ nav.main-menu li:first-child:nth-last-child(11), nav.main-menu li:first-child:nth-last-child(11) ~ li { width: 9.09090%; }
/* 12 elem */ nav.main-menu li:first-child:nth-last-child(12), nav.main-menu li:first-child:nth-last-child(12) ~ li { width: 8.33333%; }
/* 13 elem */ nav.main-menu li:first-child:nth-last-child(13), nav.main-menu li:first-child:nth-last-child(13) ~ li { width: 7.69230%; }
/* 14 elem */ nav.main-menu li:first-child:nth-last-child(14), nav.main-menu li:first-child:nth-last-child(14) ~ li { width: 7.14285%; }
/* 15 elem */ nav.main-menu li:first-child:nth-last-child(15), nav.main-menu li:first-child:nth-last-child(15) ~ li { width: 6.66666%; }

nav.main-menu li a {
	position: relative;
	overflow: hidden;

	display: inline-block;
	text-decoration: none;
	padding: 4px 10px 6px 4px;
	transition: padding 0.1s ease-out;
	border-radius: 2px;
	border: 1px solid transparent;
	transition: border 0.1s ease-out, box-shadow 0.1s ease-out, padding 0.1s ease-out;
	font-size: 13pt;
	height: 52px;
}
nav.main-menu li a img {
	width: 48px; height: 48px;
	vertical-align: -16px;
	margin-right: 10px;
}
/*  1-3 elem */
nav.main-menu li:first-child:nth-last-child(1) a, nav.main-menu li:first-child:nth-last-child(1) ~  li a,
nav.main-menu li:first-child:nth-last-child(2) a, nav.main-menu li:first-child:nth-last-child(2) ~  li a,
nav.main-menu li:first-child:nth-last-child(3) a, nav.main-menu li:first-child:nth-last-child(3) ~  li a
{
	font-size: 22pt;
}
/*  4 elem */
nav.main-menu li:first-child:nth-last-child(4) a, nav.main-menu li:first-child:nth-last-child(4) ~  li a
{
	font-size: 21pt;
}
/*  5 elem */
nav.main-menu li:first-child:nth-last-child(5) a, nav.main-menu li:first-child:nth-last-child(5) ~  li a
{
	font-size: 18pt;
}
/*  6 elem */
nav.main-menu li:first-child:nth-last-child(6) a, nav.main-menu li:first-child:nth-last-child(6) ~  li a
{
	font-size: 15pt;
}
/*  7 elem */
nav.main-menu li:first-child:nth-last-child(7) a, nav.main-menu li:first-child:nth-last-child(7) ~  li a
{
	font-size: 13pt;
}
/*  8 elem */
nav.main-menu li:first-child:nth-last-child(8) a, nav.main-menu li:first-child:nth-last-child(8) ~  li a
{
	font-size: 11pt;
}
nav.main-menu li:first-child:nth-last-child(8) a img, nav.main-menu li:first-child:nth-last-child(8) ~  li a img
{
	width: 44px; height: 44px;
	vertical-align: -14px;
	margin-right: 9px;
}
/*  9 elem */
nav.main-menu li:first-child:nth-last-child(9) a, nav.main-menu li:first-child:nth-last-child(9) ~  li a
{
	font-size: 10pt;
}
nav.main-menu li:first-child:nth-last-child(9) a img, nav.main-menu li:first-child:nth-last-child(9) ~  li a img
{
	width: 40px; height: 40px;
	vertical-align: -12px;
	margin-right: 8px;
}
/*  10 elem */
nav.main-menu li:first-child:nth-last-child(10) a, nav.main-menu li:first-child:nth-last-child(10) ~  li a
{
	font-size: 9pt;
}
nav.main-menu li:first-child:nth-last-child(10) a img, nav.main-menu li:first-child:nth-last-child(10) ~  li a img
{
	width: 38px; height: 38px;
	vertical-align: -11px;
	margin-right: 7px;
}
/*  11 elem */
nav.main-menu li:first-child:nth-last-child(11) a, nav.main-menu li:first-child:nth-last-child(11) ~  li a
{
	font-size: 8pt;
}
nav.main-menu li:first-child:nth-last-child(11) a img, nav.main-menu li:first-child:nth-last-child(11) ~  li a img
{
	width: 34px; height: 34px;
	vertical-align: -9px;
	margin-right: 6px;
}
/*  12-15 elem */
nav.main-menu li:first-child:nth-last-child(12) a, nav.main-menu li:first-child:nth-last-child(12) ~  li a,
nav.main-menu li:first-child:nth-last-child(13) a, nav.main-menu li:first-child:nth-last-child(13) ~  li a,
nav.main-menu li:first-child:nth-last-child(14) a, nav.main-menu li:first-child:nth-last-child(14) ~  li a,
nav.main-menu li:first-child:nth-last-child(15) a, nav.main-menu li:first-child:nth-last-child(15) ~  li a
{
	font-size: 8pt;
}
nav.main-menu li:first-child:nth-last-child(12) a img, nav.main-menu li:first-child:nth-last-child(12) ~  li a img,
nav.main-menu li:first-child:nth-last-child(13) a img, nav.main-menu li:first-child:nth-last-child(13) ~  li a img,
nav.main-menu li:first-child:nth-last-child(14) a img, nav.main-menu li:first-child:nth-last-child(14) ~  li a img,
nav.main-menu li:first-child:nth-last-child(15) a img, nav.main-menu li:first-child:nth-last-child(15) ~  li a img
{
	display: block;
	width: 30px; height: 30px;
	vertical-align: -7px;
	margin: 0 auto;
}

nav.main-menu li:hover {
/*	border: 1px solid rgba(255, 153, 51, 1);
	box-shadow: 0 0 10px rgba(255, 153, 51, 1);*/
}
nav.main-menu li a:hover {
	padding: 6px 8px 4px 6px;
	border: 1px solid rgba(255, 153, 51, 1);
	box-shadow: 0 0 10px rgba(255, 153, 51, 1);
/*	box-shadow: 
		inset 0 3px 2px rgba(255,255,255,.22), 
		inset 0 -3px 2px rgba(0,0,0,.17), 
		inset 0 20px 10px rgba(255,255,255,.12), 
		0 0 4px 1px rgba(0,0,0,.1), 
		0 3px 2px rgba(0,0,0,.2);*/
}
nav.main-menu li a .indicator {
	position: absolute;
	left: 4px; right: 6px; bottom: 6px;
	display: block;
	/*width: 100%;*/
	height: 4px;
	border-radius: 2px;
	background: linear-gradient(to bottom, rgba(255,153,51,0), rgba(255,153,51,0) 40%, rgba(255,153,51,0) 60%, rgba(255,153,51,0) 100%);
	transition: background 0.2s ease-out, left 0.1s ease-out, right 0.1s ease-out, bottom 0.1s ease-out;
}
nav.main-menu li a:hover .indicator {
	left: 6px; right: 4px; bottom: 4px;
}
nav.main-menu li a .indicator.active {
	background: linear-gradient(to bottom, rgba(255,153,51,0.5), rgba(255,153,51,0.8) 40%, rgba(255,153,51,1) 60%, rgba(255,153,51,0.6) 100%);
	/*background: linear-gradient(to bottom, rgba(255,153,51,0.2), rgba(255,153,51,0.32) 40%, rgba(255,153,51,0.4) 60%, rgba(255,153,51,0.24) 100%);*/
}
/* Csillogás */
.gleam:after {
	content: "";
	position: absolute;
	top: -200%; left: -210%; width: 200%; height: 300%;
	opacity: 0;
	transform: rotate(20deg);
	background: rgba(255, 255, 255, 0.13);
	background: linear-gradient(
		to right, 
		rgba(255, 255, 255, 0.0) 0%,
		rgba(255, 255, 255, 0.0) 40%,
		rgba(255, 255, 255, 0.13) 77%,
		rgba(255, 255, 255, 0.5) 92%,
		rgba(255, 255, 255, 0.0) 100%
  );
}
.gleam:hover:after {
	opacity: 1;
	top: -30%;
	left: -30%;
	transition-property: left, top, opacity;
	transition-duration: 0.5s, 0.5s, 0.25s;
	transition-timing-function: ease;
}
.gleam:active:after {
	opacity: 0;
}
/* Csillogás */

/* Footer */
article.page footer {
	text-align: center;
	height: 48px; line-height: 48px;
}
article.page.logged footer {
	background-color: rgba(0, 0, 0, 0.3);
}

#CB_Padding {
	border-radius: 6px !important;
	/*border: 2px solid black !important;*/
	border: 1px solid rgba(255, 153, 51, 1);
	/*box-shadow: inset 0 0 10px rgba(255, 153, 51, 1);*/
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
	padding: 10px 13px !important;
}
#CB_NotImgContent {
	overflow: hidden !important;
	position: relative !important;
}
#CB_CloseWindow {
	display: none !important;
}
#CB_ContentHide {
	position: fixed !important;
	padding: 0 !important;
	margin: 0 !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
}
#CB_Window {
	border-radius: 10px;
	box-shadow: 0 0 6px 6px rgba(0, 0, 0, 0.33);
	border-color: white;
}

/* Főoldal ajánló */
#suggestions {
	margin: 10px 0;
	/*background-color: #799C3D;*/
}
#suggestions h2 {
	padding: 0; margin: 0;
	/*background: linear-gradient(to bottom, rgba(255,255,255,0.2) 10%, rgba(255,255,255,0.4) 60%, rgba(255,255,255,0.5) 80%, rgba(255,255,255,0.3) 100%);*/
	/*background: linear-gradient(to bottom, rgba(255,255,255,0.2) 10%, rgba(255,255,255,0.4) 60%, rgba(255,255,255,0.5) 80%, rgba(255,255,255,0.3) 100%);*/
	/*background-color: rgba(255,153,51,0.35);*/
	cursor: default;
}
#suggestions h2 .title {
	background: transparent url(/images/blockbuster.png) no-repeat left center;
	background-size: 64px 52px;
	height: 64px; line-height: 64px;
	padding: 0 0 0 70px;
	margin: 0 0 0 5px;
	font-size: 24pt;
	font-weight: normal;
	color: rgba(238,238,238,1);
	display: inline-block;
}
#showlist div.show {
	position: absolute;
	width: 1100px;
	height: 600px;
	/*padding: 10px 10px 10px 100px;*/
	overflow: hidden;
}
#showlist div.show div.show-content {
	margin-left: 86px;
}
#showlist div.show .slider-closed {
	width: 86px;
}
#showlist div.show div.picture {
	float: left;
	margin: 0.5em 1em 0.5em 0;
}
#showlist div.show div.picture img {
	max-width: 240px;
	max-height: 160px;
}
#showlist div.show.item0  { background-color: #799C3D; }
#showlist div.show.item1  { background-color: #F79422; }
#showlist div.show.item2  { background-color: #BE1E2D; }
#showlist div.show.item3  { background-color: #27A9E1; }
#showlist div.show.item4  { background-color: #602345; }
#showlist div.show.item5  { background-color: #F05A2A; }
#showlist div.show.item6  { background-color: #FBAF3F; }
#showlist div.show.item7  { background-color: #CCCCCC; }
#showlist div.show.item8  { background-color: #799C3D; }
#showlist div.show.item9  { background-color: #F79422; }
#showlist div.show.item10 { background-color: #BE1E2D; }
#showlist div.show.item11 { background-color: #27A9E1; }
#showlist div.show.item12 { background-color: #602345; }
#showlist div.show.item13 { background-color: #F05A2A; }
#showlist div.show.item14 { background-color: #FBAF3F; }
#showlist div.show.item15 { background-color: #CCCCCC; }

.age-limit {
	position: relative;
	width: 24px; height: 24px; line-height: 24px;
	text-align: center;
	background-color: yellow;
	color: black;
	border: 4px solid black;
	border-radius: 16px;
	font-weight: 900;
	font-size: 10pt;
	display: inline-block;
	margin-right: 0.5em;
	font-style: normal;
}
/*.age-limit.age0 { opacity: 0; }*/
.age-limit.age0 { background-color: #8DC63F; color: #8DC63F; }
.age-limit.age18 { background-color: red; }
.age-limit.age-1 { background-color: transparent; color: transparent; visibility: hidden; pointer-events: none; }

#showlist div.show div.channel-logo {
	width: 112px;
	height: 56px;
	background-color: white;
	padding: 0; margin: 0;
	border-radius: 12px;
	position: absolute;
	left: 10px; top: 122px;
	transform-origin: 0% 0%;
	/*transform: rotate(-90deg);*/
	transform: rotate(0.75turn);
}
#showlist div.show div.channel-logo img {
	display: inline-block;
	height: 50px; width: 70px;
	margin: 3px 20px;
}
#showlist div.show div.channel-logo-small {
	display: inline-block;
	background-color: white;
	padding: 2px; margin: 4px 0 0 4px;
	border-radius: 3px;
	position: absolute;
	/*left: 10px; top: 122px;*/
	/*transform-origin: 0% 0%;*/
	/*transform: rotate(-90deg);*/
	/*transform: rotate(0.75turn);*/
	height: 47px;
}
#showlist div.show div.channel-logo-small img {
	position: relative;
	max-width: 64px; max-height: 43px;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
}
#showlist div.show div.channel-name-and-time {
	font-weight: bold;
	font-size: 16pt;
	padding-top: 0.5em;
}
#showlist div.show div.channel-name-and-time span {
	font-weight: normal;
}
#showlist div.show div.description {
	position: relative;
	padding-right: 20px !important;
	height: 480px;
	text-align: justify;
}
#showlist div.show div.show-title {
	font-size: 20pt;
}
#showlist div.show > div.show-title {
	font-size: 20pt; line-height: 22pt;
	position: absolute;
	left: 5px; bottom: -45px;
	transform-origin: 0% 0%;
	/*transform: rotate(-90deg);*/
	transform: rotate(0.75turn);
}
#showlist div.show div.run-time {
	font-style: italic;
}

/* Eszközlista */
#table-devices thead tr:first-child td:first-child,
#table-devices tbody tr td:first-child {
	width: 28px;
	text-align: right;
	font-size: 8.5pt;
}
#table-devices thead tr:first-child td:nth-child(3),
#table-devices tbody tr td:nth-child(3) {
	padding-left: 0; padding-right: 0;
	width: 28px;
}
#table-devices thead tr:last-child {
	border-bottom: 2px solid rgba(255,165,0,0.2);
}
#table-devices td i.device-type-icon {
	width: 28px;
	text-align: center;
}

/* Lajátszó-váltás */
#player-switch {
	position: relative;
	overflow: hidden;
}
#player-switch:after {
	content: "";
}
.switch {
	position: relative;
	display: block;
	vertical-align: top;
	width: 272px;
	height: 48px;
	padding: 3px;
	margin: 0 auto;
	background: linear-gradient(to bottom, #eeeeee, #FFFFFF 25px);
	background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF 25px);
	border-radius: 8px;
	box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
	cursor: pointer;
}
.switch-input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.switch-label {
	position: relative;
	display: block;
	height: inherit;
	font-size: 16pt;
	text-transform: uppercase;
	background: #eceeef;
	border-radius: inherit;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
}
.switch-label:before, .switch-label:after {
	position: absolute;
	top: 50%;
	margin-top: -.5em;
	line-height: 1em;
	-webkit-transition: inherit;
	-moz-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
}
.switch-label:before {
	content: attr(data-off);
	right: 11px;
	color: #FFFFFF;
	/*text-shadow: 0 1px rgba(255, 255, 255, 0.5);*/
	text-shadow: 0 1px rgba(0, 0, 0, 0.5);
}
.switch-label:after {
	content: attr(data-on);
	left: 11px;
	color: #FFFFFF;
	text-shadow: 0 1px rgba(0, 0, 0, 0.5);
	opacity: 0;
}
.switch-input:checked ~ .switch-label {
	background: #E1B42B;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}
.switch-input:checked ~ .switch-label:before {
	opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
	opacity: 1;
}
.switch-handle {
	position: absolute;
	top: 4px;
	left: 4px;
	width: 46px;
	height: 46px;
	background: linear-gradient(to bottom, #FFFFFF 40%, #f0f0f0);
	background-image: -webkit-linear-gradient(top, #FFFFFF 40%, #f0f0f0);
	border-radius: 6px;
	box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.switch-handle:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -6px;
	width: 12px;
	height: 12px;
	background: linear-gradient(to bottom, #eeeeee, #FFFFFF);
	background-image: -webkit-linear-gradient(top, #eeeeee, #FFFFFF);
	border-radius: 6px;
	box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
}
.switch-input:checked ~ .switch-handle {
	left: 228px;
	box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}
 
.switch-label, .switch-handle {
	transition: All 0.2s ease;
	-webkit-transition: All 0.2s ease;
	-moz-transition: All 0.2s ease;
	-o-transition: All 0.2s ease;
}

label.switch-left-right .switch-label {
	overflow: hidden;
}
.switch-left-right .switch-label:before, .switch-left-right .switch-label:after {
	width: 20px;
	height: 48px; line-height: 36px;
	top: 4px;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 11px 0 0 0;
	text-indent: -12px;
	border-radius: 8px;
	box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.2), inset 0 0 3px rgba(0, 0, 0, 0.1);
}
.switch-left-right .switch-label:before {
	background: #DD2200;
	background-image: url(/images/shaka.png);
	background-repeat: no-repeat;
	background-position: 210px center;
	background-size: 55px;
	/*padding-right: 10px;
	width: 262px;*/
	padding-right: 70px;
	width: 202px;
	text-align: right;
}
.switch-left-right .switch-label:after {
	text-align: left;
	text-indent: 9px;
	background: #228822;
	left: -272px;
	opacity: 1;
	/*width: 100%;*/
	width: 272px;
}
.switch-left-right .switch-input:checked ~ .switch-label:before {
	opacity: 1;
	left: 272px;
}
.switch-left-right .switch-input:checked ~ .switch-label:after {
	left: 0;
	background-image: url(/images/html5-logo.svg);
	background-repeat: no-repeat;
	background-position: 5px center;
	background-size: 36px;
	padding-left: 35px
}
.switch-left-right .switch-input:checked ~ .switch-label {
	background: inherit;
}

/* Lejátszó (broadcast) */
div.form.broadcast {
	width: 1180px;
}
div.form.broadcast .channel {
	margin-top: 5px;
	cursor: default;
}
div.form.broadcast .channel h1 {
	padding: 0 0 0.2em; margin: 0 0 15px 0;
}
div.form.broadcast .channel span {
	display: block;
}
div.form.broadcast .logo {
	position: absolute;
	padding: 5px;
	background-color: white;
	border-radius: 6px;
	top: 3px; left: 3px;
	height: 43px;
}
div.form.broadcast .logo img {
	position: relative;
	max-width: 64px; max-height: 43px;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
}
div.form.broadcast .info {
	position: relative;
	padding-left: 82px;
}
div.form.broadcast .start {
	float: left;
	/*background-color: rgba(255,255,255,0.1);*/
	width: 50px;
	text-align: left;
	height: 24px;
}
div.form.broadcast .progress {
	position: relative;
	height: 24px;
	margin-top: 8px;
}
div.form.broadcast .progress .full {
	position: absolute;
	height: 10px;
	/*background-color: rgba(255, 153, 51, 1);*/
	background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0.2) 40%, rgba(255,255,255,0.25) 60%, rgba(255,255,255,0.15) 100%);
	border-radius: 5px;
	left: 50px; right: 50px;
	top: 8px;
}
div.form.broadcast .progress .full .current {
	height: 10px;
	border-radius: 5px;
	background: linear-gradient(to bottom, rgba(255,153,51,0.5), rgba(255,153,51,0.8) 40%, rgba(255,153,51,1) 60%, rgba(255,153,51,0.6) 100%);
}
div.form.broadcast .end {
	float: right;
	/*background-color: rgba(255,255,255,0.1);*/
	width: 50px;
	text-align: right;
	height: 24px;
}
div.form.broadcast .title {
	font-size: 14pt;
	font-weight: bold;
	overflow: hidden;
}
div.form.broadcast .showtime-info {
	background-color: rgba(255,165,0,0.1);
	float: right;
}
div.form.broadcast .showtime-info:hover {
	background-color: rgba(255,165,0,1);
}

div.form.broadcast div.player {
	float: right;
	width: 640px;
	padding: 0;
}
div.form.broadcast div.player div.player-container {
	position: relative;
}
/*div.form.broadcast div.player div.player-container #video-error-cover {*/
#video-error-cover {
	position: absolute;
	top: 0; left: 0; bottom: 0; right: 0;
	background-color: rgba(255,255,255,0.66);
	display: none;
}
/*div.form.broadcast div.player div.player-container #video-error-cover .warning-icon {*/
#video-error-cover .warning-icon {
	position: absolute;
	width: 128px; height: 128px;
	left: 50%; top: 50%;
	margin: -64px 0 0 -64px;
	font-size: 128px; line-height: 128px;
	text-align: center;
/*	color: rgba(255,255,255,1);
	text-shadow: 0 0 32px rgba(255, 32, 32, 0.75);*/
	color: rgba(255,32,32,0.75);
	text-shadow: 0 0 16px rgba(255, 255, 255, 0.75);
}

div.form.broadcast .channel-list {
	position: relative;
	width: 520px;
	overflow: hidden;
	/*overflow-y: scroll;*/
	height: 545px;
	padding: 0 16px 0 0;
}
div.form.broadcast .channel-list .channel {
	width: 100%;
	/*background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0.2) 40%, rgba(255,255,255,0.25) 60%, rgba(255,255,255,0.15) 100%);*/
	/*background-color: rgba(255,255,255,0.15);*/
	background: linear-gradient(to bottom, rgba(255,255,255,0.1) 10%, rgba(255,255,255,0.2) 60%, rgba(255,255,255,0.25) 80%, rgba(255,255,255,0.15) 100%);
	/*border: 1px solid transparent;*/
	border: 0;
	border-radius: 3px;
	margin: 0;
	padding: 0 0.3em 0 0;
	text-align: left;
	transition: background 0.1s ease-out;
	color: white;
	outline: none;
	cursor: pointer;
}
div.form.broadcast .channel-list .channel:hover {
	/*background: linear-gradient(to bottom, rgba(25,25,25,1), rgba(50,50,50,1) 40%, rgba(64,64,64,1) 60%, rgba(40,40,40,1) 100%);*/
	/*background-color: rgba(0,0,0,0.15);*/
	background-color: rgba(255,255,255,0.25);
/*	border: 1px solid rgba(255, 153, 51, 1);
	box-shadow: 0 0 10px rgba(255, 153, 51, 1);
*/
}
div.form.broadcast .channel-list .channel.current-channel {
	background-color: rgba(255,153,51,0.35);
	cursor: default;
}
div.form.broadcast .channel-list .logo {
	transition: opacity 0.1s ease-out;
}
div.form.broadcast .channel-list .channel:hover .logo {
	opacity: 0.75;
}
div.form.broadcast .channel-list .channel.current-channel .logo {
	opacity: 0.75;
}
div.form.broadcast .channel-list .title {
	font-size: 11pt;
}
div.form.broadcast .channel-list .channel .info {
	height: 58px;
}
div.form.broadcast .channel-list > .channel > .info > .title {
	height: 18px;
	line-height: 20px;
}
div.form.broadcast .channel-list .time {
	font-size: 9pt;
}
div.form.broadcast .channel-list .start {
	float: left;
	/*background-color: rgba(255,255,255,0.1);*/
	width: 40px;
	text-align: left;
	height: 18px;
}
div.form.broadcast .channel-list .progress {
	position: relative;
	height: 18px;
	margin-top: 4px;
}
div.form.broadcast .channel-list .end {
	float: right;
	/*background-color: rgba(255,255,255,0.1);*/
	width: 40px;
	text-align: right;
	height: 18px;
}
div.form.broadcast .channel-list .progress .full {
	position: absolute;
	height: 6px;
	/*background-color: rgba(255, 153, 51, 1);*/
	background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0.2) 40%, rgba(255,255,255,0.25) 60%, rgba(255,255,255,0.15) 100%);
	border-radius: 3px;
	left: 40px; right: 40px;
	top: 4px;
}
div.form.broadcast .channel-list .progress .full .current {
	height: 6px;
	border-radius: 3px;
	background: linear-gradient(to bottom, rgba(255,153,51,0.5), rgba(255,153,51,0.8) 40%, rgba(255,153,51,1) 60%, rgba(255,153,51,0.6) 100%);
}
div.form.broadcast .channel-list .next,
div.form.broadcast .channel-list .next-title {
	font-size: 9pt;
	font-weight: normal;
	font-style: italic;
}
div.form.broadcast .channel-list .showtime-info {
	display: none;
}

/* EPG */
div.form.epg {
	width: 1180px;
}
div.form.epg .timeline-container {
	width: 880px;
	margin-left: 300px;
	overflow: hidden;
}
div.form.epg .timeline {
	width: 4800px;
}
div.form.epg .timeline .half-hour {
	display: inline-block;
	width: 92px;
	padding: 2px 4px;
	/*border: 1px solid #EEEEEE;*/
	border-radius: 4px 4px 0 0;
	cursor: default;
	transition: background 0.3s ease-out;
}
div.form.epg .timeline .half-hour.hover {
	background-color: rgba(255,255,255,0.2);
}
div.form.epg .channel-container {
	position: relative;
	width: 300px;
	/*background-color: rgba(255,255,255,0.1);*/
	display: inline-block;
	float: left;
	height: 580px;
	overflow: hidden;
}
div.form.epg .channel-container .ps-scrollbar-y-rail {
}
div.form.epg .channel-container .channel {
	position: relative;
	border-radius: 6px 0 0 6px;
	/*margin: 0 0 1px 0;*/
	/*border-bottom: 1px solid rgba(255,255,255,0.3);*/
	border-bottom: 1px solid transparent;
	cursor: pointer;
	/*background-color: rgba(255,255,255,0.1);*/
	background: linear-gradient(to bottom, rgba(255,255,255,0.1) 10%, rgba(255,255,255,0.2) 60%, rgba(255,255,255,0.25) 80%, rgba(255,255,255,0.15) 100%);
	background-clip: padding-box;
	/*border-top: 1px solid transparent;*/
	border-bottom: 1px solid transparent;
	border-right: 1px solid transparent;
	height: 57px;
}
div.form.epg .channel-container .logo {
	display:inline-block;
	padding: 5px;
	margin: 2px 0 0 2px;
	background-color: white;
	border-radius: 6px;
	top: 0; left: 0;
	height: 43px;
}
div.form.epg .channel-container .logo img {
	position: relative;
	max-width: 64px; max-height: 43px;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
}
div.form.epg .channel-container .name {
	position: absolute;
	display: inline-block;
	font-size: 15pt;
	height: 57px; line-height: 57px;
	top: 0; left: 80px;
}
div.form.epg .channel-container .channel {
	transition: background 0.3s ease-out;
}
div.form.epg .channel-container .channel.hover {
	background-color: rgba(255,255,255,0.25);
}
div.form.epg .program-container {
	position: relative;
	width: 880px;
	height: 580px;
	display: inline-block;
	/*float: left;*/
	overflow: hidden;
}
div.form.epg .program-container .half-hour {
	position: absolute;
	width: 100px;
	/*height: 1798px;*/
	padding: 0;
	top: 0;
	/*top: 0; bottom: 0;*/
	background: transparent;
	transition: background 0.3s ease-out;
	z-index: 0;
}
div.form.epg .program-container .half-hour.hover {
	background-color: rgba(255,255,255,0.25);
}
div.form.epg .program-container .program {
	width: 4800px;
	height: 57px;
	/*margin: 0 0 1px 0;*/
	/*border-bottom: 1px solid rgba(255,255,255,0.3);*/
	border-bottom: 1px solid transparent;
	position: relative;
	overflow: hidden;
	/*pointer-events: none;*/
	transition: background 0.3s ease-out;
	background-clip: padding-box;
}
div.form.epg .program-container .program.hover {
	background-color: rgba(255,255,255,0.25);
}
div.form.epg .program-container .live-line {
	position: absolute;
	z-index: 2;
	width: 5px;
	/*height: 9999px;*/
	top: 0;
	/*top: 0; bottom: 0;*/
	background-color: rgba(255, 0, 0, 0.45);
}
div.form.epg .program-container .program .show {
	position: absolute;
	height: 55px;
	border-left: 1px solid transparent;
	border-right: 1px solid transparent;
	font-size: 10pt;
	overflow: hidden;
	/*white-space: nowrap;*/
	text-overflow: ellipsis;
	/*cursor: default;*/
	top: 0;
	padding: 2px 4px;
	border-radius: 3px;
	/*pointer-events: none;*/
	z-index: 2;
	cursor: pointer;
}
div.form.epg .program-container .program .show.invisible {
	padding: 0;
}
div.form.epg .program-container .program .show.running {
	background-color: rgba(255, 153, 51, 0.65);
}
/*div.form.epg .program-container .program .show .back {*/
div.form.epg .program-container .program .show::before {
	content: "";
	position: absolute;
	left: 0; top: 0; right: 0; bottom: 0;
	background: linear-gradient(to bottom, rgba(255,255,255,0.1) 10%, rgba(255,255,255,0.2) 60%, rgba(255,255,255,0.25) 80%, rgba(255,255,255,0.15) 100%);
	z-index: 1;
}

/* Showtimeinfo */
.showtime-info.alone {
	position: relative;
	width: 100%;
	height: 100%;
	color: black;
}
.showtime-info.alone .title {
	font-size: 20pt;
	padding: 0;
	margin: 0;
	font-weight: normal;
}
.showtime-info.alone .run-time {
	font-style: italic;
}
.showtime-info.alone .picture {
	float: left;
	margin: 0.5em 1em 0.5em 0;
}
.showtime-info.alone .picture img {
	max-width: 240px;
	/*max-height: 160px;*/
	max-height: 240px;
}
.showtime-info.alone .jump-to-show-container,
.showtime-info.alone .jump-to-channel-container {
	position: absolute;
	text-align: right;
	/*padding: 4px 24px 8px 4px;*/
	padding: 4px 0;
	/*top: 380px;*/
	bottom: -48px;
	right: 10px;
}
.showtime-info.alone .jump-to-show,
.jump-to-channel {
	display: inline-block;
	color: white;
	cursor: pointer;
	background-color: rgba(255,165,0,0.75);
	font-size: 12pt;
	width: auto; height: 20px; line-height: 18px;
	text-align: center;
	border-radius: 16px;
	border: 3px solid white;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
	bottom: 6px; right: 6px;
	z-index: 9999;
	padding: 4px 6px;
}
.showtime-info.alone .jump-to-show .fa,
.jump-to-channel .fa {
	margin: 0 4px;
}
.showtime-info.alone .jump-to-show:hover,
.jump-to-channel:hover {
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
	bottom: 5px; right: 5px;
}

/* Popup */
#popup-cover {
	opacity: 0;
	display: block;
	top: 0; left: 0;
	position: fixed;
	width: 0;
	height: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 888;
}
#popup-wrapper {
	display: inline-block;
	position: absolute;
	padding: 16px 16px 16px 16px;
	border-radius: 8px;
	background-color: rgba(255,255,255,1);
	z-index: 889;
	box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.5);
	cursor: default;
}
#popup {
	position: relative;
	display: block;
	overflow: hidden;
	/*width: 0;*/
	/*height: 0;*/
	color: black;
}
#popup-close-button {
	display: inline-block;
	position: absolute;
	color: white;
	cursor: pointer;
	background-color: #BBBBBB;
	font-size: 12pt;
	width: 20px; height: 20px; line-height: 18px;
	text-align: center;
	border-radius: 16px;
	border: 3px solid white;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
	top: 6px; right: 6px;
	z-index: 9999;
}
#popup-close-button:hover {
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
	top: 7px; right: 5px;
}
#popup-content {
	display: block;
	position: relative;
}

/* Popup-content */
.hidden {
	display: none !important;
}
.popup-content {
	color: black;
	width: 600px;
	position: relative;
}
#popup-content .popup-form {
	position: absolute;
	left: 0; right: 0;
	bottom: 0;
}
#popup-content h2 {
	font-size: 22pt;
	height: 1.2em; line-height: 1em;
	padding: 4px 8px;
	margin: 4px 0 0.7em 0;
	background-color: rgba(255,165,0,0.5);
	border-radius: 3px;
	text-align: center;
}
#popup-content p {
	margin: 0 0 1.2em 0;
	text-align: justify;
}
#popup-content p img {
	height: 1.2em;
	vertical-align: -0.275em;
}
#popup-content .input-line {
	padding: 2px 0;
}
#popup-content div.input-line input[type="text"],
#popup-content div.input-line input[type="password"] {
	background-color: rgba(0,0,0,0.75);
}
#popup-content .input-line label {
	display: block;
	font-size: 11pt;
	font-style: italic;
	width: 288px;
	text-align: left;
	margin: 0 auto 2px auto;
}
#popup-content .button {
	background-color: rgba(0,0,0,0.75);
}
#popup-content .button:focus {
	background-color: rgba(255,165,0,0.5);
}
#popup-content .button:hover {
	background-color: rgba(255,165,0,1);
}

/* Error */
.error a {
	display: inline-block;
	background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0.2) 40%, rgba(255,255,255,0.25) 60%, rgba(255,255,255,0.15) 100%);
	padding: 0 2px;
	border-radius: 2px;
	transition: background 0.1s ease-out;
}
.error a:hover {
	background: linear-gradient(to bottom, rgba(255,153,51,0.5), rgba(255,153,51,0.8) 40%, rgba(255,153,51,1) 60%, rgba(255,153,51,0.6) 100%);
}
div.form.error {
	cursor: default;
}
div.form.error p {
	margin: 0; padding: 0;
}
div.form.error .error-content {
	position: relative;
}
div.form.error .error-code {
	display: block;
	float: left;
	width: 250px;
}
div.form.error .error-code span {
	display: block;
	text-align: center;
}
div.form.error .error-code .code {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 900;
	font-size: 72pt;
	color: rgba(255,153,51,0.8);
	height: 120px; line-height: 120px;
}
div.form.error .error-text {
	display: block;
	float: right;
	width: 910px;
}
div.form.error .divider {
	display: block;
	position: absolute;
	width: 6px;
	top: 0; left: 250px; bottom: 0;
	background: linear-gradient(to bottom, rgba(255,153,51,0.5), rgba(255,153,51,0.8) 40%, rgba(255,153,51,1) 60%, rgba(255,153,51,0.6) 100%);
}

/* VOD, Catchup */
div.form .show-container .header {
	position: relative;
	border-radius: 0 6px 6px 0;
	margin: 1px 0 0 0;
	padding: 0;
	height: 56px; line-height: 54px;
	text-align: left;
	font-size: 28px;
	font-weight: normal;
	background: linear-gradient(to bottom, rgba(255,255,255,0.1) 10%, rgba(255,255,255,0.2) 60%, rgba(255,255,255,0.25) 80%, rgba(255,255,255,0.15) 100%);
	background-color: rgba(255,153,51,0.35);
	background-clip: padding-box;
}
div.form .show-container .header .logo,
div.form.catchup .channel-container .logo {
	display:inline-block;
	padding: 5px;
	margin: 2px 0 0 0;
	background-color: white;
	border-radius: 6px;
	/*top: 0; left: 0;*/
	height: 43px;
	width: 64px;
}
div.form .show-container .header .logo {
	position: absolute;
	/*display: block;*/
	margin: 0;
	top: 2px; right: 0;
}
div.form .show-container .header .logo img,
div.form.catchup .channel-container .logo img {
	position: relative;
	max-width: 64px; max-height: 43px;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	font-size: 8px;
	border: 0 solid transparent;
	display: inline-block;
}
div.form.catchup .channel-container .logo {
	transition: opacity 0.1s ease-out;
}
div.form .show-container .header .logo img {
	line-height: 8px;
	display: block;
}
div.form.catchup .channel-container .channel:hover .logo {
	opacity: 0.75;
}
div.form.catchup .channel-container .channel.current-channel .logo {
	opacity: 0.75;
}
div.form.catchup .channel-container .name {
	position: absolute;
	display: inline-block;
	font-size: 18px;
	top: 0; left: 80px;
}
div.form.catchup .channel-container .name {
	height: 57px; line-height: 53px;
}
div.form .show-container .header .name,
div.form .show-container .header .show-name {
	position: absolute;
	display: inline-block;
	top: 0; left: 0;
	width: 795px;
	overflow: hidden;
	z-index: 10;
	margin: 0 10px;
}
div.form .show-container .header .name {
	transition: font-size 0.3s ease-out, line-height 0.3s ease-out;
}
div.form .show-container .show-name {
	z-index: 20;
	opacity: 0;
}
div.form .show-container .header .misc {
	position: absolute;
	display: inline-block;
	bottom: 0; left: 0;
	width: 795px;
	overflow: hidden;
	z-index: 10;
	margin: 0 10px;
	font-size: 0; line-height: 0;
	transition: font-size 0.3s ease-out, line-height 0.3s ease-out;
}
div.form .show-container .header.searched .name {
	font-size: 16pt; line-height: 30px;
}
div.form .show-container .header.searched .misc {
	font-size: 13pt; line-height: 30px;
}

/* VOD */
div.form.vod {
	width: 1180px;
	height: 580px;
}
div.form.vod .left-container {
	width: 300px;
	height: 580px;
	float: left;
	overflow: hidden;
}
div.form.vod .search-box-container {
	width: 300px;
	height: 40px;
}
div.form.vod .search-box-container .search-box {
	position: relative;
	border: 1px solid rgba(255,255,255,0.5);
	border-radius: 4px;
	height: 30px;
	overflow: hidden;
}
div.form.vod .search-box-container .search-box .search-element {
	display: inline-block;
	padding: 0;
	/*border: 1px solid white;*/
	border: 0;
	background-color: transparent;
	color: rgba(255,255,255,0.5);
	/*height: 100%;*/
	height: calc(100% - 2px);
	outline: none;
	transition: color 0.2s ease-out, background 0.2s ease-out;
	float: left;
	margin: 1px 1px 0 0;
}
div.form.vod .search-box-container .search-box input.search-element {
	background-color: rgba(255,255,255,0.15);
	/*height: calc(100% - 2px);*/
	padding: 0 5px;
	width: calc(100% - 74px);
	top: 1px; left: 1px;
	margin-left: 1px;
}
/*div.form.vod .search-box-container .search-box input.search-element::-ms-clear { display: none; }*/
div.form.vod .search-box-container .search-box button.search-element {
	background-color: rgba(255,255,255,0.35);
	width: 30px;
	font-size: 12pt;
	cursor: pointer;
}
div.form.vod .search-box-container .search-box .search-element:first-child {
	border-radius: 3px 0 0 3px;
}
div.form.vod .search-box-container .search-box .search-element:last-child {
	border-radius: 0 3px 3px 0;
}
div.form.vod .search-box-container .search-box #do-search {
	top: 1px; right: 32px;
}
div.form.vod .search-box-container .search-box #clear-search {
	top: 1px; right: 1px;
	font-size: 14pt;
}
div.form.vod .search-box-container .search-box .search-element:focus,
div.form.vod .search-box-container .search-box .search-element:active,
div.form.vod .search-box-container .search-box .search-element:hover {
	color: rgba(255,255,255,1.0);
}
div.form.vod .search-box-container .search-box button.search-element:focus,
div.form.vod .search-box-container .search-box button.search-element:active,
div.form.vod .search-box-container .search-box button.search-element:hover {
	background-color: rgba(255,255,255,0.65);
}
div.form.vod .search-box-container .search-box input.search-element:focus,
div.form.vod .search-box-container .search-box input.search-element:active {
	background-color: rgba(255,255,255,0.25);
}
div.form.vod .search-box-container .search-box button.search-element:disabled {
	color: rgba(255,255,255,0.15);
	background-color: rgba(255,255,255,0.15);
	cursor: default;
}

::-ms-clear { display: none; }
::-webkit-search-decoration,
::-webkit-search-cancel-button,
::-webkit-search-results-button,
::-webkit-search-results-decoration { display: none; }

div.form.vod .category-container,
div.form.vod .group-container {
	position: relative;
	width: 300px;
	/*background-color: rgba(255,255,255,0.1);*/
	display: inline-block;
	height: 540px;
	overflow: hidden;
}
div.form.vod .category-container {
	width: 220px;
	float: none;
	padding-left: 80px;
	height: auto;
	display: none;
}
div.form.vod .category-container.current-group {
	display: block;
}
div.form.vod .group-container .ps-scrollbar-y-rail {
}
div.form.vod .category-container .category,
div.form.vod .group-container .group {
	position: relative;
	/*background-color: rgba(255,255,255,0.1);*/
	background: linear-gradient(to bottom, rgba(255,255,255,0.1) 10%, rgba(255,255,255,0.2) 60%, rgba(255,255,255,0.25) 80%, rgba(255,255,255,0.15) 100%);
	background-clip: padding-box;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	border-radius: 6px 0 0 6px;
	/*margin: 0 0 1px 0;*/
	/*border-bottom: 1px solid rgba(255,255,255,0.3);*/
	cursor: pointer;
	transition: background 0.3s ease-out;
	height: 56px;
}
div.form.vod .category-container .category {
	height: 28px;
}
div.form.vod .group-container .logo {
	display:inline-block;
	padding: 5px;
	margin: 2px 0 0 0;
	background-color: transparent;
	border-radius: 6px;
	/*top: 0; left: 0;*/
	height: 43px;
	width: 64px;
	transition: opacity 0.1s ease-out;
}
div.form.vod .group-container .logo img {
	position: relative;
	max-width: 64px; max-height: 43px;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	font-size: 8px;
	border: 0 solid transparent;
	display: inline-block;
}
div.form.vod .group-container .group:hover .logo {
	/*opacity: 0.75;*/
}
div.form.vod .group-container .group.current-group .logo {
	/*opacity: 0.75;*/
}
div.form.vod .group-container .group.all .logo,
div.form.vod .group-container .group.all .logo img {
	display: none;
}
div.form.vod .group-container .group > .name {
	position: absolute;
	display: inline-block;
	/*font-size: 17pt;*/
	/*font-size: 1.1vw;*/
	font-size: 19px;
	top: 0; left: 80px;
	height: 56px; line-height: 56px;
}
div.form.vod .group-container .group.all > .name {
	left: 6px;
}
div.form.vod .category-container .category .name {
	position: absolute;
	display: inline-block;
	font-size: 15px;
	top: 0; left: 6px;
	height: 28px; line-height: 28px;
}
div.form.vod .category-container .category .vod-count,
div.form.vod .group-container .group > .vod-count {
	position: absolute;
	display: inline-block;
	font-size: 11px;
	font-style: italic;
	height: 17px; line-height: 9pt;
	bottom: 0; right: 6px;
}
div.form.vod .category-container .category:hover,
div.form.vod .group-container .group:hover {
	background-color: rgba(255,255,255,0.25);
}
div.form.vod .category-container .category.current-category {
	background-color: rgba(255,153,51,0.35);
	cursor: default;
}
div.form.vod .group-container .group.current-group {
	background-color: rgba(255,153,51,0.35);
}
div.form.vod .show-container {
	position: relative;
	margin-left: 310px;
	height: 590px;
	overflow: hidden;
}
div.form.vod .show-container .header .logo {
	position: absolute;
	/*display: block;*/
	margin: 0;
	display:inline-block;
	padding: 5px;
	/*margin: 2px 0 0 0;*/
	background-color: transparent;
	border-radius: 6px;
	/*top: 0; left: 0;*/
	height: 43px;
	width: 64px;
}
div.form.vod .show-container .shows {
	position: relative;
	width: 870px;
	height: 480px;
	z-index: 2;
}
div.form.vod .show-container .shows .show {
	position: relative;
	height: 230px; width: 140px;
	margin-top: 10px;
	margin-right: 6px;
	display: inline-block;
	overflow: hidden;
	float: left;
	cursor: pointer;
	background-color: rgba(0,0,0,1);
	/*transition: box-shadow 0.1s ease-out;*/
	transition: background 0.2s ease-out 0s;
}
div.form.vod .show-container .shows .show.current,
div.form.vod .show-container .shows .show:hover {
	background-color: rgba(255,255,255,1);
	/*box-shadow: inset 0 0 6px 6px rgba(255, 255, 255, 0.66);*/
}
div.form.vod .show-container .shows .show.current img,
div.form.vod .show-container .shows .show:hover img {
	/*opacity: 0.66;*/
	/*filter: brightness(150%) contrast(120%) sepia(40%);*/
	filter: contrast(100%) sepia(0%) grayscale(0%) brightness(100%);
}
/*div.form.vod .show-container .shows .show .centered {*/
div.form.vod .show-container .centered {
/*
	width: 1000px;
	height: 1000px;
	position: absolute;
	left: 50%; top: 50%;
	margin-left: -500px; margin-top: -500px;
*/
	position: absolute;
	left: 50%; top: 50%;
	transform: translate(-50%, -50%);
}
div.form.vod .show-container .shows .show .type-tag {
	position: absolute;
	transform: rotate(45deg);
	height: 20px; line-height: 20px; width: 120px;
	right: -30px; top: 20px;
	/*opacity: 1;*/
	transition: opacity 0.2s ease-out 0s;
	text-align: center;
}
div.form.vod .show-container .shows .show:hover .type-tag {
	/*opacity: 0;*/
}
div.form.vod .show-container .shows .show .type-tag.series {
	font-size: 9pt;
	background-color: rgba(255,160,64,0.66);
}
div.form.vod .show-container .shows .show .type-tag.miniseries {
	font-size: 9pt;
	background-color: rgba(255,160,64,0.66);
}
div.form.vod .show-container .shows .show:nth-child(6n+7) {
	margin-right: 0;
}
div.form.vod .show-container .shows .show img {
	max-height: 230px;
	max-width: 140px;
	display: block;
	margin: auto;
	transition: opacity 0.2s ease-out 0s, filter 0.2s ease-out 0s;
	filter: contrast(100%) sepia(30%) grayscale(10%) brightness(85%);
}
div.form.vod .show-container .shows .show .mini-info {
	position: absolute;
	height: 220px; width: 130px;
	left: 0; top: 170px;
	background-color: rgba(0,0,0,0.9);
	color: rgba(255,255,255,0.9);
	transition: top 0.2s ease-out 0.5s;
	font-size: 11px;
	padding: 5px;
	overflow: hidden;
}
div.form.vod .show-container .shows .show .mini-info > div.title { height: 60px; }
div.form.vod .show-container .shows .show .mini-info > div.title h6 { font-style: italic; }
div.form.vod .show-container .shows .show .mini-info > div.year-time { height: 25px; }
div.form.vod .show-container .shows .show .mini-info > div.people { overflow: hidden; }
div.form.vod .show-container .shows .show .mini-info > div.people > div { display: inline-block; vertical-align: top; }
div.form.vod .show-container .shows .show .mini-info > div.people > .label { width: 20px; }
div.form.vod .show-container .shows .show .mini-info > div.people > .text { width: 107px; font-style: italic; }
div.form.vod .show-container .shows .show .mini-info > div.directors,
div.form.vod .show-container .shows .show .mini-info > div.directors .text { height: 50px; }
div.form.vod .show-container .shows .show .mini-info > div.actors,
div.form.vod .show-container .shows .show .mini-info > div.actors .text { height: 80px; }
div.form.vod .show-container .shows .show .mini-info h5,
div.form.vod .show-container .shows .show .mini-info h6 {
	padding: 0; margin: 0;
}
div.form.vod .show-container .shows .show .mini-info > div .fa {
	margin: 0 8px;
}
div.form.vod .show-container .shows .show .mini-info > div .fa:first-child {
	margin-left: 0;
}
div.form.vod .show-container .shows .show:hover .mini-info {
	top: 0;
}
div.form.vod .show-container .pagination-container {
	width: 100%;
	position: absolute;
	z-index: 99;
	bottom: 5px;
}
div.form.vod .logo-hires {
	position: absolute;
	right: 10px; bottom: 45px;
	z-index: 1;
}
div.form.vod .logo-hires img {
	max-width: 870px;
	/*max-height: 200px;*/
	opacity: 0.75;
}
div.form.vod .show-container .vod-show-info {
	position: absolute;
	background-color: rgba(0,0,0,0.95);
	width: 870px; height: 580px;
	top: 600px; left: 0;
	z-index: 100;
	overflow: hidden;
}
div.form.vod .show-container .vod-show-info-cover {
	position: absolute;
	background-color: rgba(0,0,0,0.8);
	width: 870px; height: 580px;
	top: 0; left: 0;
	z-index: 99;
	overflow: hidden;
	display: none;
}
div.form.vod .show-container .vod-player *,
div.form.vod .show-container .vod-show-info * {
	cursor: default;
}
div.form.vod .show-container .vod-player header,
div.form.vod .show-container .vod-show-info header {
	border-radius: 0 6px 6px 0;
	margin: 1px 0 0 0;
	padding: 0 10px;
	/*height: 56px; line-height: 54px;*/
	height: 100px;
	text-align: left;
	/*font-size: 22pt;*/
	font-weight: normal;
	overflow: hidden;
/*
	background: linear-gradient(to bottom, rgba(255,255,255,0.1) 10%, rgba(255,255,255,0.2) 60%, rgba(255,255,255,0.25) 80%, rgba(255,255,255,0.15) 100%);
	background-color: rgba(255,153,51,0.35);
	background-clip: padding-box;
*/
}
div.form.vod .show-container .vod-player h3,
div.form.vod .show-container .vod-show-info h3,
div.form.vod .show-container .vod-player h4,
div.form.vod .show-container .vod-show-info h4 {
	font-size: 30px;
	font-weight: normal;
	padding: 0; margin: 0;
}
div.form.vod .show-container .vod-player h4,
div.form.vod .show-container .vod-show-info h4 {
	font-size: 14pt;
}
div.form.vod .show-container .vod-show-info .poster {
	position: relative;
	width: 300px; height: 470px;
	float: left;
	transition: background 1s ease-out;
	margin: 0 10px;
}
div.form.vod .show-container .vod-show-info .poster img {
	max-width: 300px;
}
div.form.vod .show-container .vod-show-info .poster:hover {
	/*background-color: rgba(255,255,255,0.1);*/
}
div.form.vod .show-container .vod-show-info .info-line {
	height: 40px;
	margin-right: 10px;
	margin-left: 320px;
	border-bottom: 1px dashed rgba(255,255,255,0.15);
	transition: background 1s ease-out;
	overflow: hidden;
}
div.form.vod .show-container .vod-show-info .info-line:hover {
	/*background-color: rgba(255,255,255,0.1);*/
}
div.form.vod .show-container .vod-show-info .info-line > div {
	display: inline-block;
	margin-right: 70px;
}
div.form.vod .show-container .vod-show-info .info-line > div.misc {
	margin-right: 0;
	width: 75px;
}
div.form.vod .show-container .vod-show-info .info-line .release-year,
div.form.vod .show-container .vod-show-info .info-line .run-time {
	color: rgba(255,255,255,0.6);
}
div.form.vod .show-container .vod-show-info .info-line i {
	margin-right: 10px;
}
div.form.vod .show-container .vod-show-info .categories {
	font-size: 10pt;
	height: 65px;
	/*min-height: 50px;*/
	margin-top: 10px;
	margin-right: 10px;
	margin-left: 320px; padding-left: 80px;
	border-bottom: 1px dashed rgba(255,255,255,0.15);
	overflow: hidden;
}
div.form.vod .show-container .vod-show-info .categories .category {
	display: inline-block;
	cursor: pointer;
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 6px;
	height: 1.75em; line-height: 1.65em;
	padding: 0 0.5em;
	margin: 0 0 4px 0;
	transition: background 0.2s ease-out;
}
div.form.vod .show-container .vod-show-info .categories .category:hover {
	background-color: rgba(255,255,255,0.3);
}
div.form.vod .show-container .vod-show-info .people {
	color: rgba(255,255,255,0.6);
	margin-right: 10px;
	margin-left: 320px;
	border-bottom: 1px dashed rgba(255,255,255,0.15);
}
div.form.vod .show-container .vod-show-info .people > div {
	transition: background 1s ease-out;
	display: table-row;
	border-collapse: collapse;
	padding: 0;
	width: 540px;
	overflow: hidden;
}
div.form.vod .show-container .vod-show-info .people > div:hover {
	/*background-color: rgba(255,255,255,0.1);*/
}
div.form.vod .show-container .vod-show-info .people > div > div {
	display: table-cell;
	height: 45px;
	border-collapse: collapse;
	padding: 0;
	overflow: hidden;
	vertical-align: top;
	font-size: 10pt;
}
div.form.vod .show-container .vod-show-info .people .label {
	font-style: italic;
	width: 80px;
	font-size: 10pt;
	/*padding-top: 0.3em;*/
}
div.form.vod .show-container .vod-show-info .highlight {
	position: relative;
	color: rgba(255,255,255,0.6);
	overflow: hidden;
	height: 200px;
	width: 460px;
	/*margin-left: 400px;*/
	margin-left: 320px; padding-left: 80px;
	border-bottom: 1px dashed rgba(255,255,255,0.15);
	font-size: 11pt;
	font-style: italic;
	transition: background 1s ease-out;
}
div.form.vod .show-container .vod-show-info .highlight:hover {
	/*background-color: rgba(255,255,255,0.1);*/
}
div.form.vod .show-container .vod-show-info .nav {
	margin-right: 10px;
	margin-left: 320px;
	height: 50px;
	position: relative;
}
div.form.vod .show-container .vod-show-info .nav .play-button {
	position: absolute;
	display: inline-block;
	color: white;
	cursor: pointer;
	background-color: rgba(255,165,0,0.75);
	font-size: 12pt;
	width: auto; height: 20px; line-height: 18px;
	text-align: center;
	border-radius: 16px;
	border: 3px solid white;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
	bottom: 6px; right: 6px;
	z-index: 9999;
	padding: 4px 6px 4px 6px;
	margin: 0;
}
div.form.vod .show-container .vod-show-info .nav .play-button .fa {
	margin: 0 4px;
}
div.form.vod .show-container .vod-show-info .nav .play-button:hover {
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
	bottom: 5px; right: 5px;
	margin: 1px 0 0 1px;
}

div.form.vod .show-container .vod-player {
	position: absolute;
	width: 870px; height: 580px;
	background-color: rgba(0,0,0,1);
	z-index: 9999;
	top: 600px; left: 0;
	overflow: hidden;
	opacity: 0;
}
div.form.vod .show-container .vod-player .player-container {
	position: relative;
	width: 870px; height: 580px;
	display: none;
}
div.form.vod .show-container .vod-player #video {
	width: 640px; height: 480px;
	position: relative;
	/*top: 50%; left: 50%;*/
	bottom: 0; left: 50%;
	/*transform: translate(-50%, -50%);*/
	transform: translate(-50%, -3px);
	/*border: 0 solid transparent;*/
	border: 1px solid rgba(255,255,255,0.1);
}
div.form.vod .show-container .vod-player #video.fullscreen {
	transform: translate(0%, 0%);
}

/* Pagination (lapozó) */
.pagination-container {
	text-align: center;
}
.pagination-container ul {
	display: inline-block;
}

/* VOD-évadok/-epizódok */
div.form.vod .show-container .vod-show-info .nav .section {
	display: inline-block;
	width: 120px;
	padding-top: 10px;
}
div.form.vod .show-container .vod-show-info .nav .section:first-child {
	width: 75px;
	font-size: 13px;
	font-style: italic;
	padding-top: 0;
	color: rgba(255, 255, 255,0.6);
}
div.form.vod .show-container .vod-show-info .nav .section .selectbox:disabled {
	display: none;
}
.ui-selectmenu-menu .ui-state-active {
	background-color: black;
}
.ui-selectmenu-open {
	max-height: 500px;
	overflow: hidden;
}
.ui-menu-item { font-size: 12px; }
div.form.vod .show-container .vod-show-info .nav .section .ui-selectmenu-button {
	display: inline-block;
	/*padding: .4em 1em;*/
	padding: 8px 4px 8px 8px;
}
div.form.vod .show-container .vod-show-info .nav .section .ui-selectmenu-button.ui-selectmenu-disabled {
	display: none;
}
div.form.vod .show-container .vod-show-info .nav .section #seasons-button.ui-selectmenu-button.ui-selectmenu-disabled {
	display: inline-block;
}
div.form.vod .show-container .vod-show-info .nav .section .ui-selectmenu-button.ui-button {
	width: auto;
}
div.form.vod .show-container .vod-show-info .nav .section .ui-selectmenu-button .ui-selectmenu-text {
	font-size: 12px;
}

div.form.vod .show-container .vod-show-info .single-nav {
	display: none;
}
div.form.vod .show-container.single .vod-show-info-cover {
	display: block;
}
div.form.vod .show-container.single .pagination-container {
	display: none;
}
div.form.vod .show-container.single .vod-show-info {
	top: 0;
}
div.form.vod .show-container.single #vod-close-button {
	display: none;
}
div.form.vod .show-container.single .vod-show-info .highlight {
	height: 160px;
}
div.form.vod .show-container.single .vod-show-info .poster {
	height: 430px;
}
div.form.vod .show-container.single .vod-show-info .single-nav {
	position: relative;
	display: block;
	height: 50px;
}
div.form.vod .show-container.single .vod-show-info .single-nav .single-nav-button {
	position: absolute;
	display: inline-block;
	color: white;
	cursor: pointer;
	background-color: rgba(255,165,0,0.75);
	font-size: 12pt;
	width: auto; height: 20px; line-height: 18px;
	text-align: center;
	border-radius: 16px;
	border: 3px solid white;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
	bottom: 8px;
	z-index: 9999;
	padding: 4px 6px 4px 6px;
	margin: 0;
}
div.form.vod .show-container.single .vod-show-info .single-nav .single-nav-button .fa {
	margin: 0 4px;
}
div.form.vod .show-container.single .vod-show-info .single-nav .single-nav-button:hover {
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
	bottom: 7px;
	margin: 1px 0 0 1px;
}
div.form.vod .show-container.single .vod-show-info .single-nav .single-nav-button.next-button {
	right: 6px; left: auto;
}
div.form.vod .show-container.single .vod-show-info .single-nav .single-nav-button.next-button:hover {
	right: 5px;
}
div.form.vod .show-container.single .vod-show-info .single-nav .single-nav-button.prev-button {
	left: 6px; right: auto;
}
div.form.vod .show-container.single .vod-show-info .single-nav .single-nav-button.prev-button:hover {
	left: 7px;
}

/* Catchup */
div.form.catchup {
	width: 1180px;
	height: 580px;
}
div.form.catchup .channel-container {
	position: relative;
	width: 300px;
	/*background-color: rgba(255,255,255,0.1);*/
	display: inline-block;
	float: left;
	height: 580px;
	overflow: hidden;
}
div.form.catchup .channel-container .ps-scrollbar-y-rail {
}
div.form.catchup .channel-container .channel {
	position: relative;
	/*background-color: rgba(255,255,255,0.1);*/
	background: linear-gradient(to bottom, rgba(255,255,255,0.1) 10%, rgba(255,255,255,0.2) 60%, rgba(255,255,255,0.25) 80%, rgba(255,255,255,0.15) 100%);
	background-clip: padding-box;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	border-radius: 6px 0 0 6px;
	/*margin: 0 0 1px 0;*/
	/*border-bottom: 1px solid rgba(255,255,255,0.3);*/
	cursor: pointer;
	height: 56px;
}
div.form.catchup .channel-container .channel {
	transition: background 0.3s ease-out;
}
div.form.catchup .channel-container .channel:hover {
	background-color: rgba(255,255,255,0.25);
}
div.form.catchup .channel-container .channel.current-channel {
	background-color: rgba(255,153,51,0.35);
	cursor: default;
}
div.form.catchup .show-container {
	position: relative;
	margin-left: 310px;
	height: 590px;
	overflow: hidden;
}
div.form.catchup .show-container .shows {
	position: relative;
	width: 870px;
	height: 480px;
}
div.form.catchup .show-container .pagination-container {
	width: 100%;
	position: absolute;
	z-index: 100;
	bottom: 5px;
}

div.form.catchup .show-container .shows .show {
	display: inline-block;
	width: 260px;
	background: linear-gradient(to bottom, rgba(255,255,255,0.1) 10%, rgba(255,255,255,0.2) 60%, rgba(255,255,255,0.25) 80%, rgba(255,255,255,0.15) 100%);
	background-color: rgba(255,255,255,0.3);
	margin: 5px;
	padding: 10px;
	cursor: default;
	transition: background 0.1s ease-out;
}
div.form.catchup .show-container .shows .show:first-child,
div.form.catchup .show-container .shows .show:nth-child(4) {
	/*margin-left: 0;*/
}
div.form.catchup .show-container .shows .show:hover {
	background-color: rgba(255,153,51,0.35);
}
div.form.catchup .show-container .shows .show h4 {
	padding: 0; margin: 0 0 10px 0;
}
div.form.catchup .show-container .shows .show h4 .age-limit {
	float: right;
	margin: 0;
	width: 18px; height: 18px; line-height: 18px;
	border-width: 3px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 800;
}
div.form.catchup .show-container .shows .show .picture {
	width: 260px; height: 120px;
	background-color: rgba(255,255,255,0.5);
}
div.form.catchup .show-container .shows .show .picture img {
	position: relative;
	max-width: 260px; max-height: 120px;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	font-size: 8px;
	border: 0 solid transparent;
	display: inline-block;
}
div.form.catchup .show-container .shows .show .time {
	height: 24px; line-height: 24px;
}
div.form.catchup .show-container .shows .show .time .run-time {
	display: inline-block;
	font-style: italic;
	float: right;
}
div.form.catchup .show-container .shows .show .nav {
	height: 28px;
}
div.form.catchup .show-container .shows .show .nav .nav-button .tiny-button {
	display: inline-block;
	color: white;
	cursor: pointer;
	background-color: rgba(255,255,255,0.25);
	font-size: 11px;
	width: 18px; height: 18px; line-height: 18px;
	text-align: center;
	border-radius: 16px;
	border: 3px solid white;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
div.form.catchup .show-container .shows .show .nav .nav-button .tiny-button .fa {
	margin: 0;
}
div.form.catchup .show-container .shows .show .nav .nav-button {
	display: inline-block;
	border-radius: 16px;
	padding: 2px 2px 2px 2px;
	/*float: right;*/
}
div.form.catchup .show-container .shows .show .nav .nav-button:hover {
	padding: 3px 1px 1px 3px;
}
div.form.catchup .show-container .shows .show .nav .nav-button:hover .tiny-button {
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
}
div.form.catchup .show-container .shows .show:hover .nav .nav-button .tiny-button {
	background-color: rgba(255,165,0,0.75);
}
div.form.catchup .show-container .player {
	position: absolute;
	width: 870px; height: 520px;
	background-color: rgba(0,0,0,0.75);
	/*background-color: rgba(0,0,0,1);*/
	z-index: 200;
	top: 600px;
	opacity: 0;
}
div.form.catchup .show-container .player .player-container {
	position: relative;
	width: 870px; height: 520px;
	display: none;
}
div.form.catchup .show-container .player #video {
	width: 640px; height: 480px;
	position: relative;
	/*top: 50%; left: 50%;*/
	bottom: 0;
	left: 50%;
	/*transform: translate(-50%, -50%);*/
	transform: translate(-50%, -3px);
	border: 0 solid transparent;
}
div.form.catchup .show-container .player #video.fullscreen {
	transform: translate(0%, 0%);
}

#player-close-button,
.close-button {
	display: inline-block;
	position: absolute;
	color: white;
	cursor: pointer;
	/*background-color: #BBBBBB;*/
	background-color: rgba(255,165,0,0.75);
	font-size: 12pt;
	width: 20px; height: 20px; line-height: 18px;
	text-align: center;
	border-radius: 16px;
	border: 3px solid white;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
	top: 6px; right: 6px;
	z-index: 9999;
}
#player-close-button:hover,
.close-button:hover {
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
	top: 7px; right: 5px;
}

/* Loader */
.loader {
	position: absolute;
	left: 0; top: 0; right: 0; bottom: 0;
	z-index: 999997;
	/*background-color: rgba(128,128,128,0.25);*/
	display: none; opacity: 0;
}
.loader-right {
	position: absolute;
	width: 870px;
	top: 10px; right: 10px; bottom: 10px;
	z-index: 999998;
	background-color: rgba(128,128,128,0.25);
}
.loader-anim {
	position: absolute;
	width: 230px;
	height: 230px;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	/*margin:auto;*/
}

.loader-anim .wBall {
	position: absolute;
	width: 160px;
	height: 160px;
	left: 35px; top: 35px;
	opacity: 0;
	transform: rotate(225deg);
		-o-transform: rotate(225deg);
		-ms-transform: rotate(225deg);
		-webkit-transform: rotate(225deg);
		-moz-transform: rotate(225deg);
	animation: orbit 4.2325s infinite;
		-o-animation: orbit 4.2325s infinite;
		-ms-animation: orbit 4.2325s infinite;
		-webkit-animation: orbit 4.2325s infinite;
		-moz-animation: orbit 4.2325s infinite;
}

.loader-anim .wBall .wInnerBall{
	position: absolute;
	width: 24px;
	height: 24px;
	background: rgba(255,153,51,0.70);
	left:0px;
	top:0px;
	border-radius: 24px;
}

.loader-anim #wBall_1 {
	animation-delay: 0.926s;
		-o-animation-delay: 0.926s;
		-ms-animation-delay: 0.926s;
		-webkit-animation-delay: 0.926s;
		-moz-animation-delay: 0.926s;
}

.loader-anim #wBall_2 {
	animation-delay: 0.183s;
		-o-animation-delay: 0.183s;
		-ms-animation-delay: 0.183s;
		-webkit-animation-delay: 0.183s;
		-moz-animation-delay: 0.183s;
}

.loader-anim #wBall_3 {
	animation-delay: 0.3665s;
		-o-animation-delay: 0.3665s;
		-ms-animation-delay: 0.3665s;
		-webkit-animation-delay: 0.3665s;
		-moz-animation-delay: 0.3665s;
}

.loader-anim #wBall_4 {
	animation-delay: 0.5495s;
		-o-animation-delay: 0.5495s;
		-ms-animation-delay: 0.5495s;
		-webkit-animation-delay: 0.5495s;
		-moz-animation-delay: 0.5495s;
}

.loader-anim #wBall_5 {
	animation-delay: 0.743s;
		-o-animation-delay: 0.743s;
		-ms-animation-delay: 0.743s;
		-webkit-animation-delay: 0.743s;
		-moz-animation-delay: 0.743s;
}



@keyframes orbit {
	0% {
		opacity: 1;
		z-index:999999;
		transform: rotate(180deg);
		animation-timing-function: ease-out;
	}

	7% {
		opacity: 1;
		transform: rotate(300deg);
		animation-timing-function: linear;
		origin:0%;
	}

	30% {
		opacity: 1;
		transform:rotate(410deg);
		animation-timing-function: ease-in-out;
		origin:7%;
	}

	39% {
		opacity: 1;
		transform: rotate(645deg);
		animation-timing-function: linear;
		origin:30%;
	}

	70% {
		opacity: 1;
		transform: rotate(770deg);
		animation-timing-function: ease-out;
		origin:39%;
	}

	75% {
		opacity: 1;
		transform: rotate(900deg);
		animation-timing-function: ease-out;
		origin:70%;
	}

	76% {
	opacity: 0;
		transform:rotate(900deg);
	}

	100% {
	opacity: 0;
		transform: rotate(900deg);
	}
}

@-o-keyframes orbit {
	0% {
		opacity: 1;
		z-index:999999;
		-o-transform: rotate(180deg);
		-o-animation-timing-function: ease-out;
	}

	7% {
		opacity: 1;
		-o-transform: rotate(300deg);
		-o-animation-timing-function: linear;
		-o-origin:0%;
	}

	30% {
		opacity: 1;
		-o-transform:rotate(410deg);
		-o-animation-timing-function: ease-in-out;
		-o-origin:7%;
	}

	39% {
		opacity: 1;
		-o-transform: rotate(645deg);
		-o-animation-timing-function: linear;
		-o-origin:30%;
	}

	70% {
		opacity: 1;
		-o-transform: rotate(770deg);
		-o-animation-timing-function: ease-out;
		-o-origin:39%;
	}

	75% {
		opacity: 1;
		-o-transform: rotate(900deg);
		-o-animation-timing-function: ease-out;
		-o-origin:70%;
	}

	76% {
	opacity: 0;
		-o-transform:rotate(900deg);
	}

	100% {
	opacity: 0;
		-o-transform: rotate(900deg);
	}
}

@-ms-keyframes orbit {
	0% {
		opacity: 1;
		z-index:999999;
		-ms-transform: rotate(180deg);
		-ms-animation-timing-function: ease-out;
	}

	7% {
		opacity: 1;
		-ms-transform: rotate(300deg);
		-ms-animation-timing-function: linear;
		-ms-origin:0%;
	}

	30% {
		opacity: 1;
		-ms-transform:rotate(410deg);
		-ms-animation-timing-function: ease-in-out;
		-ms-origin:7%;
	}

	39% {
		opacity: 1;
		-ms-transform: rotate(645deg);
		-ms-animation-timing-function: linear;
		-ms-origin:30%;
	}

	70% {
		opacity: 1;
		-ms-transform: rotate(770deg);
		-ms-animation-timing-function: ease-out;
		-ms-origin:39%;
	}

	75% {
		opacity: 1;
		-ms-transform: rotate(900deg);
		-ms-animation-timing-function: ease-out;
		-ms-origin:70%;
	}

	76% {
	opacity: 0;
		-ms-transform:rotate(900deg);
	}

	100% {
	opacity: 0;
		-ms-transform: rotate(900deg);
	}
}

@-webkit-keyframes orbit {
	0% {
		opacity: 1;
		z-index:999999;
		-webkit-transform: rotate(180deg);
		-webkit-animation-timing-function: ease-out;
	}

	7% {
		opacity: 1;
		-webkit-transform: rotate(300deg);
		-webkit-animation-timing-function: linear;
		-webkit-origin:0%;
	}

	30% {
		opacity: 1;
		-webkit-transform:rotate(410deg);
		-webkit-animation-timing-function: ease-in-out;
		-webkit-origin:7%;
	}

	39% {
		opacity: 1;
		-webkit-transform: rotate(645deg);
		-webkit-animation-timing-function: linear;
		-webkit-origin:30%;
	}

	70% {
		opacity: 1;
		-webkit-transform: rotate(770deg);
		-webkit-animation-timing-function: ease-out;
		-webkit-origin:39%;
	}

	75% {
		opacity: 1;
		-webkit-transform: rotate(900deg);
		-webkit-animation-timing-function: ease-out;
		-webkit-origin:70%;
	}

	76% {
	opacity: 0;
		-webkit-transform:rotate(900deg);
	}

	100% {
	opacity: 0;
		-webkit-transform: rotate(900deg);
	}
}

@-moz-keyframes orbit {
	0% {
		opacity: 1;
		z-index:999999;
		-moz-transform: rotate(180deg);
		-moz-animation-timing-function: ease-out;
	}

	7% {
		opacity: 1;
		-moz-transform: rotate(300deg);
		-moz-animation-timing-function: linear;
		-moz-origin:0%;
	}

	30% {
		opacity: 1;
		-moz-transform:rotate(410deg);
		-moz-animation-timing-function: ease-in-out;
		-moz-origin:7%;
	}

	39% {
		opacity: 1;
		-moz-transform: rotate(645deg);
		-moz-animation-timing-function: linear;
		-moz-origin:30%;
	}

	70% {
		opacity: 1;
		-moz-transform: rotate(770deg);
		-moz-animation-timing-function: ease-out;
		-moz-origin:39%;
	}

	75% {
		opacity: 1;
		-moz-transform: rotate(900deg);
		-moz-animation-timing-function: ease-out;
		-moz-origin:70%;
	}

	76% {
	opacity: 0;
		-moz-transform:rotate(900deg);
	}

	100% {
	opacity: 0;
		-moz-transform: rotate(900deg);
	}
}

/* Push notification Confirm window (Lobibox) */
/*
.push-notification.animated-super-fast {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.push-notification.animated-fast {
  -webkit-animation-duration: 0.1s;
  animation-duration: 0.1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.push-notification.animated {
  -webkit-animation-duration: 0.1s;
  animation-duration: 0.1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.push-notification.animated-slow {
  -webkit-animation-duration: 0.1s;
  animation-duration: 0.1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
*/

.lobibox.lobibox-confirm.push-notification {
	position: absolute;
	border: 1px solid rgba(255,255,255,0.25);
}
.lobibox.lobibox-confirm.push-notification .lobibox-header {
	color: #202020;
	background-color: rgba(238,238,238,0.98);
	background-color: rgba(226,159,56, 0.98);
}
.lobibox.lobibox-confirm .lobibox-body {
	color: rgba(0, 0, 0, 0.9);
	background-color: rgba(238,238,238,0.98);
}
.lobibox.lobibox-confirm .lobibox-body .lobibox-body-text-wrapper {
	padding: 0;
}
.lobibox.lobibox-confirm.push-notification .lobibox-footer {
	background-color: rgba(238,238,238,0.98);
	padding: 10px;
}
.lobibox.lobibox-confirm.push-notification .lobibox-footer > *:last-child {
	margin-right: 0;
}
.lobibox.lobibox-confirm.push-notification .push-request-message,
.lobibox.lobibox-confirm.push-notification .push-message {
	display: table;
}
.lobibox.lobibox-confirm.push-notification .push-request-message .icon,
.lobibox.lobibox-confirm.push-notification .push-message .icon {
	display: table-cell;
	vertical-align: top;
}
.lobibox.lobibox-confirm.push-notification .push-request-message .icon img,
.lobibox.lobibox-confirm.push-notification .push-message .icon img {
	max-height: 64px;
	max-width: 64px;
}
.lobibox.lobibox-confirm.push-notification .push-image {
	width: 460px;
	max-height: 290px;
	overflow: hidden;
	margin-bottom: 15px;
}
.lobibox.lobibox-confirm.push-notification .push-image img {
	max-width: 460px;
}
.lobibox.lobibox-confirm.push-notification .push-request-message .text,
.lobibox.lobibox-confirm.push-notification .push-message .text {
	display: table-cell;
	vertical-align: top;
	padding-left: 20px;
}
.lobibox.lobibox-confirm.push-notification .push-request-message .text .question,
.lobibox.lobibox-confirm.push-notification .push-message .text .title {
	font-size: 11pt;
	font-weight: bold;
	margin-bottom: 15px;
}
.lobibox.lobibox-confirm.push-notification .push-request-message .text .explanation,
.lobibox.lobibox-confirm.push-notification .push-message .text .body {
	font-size: 10pt;
	font-weight: normal;
}
.lobibox.lobibox-confirm.push-notification .lobibox-btn {
	outline: none;
}

/* videojs */
.video-js .vjs-big-play-button {
	display: none !important;
}