@charset "UTF-8";
body {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  background: rgb(232, 232, 232);
  cursor: default;
  -webkit-text-size-adjust: none;
}

#player {
  position: fixed;
  left: 0;
  top: 0;
  padding: 0.5em 0;
  width: 100%;
  height: 4em;
  color: rgb(92, 92, 92);
  background: -webkit-linear-gradient(rgb(237, 237, 237) 0%, rgba(198, 198, 198, 0.96) 100%);
  box-shadow: 0 -1px 2px rgba(255, 255, 255, 0.2) inset, 0 -1px 3px rgb(0, 0, 0);
  z-index: 99;
  -webkit-transform: perspective(1000px);
  -webkit-transform-style: preserve-3d;
  -webkit-transition-duration: 0.1s;
  -webkit-user-select: none;
  -webkit-font-smoothing: antialiased;
}

#player.semi-floating {
  box-shadow: 0 -1px 2px rgba(255, 255, 255, 0.2) inset, 0 -2px 8px rgb(0, 0, 0);
  -webkit-transform: perspective(1000px) rotateX(5deg) translateZ(5px);
}

#player.floating {
  box-shadow: 0 -1px 2px rgba(255, 255, 255, 0.2) inset, 0 -2px 18px rgb(0, 0, 0);
  -webkit-transform: perspective(1000px) rotateX(8deg) translateZ(8px);
}

#player .controls {
  position: absolute;
  width: 20%;
  height: 100%;
  line-height: 4em;
  text-align: center;
}

#player .controls a {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  font-size: 1.6em;
  color: rgb(113, 113, 113);
  text-decoration: none;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgb(0, 0, 0)));
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.9);
}

#player .controls a:hover {
  color: rgb(90, 90, 90);
}

#player .controls a:active {
  color: rgb(20, 20, 20);
}

#player .controls a.back {
  letter-spacing: -0.1em;
  -webkit-transform: scaleX(-1);
}

#player .controls a.play {
  width: 1.5em;
  font-size: 2.6em;
}

#player .controls a.play.playing {
  width: 1.95em;
  font-size: 2em;
  letter-spacing: -0.3em;
  -webkit-transform: scaleX(0.8);
}

#player .controls a.forward {
  letter-spacing: -0.1em;
}

#player .info {
  position: relative;
  margin: 0 auto;
  width: 60%;
  height: 100%;
  text-align: center;
  font-size: 0.9em;
  background: -webkit-radial-gradient(50% 100%, 90% 200%, rgb(234, 235, 237) 0%, rgb(171, 174, 179) 100%);
  border-radius: 0.2em;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6) inset, 0 1px 1px rgba(255, 255, 255, 0.4);
  -webkit-user-select: text;
}

#player .info .name {
  padding: 0.5em 0 0;
  font-weight: bold;
}

#player .info .time .elapsed {
  float: left;
  margin: 0 0 0 5%;
}

#player .info .time .remaining {
  float: right;
  margin: 0 5% 0 0;
}

#player .info .time .bar {
  display: none;
  position: absolute;
  left: 50%;
  margin: 0.4em 0 0 -35%;
  width: 70%;
  height: 0.5em;
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
  border-radius: 1em;
  box-shadow: 0 1px 1px rgba(255, 255, 255, 0.9);
}

#player .info .time .bar.loaded {
  display: block;
}

#player .info .time .bar .buffer {
  position: absolute;
  height: 0.5em;
  background: -webkit-linear-gradient(rgba(0, 150, 255, 0.3) 0%, rgba(0, 150, 255, 0.8) 100%);
  border-radius: 1em;
}

#player .info .time .bar .played {
  position: absolute;
  height: 0.5em;
  background: -webkit-linear-gradient(rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.8) 49%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.8) 100%);
  border-radius: 1em;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7), 0 1px 2px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateZ(4px);
}

#player .info .time .bar .handle {
  display: block;
  position: absolute;
  margin: -0.3em 0 0 -0.3em;
  width: 1em;
  height: 1em;
  background: -webkit-linear-gradient(rgb(200, 200, 200) 0%, rgb(250, 250, 250) 100%);
  border-radius: 1em;
  box-shadow: 0 1px 1px rgba(255, 255, 255, 0.9) inset, 0 1px 2px rgba(0, 0, 0, 0.5);
  -webkit-transform: translateZ(8px);
}

