.floating-player{
    margin: 5px;
    position: fixed;
    bottom: 15px;
    min-width: 60px;
    width: 60px;
    overflow: hidden;
    -webkit-transition: width 1.2s; /* Safari */
    transition: width 1.2s;
}

.floating-player.open{
    width: 93%;
}

.audio-player {
    width: 60px;
    min-width: 60px;
    height: 60px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    user-select: none;
    background-color: #c7c7c7 ;
    -webkit-transition: width 1.2s; /* Safari */
    transition: width 1.2s;
}

.audio-player.open{
    width: 93%;
}

.player-controls{
    width: 100%;
}


.controls{

    border-radius: 4px 0 0 4px;
    display: block;
   width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
    float: left;
    text-align: center;
    cursor: pointer;


}

.control-play{
    background-color: #c7c7c7;
    color: #fff;
}

.control-backward, .control-forward, .control-volume{
    color: #fff;
}

.control-volume{
    position: relative;
    cursor: crosshair;
}

.volume-cursor{
    height: 1px;
    color: #fff;
    z-index: 6;
    display: block;
    position: absolute;
    width: 100%;
    content: " ";
    bottom: 0;
}

.volume{
    position: absolute;
    width: 100%;
    z-index: 3;
    height: 100%;
    bottom: 0;
    left: 0;
}

.volume-seeked{
    position: absolute;
    display: block;
    width: 100%;
    height: 50%;
    bottom: 0;
    left: 0;
    z-index: 0;
    opacity: .2;
    content: " ";
    background-color: #999933;
}

.playing-cover{
    float: left;
}

.playing-cover img{
    width: 60px;
    height: 60px;
}

.track-control{
    height: 100%;
    position: relative;
    float: left;
    width: calc(100% - 360px);
    padding: 5px 10px;
    display: block;
    cursor: crosshair;
}

.track-seeked{
    position: absolute;
    display: block;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: .2;
    content: " ";
    background-color: #999933;
}

.track-cursor{
    width: 1px;
    height: 100%;
    color: #fff;
    z-index: 2;
    display: block;
    position: absolute;
    content: " ";
    top: 0;
}

.playing-title{
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    display: block;
    z-index: 0;
}

.playing-artist{
    color: #fff;
    z-index: 0;
}

.track-time{
    color: #fff;
    float: left;
    position: relative;
    text-align: center;
    vertical-align: middle;
    padding-top: 7px;
    margin-left: 15px;
}

.track{
    position: absolute;
    width: 100%;
    z-index: 3;
    height: 100%;
    top: 0;
}

