@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&family=Josefin+Sans:wght@200;300;400;500;600;700&family=La+Belle+Aurore&family=Lobster&family=Lora:ital,wght@1,400;1,500;1,600;1,700&family=Mochiy+Pop+One&family=Open+Sans:wght@300;400;500;600;700&family=Pacifico&family=Poppins:wght@100;200;300;400;500;600;700;800&family=Quicksand:wght@300;400;600;700&family=Raleway:ital,wght@0,500;0,700;1,400&family=Roboto:wght@100&family=Shadows+Into+Light&display=swap");
* {
  padding: 0px;
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

header {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.list-unstyled {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: #fff;
}

span {
  color: #f1f1f150;
  font-size: 12px;
}

.menu-side {
  width: 25%;
  position: relative;
  background: linear-gradient(45deg, #111727, #111727e8);
  height: 90vh;
  padding: 20px;
}

.menu-side h2 {
  color: white;
  font-weight: bold;
  -webkit-transition: letter-spacing .3s ease-in-out;
  transition: letter-spacing .3s ease-in-out;
}

.menu-side h2:hover {
  letter-spacing: 1.5px;
}

.menu-side ul.playlist-list {
  margin-top: 30px;
}

.menu-side ul.playlist-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}

.menu-side ul.playlist-list li span {
  width: 10px;
  height: 10px;
  border: 2px solid #999;
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: all .3s  ease-in-out;
  transition: all .3s  ease-in-out;
}

.menu-side ul.playlist-list li h5 {
  margin-bottom: 0px;
  font-weight: 400;
  margin-left: 30px;
  color: #f1f1f1ac;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.menu-side ul.playlist-list li:hover span {
  border: 2px solid #fff;
}

.menu-side ul.playlist-list li:hover h5 {
  color: white;
}

.menu-side ul.playlist-list li .bi {
  display: none;
}

.menu-side ul.playlist-list li.active span {
  display: none;
}

.menu-side ul.playlist-list li.active .bi {
  display: inline-block;
  color: #36e2ec;
  font-size: 24px;
}

.menu-side .song-lists {
  margin-top: 40px;
  max-height: 340px;
  overflow-y: scroll;
}

@media (max-width: 991px) {
  .menu-side .song-lists {
    height: 100%;
  }
}

.menu-side .song-lists::-webkit-scrollbar {
  display: none;
}

.menu-side .song-lists li {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  padding: 5px 10px;
  cursor: pointer;
  margin-bottom: 10px;
}

.menu-side .song-lists li:hover {
  background-color: #0b1320;
}

.menu-side .song-lists li .song-box > span {
  font-size: 14px;
  color: #999;
}

.menu-side .song-lists li .song-box .song-box-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 20px;
}

.menu-side .song-lists li .song-box .song-box-content img {
  width: 32px;
  height: 32px;
  -o-object-fit: cover;
     object-fit: cover;
}

.menu-side .song-lists li .song-box .song-box-content h6 {
  color: #fff;
  font-size: 14px;
}

.menu-side .song-lists li .song-box .song-box-content span {
  color: #f1f1f18d;
  font-size: 12px;
}

.menu-side .song-lists li .song-box .bi-play-circle-fill {
  cursor: pointer;
  color: #fff;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.menu-side .song-lists li .song-box .bi-play-circle-fill:hover {
  color: #36e2ec;
}

.menu-side.active {
  left: 0%;
  top: 0px;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
  width: 60%;
  z-index: 999;
}

@media (max-width: 991px) {
  .menu-side {
    position: absolute;
    left: 0%;
    top: 0px;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: .5s;
    transition: .5s;
  }
}

@media (min-width: 992px) {
  .menu-side {
    width: 25%;
    padding: 20px;
  }
}

.song-side {
  width: 75%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(45deg, #111727, #111727e4);
  height: 90vh;
  -webkit-box-shadow: 5px 0px 2px #090f1f;
          box-shadow: 5px 0px 2px #090f1f;
}

@media (min-width: 992px) {
  .song-side {
    width: 75%;
    padding: 0px;
  }
}

@media (max-width: 991px) {
  .song-side {
    width: 100%;
    overflow-y: scroll;
  }
  .song-side::-webkit-scrollbar {
    display: none;
  }
}

.song-side::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 300px;
  background: url("../../../assets/singer.jpg");
  top: 100px;
  right: -550px;
  -webkit-transform: rotate(33deg);
          transform: rotate(33deg);
  background-repeat: no-repeat;
  mix-blend-mode: color-dodge;
  pointer-events: none;
}

.song-side nav {
  padding-top: 10px;
  padding-bottom: 10px;
}

.song-side nav > ul li {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  margin-right: 20px;
  padding: 5px;
  position: relative;
  cursor: pointer;
}

.song-side nav > ul li.active {
  letter-spacing: 1.8px;
}

.song-side nav > ul li.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 5px;
  width: 45%;
  background-color: #36e2ec;
  height: 2px;
}

