@charset "UTF-8";
@font-face {
 font-family: Headliner-Sans;
 src: url('fonts/Liberal.ttf');
}
@font-face {
 font-family: Headliner-Serif;
 src: url('fonts/Novelty.ttf');
}
:root {
/* COLORS */
 --main: #2d3d4d;
 --mid: #4d5d6d;
 --light: #98b3c0;
 --bright: #cfdfe5;
 --accent: #990000;
 --tint: #fff;
 --grad: #f9f9f9;
 --bground: #dfeaee;
 /* FONTS */
 --sans: "Arial", "Segoe UI Emoji", "Apple Color Emoji", sans-serif;
 --serif: "Times New Roman", "Segoe UI Emoji", "Apple Color Emoji", serif;
}
body {
	background-color: #E8F0F3;
	background-repeat: no-repeat;
	background-attachment: fixed;
	font-family: var(--sans);
	color: var(--main);
}
a:link, a:active, a:visited {
	color: var(--main);
	text-decoration: none;
	font-weight: bold;
 .border-bottom: 2px dotted var(--main);
}
a:hover {
	color: var(--main);
	text-decoration: none;
	border-bottom: none;
}
#content {
	position:relative;
	top: auto;
	left: auto;
	margin: auto;
	display: block;
	width: 700px;
	padding: 10px;
	background-color: #fff;
	transform: scale(1.3);
	transform-origin: top center;
}
/*.boxshadow {
	box-shadow: 3px 3px 13px #666;
}*/
/*.textshadow {
	text-shadow: 1px 1px 0px #ccc;
}*/
/*.outer {
	padding: 5px;
	border: 0px solid #D0E7FF;
	border-radius: 1px;
	background-color: #fff;
	font-size: 14px;
	color: var(--main);
}*/
.icon {
	display: inline;
	width: 5%;
	margin: 0 6px 3px 0;
	vertical-align: middle;
}
.small_icon {
	display: inline;
	width: 14px;
	margin: 0 2px;
	vertical-align: middle;
}
h1 {
	font-family: var(--serif);
	font-size: 20pt;
	color: var(--main);
	font-weight: bold;
	text-align: center;
	letter-spacing: -0px;
	margin: auto;
}
h2 {
	font-family: inherit;
	font-size: 16px;
	color: var(--main);
	font-weight: bold;
	font-variant: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0px;
}
h3 {
	font-family: inherit;
	font-size: 12px;
	color: var(--main);
	font-weight: bold;
	font-variant: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0px;
	text-align: center;
}
h4 {
	font-family: inherit;
	font-size: 12px;
	color: var(--main);
	text-align: center;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.subtitle {
	font-size: 80%;
	line-height: 100%;
}
hr {
	margin: auto;
	color: var(--light);
	width: 95%;
}
.split {
	width: auto;
	margin: 16px auto;
	border-color: var(--light);
	border: 0px;
	height: 2px;
	background-color: var(--light);
}
.lead_big {
	height: 25px;
}
.lead_med {
	height: 12px;
}
.lead_small {
	height: 6px;
}
#banner {
	width: 100%;
	height: min(65px, 8vw);
	min-height: 65px;
	background: url(images/banner_bg.png) no-repeat center center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
#logo-banner {
	height: 85%;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	content: url(demos/images/logo-banner.svg);
}
#banner h1 {
	letter-spacing: 0px;
}
h1 img {
	margin: 0 16px 0 0;
	width: 45px;
	vertical-align: middle;
}
#navbar {
	display: block;
	margin: 18px auto -10px;
	text-align: center;
	font-family: var(--sans);
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	color: var(--main);
	letter-spacing: 0px;
}
#navbar .tab {
	display: inline-block;
	background: linear-gradient(to bottom, var(--grad) 25%, var(--light) 100%);
	border-left: 1px solid var(--light);
	border-top: 1px solid var(--light);
	border-right: 1px solid var(--light);
	border-bottom: 1px solid var(--bright);
	border-radius: 6px 6px 1px 1px;
	margin: 0px 3px;
	padding: 8px;
	vertical-align: baseline;
	height: 20px;
	min-width: 75px;
	text-decoration: none;
}
.tab + .star:before {
	font-size: 85%;
	margin-right: 2px;
	content: "⭐";
}
#navbar a:link {
	padding: 4px 8px 2px;
	text-decoration: none;
	border-bottom: none;
}
#navbar .tab:hover {
	transform: scaleY(1.2);
	transform-origin: bottom center;
}
#biosect {
	display: block;
	width: inherit;
}
img.avatar {
	display: inline;
	border: none;
	margin: 0px 10px 5px 0px;
	float: left;
	width: 140px;
	height: 140px;
	content: url(demos/images/avatar.svg);
}
img.logo {
	display: inline;
	border: none;
	margin: -10px 5px 0px 0px;
	float: right;
	width: 90px;
	height: 108px;
	content: url(demos/images/PJSongs_color.svg);
}
.about {
	display: inline;
	font-family: var(--sans);
	font-size: 16px;
	font-weight: bold;
	line-height: 1.8em;
}
p {
	margin: 2px auto;
}
p.biotext {
	font-family: var(--sans);
	font-size: 12px;
	text-align: justify;
	line-height: 125%;
	padding: 5px 15px;
}
p.bodytext {
	color: var(--main);
	text-align: justify;
	font-family: inherit;
	font-size: 13px;
	margin: 20px;
}
#footer {
	display: block;
	color: var(--main);
	text-align: center;
	font-family: inherit;
	font-size: 11px;
	margin: 2% auto 0px;
}
blockquote {
	margin: 3%;
}
.caps {
	font-weight: bold;
	font-size: 110%;
	font-variant: small-caps;
	letter-spacing: 1px;
	font-family: inherit;
}
.sig {
	font: italic bold 18px var(--serif);
	margin: 5px 20px;
	text-align: right;
}
#storelink a:link {
	display: block;
	margin: 5px auto;
	text-align: center;
	text-decoration: none;
	border-bottom: none;
}
#bottomnav {
	font-family: var(--sans);
	font-size: 14px;
	font-weight: normal;
	margin: 0px;
	text-align: center;
	vertical-align: middle;
	letter-spacing: 0pt;
	line-height: auto;
	display: block;
	padding: 10px;/*border-top: 2px solid var(--light);*/
}
.bigText {
	font-size: 125% !important;
}
.medText {
	font-size: 75% !important;
}
.smallText {
	font-size: 65% !important;
}
.italic {
	font-family: inherit;
	font-size: inherit;
	font-style: italic;
}
.bold {
	font-family: inherit;
	font-size: inherit;
	font-weight: bold;
}
.divider::before {
 margin: 0 22px;
 font-size: inherit;
 font-weight: normal;
 color: var(--main);
 content: "|";
}
.blank {
	visibility: hidden;
}
.empty {
	display: none;
}
.omit {
	display: none;
}
/*---------- INDEX PAGE ----------*/
.headerRow {
	background: var(--main);
	width: 100%;
	height: 30px;
}
.headerRowText {
	color: #FFFFFF;
	padding: 2px 10px;
	font: bold 19px var(--sans);
	text-align: center;
}
.thumbgrid a:link {
	border: none;
}
.thumbgrid {
	border: 1px solid #495959;
	width: 695px;
	background-color: #E5F0FB;
	margin: 16px auto;
	padding: 5px 3px;
	text-align: center;
	vertical-align: middle;
}
.thumb {
	padding: 3px;
	outline: 1px solid #576471;
}
.thumbcaption {
	color: var(--main);
	font: bold 11px var(--sans);
	white-space: nowrap;
}
.thumb:hover {
	outline: 3px solid yellow;
}
.totop {
	display: block;
	padding-top: 20px;
	font-size: 16px;
	text-align: center;
}
.totop.show {
	display: block;
}
/* ---------- Score Display ---------- */
.score {
	background-color: #fff;
	width: 75%;
	margin: auto;
}
.score img {
	display: block;
	margin: auto;
	width: 100%;
}
/* ---------- Bio Popup ---------- */