.playing-duration{
    display: block;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (min-width: 320px) and (max-width: 600px) {
  .floating-player{
      min-width: 30px;
      height: 35px;
  }
  .floating-player.open{
      width: 75%;
  }

  .player-controls{
    height: 30px;
  }

  .audio-player{
    width: 30px;
    min-width: 30px;
    height: 30px;
  }


  .controls{
    /* width: 30px; */
    height: 30px;
    line-height: 30px;
    font-size: 12px;
  }

  .playing-cover img{
    width: 30px;
    height: 30px;
  }

  .track-control{
    width: calc(100% - 188px);
    line-height: .9;
  }

  .playing-title{
      font-size: 8px;
  }

  .playing-artist{
      font-size: 8px;
  }

  .track-time{
      font-size: 8px;
      line-height: 1.2;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .floating-player{
        min-width: 30px;
        height: 35px;
    }
    .floating-player.open{
        width: 90%;
    }

    .player-controls{
      height: 30px;
    }

    .audio-player{
      width: 30px;
      min-width: 30px;
      height: 30px;
    }


    .controls{
      /* width: 30px; */
      height: 30px;
      line-height: 30px;
      font-size: 12px;
    }

    .playing-cover img{
      width: 30px;
      height: 30px;
    }

    .track-control{
      width: calc(100% - 188px);
      line-height: 1.3;
    }

    .playing-title{
        font-size: 8px;
    }

    .playing-artist{
        font-size: 8px;
    }

    .track-time{
        font-size: 8px;
        line-height: 1.2;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1999px) {

    .floating-player{
        margin: 5px;
        position: fixed;
        bottom: 15px;
        min-width: 60px;
        width: 60px;
        overflow: hidden;
        -webkit-transition: width 1.2s; /* Safari */
        transition: width 1.2s;
    }

    .floating-player.open{
        width: 92%;
    }

    .audio-player {
        width: 60px;
        min-width: 60px;
        height: 60px;
        box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.07);
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 4px;
        user-select: none;
        background-color: #c7c7c7 ;
        -webkit-transition: width 1.2s; /* Safari */
        transition: width 1.2s;
    }

    .audio-player.open{
        width: 100%;
    }

    .player-controls{
        width: 100%;
    }


    .controls{

        border-radius: 4px 0 0 4px;
        display: block;
       width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 24px;
        float: left;
        text-align: center;
        cursor: pointer;


    }

    .control-play{
        background-color: #c7c7c7;
        color: #fff;
    }

    .control-backward, .control-forward, .control-volume{
        color: #fff;
    }

    .control-volume{
        position: relative;
        cursor: crosshair;
    }

    .volume-cursor{
        height: 1px;
        color: #fff;
        z-index: 6;
        display: block;
        position: absolute;
        width: 100%;
        content: " ";
        bottom: 0;
    }

    .volume{
        position: absolute;
        width: 100%;
        z-index: 3;
        height: 100%;
        bottom: 0;
        left: 0;
    }

    .volume-seeked{
        position: absolute;
        display: block;
        width: 100%;
        height: 50%;
        bottom: 0;
        left: 0;
        z-index: 0;
        opacity: .2;
        content: " ";
        background-color: #999933;
    }

    .playing-cover{
        float: left;
    }

    .playing-cover img{
        width: 60px;
        height: 60px;
    }

    .track-control{
        height: 100%;
        position: relative;
        float: left;
        width: calc(100% - 360px);
        padding: 5px 10px;
        display: block;
        cursor: crosshair;
    }

    .track-seeked{
        position: absolute;
        display: block;
        width: 0%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 0;
        opacity: .2;
        content: " ";
        background-color: #999933;
    }

    .track-cursor{
        width: 1px;
        height: 100%;
        color: #fff;
        z-index: 2;
        display: block;
        position: absolute;
        content: " ";
        top: 0;
    }

    .playing-title{
        color: #fff;
        font-weight: 600;
        font-size: 18px;
        display: block;
        z-index: 0;
    }

    .playing-artist{
        color: #fff;
        z-index: 0;
    }

    .track-time{
        color: #fff;
        float: left;
        position: relative;
        text-align: center;
        vertical-align: middle;
        padding-top: 7px;
        margin-left: 15px;
    }

    .track{
        position: absolute;
        width: 100%;
        z-index: 3;
        height: 100%;
        top: 0;
    }

    .playing-duration{
        display: block;
    }

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

    .floating-player{
        margin: 5px;
        position: fixed;
        bottom: 15px;
        min-width: 60px;
        width: 60px;
        overflow: hidden;
        -webkit-transition: width 1.2s; /* Safari */
        transition: width 1.2s;
    }

    .floating-player.open{
        width: 93%;
    }

    .audio-player {
        width: 60px;
        min-width: 60px;
        height: 60px;
        box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.07);
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 4px;
        user-select: none;
        background-color:#c7c7c7 ;
        -webkit-transition: width 1.2s; /* Safari */
        transition: width 1.2s;
    }

    .audio-player.open{
        width: 100%;
    }

    .player-controls{
        width: 100%;
    }


    .controls{

        border-radius: 4px 0 0 4px;
        display: block;
       width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 24px;
        float: left;
        text-align: center;
        cursor: pointer;


    }

    .control-play{
        background-color: #c7c7c7;
        color: #fff;
    }

    .control-backward, .control-forward, .control-volume{
        color: #fff;
    }

    .control-volume{
        position: relative;
        cursor: crosshair;
    }

    .volume-cursor{
        height: 1px;
        color: #fff;
        z-index: 6;
        display: block;
        position: absolute;
        width: 100%;
        content: " ";
        bottom: 0;
    }

    .volume{
        position: absolute;
        width: 100%;
        z-index: 3;
        height: 100%;
        bottom: 0;
        left: 0;
    }

    .volume-seeked{
        position: absolute;
        display: block;
        width: 100%;
        height: 50%;
        bottom: 0;
        left: 0;
        z-index: 0;
        opacity: .2;
        content: " ";
        background-color: #999933;
    }

    .playing-cover{
        float: left;
    }

    .playing-cover img{
        width: 60px;
        height: 60px;
    }

    .track-control{
        height: 100%;
        position: relative;
        float: left;
        width: calc(100% - 360px);
        padding: 5px 10px;
        display: block;
        cursor: crosshair;
    }

    .track-seeked{
        position: absolute;
        display: block;
        width: 0%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 0;
        opacity: .2;
        content: " ";
        background-color: #999933;
    }

    .track-cursor{
        width: 1px;
        height: 100%;
        color: #fff;
        z-index: 2;
        display: block;
        position: absolute;
        content: " ";
        top: 0;
    }

    .playing-title{
        color: #fff;
        font-weight: 600;
        font-size: 18px;
        display: block;
        z-index: 0;
    }

    .playing-artist{
        color: #fff;
        z-index: 0;
    }

    .track-time{
        color: #fff;
        float: left;
        position: relative;
        text-align: center;
        vertical-align: middle;
        padding-top: 7px;
        margin-left: 15px;
    }

    .track{
        position: absolute;
        width: 100%;
        z-index: 3;
        height: 100%;
        top: 0;
    }

    .playing-duration{
        display: block;
    }

}



/* d-flex */
.justify-content-between{
    justify-content: space-between;
  }
  
  /* CSS FOR Playlist */
  
  .NewPlaylistNameBox{
    padding: 5px 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    width: 100%;
  }
  .modal-card-button{
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: whitesmoke;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-end;
    padding: 20px;
    position: relative;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top: 1px solid #dbdbdb;
  }
  .action-con{
    width: 110px;
    min-width: 100px;
  }
  .action-con .fa-trash{
    color: darkgray;
  }
  .action-con .icon-heart-solid, .song-btns .icon-heart-solid{
    color: white;
  }
  .action-con .icon-liked-solid, .song-btns .icon-liked-solid{
    color: white;
  }
  .song-btns .icon-liked-solid{
    margin-right: 10px;
  }
  .song-btns .icon-add-to-playlist{
    color: white;
  }
  .number-con{
    width: 50px;
    padding: 0.5em 10px;
  }
  .playlist-container{
      margin-top: 10px;
      -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
      -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
      box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
      background-color: #ebebeb;
      width: 95%;
      border-radius: 0px 0px 5px 0px;
      max-width: 1500px;
      z-index: 2;
      position: relative;
      height: 80vh;
  }
  .list-container{
      border-right: solid 1px #3a3a3a;
      padding: 10px 15px;
      min-width: 180px;
      max-width: 250px;
      width: 400px;
      overflow-y: auto
  }
  .songs-container{
    margin: auto;
    padding: 10px;
  }
  .custom-table{
    background-color: transparent!important;
    padding: 5px;
  }
  .custom-table .title-con{
    width: 500px;
  }
  .custom-table .artist-con{
    width: 450px;
  }
  .custom-table .duration-con{
    width: 120px;
  }
  .playlist-title{
    border: transparent;
    box-shadow: none;
    padding: 0px;
  }
  .all-myplaylist {
    padding: 0px 20px 10px 20px;
  }
  #showPlaylist-button .icon-open-playlist{
    font-size: 25px;
    color: white;
    background: #4a4a4a;
    display: inline-block;
    padding: 12px 18px 8px 18px;
    border-radius: 50%;
    margin: 10px;
    position: relative;
    z-index: inherit;
  }
  #close-playlist-btn{
    padding: 10px;
    background-color: #e4e4e4
  }
  #close-playlist-btn:hover{
    background-color: #eeeeee;
  }
  .dropdown-content{
    box-shadow: unset!important;
    -webkit-box-shadow: unset!important;
  }
  .action-btn{
    cursor: pointer;
    display: inline;
  }
  .playlist-control{
    width: auto!important;
  }
  .custom-selection{
    width: 100%!important;
    float: none!important;
    height: 40px!important;
    line-height: 1!important;
  }
  .custom-selection .select, .custom-selection select{
    width: 100%!important;
  }
  .menu-list a.is-active {
    background-color: #008adf!important;
  }
  
  .container-mbl-option{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
  }
  .list-container-mbl{
    display: none;
  }
  .song-btns{
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: rgba(29,29,29, .85);
    position: absolute;
    width: 100%;
    bottom: 0px;
    z-index: 8;
  }
  /* start of media query */
  @media screen and (max-width: 992px) {
      .artist-con, .duration-con{
        display: none;
      }
      .img-responsive{
	      width: 54px;
	      height: 54px
      }
  }
  @media screen and (max-width: 768px) {
      .list-container{
        display: none;
      }
      .list-container-mbl{
        display: block;
      }
      .action-btn, .title-con, .number-con{
        font-size: 14px;
      }
      .number-con{
        padding: 0.5em 0.2em!important;
      }
      #close-playlist-btn {
        padding: 0px 8px 0px 0px;
      }
	  .playlist-container{
	    margin: 0px;
	    position: fixed;
	    top: 0px;
	    bottom: 0px;
	    width: 100%;
	    height: auto;
	    overflow-y: auto;
	  }
	  .mobile-width{
		  width: 100%
	  }
	  .hide-in-mobile{
		  diplay: none
	  }
  }
  @media screen and (max-width: 425px) {
      .playlist-container{
        width: 100%;
      }
  }

  .truncated-text-line {
    overflow: hidden;
    text-overflow: ellipsis;
    height: 1.8rem;
    white-space: nowrap;
    display: inline-block;
  }