body {
	margin: 0;
	font-family: 'Ubuntu', sans-serif;
}

/* Header */

.title-bar {
	background-color: #8325a3;
	color: white;
	text-align: center;
	font-family: 'Shrikhand', cursive;
	padding: 10px;
}

.artist-search {
	color: black;
	display: inline-block;
}

button.hover {
	background-color: #d7a7e8;
}

/* Main section */

.display {
	margin-top: 0;
	background-color: #d7a7e8;
}

.js-album-list {
	float: right;
	background-color: black;
	margin-right: 10px;
	color: white;
	display: inline-block;
	max-width: 60%;
}

h2 {
	text-align: center;
}

.js-artist-list {
	background-color: #b1c3e0;
	padding-left: 10px;
	margin-left: 20px;
	margin-right: 20px;
	float: left;
	max-width: 35%;
}



.js-track-list {
	list-style-type:decimal;

}

.js-track-list:hover {
	cursor: pointer;
}

.artist-display {
	padding-top: 10px;
	list-style-type: none;
	text-align: center;
}

.album-display {
	padding: 30px;
	display: inline-block;
	width: 30%;
	text-align: center;
}

/* Footer */

.footer {
	background-color: #8325a3;
	color: white;
	text-align: center;
	font-family: 'Shrikhand', cursive;
	padding: 10px;
}

/* Images */

.get-albums /* Artist pics */ {
	width: 150px;
	border-radius: 5px;
	border: 2px solid black;
	-webkit-transition: width 0.5s; /* For Safari 3.1 to 6.0 */
    transition: width 0.5s;
}

.get-albums:hover {
	border: 3px solid white;
	cursor:pointer;
	width: 180px;
}

.get-tracks /* Album pics */ {
	width: 120px;
	border-radius: 50%;
	-webkit-transition: -webkit-transform 1s ease-in-out;
    transition:         transform 1s ease-in-out;
}

.get-tracks:hover {
	border: 3px solid white;
	cursor:pointer;
	-ms-transform: rotate(720deg); /* IE 9 */
    -webkit-transform: rotate(720deg); /* Chrome, Safari, Opera */
    transform: rotate(720deg);
}


/* Modal */

.modal-dialog {
	width: 500px;
}

.player-screen {
	margin: 10px auto 0;
  	border-radius: 5px;
  	overflow-y: scroll;
  	display: block;
	padding: 10px;
	background-color: #3a3b3d;
	color: white;
	height: 400px;
	font-family: 'Roboto Mono', monospace;
}


/* Player */

.widget {
  width: 300px;
  margin: 10px auto 0;
  border-radius: 5px;
  overflow: hidden;
  display: block;
}

.header {
  background-color: #ccc;
  position: relative;
  font-size: 12px;
}

.btn-play {
  margin: 9px;
  width: 60px;
  height: 60px;
  float: left;
  border-radius: 50px;
  border: 1px solid #3c3c3c;
  user-select: none;
  -webkit-user-select: none;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-left: 90px;
}

.btn-play:after {
  content: ' ';
  position: relative;
  display: block;
  width: 0px;
  height: 0px;
  margin-left: 50%;
  margin-top: 50%;
  left: -10px;
  top: -18px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 30px solid #3c3c3c;
}

.btn-play:hover {
  cursor: pointer;
  border-color: #666;
}

.btn-play:hover:after {
  border-left-color: #666;
}

.btn-play:active:after {
  border-left-color: #000;
}

.btn-play.playing:before, .btn-play.playing:after {
  width: 36px;
  height: 36px;
  background-color: #3c3c3c;
  content: "";
  top: 30px;
  left: 27px;
  border: 0;
  margin: 0;
}

.btn-play.playing:after {
  left: 31px;
}

.btn-play.playing:hover:before, .btn-play.playing:hover:after {
  background-color: #666;
}

.btn-play.playing:active:before, .btn-play.playing:active:after {
  background-color: #000;
}

.btn-play.disabled {
  border-color: #888;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-left: 90px;
}

.btn-play.disabled:hover {
  cursor: auto;
}

.btn-play.disabled:after {
  border-left-color: #888;
}

.metadata {
  display: inline-block;
  padding: 10px;
  width: calc(100% - 100px);
}

.title, .author {
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
  line-height: 1.4em;
  height: 1.4em;
  text-align: center;
}

.title {
	font-size: 20px;
	font-weight: bold;
}

.author {
  font-weight: normal;
  font-size: 15px;
}

.seekbar {
  margin-top: 5px;
  width: 100%;
}

.cover {
  height: 300px;
  position: relative;
}

.cover img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 0;
  border: 0;
}

audio {
  display: none;
}

progress {
  width: 100%;
  height: 5px;
  padding: 0;
  background-color: #3e3e40;
  position: relative;
  border: 0;
  overflow: hidden;
}

progress::-webkit-progress-bar {
  background-color: #3e3e40;
}

progress::-webkit-progress-value {
  background-color: #45a800;
}

progress::-moz-progress-bar {
  background-color: #45a800;
}