* {
  	box-sizing: border-box;
  	font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif;
  	font-size: 16px;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}
body {
  	background-color: #435165;
  	margin: 0;
}

.editable {
	cursor: pointer;
}
.hidden {
	display: none;
}
.show-on-small {
	display: none; /* Default to hidden on small screens */
}

.show-on-large {
	display: table; /* Default display for small screens */
}
.disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

.errorinput {
		border-color: 2px solid red;
		background-color: lightsalmon;
	}

.login, .register {
  	width: 400px;
  	background-color: #ffffff;
  	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.3);
  	margin: 100px auto;
}
.login h1, .register h1 {
  	text-align: center;
  	color: #5b6574;
  	font-size: 24px;
  	padding: 20px 0 20px 0;
  	border-bottom: 1px solid #dee0e4;
}
.login .links, .register .links {
  	display: flex;
  	padding: 0 15px;
}
.login .links a, .register .links a {
  	color: #adb2ba;
  	text-decoration: none;
  	display: inline-flex;
  	padding: 0 10px 10px 10px;
  	font-weight: bold;
}
.login .links a:hover, .register .links a:hover {
  	color: #9da3ac;
}
.login .links a.active, .register .links a.active {
  	border-bottom: 3px solid #3274d6;
  	color: #3274d6;
}
.login form, .register form {
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
  	padding-top: 20px;
}
.login form label, .register form label {
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 50px;
  	height: 50px;
  	background-color: #3274d6;
  	color: #ffffff;
}
.login form input[type="password"], .login form input[type="text"], .login form input[type="email"], .register form input[type="password"], .register form input[type="text"], .register form input[type="email"] {
  	width: 310px;
  	height: 50px;
  	border: 1px solid #dee0e4;
  	margin-bottom: 20px;
  	padding: 0 15px;
}
.login form input[type="submit"], .register form input[type="submit"] {
  	width: 100%;
  	padding: 15px;
  	margin-top: 20px;
  	background-color: #3274d6;
  	border: 0;
  	cursor: pointer;
  	font-weight: bold;
  	color: #ffffff;
  	transition: background-color 0.2s;
}
.login form input[type="submit"]:hover, .register form input[type="submit"]:hover {
  	background-color: #2868c7;
  	transition: background-color 0.2s;
}
.navtop {
  	background-color: #2f3947;
	opacity: 0.9;
  	height: 60px;
  	width: 100%;
  	border: 0;
	position: fixed;
}
.navtop div {
  	display: flex;
  	margin: 0 auto;
  	width: 1000px;
  	height: 100%;
}
.navtop div h1, .navtop div a, .navbottom div a {
  	display: inline-flex;
  	align-items: center;
}
.navtop div h1 {
  	flex: 1;
  	font-size: 24px;
  	padding: 0;
 	margin: 0;
  	color: #eaebed;
  	font-weight: normal;
}
.navtop div a, .navbottom div a {
  	padding: 0 20px;
  	text-decoration: none;
  	color: #c1c4c8;
  	font-weight: bold;
}
.navtop div a i {
  	padding: 2px 8px 0 0;
}
.navtop div a:hover, .navbottom div a:hover {
/*  	color: #eaebed; */
	color: #cd2c7b;
}

/* MENU NEW */

#menu ul {
	margin: 0;
	padding: 0;
  }
  
  #menu .main-menu {
	display: none;
  }
  
  #tm:checked + .main-menu {
	display: block;
  }
  
  #menu input[type="checkbox"], 
  #menu ul span.drop-icon {
	display: none;
  }
  
  #menu li, 
  #toggle-menu, 
  #menu .sub-menu {
	border-style: solid;
	border-color: rgba(0, 0, 0, .05);
  }
  
  #menu li, 
  #toggle-menu {
	border-width: 0 0 1px;
  }
  
  #menu .sub-menu {
	background-color: #444;
	border-width: 1px 1px 0;
	margin: 0 1em;
  }
  
  #menu .sub-menu li:last-child {
	border-width: 0;
  }
  
  #menu li, 
  #toggle-menu, 
  #menu a {
	position: relative;
	display: block;
	color: white;
	text-shadow: 1px 1px 0 rgba(0, 0, 0, .125);
  }
  
  #menu, 
  #toggle-menu {
	background-color: rgba(25, 25, 25, .75);
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  
  #toggle-menu, 
  #menu a {
	padding: 1em 1.5em;
  }
  
  #menu a {
	transition: all .125s ease-in-out;
	text-decoration:none;
	-webkit-transition: all .125s ease-in-out;
  }
  
  #menu a:hover {
	background-color: rgba(255, 255, 255, 0.584);
	color: rgb(67, 67, 67);
  }
  
  #menu .sub-menu {
	display: none;
  }
  
  #menu input[type="checkbox"]:checked + .sub-menu {
	display: block;
  }
  
  #menu .sub-menu a:hover {
	color: #444;
  }
  
  #toggle-menu .drop-icon, 
  #menu li label.drop-icon {
	position: absolute;
	right: 1.5em;
	top: 1.25em;
  }
  
  #menu label.drop-icon, #toggle-menu span.drop-icon {
	border-radius: 50%;
	width: 1em;
	height: 1em;
	text-align: center;
	background-color: rgba(0, 0, 0, .125);
	text-shadow: 0 0 0 transparent;
	color: rgba(255, 255, 255, .75);
  }
  
  #menu .drop-icon {
	line-height: 1;
  }
  

