/* background */
body {
	background: ;
	background-color: black;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	color: white;
}




/* website links colors */
a:link {
	color: lightblue;
	background-color: transparent;
	text-decoration: none;
}
a:visited {
	color: lightblue;
	background-color: transparent;
	text-decoration: none;
}
a:hover {
	color: blue;
	background-color: transparent;
	text-decoration: underline;
}
a:active {
	color: red;
	background-color: transparent;
	text-decoration: underline;
}




/* grid layout */
* {
	box-sizing: border-box;
}
.row:after {
	content: "";
	clear: both;
	display: block;
}
[class*="col-"] {
	float: left;
	padding: 0px;
}
html {
	font-family: "Lucida Sans", sans-serif;
}
.header {
	background-color: black;
	position: fixed;
	position: -webkit-sticky;
	position: sticky;
	top: 0px;
	z-index: 3;
}
.aside {
	padding: 0px;
	text-align: center;
	z-index: 2;
}
/* For desktop: */
.col-1 {width: 500px;}
.col-2 {width: calc(100% - 500px);}
@media only screen and (max-width: 900px) {
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;
  }
}




/********* top menu start *********/
/* select buttons */
.dropbtn {
  overflow: hidden;
  background: linear-gradient(to top, #7799FF, #AA00FF);
  border: none;
  color: white;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  margin: 4px 2px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: 20px;
}
.dropbtn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.dropup {
  position: relative;
  display: inline-block;
}
.dropup-content {
  display: none;
  position: absolute;
  min-width: 160px;
  overflow: hidden;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 5;
}
.dropup-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropup-content a:hover {background-color: #ccc}
.show {display: block;}
}
.dropup:hover .dropbtn {
  background-color: ;
}




/* top menu dropdown button style */
.top_menu_buttons {
  overflow: hidden;
  background: linear-gradient(to top, #00FFFF, #0056b3);
  border: none;
  color: white;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  margin: 4px 2px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: 20px;
}
.top_menu_buttons:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.top_menu_buttons.form-control option:checked {
  background-color: red var(--accent) !important;
}




/* video conrtole button style */
.button_controls {
  overflow: hidden;
  background: linear-gradient(to top, #00FFFF, #8856b3);
  border: none;
  color: black;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  margin: 4px 2px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: 20px;
}
.button_controls:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}




/* top menu register button style */
.register_button {
	overflow: hidden;
	background: linear-gradient(to top, #5500FF, #FF0000);
	border: none;
	color: white;
	padding: 5px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s, box-shadow 0.2s;
	border-radius: 20px;
}
.register_button:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}




/* top menu members tiers button style */
.tiers_button {
	overflow: hidden;
	background: linear-gradient(to top, #ff7700, #eeee00);
	border: none;
	color: black;
	padding: 5px 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 18px;
	margin: 4px 2px;
	cursor: pointer;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: transform 0.2s, box-shadow 0.2s;
	border-radius: 20px;
}
.tiers_button:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}




/* left side menu */
body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
}
.left_sidenav {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 5;
	top: 0;
	left: 0;
	background-color: black;
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 30px;
}
.left_sidenav a {
	padding: 8px 8px 8px 0px;
	text-decoration: none;
	font-size: 20px;
	color: #818181;
	display: block;
	transition: 0.3s;
}
.left_sidenav a:hover {
	color: #f1f1f1;
}
.left_sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 30px;
	margin-left: 50px;
}
@media screen and (max-height: 450px) {
	.sidenav {padding-top: 20px;}
	.sidenav a {font-size: 18px;}
}




/* dropdown left side menu */
body {
	font-family: Arial, Helvetica, sans-serif;
}
/* Style the sidenav links and the dropdown button */
.sidenav a, .dropdown-btn {
	padding: 6px 8px 6px 16px;
	text-decoration: none;
	font-size: 25px;
	color: #f1f1f1;
	display: block;
	border: none;
	background: none;
	width: 100%;
	text-align: left;
	cursor: pointer;
	outline: none;
}
/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover {
	color: #f1f1f1;
}
/* Main content */
.main {
	margin-left: 200px; /* Same as the width of the sidenav */
	font-size: 20px; /* Increased text to enable scrolling */
	padding: 0px 10px;
}
/* Add an active class to the active dropdown button */
.active {
	background-color: green;
	color: white;
}
/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
	display: none;
	background-color: #262626;
	padding-left: 8px;
}
/* Optional: Style the caret down icon */
.fa-caret-down {
	float: right;
	padding-right: 8px;
}




/* right side menu */
body {
	font-family: "Lato", sans-serif;
}
.right_sidenav {
	height: 100%;
	width: 0;
	max-width: 100%;
	position: fixed;
	z-index: 5;
	top: 0;
	right: 0;
	background-color: #111;
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 0px;
	text-align:center;
}
.right_sidenav a {
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	font-size: 25px;
	color: #818181;
	display: block;
	transition: 0.3s;

}
.right_sidenav a:hover{
	color: #f1f1f1;
}
.right_sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 36px;
	margin-left: 50px;
}
@media screen and (max-height: 450px) {
	.right_sidenav {padding-top: 15px;}
	.right_sidenav a {font-size: 18px;}
}
/********* top menu end *********/








/* sticky video */
div.stickyVideo {
	position: -webkit-sticky;
	position: sticky;
	top: 0px;
	z-index: 2;
	padding: 0px;
	font-size: 20px;
}




/* sticky tabs */
div.stickyTabs {
	position: -webkit-sticky;
	position: fixed;
	top: 0px;
	z-index: 2;
	padding: 0px;
	font-size: 20px;
	width: 100%;
}




