@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700);

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  /*
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  */
}

@keyframes harlem {
	0% {
	  transform: scale(1);
	  -webkit-transform: scale(1);
	  -moz-transform: scale(1);
	  -o-transform: scale(1);
	  -ms-transform: scale(1);
	}
	20% {
	  transform: scale(1.03, 1);
	  -webkit-transform: scale(1.03, 1);
	  -moz-transform: scale(1.03, 1);
	  -o-transform: scale(1.03, 1);
	  -ms-transform: scale(1.03, 1);
	}
	40% {
	  transform: scale(0.97, 1);
	  -webkit-transform: scale(0.97, 1);
	  -moz-transform: scale(0.97, 1);
	  -o-transform: scale(0.97, 1);
	  -ms-transform: scale(0.97, 1);
	}
	60% {
	  transform: scale(1.01, 1);
	  -webkit-transform: scale(1.01, 1);
	  -moz-transform: scale(1.01, 1);
	  -o-transform: scale(1.01, 1);
	  -ms-transform: scale(1.01, 1);
	}
	80% {
	  transform: scale(0.99, 1);
	  -webkit-transform: scale(0.99, 1);
	  -moz-transform: scale(0.99, 1);
	  -o-transform: scale(0.99, 1);
	  -ms-transform: scale(0.99, 1);
	}
	100% {
	  transform: scale(1);
	  -webkit-transform: scale(1);
	  -moz-transform: scale(1);
	  -o-transform: scale(1);
	  -ms-transform: scale(1);
	}
}

@keyframes rolling-disk {
    0%      {transform: rotate(0);}
    100%    {transform: rotate(1turn);}
}

/* CUSTOM GLOBAL CSS HERE */
body, html {
	width: 100%;
	height: 100%;
	overflow: hidden;

	--primary-text-color: #fff;
	--secondary-text-color: #777;
	--light-gray-color: #aaa;
}

i.material-symbols-outlined.small {
	font-size: 1em;
}

i.material-symbols-outlined.invert {
	color: var(--secondary-text-color);
}

i.material-symbols-outlined {
	font-size: 100px;
    color: var(--secondary-text-color);
    margin-top: 5px;
}

i.material-symbols-outlined:hover {
	color: red;
	cursor: pointer;
}

i.material-symbols-outlined.invert:hover {
	color: red;
}

.nav i.material-symbols-outlined,
.search i.material-symbols-outlined {
	font-size: 2em;
}

.actions {
	position: absolute;
	margin-top: 2px;
}

.actions i.material-symbols-outlined {
	color: #00ccffff;
}

.actions i.material-symbols-outlined:hover {
	color: red;
}

.actions i.material-symbols-outlined.play_circle {
    color: #49fb35;
    text-shadow: 0 0 10px #49fb45;
}

.actions i.material-symbols-outlined.pause_circle {
    color: red;
    text-shadow: 0 0 10px red;
}

main.main {
	background-color: #ff564c;
	min-height: 100%;
}

header.top {
	background-color: rgba(0,0,0,1);
	color: var(--primary-text-color);
}

header.top {
	display: flex;
    flex-direction: row;
	padding-top: 5px;
	align-items: center;
}

header.top.eq {
    background-image: url(./img/fake-eq.gif);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

header.top .nav,
header.top .search {
	flex: 1 1 10%;
}

header.top .song-info {
	flex: 1 1 80%;
	text-align: center;
	background-color: rgba(0,0,0,.5);
}

header.top .song-info p {
	font-size: 0.75em;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--light-gray-color);
}

header.top .song-info .song {
	font-size: 1.5em;
	text-transform: uppercase;
}

header.top .song-info .band {
	font-size: 0.75em;
	letter-spacing: 1px;
	color: var(--light-gray-color);
}

header.top .song-info .band .band-name {
	text-transform: uppercase;
}

header.top .search {
	text-align: right;
	margin-right: 5px;
}

.view {
	display: none;

	max-height: 90vh;
    overflow: auto;
}

.view ul.generic-list {
	margin: 0;
	padding: 0;
	margin: 20px;
	list-style: none;
	color: var(--secondary-text-color);
}

.view ul.generic-list li {
	background-color: #1d1d1d;
	padding: 15px 10px;
	font-size: 1em;
	display: flex;
	margin-bottom: 2px;
	align-items: center;
}

.view ul.generic-list li .ordernum {
	flex: 1 1 10%;
}

.view ul.generic-list li .song-title,
.view ul.generic-list li .nav-item {
	flex: 1 1 80%;
	color: var(--primary-text-color);
	font-size: 1.25em;
	font-weight: bolder;
	letter-spacing: 2px;
}

.view ul.generic-list li .nav-item {
	cursor: pointer;
}

.view ul.generic-list li .nav-item a {
	color: white;
}

.view ul.generic-list li .nav-item .arrow {
	font-weight: normal;
	color: var(--secondary-text-color);
}

.view ul.generic-list li:hover .arrow {
	font-weight: bolder;
	color: var(--primary-text-color);
}

.view ul.generic-list li .arrow.active {
	color: orange;
}

.view ul.generic-list li {
    opacity: 1;
    animation: harlem 0.3s linear forwards;
    animation-delay: 0.1s;
}

.view.view-player {
	height: calc(100vh - 104px);
}

.view.view-player .player,
.view.view-player .mini-player {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background-color: rgba(0,0,0,0.85);
	padding: 50px;
	border-radius: 20px;
	border: 1px solid #00ccffff;
	background-image: url(./img/player-only-final__invert.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
	box-shadow: 0px 0px 20px cyan;
	margin: 50px 0;
	overflow: hidden;
}

.view.view-player .mini-player {
	margin: 0;
	width: 150px;
    height: 150px;
	position: absolute;
}

.view.view-player .mini-player-mover {
	position: absolute;
    color: white;
	cursor: move;
	left: 115px;
	top: 185px;
}

.view.view-player .mini-player-mover i {
	font-size: 25px;
}

.mini-player-dashed-outline {
	width: 150px;
	height: 150px;
	position: absolute;
	border: 2px dashed var(--light-gray-color);
	border-radius: 20px;
	display: none;
}



.view.view-player .vinyl {
	border-radius: 50%;
    border: 4px solid #00ccffff;
    box-shadow: 5px 5px 15px #00ccffff, -5px -5px 15px #00ccffff;
	max-width: 500px;
}

.view.view-player .vinyl.on {
	animation: rolling-disk 7.5s 0.25s linear infinite;
}

.view.view-player .vinyl.off {
	animation: none;
}

.view.view-themes .theme-name {
	font-size: 1.5em;
	text-transform: uppercase;
	color: var(--primary-text-color);
}

footer.bottom {
	bottom: 0;
    position: fixed;
    text-align: center;
    width: 100%;
	background-color: #000;
	color: var(--secondary-text-color);
	text-transform: uppercase;
	font-size: 0.75em;
	letter-spacing: 1px;
	padding: 10px 0;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
	.view.view-player .player {
		margin: 50px calc(100vw - 75%);
	}
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}