/* Google fonts */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  ;
}

body {
  font-family: 'Poppins', sans-serif;
  width: 100%;
  height: 100vh;
  background: #121213;
  display: grid;
  place-items: center;
}

header {
  position: relative;
  width: 85%;
  height: 95%;
  display: flex;
  /* border:1px solid #fff; */
  flex-wrap: wrap;
  overflow: hidden;

}

header .menu_side,
.song_side {
  width: 25%;
  height: 90%;
  /* border:1px solid #fff; */
  background: #111727;
  box-shadow: 5px 0px 2px #090f1f;
  color: #fff;
}

header .song_side {
  width: 75%;
  height: 90%;
  /* border:1px solid #fff; */
  background: #0b1320;
}

header .master_play {
  width: 100%;
  height: 10%;
  /* border:1px solid #fff; */
  /* background: #0b1320; */
  background: #1e232a;
  box-shadow: 0px 3px 8px 20px;
}

header .menu_side h1 {
  font-size: 20px;
  margin: 15px 0px 0px 20px;
  font-weight: 500;
}

header .menu_side .playlist {
  margin: 40px 0px 0px 20px;
}

header .menu_side .playlist h4 {
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 10px;
  color: #4c5262;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: 0.3s linear;
}

header .menu_side .playlist h4:hover {
  color: #fff;
}

header .menu_side .playlist h4 span {
  position: relative;
  margin-right: 35px;
}

header .menu_side .playlist h4 span::before {
  position: absolute;
  content: '';
  width: 4px;
  height: 4px;
  border: 2px solid #4c5362;
  border-radius: 50%;
  top: -4px;
  transition: 0.3s linear;
}

header .menu_side .playlist h4:hover span::before {
  border: 2px solid #fff;
}

header .menu_side .playlist h4 .bi {
  display: none;
}

header .menu_side .playlist .active {
  color: #36e2ec;
}

header .menu_side .playlist .active span {
  display: none;
}

header .menu_side .playlist .active .bi {
  display: flex;
  margin-right: 20px;
}

header .menu_side .menu_song {
  /* border:1px solid#fff; */
  width: 100%;
  height: 350px;
  margin-top: 40px;
  overflow: auto;
}

header .menu_side .menu_song::-webkit-scrollbar {
  display: none;
}

header .menu_side .menu_song li {
  list-style: none;
  position: relative;
  padding: 5px 0px 5px 20px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s linear;
}

header .menu_side .menu_song li:hover {
  background: rgb(105, 105, 105, .1);
}

header .menu_side .menu_song li span {
  font-size: 12px;
  font-weight: 600;
  color: #4c5262;
}

header .menu_side .menu_song li img {
  height: 30px;
  width: 30px;
  margin-left: 25px;
}

