/*main style*/
*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  /* background-image: url(); */
  text-transform: capitalize;
  background: linear-gradient(to bottom, #e94e60 39%, rgba(0, 0, 0, 0.1) 35);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  height: 140vh;
}
.center {
  text-align: center;
}
.bold {
  font-weight: 700;
}
.roboto-font {
  font-family: "Roboto", sans-serif;
}
.black {
  color: #333;
}
.pale {
  color: #aaa;
  font-size: 20px;
  cursor: pointer;
}
/*container*/
.containe {
  width: 350px;
  height: 500px;
  margin: 0 auto;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.3);
}
/*header section style*/
.header {
  width: 100%;
  height: 200px;
  background-color: #e94e60;
  position: relative;
  padding-top: 40px;
}
.header .title {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #fff;
}
.header .title .main-title {
  padding: 0;
  margin: 0;
}
.header .title .menu-burger {
  width: 35px;
  height: 35px;
  border: none;
  background: none;
  cursor: pointer;
  transform: rotate(-180deg);
}
.header .title .icon {
  font-size: 1.8em;
  cursor: pointer;
}
.header .title .menu-burger .burger-icon {
  height: 3px;
  width: 80%;
  background-color: #fff;
  display: block;
  margin-bottom: 7px;
}
.header .title .menu-burger .burger-icon:last-child {
  margin-bottom: 0;
}
.header .title .menu-burger .burger-icon:nth-child(2) {
  width: 100%;
}
/*footer section style*/
.footer {
  position: relative;
  padding-top: 80px;
}
.footer .profile-img {
  width: 150px;
  height: 150px;
  position: absolute;
  top: -75px;
  left: 50%;
  border-radius: 50%;
  background: linear-gradient(rgba(233, 78, 96, 0.28), rgba(174, 174, 179, 0.2)),
    url(http://www.billboard.com/files/styles/article_main_image/public/media/Adele-2015-Alasdair-McLellan-billboard-650.jpg);
  background-size: cover;
  background-position: center;
  transform: translateX(-50%);
  box-shadow: 0 10px 50px 0 rgba(190, 0, 0, 0.45);
}
.footer .sub-title {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.footer .footer-title {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 300;
  font-size: 15px;
}
.footer .footer-title .big {
  font-size: 25px;
}
.footer .footer-icon {
  color: #e94e60;
  font-size: 1.4em;
  cursor: pointer;
}
.footer .dots-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 25px;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}
.footer .sub-title .dots {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
}
.footer .song-board {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 10px;
}
.footer .song-board .time {
  font-size: 0.8em;
}

.footer .song-board .song-board-content {
  background-color: rgba(0, 0, 0, 0.2);
  height: 2px;
  width: 220px;
  position: relative;
}
.footer .song-board .song-board-content:after {
  content: "";
  display: block;
  position: absolute;
  width: 24.5%;
  height: 3px;
  left: 0;
  top: -1.5px;
  margin-top: 0.75px;
  background-color: #333;
}
.footer .container-control {
  width: 90%;
  margin: 0 auto;
}
.footer .container-control .song-controllers {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 30px;
}
.footer .container-control .song-controllers .play {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  box-shadow: 0 1px 20px 3px rgba(153, 153, 153, 0.62);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-sizing: border-box;
}
.footer .container-control .song-controllers .play-icon {
  font-size: 25px;
  color: #333;
}

.footer .container-control .song-controllers .icon-control {
  font-size: 1.4em;
  color: #333;
  cursor: pointer;
}
.playlist {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 0 !important;
    width: 100% !important;
    /* max-width: 600px !important; */
    color: white !important;
  }
  
  .playlist li {
    padding: 10px !important;
    margin: 5px 0 !important;
    background: #c24b4b !important; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
    cursor: pointer !important;
    border-radius: 5px !important;
    color: white !important;
  }
  
  .playlist li:hover {
    background: #3b9562 !important;
  }
  
  .playlist li.active {
    background: #abb950 !important; 
    color: black !important;
  }
  
  .playlist li span {
    font-size: 0.8em !important;
    color: #666 !important; 
  }



/* new */

.player {
  background: #1f1f1f !important; 
  padding: 20px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
  border-radius: 10px !important;
  text-align: center !important;
}
.container-fluid ul li{
  width: 50%;
}
.now-playing {
  font-size: 1.2em !important;
  font-weight: bold !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important; 
}

.now-playing img {
  width: 150px !important; 
  height: 150px !important;
  border-radius: 50% !important;
  margin: 20px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.progress-container {
  width: 70% !important;
  background: #333 !important;
  border-radius: 5px !important;
  cursor: pointer !important;
  height: 10px !important;
  margin: 10px 0 !important;
  position: relative !important;
}

.progress-bar {
  width: 0 !important;
  height: 100% !important;
  background: #3498db !important; 
  border-radius: 5px !important;
}