/* video watching format controls */
.iframe-container-watching-controls iframe {
	border: 0;
	height: 48px;
	left: 0;
	z-index: 2;
}




/* transparent button background */
.button_nutral {
  width: 50px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
}




/* alert menu */
.alert {
	padding: 10px;
	background-color: darkred;
	color: white;
	font-size: 18px;
	z-index: 4;
	opacity: 2;
	transition: opacity 0.6s;
	margin-bottom: 15px;
	margin-top: 0px;
}
.alert2 {
	padding: 10px;
	background-color: darkblue;
	color: white;
	font-size: 15px;
	z-index: 4;
	opacity: 2;
	transition: opacity 0.6s;
	margin-bottom: 15px;
	margin-top: 0px;
}
.closebtnAlert {
	margin-left: 15px;
	color: white;
	font-weight: bold;
	float: right;
	font-size: 50px;
	line-height: 20px;
	cursor: pointer;
	transition: 0.3s;
}
.closebtnAlert:hover {
	color: black;
}




/* chat menu 87% iframe hieght */
body{
	margin: 0; /* Remove default margin */
}
iframe.left_menu{      
	display: block;  /* iframes are inline by default */   
	height: 87vh;  /* Set height to 100% of the viewport height */   
	border: none; /* Remove default border */
	background-color: black; /* Just for styling */
	position: -webkit-sticky;
	position: sticky;
	top: 0px;
	padding: 0px;
	font-size: 20px;
    overflow: hidden;
}#child{
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding-right: 17px; /* Increase/decrease this value for cross-browser compatibility */
    box-sizing: content-box; /* So the width will be 100% + 17px */
}




/* chat menu 100% iframe hieght */
body{
	margin: 0; /* Remove default margin */
}
iframe.chat_frame{      
	display: block;  /* iframes are inline by default */   
	height: 100vh;  /* Set height to 100% of the viewport height */   
	border: none; /* Remove default border */
	background-color: black; /* Just for styling */
	position: -webkit-sticky;
	position: sticky;
	top: 0px;
	padding: 0px;
	font-size: 20px;
    overflow: hidden;
}#child{
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    padding-right: 17px; /* Increase/decrease this value for cross-browser compatibility */
    box-sizing: content-box; /* So the width will be 100% + 17px */
}




/* text background */
div.backgroundShadow {
	width: 100%;
	margin: auto;
	background: rgba(0, 0, 0, 0.7);
}




/* full screen tabs for right slide out menu */
* {box-sizing: border-box}
/* Set height of body and the document to 100% */
body, html {
  height: 100%;
  margin: 0;
  font-family: Arial;
}
/* Style tab links */
.tablink {
	position: -webkit-sticky;
	position: sticky;
	top: 0px;
	background-color: black;
	color: white;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 5px 16px;
	font-size: 18px;
	width: 20%;
	z-index: 4;
}
.tablink:hover {
  background-color: grey;
}
/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
  color: white;
  display: none;
  padding: 100px 20px;
  height: 90%;
}




/* text box background */	
.first {
	width: 100%;
	float: right;
	margin: auto;
	background: rgba(0, 0, 0, 0.8);
}




/* sticky search */
div.search {
	position: -webkit-sticky;
	position: sticky;
	top: 10px;
	z-index: 0;
	padding: 0px;
	font-size: 20px;
}


.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: black;
   text-align: left;
}




#myBtn {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 90px;
  z-index: 99;
  width: 70px;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: blue;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}
#myBtn:hover {
  background-color: #555;
}

audio {
	width: 100px;
}
audio::-webkit-media-controls-volume-slider {
  display: none !important;
}
audio::-webkit-media-controls-mute-button {
    display: none !important;
}
audio::-webkit-media-controls-timeline {
    display: none;
}
audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
    display: none;
}







main 
{
  display: flex;
  flex-flow: row nowrap;
  background-color: #fef4f6;
  height: 100vh;
  width: 100vw;
}

.slots-control {
  margin-left: 50px;
  padding: 10px;
}

.slots-control ul {
  list-style-type: none;
  padding: 10px;
}

/** add styles to prevent CLS (Cumulative Layout Shift) */
media-controller:not([audio]) {
  display: block;         /* expands the container if preload=none */
  max-width: 100vw;     /* prevents video to expand beyond its container */      /* allows the container to shrink if small */
  aspect-ratio: 16 / 9;   /* set container aspect ratio if preload=none */
}

media-control-bar {
  background: none;
}

media-controller {
  --media-control-background: none;
}

media-controller > [slot='top-chrome'],
.top-chrome {
  background-color: rgba(153, 143, 235, 0.95);
  border: 1px solid rgb(203, 143, 235);
}

/* aka "bottom-chrome" */
media-controller > :not([slot]),
.bottom-chrome {
  background-color: rgba(203, 143, 235, 0.75);
  border: 1px solid rgb(203, 143, 235);
}

media-controller > [slot='centered-chrome'],
.centered-chrome {
  background-color: rgba(150, 0, 255, 0.75);
  border: 1px solid rgb(90, 50, 200);
}

.hidden {
  display: none;
}

.legend-item {
  height: 0.75em;
  aspect-ratio: 1 / 1;
  margin: 0 5px;
  display: inline-block;
  line-height: 0px;
  border: 1px solid black;
}

.spacer {
  flex-grow: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}










/* modela for ad for tier memberships */
body {font-family: Arial, Helvetica, sans-serif;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background: linear-gradient(to top, #dddddd, #ccffff);
  text-align: center;
  color: black;
  margin: auto;
  padding: 20px;
  border: 3px solid purple;
  width: 65%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 48px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}