header .menu_side .menu_song li h5 {
  font-size: 11px;
  
  margin-left: 15px;
  width: 170px;
  /* border:1px solid#fff; */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

header .menu_side .menu_song .subtitle {
  color: #4c5262;
  font-size: 9px;
}

header .menu_side .menu_song .bi {
  right: 10px;
  position: absolute;
  font-size: 20px;
}

header .master_play {
  display: flex;
  align-items: center;
  padding: 0px 20px;
}

header .master_play .wave {
  width: 30px;
  height: 30px;
  border: 1px solid #ffff;
  padding-bottom: 5px;
  display: flex;
  align-items: flex-end;
  margin-right: 10px;
}

header .master_play .wave .wave1 {
  width: 3px;
  height: 10px;
  background: #36e2ec;
  display: flex;
  border-radius: 10px 10xp 0px 0px;
  margin-right: 3px;
  animation: unset;
}

header .master_play .wave .wave1:nth-child(2) {
  margin-right: 3.5px;
  height: 13px;
  animation-delay: .4s;
}

header .master_play .wave .wave1:nth-child(3) {
  height: 8px;
  animation-delay: .8s;
}

header .master_play img {
  width: 35px;
  height: 35px;
}

header .master_play h5 {
  width: 130px;
  height: 35px;
  /* border:1px solid #fff; */
  margin-left: 15px;
  color: #fff;
  line-height: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

header .master_play h5 .subtitle {
  color: #4c5262;
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

header .Popular_Artist .items li h5 {
  font-size: 11px;
  margin-left: 15px;
  width: 170px;
  /* border:1px solid#fff; */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}





/* javascript classes */
header .master_play .active1 .wave1 {
  animation: wave .5s linear infinite;
}

header .master_play .wave .active1 .wave1:nth-child(2) {
  animation-delay: .4s;
}

header .master_play .wave .active1 .wave1:nth-child(3) {
  animation-delay: .8s;
}

header .master_play .icon {
  font-size: 20px;
  margin: 0px 20px 0px 40px;
  display: flex;
  outline: none;
  align-items: center;
}

header .master_play .icon .bi {
  cursor: pointer;
  outline: none;
}

header .master_play .icon .shuffle {
  font-size: 17px;
  margin-right: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 17.5px;
}

header .master_play .icon #download_music {
  font-size: 20px;
  margin-left: 10px;
  /* padding-right: 7px; */
  padding: 1px 5px 0px 7px;

}

header .master_play .icon .bi:nth-child(3) {
  /* border:1px solid rgb(105, 105 ,105,.1); */
  border-radius: 50%;
  padding: 1px 5px 0px 7px;
  margin: 0px 5px;
}

header .master_play .icon .bi:nth-child(2) {
  /* border:1px solid rgb(105, 105 ,105,.1); */
  /* border-radius:50%; */
  /* padding:1px 5px 0px 7px; */
  margin: 0px 5px;
}

header .master_play .icon .bi:nth-child(4) {
  /* border:1px solid rgb(105, 105 ,105,.1); */
  border-radius: 50%;
  padding: 1px 5px 0px 7px;
  margin: 0px 5px;
}

header .master_play .icon .bi:nth-child(5) {
  /* border:1px solid rgb(105, 105 ,105,.1); */
  border-radius: 50%;
  padding: 1px 5px 0px 7px;
  margin: 0px 5px;
}

header .master_play span {
  /* border:1px solid rgba(245, 236, 236, 0.1); */
  color: #fff;
  width: 32px;
  font-size: 11px;
  font-weight: 400;
}

header .master_play #currentStart {
  margin: 0px 0px 0px 20px;
}

header .master_play .bar {
  position: relative;
  height: 2px;
  width: 43%;
  background: rgb(105, 105, 170, .1);
  margin: 0px 15px 0px 10px;
}

header .master_play .bar .bar2 {
  position: absolute;
  height: 100%;
  width: 0%;
  background: #36e2ec;
  top: 0;
  transition: 0.3s linear;
}

header .master_play .bar .dot {
  position: absolute;
  height: 5px;
  width: 5px;
  background: #36e2ec;
  left: 0%;
  top: -1.5px;
  transition: 0.3s linear;
  border-radius: 50%;
}

header .master_play .bar .dot::before {
  position: absolute;
  content: '';
  height: 15px;
  width: 15px;
  border: 1px solid #36e2ec;
  transition: 1s linear;
  border-radius: 50%;
  left: -6px;
  top: -6px;
  box-shadow: inset 0px 0px 3px #36e2ec;
}

header .master_play .bar input {
  position: absolute;
  width: 100%;
  left: 0px;
  top: -7px;
  cursor: pointer;
  z-index: 9999999999999;
  opacity: 0;
}

header .master_play .vol {
  position: relative;
  width: 100px;
  height: 2px;
  margin-left: 50px;
  /* left:0px;
  top:-7px; */
  cursor: pointer;
  /* z-index:9999999999999; */
  /* opacity:0; */
}

header .master_play .vol .bi {
  position: absolute;
  color: #ffff;
  font-size: 17px;
  margin-right: 10px;
  cursor: pointer;
  top: -7.5px;
  left: -30px;
}

header .master_play .vol input {
  position: absolute;
  width:100%;
  cursor: pointer;
  top: -7px;
  left: 0;
  z-index: 9999999999999;
  opacity: 0;
}

header .master_play .vol .vol_bar {
  position: absolute;
  width: 0;
  height: 100%;
  cursor: pointer;
  top:0;
  background: #36e2ec;
  transition: 0.1s linear;
}

header .master_play .vol{
  background: rgb(105, 105, 170, .1);
  }  
header .master_play .vol .dot {
  position: absolute;
  height: 5px;
  width: 5px;
  background: #36e2ec;
  left: 0%;
  top: -1.5px;
  transition: 0.3s linear;
  border-radius: 50%;
}

header .master_play .vol .dot::before {
  position: absolute;
  content: '';
  height: 15px;
  width: 15px;
  border: 1px solid #36e2ec;
  transition: 1s linear;
  border-radius: 50%;
  left: -6px;
  top: -6px;
  box-shadow: inset 0px 0px 3px #36e2ec;
}

header .song_side {
  z-index: 2;
}

header .song_side::before {
  content: '';
  position: absolute;
  width: 100%;
  top: 40px;
  right: -1080px;
  z-index: -1;
  height: 300px;
  transform: scale(1.5);

  background: url('bg 1.png') no-repeat;
}

header .song_side nav {
  width: 90%;
  height: 10%;
  /* border: 1px solid #fff; */
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .song_side nav ul {
  display: flex;
}

header .song_side nav li {
  list-style: none;
  position: relative;
  font-size: 15px;
  margin-right: 25px;
  color: #4c5362;
  cursor: pointer;
  transition: 0.3s linear;
}

header .song_side ul li:nth-child(1) {
  color: #fff;
}

header .song_side nav li:hover {
  color: #fff;
}

header .song_side ul li span {
  background: #36e2ec;
  position: absolute;
  width: 100%;
  height: 2.5px;
  bottom: -5px;
  left: 0;
  border-radius: 20px;
}

header .song_side .search {
  /* border:1px solid #fff; */
  position: relative;
  width: 40%;
  padding: 1px 10px;
  border-radius: 20px;
  color: gray;
}

header .song_side .search::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: rgb(184, 184, 184, .1);
  border-radius: 20px;
  backdrop-filter: blur(5px);
  z-index: -1;
}

header .song_side nav .search .bi {
  font-size: 13px;
  padding: 3px 0px 0px 10px;
}

header .song_side nav .search input {
  background: none;
  border: none;
  outline: none;
  padding: 0px 10px;
  color: #fff;
  font-size: 12px;
}

header .song_side nav .user {
  position: relative;
  height: 30px;
  width: 30px;
  /* border: 1px solid #5c615a; */
  border-radius: 50%;
}

header .song_side nav .user img {
  height: 100%;
  width: 100%;
  position: absolute;
  cursor: pointer;
  box-shadow: 2px 2px 8px #121213;
}

header .song_side .content {
  height: 30%;
  width: 90%;
  /* border: 1px solid #fff; */
  margin: auto;
  padding-top: 20px;
}

header .song_side .content h1 {
  font-size: 25px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight:bold;
  margin: 5px;
}

header .song_side .content p {
  font-size: 11px;
  font-weight: 600;
  margin: 5px;
  color: #4c5262;
}

header .song_side .content .buttons {
  margin-top: 15px;
}

header .song_side .content .buttons button {
  /* font-size: 16px; */
  height: 30px;
  width: 120px;
  border: 2px solid #36e2ec;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-weight: 600;
  background-color: #36e2ec;
  margin: 5px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s linear;
}

header .song_side .content .buttons button:hover {
  background: none;
  color: #36e2ec;
}

header .song_side .content .buttons button:nth-child(2) {
  background: none;
  color: #36e2ec
}

header .song_side .content .buttons button:nth-child(2):hover {
  background: #36e2ec;
  color: black;
}

header .song_side .popular_song {
  /* background:#36e2ec;  */
  width: 90%;
  height: auto;
  margin: auto;
  margin-top: 15PX;
  /* border: 1px solid#ffff; */
}

header .song_side .popular_song .h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .song_side .popular_song .h4 .bi {
  color: #a4a8b4;
  cursor: pointer;
  transition: 0.3s linear;
}

header .song_side .popular_song .h4 .bi:hover {
  color: white;

}

header .song_side .pop_song {
  width: 100%;
  height: 150px;
  margin-top: 15px;
  display: flex;
  /* border:1px solid#ffff; */
  overflow: auto;
  scroll-behavior: smooth;
}

header .song_side .pop_song::-webkit-scrollbar {
  display: none;
}

header .song_side .pop_song li {
  min-width: 100px;
  height: 140px;
  margin-right: 10px;
  list-style: none;
  cursor: pointer;
  transition: .3s linear;
  background: rgb(105, 105, 170, .1);
}

header .song_side .pop_song li:hover {
  background: rgb(105, 105, 170, .1);
}

header .song_side .pop_song li .img_play {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}


header .song_side .pop_song li .img_play img {
  width: 100%;
  height: 100%;
}

header .song_side .pop_song li .img_play .bi {
  position: absolute;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  transition: .3s linear;
}

header .song_side .pop_song li .img_play .bi:hover {
  opacity: 1;
}

header .song_side .pop_song li h5 {
  padding: 5px 0px 0px 5px;
  line-height: 15px;
  font-size: 10px;
  width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

header .song_side .pop_song li h5 .subtitle {
  font-size: 9px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #4c5262;
}

header .song_side .Popular_Artist {
  width: 90%;
  height: auto;
  margin: auto;
  margin-top: 15PX;
  /* border: 1px solid#ffff; */
}

header .song_side .Popular_Artist .h4 {
  display:flex;
  align-items:center;
  justify-content: space-between;
}

header .song_side .Popular_Artist .h4 .bi {
  color: #a4a8b4;
  cursor: pointer;
  transition: 0.3s linear;
}

header .song_side .Popular_Artist .h4 .bi:hover {
  color: white;

}

header .song_side .Popular_Artist .items{
  width: 100%;
  height:auto;
  margin-top: 15px;
  display: flex;
  /* border:1px solid#ffff; */
  overflow:auto;
  scroll-behavior: smooth;
}

header .song_side .Popular_Artist .items li {
  list-style: none;
  position:relative;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
  cursor: pointer;
  text-overflow: ellipsis;

}

header .song_side .Popular_Artist .items li img {
  width: 100%;
  height:45px;
  border-radius: 50%;
}
header .song_side .Popular_Artist .items::-webkit-scrollbar {
 display:none;
}
header .items li div {
  position: relative;
  /* width: 100px;
  height: 100px; */
  display: flex;
  align-items: center;
  justify-content: center;
}
header .items li div .bi {
  position: absolute;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  transition: .3s linear;
}

header .items li div .bi:hover {
  opacity: 1;
}



@keyframes wave {
  0% {
    height: 10px;
  }

  50% {
    height: 15px;
  }

  100% {
    height: 10px;
  }
}