@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Stardos+Stencil:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');

@keyframes blinker {50% {opacity: 0;}}

:root {	
	--lps-blue: #0071b8;
	--lps-dark-blue: #00588f;
	--lightblue-background: #c5e9ff;
	--linecolor: #0072b834;
	--shadow-color: rgba(0, 0, 0, 0.199);
}

/** SCROLL BAR  **/

::-webkit-scrollbar {
  width: 5px;
}

/* Scroll Bar Track */
::-webkit-scrollbar-track {
  background: transparent;
  background: rgb(32, 32, 32);
  
}

/* Scroll Bar Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Scroll Bar Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

* {
	box-sizing: border-box;
}

body {
	color: #c7c7c7;
	background-color: rgb(32, 32, 32);
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: normal;
	margin: 0px;
	padding: 0px;		
	overflow-x: hidden;
	overflow-y: visible;
}

a, a:visited {	
	color: white;
	background: transparent;
	text-decoration: none;
}

a:hover, a:visited:hover {
	color: white;
	background: transparent;
	text-decoration: underline;
}

h1, h2, h3, h4 {
	margin: 0px;
	padding: 0px;
}

h2 {
	font-size: 1.3em;
}

#bypassBlocks {
	font-size: .1px;
}

.blackout {
	-top: 80px;
	background-color: rgba(48, 48, 48, 0.8);
	z-index: 98;
	width: 100vw;
	height: 100vh;
	position: absolute;
	display: none;
}

.beta-tag{
	position: absolute;
	color: red;
	font-weight: bold;
	z-index: 100;
	top: 25px;
	left: 20px;
	transform: rotate(-20deg);
	-font-family: 'Stardos Stencil', cursive;
	font-family: 'Special Elite', cursive;
	font-size: 1.2em;
}

header {
	position: relative;
	color: #0071b8;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;	
	width: 100vw;
	padding: 0px;	
	background-color: black;	
	padding-bottom: 10px;
	padding-top: 10px;
	padding-left: 10px;	
	border-bottom: 0px solid red;
	z-index: 99;
}

header a, header a:visited, header a:hover, header a:visited:hover {
	color: #0071b8;
}

.header-title-1 {
	font-size: 1em;
	font-weight: bold;	
}

.header-title-2 {
	font-size: 1.85em;
	font-weight: bold;
}

.hamburger {
	display: flex; 	
	flex-direction: column; 	
	align-items: center;
	justify-content: space-between;
	width: 50px; 
	height: 23px;	
	cursor: pointer;
	margin-top: 20px;
	margin-right: 20px;
	border: 0px solid #0071b8;	
}

.hamburger .line {
	width: 100%;
	height: 3px;	
	background-color: #0071b8;
	border: 1px solid #0071b8;
	border-radius: 5px;		
}

.hamburger .line:nth-child(2) {
	width: 60%;	
}

.channel-nav {
	display: none;	
	position: fixed;	
	top: 74px;
	right: 0px;	
	width: 190px;
	z-index: 99;	
	background-color: black;
	border-bottom: 0px solid red;
	border-left: 0px solid red;	
}

.channel-nav ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

.channel-nav ul li {	
	text-align: right;
	font-style: italic;	
}

.channel-nav img {
	height: 32px;
	margin: 5px;
	vertical-align: middle;
}

.content {
	width: 95vw;
	margin: auto auto;
	margin-top: 0px;
	border: 0px solid red;
}


/** DISPALYING THE DEFAULT VIDEO LISTING **/

.videos {
	width: 100%;
	max-width: 1836px;
	margin: auto;	
}

.video-container {
	margin: auto;
	margin-bottom: 30px;
	width: 100%;
	border: 0px solid red;
}

.video-thumbnail{
	width: 100%;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
	border-radius: 10px;
}

.video-info-container {
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	width: 100%;
}

.video-info-container>div:nth-of-type(1) {
	width: 80px;
}

.video-info-container>div:nth-of-type(2) {
	width: 85%;
}

.channel-logo {	
	height: 50px;	
}

.video-title {
	font-weight: bold;	
}

.video-date {
	color: #c5c5c5;
	font-size: .7em;
}

.more-videos {
	font-style: italic;
	padding-bottom: 20px;

}


/** DISPALYING VIDEO BY MEDIA ID **/

.media-id-outter-container {
	width: 95vw;	
}

video {	
	width: 100%;	
	height: auto;	
	border: 0px;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
	outline: none;
}

iframe {
	padding: 0px;
	margin: 0px;
}

.media-id-video-date {
	font-size: .8em;
}

.media-id-video-description {
	font-size: .8em;
	margin-top: 10px;
}

.media-id-channel-info-container {
	display: flex;
	flex-wrap: no-wrap; 
	justify-content: space-between;
	margin-top: 20px;
	padding-top: 3px;
	border-top: 1px solid rgb(45, 45, 45);
	border-bottom: 1px solid rgb(45, 45, 45);	
}

.media-id-channel-name {
	font-size: 1em;
}

.media-id-channel-video-count {
	font-size: .8em;
}

.media-id-more-videos-video-container {
	display: flex;
	flex-wrap: no-wrap;
	justify-content: space-between;
	margin-top: 20px;
}

.media-id-more-videos-video-thumbnail {
	width: 50vw;
	border-radius: 10px;	
}

.media-id-more-videos-video-title {
	font-weight: bold;
}

