﻿.music-player {
  background: #000 url('player-background.jpg') repeat-x center top;
}

.mf-interface {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  box-shadow: 0px 1px 0px rgba(255,255,255,0.1);
}

.mf-interface p {
  margin: 0;
  padding: 0;
}

.mf-interface * {
  z-index: 5;
}

/*-- Art --*/
.mf-interface .art {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  width: 20%;
  height: auto;
  margin: 10px -10px 10px 10px;
}

.mf-interface .art:after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  background: -webkit-linear-gradient(rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.1) 100%);
  color: rgba(153, 153, 153, 0.31);
  content: "\f001";
  text-align: center;
  font-size: 40px;
  font-family: "FontAwesome";
  line-height: 50px;
}

.mf-interface .art img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: inset 0px 0px 10px rgba(0,0,0,0.7), 0px 0px 0px 1px rgba(255,255,255,0.1);
}

/*-- Player Info --*/
.mf-interface .player-info {
  float: right;
  padding: 10px 10px 10px 20px;
  width: 80%;
}

.mf-interface .player-info .album {
  width: 100%;
}

.mf-interface .player-info .title,
.mf-interface .player-info .buy-now {
  color: #aaa;
  font: normal 14px Arial, sans-serif;
  line-height: 1.5em;
}

.mf-interface.no-music .player-info .title {
  color: #777;
}

/*-- Controlls --*/
.mf-interface .controls {
  width: 100%;
  text-align: center;
  padding: 10px;
  clear: both;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.mf-timeline.no-music .controls {
  opacity: 0.1;
}

.mf-interface .controls > a {
  position: relative;
  display: block;
  float: left;
  width: 33%;
  text-indent: -500em;
  font-size: 16px;
  line-height: 1em;
}

.mf-interface .controls .toggle {
  left: 0;
}

.mf-interface .controls > a:before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  color: white;
  text-align: center;
  text-indent: 0;
  font-family: "FontAwesome";
  line-height: 1em;
}

.mf-interface .controls .toggle.paused:before {
  content: "\f04b";
}

.mf-interface .controls .toggle.playing:before {
  content: "\f04c";
}

.mf-interface .controls .skip-prev:before {
  content: "\f04a";
  text-align: left;
}

.mf-interface .controls .skip-next:before {
  content: "\f04e";
  text-align: right;
}

.mf-interface .controls .skip-prev,
.mf-interface .controls .skip-next {
  opacity: 0.4;
}

.mf-interface .controls .skip-prev:hover,
.mf-interface .controls .skip-next:hover {
  opacity: 1;
}

/*-- Duration --*/
.mf-interface .duration {
  clear: both;
  overflow: hidden;
  padding: 0 10px;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.01);
  border-radius: 3px 3px 0 0;
  background-color: rgba(113, 159, 182, 0.08);
  box-shadow: inset 0px 0px 10px rgba(0,0,0,.5), 0px 1px 0px rgba(255,255,255,0.2);
  color: #91DAFF;
  text-shadow: 0px 0px 6px rgba(145, 218, 255, 0.62);
  font: 12px "Share Tech Mono", sans-serif;
  line-height: 1.5em;
}

.mf-interface .duration .total {
  float: right;
}

/*-- Track (Progress Bar) --*/
.mf-interface .track {
  position: relative;
  float: none;
  clear: both;
  width: 100%;
  height: 3px;
  background: rgba(113,158,181,0.3);
}

.mf-interface .track .progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: #91DAFF;
}

/*-- Media Quries --*/
@media only screen and (min-width: 600px) {
  .mf-interface .art {
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
    width: 75px;
    height: 75px;
    margin: 10px;
  }

  .mf-interface .art:after {
    width: 75px;
    height: 75px;
    line-height: 75px;
  }

  .mf-interface .player-info {
    float: left;
    padding: 10px 10px 10px 10px;
    width: 330px;
  }

  .mf-interface .controls {
    width: 170px;
    float: right;
    text-align: center;
    padding: 25px 10px 10px 10px;
    clear: none;
    border-top: none;
  }

  .mf-interface .controls > a {
    position: relative;
    display: block;
    float: left;
    width: 33%;
    text-indent: -500em;
    font-size: 40px;
    line-height: 1em;
  }
}

@media only screen and (min-width: 768px) {
  .mf-interface .player-info {
    width: 500px;
  }
}
