*:focus {
  outline: none;
}

#app-cover {
  position: absolute;
  top: 38%;
  right: 0;
  left: 10%;
  width: 150%;
  height: 100%;
  margin: -4px auto;
  transform: scale(0.5);
  transform-origin: top left;
}

#player {
  position: relative;
  height: 100%;
  z-index: 3;
}

#player-track {
  position: absolute;
  top: 0;
  right: 15px;
  left: 15px;
  padding: 13px 22px 10px 184px;
  background-color: #ffd7d7;
  border-radius: 15px 15px 0 0;
  transition: 0.3s ease top;
  z-index: 1;
}

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

#album-name {
  color: #54576f;
  font-size: 17px;
  font-weight: bold;
}

#track-name {
  color: #acaebd;
  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: #f86d92;
  background-color: transparent;
}

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

#s-area {
  background-color: #ffe8ee;
  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: #fd6d94;
  transition: 0.2s ease width;
  z-index: 1;
}

#player-content {
  position: relative;
  height: 100%;
  background-color: #f4c3f1;
  box-shadow: 0px 0px 10px skyblue;
  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;
  -webkit-animation: rotateAlbumArt 3s linear 0s infinite forwards;
  animation: rotateAlbumArt 3s linear 0s infinite forwards;
}

@-webkit-keyframes rotateAlbumArt {
  0% {
    transform: rotateZ(0);
  }

  100% {
    transform: rotateZ(360deg);
  }
}

@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;
}

.button {
  width: 26px;
  height: 26px;
  padding: 25px;
  background-color: #099FE9;
  border-radius: 6px;
  cursor: url('{assets_url}/img/st_milk.cur'),
}

.button i {
  display: block;
  color: #f4c3f1;
  font-size: 26px;
  text-align: center;
  line-height: 1;
  cursor: url('{assets_url}/img/st_milk.cur'),
}

.button,
.button i {
  transition: 0.2s ease all;
  cursor: url('{assets_url}/img/st_milk.cur'),
}

.button:hover {
  background-color: #deffdb;
  cursor: url('{assets_url}/img/st_milk.cur'),
}

.button:hover i {
  color: #dbdeff;
  cursor: url('{assets_url}/img/st_milk.cur'),
}

@media (max-width: 1280px) {}

@media (max-width: 769px) {}

@media (max-width: 572px) {}

@media (max-width: 444px) {
  #album-art {
    position: absolute;
    top: -96px;
    width: 115px;
    height: 115px;
    margin-left: 5px;
    transform: rotateZ(0);
    transition: 0.3s ease all;
    box-shadow: 0 0 0 10px #fff;
    border-radius: 50%;
    overflow: hidden;
    transform: scale(0.5);
    left: -35px;
  }

  #album-art.active {
    top: -117px;
    box-shadow: 0 0 0 4px #fff7f7, 0 30px 50px -15px #afb7c1;
    transform: scale(0.5);
    left: -35px;
  }

  #player-track {
    position: absolute;
    top: -37px;
    right: 15px;
    left: 15px;
    padding: 13px 22px 10px 184px;
    background-color: #ffd7d7;
    border-radius: 15px 15px 0 0;
    transition: 0.3s ease top;
    z-index: 1;
  }

  #player-track.active {
    top: -73px;
    left: 1px;
    width: 100%;
    padding: 0;
  }

  #album-name {
    color: #54576f;
    font-size: 17px;
    font-weight: bold;
    width: 100%;
  }

  #track-name {
    color: #acaebd;
    font-size: 13px;
    /* margin: 2px 0 13px 0; */
    width: 100%;
  }

  #player-controls {
    width: 100%;
    height: 100%;
    float: inherit;
    /* margin: 0 5px 0 141px; */
    overflow: hidden;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }

  #player-content {
    position: relative;
    height: 103%;
    background-color: #f4c3f1;
    box-shadow: 0px 0px 10px skyblue;
    border-radius: 15px;
    z-index: 2;
    top: -21%;
  }

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


}