.media-id-more-videos-video-date {
	font-size: .8em;
}


/** DISPALYING THE CHANNEL PAGE **/

.channel-outter-container {
	margin-top: 10px;
	margin-bottom: 10px;		
}

.channel-channel-info-background {
	position: absolute;
	width: 70vw; 
	left: -20%;	
	top: 50px; 
	opacity: .08;
	z-index: -1;	
}

.channel-channel-info-container {
	width: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	border-bottom: 0px solid rgb(45, 45, 45);	
	padding-bottom: 20px;
}

.channel-channel-info-container>div:nth-of-type(2) {
	width: 80px;
}

.channel-channel-name {
	font-size: 2em;
	margin-left: 5px;
	filter: drop-shadow(0px 0px 8px #000000);
}

.channel-video-count {
	font-size: 1em;
	margin-left: 5px;
	filter: drop-shadow(0px 0px 8px #000000);
}

.channel-channel-logo {
	height: 70px;
	filter: drop-shadow(0px 0px 8px #000000);
}

input[type='textbox'] {
	background: transparent;
	color: white;
	border: none;
	width: 100%;
	font-size: 1em;
	border: 1px solid #444444;
}

textarea {
	background: transparent;
	color: white;
	border: none;
	width: 100%;
	font-size: 1em;
	font-family: 'Montserrat', sans-serif;
}

input[type='button'], input[type='submit'] {
	background: #ff3737;
	color: rgb(0, 0, 0);
	font-weight: bold;
	border: none;
	padding: 10px;
	margin-left: 10px;	
}

input[type='button']:hover, input[type='submit']:hover {
	background: #4cff46;
	
}

.live-stream-thumbnail-option {
	border: 1px solid rgb(0, 0, 0);
}

.live-stream-thumbnail-option:hover {
	border: 1px solid rgb(251, 255, 0);
	cursor: pointer;
}

.selectedLiveStreamThumbnail {
	border: 1px solid rgb(0, 255, 34);
}

.IPAllowCheckboxPlaceholder {
	width: 150px;
	margin-bottom: 10px;	
}

.IPAllowCheckboxPlaceholder:hover {
	background-color: #535353;	
}

/*  BREAK POINTS */


@media only screen and (min-width: 768px)
{
	
	/** DISPALYING THE DEFAULT VIDEO LISTING **/
	
	.videos {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;	
	}

	.video-container {		
		width: 45%;
		height: 300px;		
	}

	/** DISPALYING VIDEO BY MEDIA ID **/

	.media-id-more-videos-videos-container {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		-height: 80vh;
		-overflow: auto;	
	}

	.media-id-more-videos-video-container {
		width: 30%;		
		flex-wrap: nowrap;
		flex-direction: column-reverse;
		justify-content: flex-end;
		border: 0px solid red;	
		
	}
	
	.media-id-more-videos-video-thumbnail {
		width: 28vw;
	}

}






@media only screen and (min-width: 1024px)
{	
	
	/** DISPALYING THE DEFAULT VIDEO LISTING **/
	.video-container {
		width: 29%;
	}

	/** DISPALYING VIDEO BY MEDIA ID **/
	.media-id-outter-container {
		display: flex;
		flex-wrap: no-wrap;
		justify-content: flex-start;
		max-width: 1520px;
		margin: auto;
		border: 0px solid red;
	}	
	
	.media-id-video-container {
		max-width: 72%;
		min-width: 72%;		
		margin-right: 20px;
	}	

	video {
		max-height: 615px;
	}
	
	.media-id-more-videos-container {		
		max-width: 25%;		
		border: 0px solid red;		
	}

	.media-id-more-videos-video-container {		
		width: 99%;
		-max-width: 170px;
		flex-wrap: wrap;
		flex-direction: column-reverse;
		
	}	

	.media-id-more-videos-video-title {
		font-size: .9em;
	}

	.media-id-more-videos-video-thumbnail {
		width: 100%;		
	}

}

@media only screen and (min-width: 1085px)
{

	/* CHANGE THE NAV FROM A MENU TO ICONS ACROSS THE TOP */
	.hamburger {
		display: none;
	}	
	
	.channel-nav {	
		position: absolute;
		display: block;	
		width: 80vw;
		max-width: 820px;
		top: 0px;
		padding-top: 6px;
		margin-right: 2.7vw;
		border: 0px solid red;
	}

	.channel-nav ul {
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;	
	}

	.channel-nav ul li {		
		width: 75px;
		text-align: center;
		margin-left: 0px;
		border: 0px solid red;
	}

	.channel-nav-channel-name {
		display: none;
	}

	.channel-nav img {
		height: 50px;		
		vertical-align: middle;
	}

}


@media only screen and (min-width: 1280px)
{

	/** DISPALYING THE DEFAULT VIDEO LISTING **/
	.videos {				
		border: 0px solid red;
	}	
	
	.video-container {	
		width: 23%;		
	}

	/** DISPALYING VIDEO BY MEDIA ID **/
	.media-id-more-videos-video-container {		
		width: 99%;
		display: flex;		
		flex-wrap: wrap;
		flex-direction: row-reverse;		
	}	

	.media-id-more-videos-video-container>div {		
		width: 46%;
		margin-right: 10px;				
	}	

	.media-id-more-videos-video-title {
		font-size: .9em;
	}
	.media-id-more-videos-video-thumbnail {
		width: 100%;
		max-width: 170px;
		
	}	

}