.box {
	width: 100%;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.2);
	padding: 35px;
	border: 2px solid #fff;
	border-radius: 20px/50px;
	background-clip: padding-box;
	text-align: center;
}
.bio_open {
	cursor: pointer;
	transition: all 0.3s ease-out;
}
.bio_open:link {
	border: none;
}
/*.bio_open:hover {
	box-shadow: 0px 0px 10px 10px lightblue;
}*/
.overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background: rgba(5, 5, 5, .6);
	transition: opacity 250ms, visibility 0s 250ms;
	visibility: hidden;
	opacity: 0;
	z-index: -1;
}
.overlay.show {
	visibility: visible;
	transition: opacity 250ms, visibility 0s 0s;
	;
	opacity: 1;
	z-index: 10;
}
.popup {
	margin: 14px auto;
	padding: 20px 20px 8px 20px;
	background: #fff;
	border-radius: 5px;
	width: 85%;
	position: relative;
	transition: all 4s ease-in-out;
}
.popup .closex, .closex:link {
	position: absolute;
	top: 2px;
	right: 8px;
	transition: all 250ms;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	border: none;
	color: var(--main);
}
.popup .closex:hover {
	color: #CC0000;
	border: none;
}
/*.popup #logo-banner {
	width: 75%;
	margin-bottom: 25px;
	display: none;
}*/
.popup .biotext {
	font-size: 15px;
	max-height: 30%;
	overflow: auto;
}
.popup .about {
	font-size: 18px;
}
/*---------- COLOR TINTING ----------*/
.play, .pause, .stop, .next, .previous, .replay {
	filter:var(--tint);
}
#contact, #info, #nowplaying, #playMode, #endModeIcon, #currentIcon, .dropdown-item img {
	filter:var(--tint);
}
/*---------- MOBILE SPECIFIC ----------*/
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
 #content {
 transform: scale(1);
 transform-origin: top center;
}
}
