@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }
.rotating {
  -webkit-animation: rotating 4s linear infinite;
  -moz-animation: rotating 4s linear infinite;
  -ms-animation: rotating 4s linear infinite;
  -o-animation: rotating 4s linear infinite;
  animation: rotating 4s linear infinite; }

.rotatingStop {
  -webkit-animation: rotating 0s linear infinite;
  -moz-animation: rotating 0s linear infinite;
  -ms-animation: rotating 0s linear infinite;
  -o-animation: rotating 0s linear infinite;
  animation: rotating 0s linear infinite; }

.mp3Player {
  position: fixed;
  bottom: 35px;
  left: 110px;
  z-index: 999; }

.example {
  margin: 0 auto;
  width: 385px; }

.player {
  background: rgba(32, 25, 24, 0.85);
  height: 167px;
  position: relative;
  width: 100%;
  z-index: 2;
  border-radius: 18px; }

.title, .artist {
  left: 132px;
  position: absolute;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none; }

.title {
  font-family: Arial;
  font-weight: 100;
  color: #FFFFFF;
  font-size: 13px;
  top: 15px; }

.artist {
  color: #D8C0AC;
  font-size: 11px;
  top: 36px; }

.pl {
  background: url(../images/playlist.png) no-repeat;
  cursor: pointer;
  height: 40px;
  left: 330px;
  position: absolute;
  top: 20px;
  width: 39px; }

.pl:hover {
  top: 21px; }

.cover {
  border-radius: 94px;
  height: 94px;
  left: 20px;
  position: absolute;
  top: 15px;
  width: 94px;
  display: block; }

.controls {
  cursor: pointer;
  left: 0px;
  position: absolute;
  top: 60px;
  left: 122px; }

.controls .play, .controls .pause {
  width: 60px;
  height: 60px;
  margin: 0 5px 0px 5px; }

.controls .play, .controls .pause, .controls .rew, .controls .fwd, .controls .stop {
  text-indent: -10000px;
  border: none;
  float: left; }

.controls .rew, .controls .fwd, .controls .stop {
  width: 50px;
  height: 50px;
  margin: 5px 5px 5px 5px; }

.controls .play {
  background: url(../images/play.png) no-repeat;
  opacity: 1; }

.controls .play:hover {
  background: url(../images/play.png) no-repeat;
  opacity: 0.7; }

.controls .pause {
  background: url(../images/pause.png) no-repeat;
  display: none; }

.controls .rew {
  background: url(../images/rewind.png) no-repeat;
  opacity: 1; }

.controls .rew:hover {
  background: url(../images/rewind.png) no-repeat;
  opacity: 0.7; }

.controls .fwd {
  background: url(../images/next.png) no-repeat;
  opacity: 1; }

.controls .fwd:hover {
  background: url(../images/next.png) no-repeat;
  opacity: 0.7; }

.controls .stop {
  background: url(../images/stop.png) no-repeat;
  opacity: 1; }

.controls .stop:hover {
  background: url(../images/stop.png) no-repeat;
  opacity: 0.7; }

.hidden {
  display: none; }

.controls .visible {
  display: block; }

.volume {
  height: 11px;
  left: 250px;
  position: absolute;
  top: 142px;
  width: 110px;
  display: block; }

.mute .volume-btn {
  background: url(../images/volume-off.png) no-repeat; }

.volume-btn {
  background: url(../images/volume-up.png) no-repeat;
  height: 20px;
  width: 20px;
  float: left;
  position: relative;
  top: -5px; }

.volume-adjust {
  height: 8px;
  position: relative;
  width: 80%;
  background: #D8C0AC;
  float: right; }

