@import url('https://use.fontawesome.com/releases/v5.3.1/css/all.css');
#app-cover {
      position: relative;
  top: 50%;
  right: 0;
  left: 0;
  width: 430px;
  height: 100px;
  margin: -4px auto;
}

#bg-artwork {
  position: fixed;
  top: -30px;
  right: -30px;
  bottom: -30px;
  left: -30px;

  z-index: 1;
}
 

#player {
  position: relative;
  height: 100%;
  z-index: 3;
      margin-top: 80px;
}

#player-track {
  position: absolute;
  top: 0;
  right: 15px;
  left: 15px;
  padding: 0px 22px 10px 184px;
  background-color: rgb(4 50 239 / 47%);
  border-radius: 15px 15px 0 0;
  transition: 0.3s ease top;
  z-index: 1;
}

#player-track.active {
  top: -92px;
}

#album-name {
  color: #0a0909;
  font-size: 17px;
  font-weight: bold;
}

#track-name {
  color: #0a0909;
  font-size: 13px;
  margin: 2px 0 13px 0;
}

#track-time {
  height: 12px;
  margin-bottom: 3px;
  overflow: hidden;
}

#current-time {
  float: left;
}

#track-length {
  float: right;
}

#current-time,
#track-length {
  color: transparent;
  font-size: 11px;
  background-color: #ffe8ee;
  border-radius: 10px;
  transition: 0.3s ease all;
}

#track-time.active #current-time,
#track-time.active #track-length {
  color: #1E73BD;
  background-color: transparent;
      margin: -8px 0 0 0px;
}

#s-area,
#seek-bar {
  position: relative;
  height: 4px;
  border-radius: 4px;
}

#s-area {
  background-color: #1e73bd6e;
  cursor: pointer;
}

#ins-time {
  position: absolute;
  top: -29px;
  color: #fff;
  font-size: 12px;
  white-space: pre;
  padding: 5px 6px;
  border-radius: 4px;
  display: none;
}

#s-hover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  opacity: 0.2;
  z-index: 2;
}

#ins-time,
#s-hover {
  background-color: #3b3d50;
}

#seek-bar {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: #1E73BD;
  transition: 0.2s ease width;
  z-index: 1;
}

#player-content {
  position: relative;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 0px 2px #1E73BD;
  border-radius: 15px;
  z-index: 2;
}

#album-art {
  position: absolute;
  top: -40px;
  width: 115px;
  height: 115px;
  margin-left: 40px;
  transform: rotateZ(0);
  transition: 0.3s ease all;
  box-shadow: 0 0 0 10px #fff;
  border-radius: 50%;
  overflow: hidden;
}

#album-art.active {
  top: -60px;
  box-shadow: 0 0 0 4px #fff7f7, 0 30px 50px -15px #afb7c1;
}

#album-art:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: -10px auto 0 auto;
  background-color: #d6dee7;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #fff;
  z-index: 2;
}

#album-art img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
}

#album-art img.active {
  opacity: 1;
  z-index: 1;
}

#album-art.active img.active {
  z-index: 1;
  animation: rotateAlbumArt 3s linear 0s infinite forwards;
}

@keyframes rotateAlbumArt {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

#buffer-box {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 13px;
  color: #1f1f1f;
  font-size: 13px;
  font-family: Helvetica;
  text-align: center;
  font-weight: bold;
  line-height: 1;
  padding: 6px;
  margin: -12px auto 0 auto;
  background-color: rgba(255, 255, 255, 0.19);
  opacity: 0;
  z-index: 2;
}

#album-art img,
#buffer-box {
  transition: 0.1s linear all;
}

#album-art.buffering img {
  opacity: 0.25;
}

#album-art.buffering img.active {
  opacity: 0.8;
  filter: blur(2px);
  -webkit-filter: blur(2px);
}

#album-art.buffering #buffer-box {
  opacity: 1;
}

#player-controls {
  width: 250px;
  height: 100%;
  margin: 0 5px 0 141px;
  float: right;
  overflow: hidden;
}

.control {
  width: 33.333%;
  float: left;
  padding: 12px 0;
}

/* .matchering .button {
  width: 26px !important;
  height: 26px !important;
  padding: 25px !important;
  background-color: #fff !important;
  border-radius: 6px !important;
  cursor: pointer !important;
      border: none !important;
}

.matchering .button i {
  display: block !important;
  color: #d6dee7 !important;
  font-size: 26px !important;
  text-align: center !important;
  line-height: 1 !important;
}

.matchering .button,
.matchering .button i {
  transition: 0.2s ease all !important;
      border: none !important;
}
.control .matchering .button:hover {
    width: 100% !important;
    height: 100% !important;
}
.matchering .button:hover {
  background-color: #d6d6de !important;
  
}

.matchering .button:hover i {
  color: #fff !important;
} */
div#play-previous {
    display: none !important;
}

div#play-next {
    display: none !important;
}
 @media only screen and (min-width: 767px) and (max-width: 1260px)  {
#app-cover {
 width: 290px;
}
#album-art {
   
    width: 76px;
    height: 76px;
    margin-left: 35px;
    
}
 }
 @media (max-width: 600px) {
 #app-cover {
   
    width: 280px;
 
}
#player-track {
  
    padding: 0px 10px 10px 140px !important;
    }
#album-art {
   
    width: 76px;
    height: 76px;
    margin-left: 35px;
    
}
 
#album-art {
 
    width: 102px;
    height: 102px;
    }
}

#download-track:disabled, #back-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-radius: 40px;
  background-color: #666666;
  border-color: #666666;
}

#download-track, #back-button {
  padding: 10px 20px;
  border: 1px solid #000000;
  border-radius: 40px;
  cursor: pointer;
  background-color: #000000;
  color: #ffffff;
  font-weight: 500;
}

#download-track:hover, #back-button:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
}

input.btnceter {
  padding: 10px 20px !important;
  border: 1px solid #000000 !important;
  border-radius: 40px !important;
  cursor: pointer !important;
  background-color: #000000 !important;
}

input.btnceter:hover {
  color: #000000 !important;
  background-color: #FFFFFF !important;
  border-color: #000000 !important;
}

input.btnceter:disabled {
  background-color: #666666 !important;
  border-color: #666666 !important;
  color: #ffffff !important;
  cursor: not-allowed !important;
}

/* Ignore playback rate controls for now */
/*.playbackRate {
    display: block !important;
    width: 100%;
    padding: 0.5em;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: white;
}

.playbackLabel {
    display: block !important;
    width: 100%;
    font-size: 12px;
    color: #aeb8cc;
    font-weight: 400;
    margin: 5px 0;
    text-align: center;
}*/

.action-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0px;
}

#download-track, #back-button {
    width: 100%;
    margin: 5px 0;
    padding: 15px 20px;
    border: 1px solid #000000;
    border-radius: 40px;
    cursor: pointer;
    background-color: #000000;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
}

#download-track:hover, #back-button:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #000000;
}