.navbottom {
	overflow: hidden;
	opacity: 0.9;
	background-color: #333;
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 100;
	height: 40px;
}
.navbottom div {
	display: flex;
	margin: 0 auto;
/*	width: 1000px; */
	width: 100%;
	height: 100%;
	padding: 0 20px;
	text-decoration: none;
	color: #c1c4c8;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	table-layout:fixed;
}

.navbottom th {
	width: 50%;
	text-decoration: none;
	color: #c1c4c8;
	font-weight: bold;
}

.navbottom table {
	width: 100%;
	text-decoration: none;
	color: #c1c4c8;
	font-weight: bold;
}


body.loggedin {
  	background-color: #f3f4f7;
}
.content {
/*  	width: 1200px; */
	width: 80%; 
  	margin: 0 auto;
}
.content h2 {
  	margin: 0;
  	padding: 25px 0;
  	font-size: 22px;
  	border-bottom: 1px solid #e0e0e3;
  	color: #4a536e;
}
.content > p, .content > div {
	margin-top: 125px;
  	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  	margin: 25px 0;
  	padding: 25px;
	background-color: #fff;
}
.content > p table td, .content > div table td {
	padding: 5px;
}
.content > p table td:first-child, .content > div table td:first-child {
	font-weight: bold;
	color: #4a536e;
	padding-right: 15px;
}
.content > div p {
	padding: 5px;
	margin: 0 0 10px 0;
}

input[type="file"] {
    display: none;
}
.custom-file-upload {
    border: 1px solid #ccc;
    background-color: #2f3947;
	display: inline-block;
    padding: 6px 12px;
	color: #c1c4c8;
    cursor: pointer;
}

.droplnk {
	padding: 16px;
	font-size: 16px;
  }
  
  .dropdown {
	position: relative;
	display: inline-block;
  }
  
  .dropdown-content {
	display: none;
	position: absolute;
	/*background-color: #f1f1f1;*/
	min-width: 160px;
	/*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
	z-index: 1;
  }
  
  .dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
  }
  
  .dropdown-content a:hover {background-color: #ddd;}
  
  .dropdown:hover .dropdown-content {display: block;}
  
/*  .dropdown:hover .droplnk {background-color: #3e8e41;} */

#myVideo {
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	z-index: -1;
	object-fit: cover;
	object-align: center center;
  }

th.nowplaying {
	width: 50%;
	display: inline-block;
}

th.recplay {
	width: 15%;
	display: inline-block;
}

th.recplaydyn {
	display: inline-block;
	width: 35%;
	height: 40px;
	/* padding-bottom: 5rem; */
}

/* Ticker */
/* static/style.css */
#ticker-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    /* border: 1px solid #ccc; */
}

#ticker {
    display: inline-block;
    padding-left: 100%; /* Move the ticker off the screen initially */
    animation: ticker-animation 15s linear infinite;
}

@keyframes ticker-animation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% * 5)); /* Adjust the percentage based on the number of spans */
    }
}

/* RESPONSIVE */

@media screen and (min-width: 639px) {
	.hide-on-small {
		display: none; /* Default to hidden on small screens */
	}

	.hide-on-large {
		display: table; /* Default display for small screens */
	}

	#menu .main-menu {
		display: block;
	  }
	
	  #toggle-menu, 
	  #menu label.drop-icon {
		display: none;
	  }
	
	  #menu ul span.drop-icon {
		display: inline-block;
	  }
	
	  #menu li {
		float: left;
		border-width: 0 1px 0 0;
	  }
	  
	  #menu .sub-menu li {
		float: none;
	  }
	
	  #menu .sub-menu {
		border-width: 0;
		margin: 0;
		position: absolute;
		top: 100%;
		left: 0;
		width: 12em;
		z-index: 3000;
	  }
	
	  #menu .sub-menu, 
	  #menu input[type="checkbox"]:checked + .sub-menu {
		display: none;
	  }
	
	  #menu .sub-menu li {
		border-width: 0 0 1px;
	  }
	
	  #menu .sub-menu .sub-menu {
		top: 0;
		left: 100%;
	  }
	
	  #menu li:hover > input[type="checkbox"] + .sub-menu {
		display: block;
	  }
	  
}
@media only screen and (max-width: 640px) {

	#menu li {
		width: 99.9999%;
	  }
	
	#menu .sub-menu li {
		width: auto;
	  }
	#unseen table tr:first-child th:nth-child(1),
    #unseen table tr:first-child th:nth-child(4),
    #unseen table tr:first-child th:nth-child(5),
    #unseen table tr:first-child th:nth-child(7), 
	#unseen table tr:first-child th:nth-child(8),
	#unseen table td:nth-child(1),
    #unseen table td:nth-child(4),
    #unseen table td:nth-child(5),
    #unseen table td:nth-child(7),
	#unseen table td:nth-child(8){display:none;}

	.show-on-small {
        display: table; /* Show this table on large screens */
    }
    .show-on-large {
        display: none; /* Hide this table on large screens */
    }

}

.navtop .icon {
	display: none;
  }