#song-list_filter {
  position: fixed;
  right: 0;
  top: 1.8em;
  width: 20%;
  text-align: center;
  z-index: 100;
  -webkit-user-select: none;
  -webkit-transform-origin: left center;
  -webkit-transform: perspective(1000px);
  -webkit-transition-duration: 0.1s;
}

#song-list_filter.semi-floating {
  -webkit-transform: perspective(1000px) rotateX(11deg) translateZ(7px);
}

#song-list_filter.floating {
  -webkit-transform: perspective(1000px) rotateX(16deg) translateZ(13px);
}

#song-list_filter label {
  font-size: 0;
  color: transparent;
}

#song-list_filter input {
  padding: 0.3em 0.8em;
  border: 1px solid rgb(178, 178, 178);
  width: 60%;
  border-radius: 2em;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset, 0 1px 1px rgba(255, 255, 255, 0.3);
}

#song-list_filter input:focus {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset, 0 1px 1px rgba(255, 255, 255, 0.3), 0 0 4px #006bff;
  outline: none;
}

#song-list {
  margin: 5em 0 0;
  width: 100%;
  border-collapse: collapse;
  -webkit-user-select: none;
}

#song-list thead tr {
  border-bottom: 1px solid rgb(149, 149, 149);
  color: rgb(32, 32, 32);
  background: -webkit-linear-gradient(rgb(223, 223, 223) 0%, rgb(255, 255, 255) 100%);
  -webkit-user-select: none;
  -webkit-font-smoothing: antialiased;
}

#song-list th {
  position: relative;
  font-size: 0.9em;
  padding: 0.8em 1em 0.5em;
  text-align: left;
  outline: none;
}

#song-list th.sorting_desc,
#song-list th.sorting_asc {
  background: -webkit-linear-gradient(rgb(154, 156, 161) 0%, rgb(224, 228, 235) 100%);
}

#song-list th.sorting_desc:before,
#song-list th.sorting_asc:before {
  display: block;
  position: absolute;
  right: 0.6em;
  top: 1.3em;
  font-size: 0.7em;
}

#song-list th.sorting_desc:before {
  content: "▼";
}

#song-list th.sorting_asc:before {
  content: "▲";
}

#song-list th:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: -webkit-linear-gradient(rgba(149, 149, 149, 0) 40%, rgb(149, 149, 149) 100%);
}

#song-list th:last-child:after {
  display: none;
}

#song-list td {
  padding: 0.4em 1em;
  font-size: 0.8em;
}

#song-list .filename {
  display: none;
}

#song-list tbody tr {
  background: rgb(240, 244, 248);
}

#song-list tbody tr.even {
  background: rgb(255, 255, 255);
}

#song-list tbody tr.selected {
  color: #fff;
  background: rgb(61, 128, 223);
}

#song-list tbody tr.playing {
  color: #fff;
  background: rgb(70, 160, 255);
  -webkit-transition-duration: 0.6s;
}

#song-list .button {
  display: block;
  border: 1px solid rgb(126, 126, 126);
  font-size: 0.8em;
  text-align: center;
  font-weight: bold;
  color: rgb(41, 41, 41);
  background: rgb(183, 183, 183);
  text-decoration: none;
  border-radius: 1em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 2px rgba(255, 255, 255, 0.8) inset, 0 -1px 1px rgba(0, 0, 0, 0.2) inset, 0 1px 1px rgba(0, 0, 0, 0.8);
  -webkit-user-select: none;
}

#song-list .button:hover {
  background: rgb(226, 226, 226);
}

#song-list .button:active {
  background: rgb(127, 127, 127);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) inset, 0 -1px 2px rgba(255, 255, 255, 0.2) inset;
}

footer {
  position: relative;
  display: block;
  padding: 0.4em 0;
  text-align: center;
  font-size: 0.5em;
  color: rgb(140, 140, 140);
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.4), 0 1px 1px rgba(255, 255, 255, 0.9) inset;
}

footer a {
  color: rgb(140, 140, 140);
  text-decoration: none;
}

html.mobile #song-list .date-added,
html.mobile #song-list .year,
html.mobile #song-list .file-size,
html.mobile #player .controls .back,
html.mobile #player .controls .forward {
  display: none;
}

html.mobile #song-list td {
  padding: 1em 0.8em;
}

/*# sourceMappingURL=style.css.map */