.song-side nav .search-box {
  background-color: #111727;
  padding: 0px 40px 2px 10px;
  border-radius: 20px;
  z-index: 33;
}

.song-side nav .search-box input {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 5px;
  color: #fff;
}

.song-side nav .search-box i {
  color: #f1f1f185;
}

.song-side nav .search-box .search-list {
  position: absolute;
  background: linear-gradient(45deg, #111727, #111727e4);
  border: 1px solid #0b1320;
  bottom: -120px;
  left: 10%;
  width: 80%;
  height: 120px;
  overflow-y: scroll;
  border-radius: 0px 0px 20px 20px;
  padding: 5px 20px;
  margin-bottom: 0px;
}

.song-side nav .search-box .search-list::-webkit-scrollbar {
  display: none;
}

.song-side nav .search-box .search-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  border-bottom: 1px solid #f1f1f1;
  padding: 8px 0px;
  cursor: pointer;
}

.song-side nav .search-box .search-list li p {
  margin-bottom: 0px;
  color: #f1f1f1;
  font-size: 14px;
}

.song-side nav .search-box .search-list li span {
  font-size: 12px;
}

.song-side nav .logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .song-side nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .song-side nav ul {
    text-align: center;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .song-side nav ul li {
    margin-right: 10px;
  }
  .song-side nav .logo {
    display: none;
  }
  .song-side nav .burger {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    cursor: pointer;
  }
  .song-side nav .search-box {
    padding: 0px 5px 2px 10px;
  }
}

.song-side .content h1 {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}

.song-side .content p {
  width: 80%;
  line-height: 1.8;
  font-size: 14px;
  color: #f1f1f18d;
}

.song-side .content .buttons {
  margin-top: 10px;
}

.song-side .content .buttons button {
  width: 140px;
  height: 40px;
  font-size: 16px;
  margin-right: 10px;
  text-align: center;
  border-radius: 20px;
  border: 2px solid #36e2ec;
  background-color: transparent;
  color: #36e2ec;
  outline: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.song-side .content .buttons button.active, .song-side .content .buttons button:hover {
  background-color: #36e2ec;
  color: #fff;
}

.song-side .popular-song .popular-lists {
  width: 100%;
  height: 160px;
  overflow-x: scroll;
  scroll-behavior: smooth;
}

.song-side .popular-song .popular-lists::-webkit-scrollbar {
  display: none;
}

.song-side .popular-song .popular-lists ul li {
  height: 150px;
  width: 120px;
  margin-right: 15px;
  position: relative;
}

.song-side .popular-song .popular-lists ul li > div img {
  width: 120px;
  height: 100px;
  border-radius: 5px;
  cursor: pointer;
}

.song-side .popular-song .popular-lists ul li > div h6 {
  font-size: 14px;
}

.song-side .popular-song .popular-lists ul li > div .pop-item + div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 40%;
  background-color: #fff;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: .5s;
  transition: .5s;
  cursor: pointer;
}

.song-side .popular-song .popular-lists ul li > div .pop-item + div:hover {
  color: #36e2ec;
}

.song-side .popular-song .popular-lists ul li:hover .pop-item + div {
  opacity: 1;
  pointer-events: auto;
}

.song-side .icons i {
  color: #f1f1f185;
  -webkit-transition: .3s;
  transition: .3s;
  display: inline-block;
  font-size: 18px;
  cursor: pointer;
  margin-left: 15px;
}