.volume-adjust > div > div {
  height: 8px;
  background: #E49455; }

.progressbar {
  background-color: #D8C0AC;
  cursor: pointer;
  z-index: 1;
  right: 6.875em;
  /* 110 */
  height: 8px;
  left: 0px;
  position: absolute;
  width: 54%;
  top: 142px;
  margin: 0px 5%; }

.novolume .progressbar {
  right: 4.375em;
  /* 70 */ }

.progressbar div {
  width: 0%;
  height: 8px;
  position: absolute;
  left: 0;
  top: 0; }

.bar-loaded {
  background-color: #f1f1f1;
  z-index: 1; }

.bar-played {
  background: #E49455;
  z-index: 2; }

.timeHolder {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 100;
  bottom: 34px;
  position: absolute;
  margin: 0px 5%;
  width: 90%; }

.time-current, .time-duration, .time-separator {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 100;
  float: left;
  margin-left: 5px; }

.volume .ui-slider-handle {
  background: url("../images/spr.png") no-repeat scroll -201px -188px rgba(0, 0, 0, 0);
  height: 13px;
  width: 13px; }

.playlist {
  display: none;
  background-color: #fff;
  list-style-type: none;
  margin: -10px 0 0 2px;
  padding-bottom: 10px;
  padding-top: 15px;
  position: relative;
  width: 95%;
  z-index: 1;
  margin: 0px auto; }

.playlist li,
.playlist div {
  color: #151B48;
  cursor: pointer;
  margin: 0 0 5px 15px; }

.playlist li > a,
.playlist div > a {
  color: #151B48;
  text-decoration: none; }

.playlist li.active,
.playlist div.active {
  font-weight: bold; }

@media only screen and (max-width: 991px) {
  .mp3Player {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 999; }

  .example {
    margin: 0 auto;
    width: 100%; }

  .player {
    background: black;
    height: 84px;
    width: 100%;
    border-radius: 0px; }

  .cover {
    display: none; }

  .controls {
    cursor: pointer;
    left: 50%;
    -webkit-transform: translateX(-50%) !important;
    margin: 0 auto !important;
    position: absolute;
    top: 32px; }

  .title, .artist {
    left: 50%;
    -webkit-transform: translateX(-50%);
    text-align: center;
    position: absolute;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none; }

  .title {
    font-size: 11px;
    top: 9px;
    display: block;
    width: 100%; }

  .artist {
    color: #D8C0AC;
    font-size: 11px;
    top: 24px;
    display: block;
    width: 100%; }

  .volume {
    display: none; }

  .progressbar {
    display: none;
    left: inherit;
    background-color: #D8C0AC;
    cursor: pointer;
    z-index: 1;
    right: 15px;
    height: 4px;
    position: absolute;
    width: 38%;
    top: 74px; }

  .progressbar div {
    height: 4px; }

  .timeHolder {
    position: absolute;
    top: 66px;
    width: 110px;
    margin-left: 12px;
    left: 50%;
    -webkit-transform: translateX(-50%); }

  .time-current, .time-duration, .time-separator {
    font-size: 11px; }

  .controls .play {
    background: url(../images/play_.png) no-repeat; }

  .controls .play:hover {
    background: url(../images/play_.png) no-repeat; }

  .controls .pause {
    background: url(../images/pause_.png) no-repeat; }

  .controls .pause:hover {
    background: url(../images/pause_.png) no-repeat; }

  .controls .rew {
    background: url(../images/rewind_.png) no-repeat; }

  .controls .rew:hover {
    background: url(../images/rewind_.png) no-repeat; }

  .controls .fwd {
    background: url(../images/next_.png) no-repeat; }

  .controls .fwd:hover {
    background: url(../images/next_.png) no-repeat; }

  .controls .stop {
    background: url(../images/stop_.png) no-repeat; }

  .controls .stop:hover {
    background: url(../images/stop_.png) no-repeat; }

  .controls .play, .controls .pause {
    width: 30px;
    height: 30px;
    margin: 5px 5px 5px 5px; }

  .controls .rew, .controls .fwd, .controls .stop {
    width: 30px;
    height: 30px;
    margin: 5px 5px 5px 5px; } }

/*# sourceMappingURL=minimusic.css.map */
