
   #player-container {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
    height: 100px;
    /*margin: -4px auto;*/
    background: #d6dee7;
    z-index: 999;
    transition: 0.6s ease bottom;
    bottom:-160px
  }

  #player-container.active{
    bottom: 0;
  }
  
  #player-bg-artwork {
    position: fixed;
    top: -30px;
    right: -30px;
    bottom: -30px;
    left: -30px;
    background-image: url("https://raw.githubusercontent.com/himalayasingh/music-player-1/master/img/_1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    filter: blur(40px);
    -webkit-filter: blur(40px);
    z-index: 1;
  }
  /*
  #player-bg-layer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.5;
    z-index: 2;
  }
  */
  #player {
    position: relative;
    height: 100%;
    z-index: 3;
  }
  
  #player-track {
    padding: 13px 22px 10px 22px;
    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;
    margin-top: 10px;
    margin-bottom: 0px;
  }
  
  #track-name {
    color: #acaebd;
    font-size: 13px;
    margin: 5px 0 5px 0;
  }
  
  #track-time {
    height: 20px;
    overflow: hidden;
  }
  
  #current-time {
    float: left;
  }
  
  #track-length {
    float: right;
  }
  
  #current-time,
  #track-length {
    color: transparent;
    font-size: 11px;
    border-radius: 10px;
    transition: 0.3s ease all;
    font-weight: bold;
  }
  
  #track-time.active #current-time,
  #track-time.active #track-length {
    color: #df3939;
    background-color: transparent;
  }
  
  #seek-bar-container,
  #seek-bar {
    position: relative;
    height: 4px;
    border-radius: 4px;
  }
  
  #seek-bar-container {
    background-color: #ffe8ee;
    cursor: pointer;
  }
  
  #seek-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;
  }
  
  #seek-time,
  #s-hover {
    background-color: #3b3d50;
  }
  
  #seek-bar {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: #df3939;
    transition: 0.2s ease width;
    z-index: 1;
  }
  /*
  #player-content {
    position: relative;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 30px 80px #656565;
    border-radius: 15px;
    z-index: 2;
  }*/
  
  #cover-play {
    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 #d6dee7;
    border-radius: 50%;
    overflow: hidden;
  }
  
  #cover-play.active {
    top: -60px;
    box-shadow: 0 0 0 4px #fff7f7, 0 30px 50px -15px #afb7c1;
  }
  
  #cover-play: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 #d6dee7;
    z-index: 2;
  }
  
  #cover-play img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
  }
  
  #cover-play img.active {
    opacity: 1;
    z-index: 1;
  }
  
  #cover-play.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;
  }
  
  #cover-play img,
  #buffer-box {
    transition: 0.1s linear all;
  }
  
  #cover-play.buffering img {
    opacity: 0.25;
  }
  
  #cover-play.buffering img.active {
    opacity: 0.8;
    filter: blur(2px);
    -webkit-filter: blur(2px);
  }
  
  #cover-play.buffering #buffer-box {
    opacity: 1;
  }
  
  #player-controls {
    width: 250px;
    height: 100%;
    float: right;
    overflow: hidden;
  }
  
  .control {
    width: 33.333%;
    float: left;
    padding: 12px 0;
  }
  /*
  .button {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    cursor: pointer;
    background: #54576f;
  }
  
  .button i {
    display: block;
    color: #aaabac !important;
    font-size: 2em !important;
    text-align: center;
    line-height: 1;
  }*/

  .btn-control i{
    font-size: 3em !important;
    color: #3b3d50;
  }
  #play-pause-button-m i{
    font-size: 3.5em !important;
    position: relative;
    top:-6px
  }

  .btn-control,
  .btn-control i {
    transition: 0.2s ease all;
  }
  
  .btn-control:hover {
    opacity: 0.7;
  }
  .button:hover i {
    color: #fff;
  }
  .audio-title a{
    cursor: pointer;
  }

  .audio-title a.active{
    color:#df3939 !important
  }

  .btn-close-c{
    position: absolute;
    width: 50px;
    height: 50px;
    right:0px;
    top:0px;
  }
  .btn-close-c i{
    font-size: 1.5em;
  }

  .btn-smaller {
    /* padding: 10px 22px; */
    padding-top:5px;
    padding-bottom:5px;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    width: 48%;
    }
    .btn-smaller i{
        position: relative;
        top:1px;
        padding-right: 2px;
        font-size: 1.3em !important;
    }
    .btn-smaller:nth-child(2) i{
        font-size: 1.2em !important;
        
    }
  
  