.overlayProtected {
		display: none;
		position:absolute;
		top:0;
		left:0;
		right:0;
		bottom:0;
		background-color:rgba(0, 0, 0, 0.72);
		background: url(data:;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAABl0RVh0U29mdHdhcmUAUGFpbnQuTkVUIHYzLjUuNUmK/OAAAAATSURBVBhXY2RgYNgHxGAAYuwDAA78AjwwRoQYAAAAAElFTkSuQmCC) repeat scroll transparent\9;
		z-index:999;
		color:white;
		text-align: center;
	}
	.overlayProtected:before {
		content: '';
		display: inline-block;
		height: 10%;
		margin-top: 70%;
		vertical-align: middle;
		margin-right: -0.25em;
	}
	.overlayProtected .learnMore {
		margin-right: 0;
		background-color: white;
		font-size: 13px;
		padding: 3px 7px;
	}
	.learnMore {
		color: #E50914!important;
		font-weight: bold;
		font-size: 15px;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		margin-right: 9px;
		border: solid 2px white;
		padding: 9px;
		background-color: white;
	}
	.pulseElement {
		animation: pulse 3s infinite;
	}

	@keyframes pulse {
		50% {
			color: #4d0000;
		}
	}

	.pulseElementB {
		animation: pulseB 3s infinite;
	}

	@keyframes pulseB {
		50% {
			background-color: #4d0000;
		}
	}

.setPassword {
	cursor: pointer; cursor: hand;
}
.setPassword, .passwordPanel {
	display: none;
	position: fixed;
	left: 0;
	z-index:1000;
	background-color: #c75b5b;
	padding: 20px;
	color: white;
	margin-left: 0;
	font-size: 17px;
}
.passwordPanel {
	width: 100%;
}
.passwordPanel h4 {
	line-height: 1.1;
	font-size: 17px;
	text-transform: none;
}
.passwordPanel input[type='password'] {
	color: black;
	/* reset back to this just in case hit.css resets */
	-webkit-appearance: textfield;
	background-color: white;
	-webkit-rtl-ordering: logical;
	user-select: text;
	cursor: auto;
	padding: 1px;
	border-width: 2px;
	border-style: inset;
	border-top-style: inset;
	border-right-style: inset;
	border-bottom-style: inset;
	border-left-style: inset;
	border-color: initial;
	border-image: initial;
}
.passwordPanel input.btn {
	color: white;
}
.passwordError {
	border-color: red;
	background-color: #ffb3b3;
}
.black_overlay {
	display: none;
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 2200px;
	background: rgb(0,0,0);
	z-index:1001;
	opacity:.80;
	-moz-opacity: 0.8;
	filter: alpha(opacity=80);
}
.white_content {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 390px;
	height: 238px;
	padding:8px;
	border-radius: 10px;
	background-color: #c75b5b;
	z-index:1002;
	overflow: auto;
}
.white_content a {
	color: #ddd;
}
span.packBB {
	font-size: x-small;
	vertical-align: middle;
}
@media(max-width: 768px) {
	.white_content {
		height: 278px;
	}
	.white_content input[type=password] {
		width: 100%;
	}
	.white_content p {
		padding-left: 25px;
	}
}

.episodes-info{
	margin-right: 6px;
	cursor: pointer;
}

.episodes-info:hover{
	color: #ffff00 !important;
}


/* Tooltip text */
.episodes-info .tooltiptext {
	left: 3%;
	display: none;
	width: 94%;
	background-color: #555;
	color: #fff;
	padding: 10px;
	bottom: 100px;
	text-align: left;
	border-radius: 6px;
	font-size: larger;
	font-weight: 400;
	border: 3px solid #ffff00;

	/* Position thetooltiptext text */
	position: absolute;
	z-index: 1;

	/* Fade in tooltiptext */
	opacity: 0;
	transition: opacity 0.3s;
  }

  /* tooltiptext arrow */
  .episodes-info .tooltiptext::after {
	content: "";
	position: absolute;
	top: 101%;
	right: 40px;
	border-width: 15px;
	border-style: solid;
	border-color: #ffff00 transparent transparent transparent;
  }

  /* Show the tooltiptext text when you mouse over the tooltiptext container */
  .episodes-info:hover .tooltiptext {
	display: initial;
	opacity: 1;
  }