.song-side .icons i:hover {
  color: #fff;
}

.song-side .popular-artists .pop-artists ul {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.song-side .popular-artists .pop-artists ul li {
  margin-right: 20px;
  width: 70px;
  height: 60px;
}

@media (max-width: 991px) {
  .song-side .popular-artists .pop-artists ul li {
    margin-bottom: 10px;
  }
}

.song-side .popular-artists .pop-artists ul li img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.master-play {
  width: 100%;
  height: 10vh;
  padding: 10px 20px;
  background: linear-gradient(45deg, #111727, #111727ec);
}

@media (max-width: 991px) {
  .master-play {
    padding: 0px 10px;
    margin: 0px;
  }
}

.master-play .wave {
  width: 40px;
  height: 40px;
  padding-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 991px) {
  .master-play .wave {
    width: 0px;
    height: 0px;
    padding-bottom: 0px;
  }
}

.master-play .wave .wave-1 {
  width: 4px;
  background-color: #36e2ec;
  margin-right: 5px;
  -webkit-animation: unset;
          animation: unset;
}

.master-play .wave .wave-1:nth-child(1) {
  height: 13px;
}

.master-play .wave .wave-1:nth-child(2) {
  height: 20px;
}

.master-play .wave .wave-1:nth-child(3) {
  height: 8px;
}

.master-play .wave .wave-1.active {
  animation: animate-wave 0.2s infinite ease-in-out alternate-reverse;
}

.master-play .wave .wave-1.active .wave-1:nth-child(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.master-play .wave .wave-1.active .wave-1:nth-child(3) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.master-play img {
  width: 35px;
  height: 35px;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .master-play img {
    width: 0px;
    height: 0px;
    padding-bottom: 0px;
  }
}

.master-play .song-info {
  width: 200px;
}

@media (max-width: 991px) {
  .master-play .song-info {
    display: none !important;
  }
}

.master-play .song-info h5 {
  font-size: 14px;
  color: #fff;
}

.master-play .song-info span {
  font-size: 12px;
  color: #f1f1f1;
}

@media (max-width: 991px) {
  .master-play .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}

.master-play .icon i {
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 991px) {
  .master-play .icon i {
    font-size: 18px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.master-play .icon .bi-play-fill {
  margin: 0px 10px;
}

@media (max-width: 991px) {
  .master-play .icon {
    margin: 0px;
  }
}

.master-play [class*="current"] {
  margin-left: 20px;
  color: #f1f1f1;
  font-size: 12px;
}

.master-play .bar {
  width: 40%;
  position: relative;
  background-color: #0b1320;
  height: 3px;
  margin-left: 20px;
}

.master-play .bar .bar-2 {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  background-color: #36e2ec;
  height: 100%;
  -webkit-transition: width .3s;
  transition: width .3s;
}

.master-play .bar .dots {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #36e2ec;
  left: 0%;
  top: -1px;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.master-play .bar .dots::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  top: -6px;
  left: -5px;
  border: 2px solid #36e2ec;
}

.master-play input[type="range"] {
  position: absolute;
  top: -7px;
  left: 0px;
  width: 100%;
  z-index: 999;
  opacity: 0;
  cursor: pointer;
  -webkit-transition: 3s;
  transition: 3s;
}

.master-play .current-end + i {
  font-size: 28px;
  color: white;
  margin-left: 40px;
}

@media (max-width: 991px) {
  .master-play .current-end + i {
    margin-left: 10px;
  }
}

.master-play .vol {
  position: relative;
  background-color: #0b1320;
  height: 3px;
  width: 160px;
  margin-left: 15px;
}

.master-play .vol .vol-2 {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 2px;
  -webkit-transition: .3s;
  transition: .3s;
  background-color: #fff;
}

.master-play .vol .v-dots {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #36e2ec;
  left: 0%;
  top: -1px;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.master-play .vol .v-dots::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  top: -6px;
  left: -5px;
  border: 2px solid #36e2ec;
}

@-webkit-keyframes animate-wave {
  100% {
    height: 30px;
  }
}

@keyframes animate-wave {
  100% {
    height: 30px;
  }
}
/*# sourceMappingURL=main.css.map */