@charset "utf-8";
/* CSS Document */
html, body {
	margin:0;
    padding:0;
    overflow-x: hidden;
    overflow-y:hidden;
}
html, body {
	height:100%;
}

html{
    -webkit-text-size-adjust: auto;
    -ms-text-size-adjust: auto;
    -moz-text-size-adjust: auto;
    font-size:auto;
}

body {
<!--    background: url(bg.jpg) no-repeat center center fixed; -->
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
    text-align: center;
}
 
#playlist {
    font-size: 3vw;
}

ul {
    color:white;
    font-size: 25px;
    list-style-type: none;
	margin-left: -20px;
}

li {
    display: none;
}



li + li {
	display: list-item;
    color:white;
    padding: 5px;
    margin: 0 10px 10px 0;

	background-color: rgba(5,90,90,.8);
		-webkit-border-radius: .4rem;
	-moz-border-radius: .4rem;
	border-radius: .4rem;
}



li p {
       font-size: 16px;
    font-family: 'Roboto', sans-serif; 
}



body{
    background-color: #696969;
}

p{
	color: white;
    font-size: 25px;
}

a {
    color: #54BAE0;
}


.title {
    display: block;
    height: 50%;
    margin-top: -20px;
}

#recent_picture {
    display: none;
}

.icon {
    height: 50%;
    display: inline-block;
    opacity: 0.5;

}

.icon:hover {

    opacity: 1.0;

}

.toggle-menu {
		display: none;
}

#historyButton{

}

#title, #title2 {
    font-size: 3rem;
    color: white;
	text-transform: uppercase;
}

#artist {
    font-size: 1.75rem;
}

#controls {
	text-align: center;
	width: 100%;
	height: 5rem;
	background-color: rgba(0,0,0,.5);
	margin: 0px;
	position: absolute;
	bottom: 0px;
	
}

#controls:hover {
		background-color: rgba(0,0,0,.65);
		cursor: pointer;
}

#controlsplace {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 5%;
}

#controlsinner {
	height: 100%;
	width: 30%;
	min-width: 250px;
	position: relative;
	bottom: 0;
    display: -webkit-flex; /* Safari */
    -webkit-justify-content: space-around; /* Safari 6.1+ */
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
 }

#album {
    font-size: 1.75rem;
 }

#picture{

}

#playlistDiv {
    margin-left: calc(100% - 58rem);
	height: 100%;
    overflow-y: auto;
}

#playlistDiv::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

#playlistDiv::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

#playlistDiv::-webkit-scrollbar-thumb
{
	background-color: #0ae;
	
	background-image: -webkit-gradient(linear, 0 0, 0 100%,
	                   color-stop(.5, rgba(255, 255, 255, .2)),
					   color-stop(.5, transparent), to(transparent));
}



.albumcover {
    width: 80%;
    display:block; 
    margin:0 auto;
	max-width: 32rem;
	-webkit-border-radius: 1rem;
	-moz-border-radius: 1rem;
	border-radius: 1rem;
	border: 2px white solid;
}


.left {
    text-align: center;
    float:left;
width: 50%;
    padding: 1em;

height: 100%
}

.artistspan {
	width: 100px;
	overflow: ellipsis;
}

#middle {

	overflow:hidden;
	position:absolute;
	width:100%;
	top:5rem;
	bottom:5rem;
}

#info {
    float: left;
    margin-left: 0px;
    margin-top: 0px;
	width: 100%;
	   font-family: 'Roboto', sans-serif;

}

#artistLink {

	text-overflow: ellipsis;
}

.albuminfo {
    align-content: left;
}

.c-button {
  display: inline-block;
  margin: 4px;
  padding: 12px 24px;
  color: #67b5d1;
  background: #ffffff;
  font-size: 3vw;
  border: solid 2px #67b5d1;
  box-shadow: none;
  border-radius: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.c-buttonr {
  display: inline-block;
  margin: 4px;
  padding: 12px 24px;
  color: #67b5d1;
  background: #ffffff;
  font-size: 3vw;
  border: solid 2px #67b5d1;
  box-shadow: none;
  border-radius: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  position: fixed;
  float: right;
}



progress {
      width: 100%;
position: relative;
top:-12%;
	  opacity: 0.5;
	  z-index: 100;
    }
	
progress:hover {
	opacity: 1.0;
}
	
    progress[value] {
      -webkit-appearance: none;
      appearance: none;
      background-color: white;
      color: rgba(255,138,13,1);
      height: 10%;
    }
    progress[value]::-webkit-progress-bar {
      background-color: white;
      border-radius: 2px;
      border: 0px solid lighten(#acacac, 20%);
      color: rgba(255,138,13,1);
    }
    progress::-webkit-progress-value {
      background-color: rgba(255,138,13,1);
    }


.albumcoverlil {
    height: 0px;
    margin: 0px;
    -webkit-transition: height ease 1s;
    -moz-transition: height ease 1s;
    -o-transition: height ease 1s;
    transition: height ease 1s;
}






.marquee {
height: 3.2rem;


  overflow: hidden;
  position: relative;
}

.marquee div {
  display: block;
  width: 100%;
  height: 100%;

  position: absolute;
  overflow: hidden;

  animation: marquee 10s linear infinite;
}

.marquee span {
  float: left;
}

@keyframes marquee {
  0% { left: 0; }
  100% { left: -100%; }
}

.marquee div:hover {
	cursor: pointer;
    -webkit-animation-play-state: paused; /* Safari 4.0 - 8.0 */
    animation-play-state: paused;
}










@media screen and (max-height: 998px){

	img.albumcover {
        width: 40%;
        max-height: 30%;
	}
	
}


@media screen and (max-width: 550px){

	#playlistDiv {
	}
	.toggle-menu{
		display: inline;

	}
	.left {
		float:none;
		margin: 0 auto;
		width: 100%;

	}
	
	
	
	}
	