@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input:-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

.header {
  position: absolute;
  z-index: 3;
  padding-left: 25%;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  transition: 0.5s linear;
}
.header nav {
  padding: 0px 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header nav ul {
  display: flex;
}
.header nav ul li {
  position: relative;
  font-size: 13px;
  color: #747988;
  margin-right: 25px;
  cursor: pointer;
  transition: 0.3s linear;
  /* 		span {
  			position: absolute;
  			left: 0;
  			width: 100%;
  			height: 2.5px;
  			background: #ffaa00;
  			bottom:-5px;
  			border-radius: 20px;
  		} */
}
.header nav ul li:first-child {
  color: #ffaa00;
}
.header nav ul li:last-child {
  margin: 0;
}
.header nav ul li:hover {
  color: #e2e2e2;
}
.header__search {
  position: relative;
  width: 31%;
  padding: 1px 10px;
  border-radius: 20px;
  color: gray;
}
.header__search::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(184, 184, 184, 0.1);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: -1;
}
.header__search .bi {
  font-size: 13px;
  padding: 3px 0px 0px 10px;
}
.header__search input {
  /* width: 90%; */
  background: none;
  border: none;
  outline: none;
  padding: 3px 10px;
  color: #e2e2e2;
  font-size: 12px;
}
.header__search-results {
  position: absolute;
  width: 100%;
  height: 200px;
  /* border: 1px solid #e2e2e2; */
  margin-top: 10px;
  border-radius: 10px;
  overflow: auto;
}
.header__search-results::-webkit-scrollbar {
  display: none;
}
.header__card {
  width: 100%;
  min-height: 45px;
  /* border: 1px solid #e2e2e2; */
  display: flex;
  align-items: center;
  background: rgb(9, 15, 31);
  border-bottom: 1px solid rgba(26, 26, 26, 0.6352941176);
  display: none;
}
.header__card:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}
.header__card img {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  margin-right: 15px;
}
.header__content {
  width: 80%;
  height: 100%;
  /* border: 1px solid red; */
  font-size: 13px;
  font-weight: 600;
  color: #e2e2e2;
  line-height: 120%;
}
.header__subtitle {
  font-size: 11px;
  color: #747988;
  font-weight: 500;
}
.header__user {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.header__user img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  box-shadow: 2px 2px 8px #121213;
}

@media (max-width: 1360px) {
  .header__search {
    width: 42%;
  }
}
@media (max-width: 1023.98px) {
  .header {
    padding-left: 30%;
  }
  .header__search {
    width: 45%;
  }
}
@media (max-width: 930px) {
  .header {
    padding-left: 20px;
  }
  .header nav ul li {
    font-size: 11px;
    margin-right: 15px;
  }
}
@media (max-width: 767.98px) {
  .header {
    padding-left: 10px;
  }
}
@media (max-width: 539.98px) {
  .header {
    height: 80px;
  }
  .header nav {
    flex-wrap: wrap;
  }
  .header__search {
    margin-top: 15px;
    flex: 0 1 85%;
  }
  .header__user {
    align-self: flex-end;
  }
}
html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #e2e2e2;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* background: rgb(9,15,31); */
  background: linear-gradient(216deg, rgb(19, 30, 62) 41%, rgb(71, 57, 17) 68%);
}

input,
button,
textarea {
  font-family: "Poppins", sans-serif;
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

.lock body {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrapper {
  position: relative;
  width: 95%;
  height: 95%;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .wrapper {
    width: 100%;
    height: 100%;
  }
}
.left {
  position: relative;
  width: 20%;
  height: 90%;
  transition: 0.5s linear;
  border-right: 1px solid rgba(46, 46, 46, 0.7058823529);
}
.left h6 {
  display: none;
}
.left h1 {
  font-size: 20px;
  margin: 15px 0px 0px 20px;
  font-weight: 500;
}
.left__playlist {
  margin: 40px 0px 40px 20px;
}
.left__playlist .active {
  color: #ffaa00;
}
.left__playlist .active span {
  display: none;
}
.left__playlist .active .bi {
  display: flex;
  margin-right: 20px;
}
.left__playlist h4 {
  padding-bottom: 10px;
  color: #747988;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: 0.3s linear;
}
.left__playlist h4:hover {
  color: #e2e2e2;
}
.left__playlist h4:hover span::before {
  content: "";
  border: 2px solid #e2e2e2;
}
.left__playlist h4 span {
  position: relative;
  margin-right: 35px;
}
.left__playlist h4 span::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #4c5262;
  border-radius: 50%;
  top: -4px;
  transition: 0.3s linear;
}
.left__playlist .bi {
  display: none;
}
.left__songs {
  width: 100%;
  height: 300px;
  overflow: auto;
}
.left__songs::-webkit-scrollbar {
  display: none;
}
.left__songs li {
  list-style-type: none;
  position: relative;
  padding: 5px 0px 5px 20px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s linear;
}
.left__songs li:hover {
  background: rgba(105, 105, 105, 0.1);
}
.left__songs li i {
  position: absolute;
  width: 100%;
  height: 100%;
}
.left__songs li span {
  font-size: 12px;
  font-weight: 600;
  color: #4c5262;
  margin-right: 25px;
}
.left__songs li img {
  width: 32px;
  height: 32px;
  margin-right: 15px;
}
.left__songs li h5 {
  font-size: 11px;
  width: 170px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 140%;
}
.left__songs li .bi {
  position: absolute;
  right: 15px;
}
.left__subtitle {
  font-size: 10px;
  color: #747988;
}

#recent_songs {
  display: none;
  transition: 0.5s linear;
}

#recommend_songs {
  display: none;
  transition: 0.5s linear;
}

.main {
  position: relative;
  z-index: 2;
  width: 80%;
  height: 90%;
  /* 	background: rgb(9,15,31);
  	background: linear-gradient(216deg, rgba(9,15,31,1) 41%, rgba(51,18,12,1) 68%); */
  overflow: hidden;
  transition: 0.5s linear;
  /* 	&::before {
  		content: '';
  		position: absolute;
  		width: 100%;
  		height: 300px;
  		background: url('img/bg.png') 100% 0 no-repeat;
  		z-index: -1;
  	} */
}
.main__all-top {
  position: relative;
  width: 100%;
  height: 30%;
  margin: 60px auto 0;
  padding-top: 20px;
  margin-bottom: 15px;
}
.main__bg {
  position: absolute;
  max-height: 300px;
  height: 100%;
  top: 0;
  right: 0;
}
.main__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1439.98px) {
  .left {
    width: 27%;
  }
  .main {
    width: 73%;
  }
}
@media (max-width: 1023.98px) {
  .left {
    width: 30%;
  }
  .main {
    width: 70%;
  }
}
@media (min-width: 931px) {
  .slide {
    transform: translateX(0%);
  }
}
@media screen and (max-width: 930px) {
  head {
    width: 930px;
  }
}
@media (max-width: 930px) {
  .left {
    z-index: 999;
    width: 35%;
    background: rgb(9, 15, 31);
    background: linear-gradient(216deg, rgb(19, 30, 62) 41%, rgb(71, 57, 17) 68%);
    position: absolute;
    transition: 1s linear;
  }
  .left__songs li span {
    margin-right: 15px;
  }
  .left h6 {
    display: block;
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 80px;
    background: rgb(39, 23, 6);
    border: 1px solid #3b3b3b;
    border-left: none;
    border-radius: 0px 10px 10px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    cursor: pointer;
    transition: 1s linear;
  }
  .slide {
    transform: translateX(-100%);
  }
  .main {
    width: 100%;
  }
  .play {
    position: absolute;
    bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .left {
    width: 40%;
  }
}
@media (max-width: 604.98px) {
  .main__bg {
    opacity: 0.1;
  }
}
@media (max-width: 649.98px) {
  .left {
    width: 45%;
  }
}
@media (max-width: 509.98px) {
  .left {
    width: 55%;
  }
}
@media (max-width: 459.98px) {
  .left {
    width: 60%;
  }
}
@media (max-width: 424.98px) {
  .left {
    width: 70%;
  }
}
.content {
  width: 90%;
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 60px auto 0;
  padding-top: 20px;
  margin-bottom: 15px;
}
.content h1 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 15px;
}
.content p {
  font-size: 12px;
  color: #747988;
  margin: 5px 5px 15px;
  line-height: 120%;
}
.content__buttons button {
  width: 130px;
  height: 30px;
  border: 2px solid #583d05;
  outline: none;
  border-radius: 20px;
  background: #583d05;
  cursor: pointer;
  transition: 0.3s linear;
}
.content__buttons button:hover {
  background: none;
  color: #ffaa00;
}
.content__buttons button:nth-child(2) {
  background: none;
  color: #ffaa00;
}
.content__buttons button:nth-child(2):hover {
  background: #583d05;
  color: #e2e2e2;
}

.radio {
  display: none;
  position: relative;
  z-index: 14;
  width: 90%;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 30px;
}

.popular {
  width: 90%;
  height: auto;
  margin: auto;
}
.popular__songs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.popular__songs .bi {
  color: #a4a8b4;
  cursor: pointer;
  transition: 0.3s linear;
}
.popular__songs .bi:hover {
  color: #e2e2e2;
}
.popular__pop-song {
  width: 100%;
  height: 150px;
  display: flex;
  overflow: auto;
  scroll-behavior: smooth;
  margin-bottom: 15px;
}
.popular__pop-song::-webkit-scrollbar {
  display: none;
}
.popular__pop-song li {
  min-width: 100px;
  height: 140px;
  list-style-type: none;
  margin-right: 10px;
  transition: 0.3s linear;
}
.popular__pop-song li:hover {
  background: rgba(105, 105, 170, 0.1);
}
.popular__img-play {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popular__img-play i {
  position: absolute;
  width: 100%;
  height: 100%;
}
.popular__img-play img {
  width: 100%;
  height: 100%;
}
.popular__img-play .bi {
  position: absolute;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s linear;
  opacity: 0;
}
.popular h5 {
  padding: 5px 0px 0px 5px;
  line-height: 15px;
  font-style: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100px;
}
.popular__subtitle {
  font-size: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #747988;
}

.pop-art {
  width: 90%;
  height: auto;
  margin: auto;
}
.pop-art__item {
  width: 100%;
  height: auto;
  display: flex;
  overflow: auto;
  scroll-behavior: smooth;
}
.pop-art__item::-webkit-scrollbar {
  display: none;
}
.pop-art__item li {
  list-style-type: none;
  position: relative;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  margin-right: 20px;
  cursor: pointer;
  overflow: hidden;
}
.pop-art__item li:last-child {
  margin-right: 0;
}
.pop-art__item li img {
  width: 64px;
  height: 64px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.play {
  width: 100%;
  height: 10%;
  display: flex;
  align-items: center;
  padding: 0px 20px;
  border-top: 1px solid #333333;
}
.play > img {
  width: 35px;
  height: 35px;
  margin-right: 15px;
}
.play > h5 {
  width: 130px;
  color: #e2e2e2;
  line-height: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  margin-right: 40px;
}
.play .activeOne .wave__one {
  animation: wave 0.5s linear infinite;
}
.play .activeOne .wave__one:nth-child(2) {
  animation-delay: 0.4s;
}
.play .activeOne .wave__one:nth-child(3) {
  animation-delay: 0.8s;
}
.play__wave {
  width: 30px;
  height: 30px;
  padding-bottom: 5px;
  display: flex;
  align-items: flex-end;
  margin-right: 10px;
}
.play__subtitle {
  font-size: 11px;
  color: #747988;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.play__icon {
  font-size: 20px;
  color: #e2e2e2;
  margin-right: 40px;
  outline: none;
  display: flex;
  align-items: center;
}
.play__icon .bi {
  cursor: pointer;
  outline: none;
}
.play__icon .bi:nth-child(3) {
  border: 1px solid rgba(105, 105, 105, 0.1);
  border-radius: 50%;
  padding: 1px 5px 0px 7px;
  margin: 0px 5px;
}
.play__shuffle {
  font-size: 17px;
  margin-right: 10px;
  width: 17.5px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.wave__one {
  width: 3px;
  height: 10px;
  background: #ffaa00;
  margin-right: 3px;
  border-radius: 10px 10px 0px 0px;
  animation: unset;
}
.wave__one:nth-child(2) {
  height: 13px;
  margin-right: 3.5px;
  animation-delay: 0.4s;
}
.wave__one:nth-child(3) {
  height: 8px;
  animation-delay: 0.8s;
}

.bar {
  position: relative;
  width: 43%;
  height: 2px;
  background: rgba(105, 105, 170, 0.1);
  margin-right: 15px;
}
.bar input {
  position: absolute;
  width: 100%;
  top: -7px;
  left: 0;
  cursor: pointer;
  z-index: 99999999;
  /* transition: 3s linear; */
  opacity: 0;
}
.bar__two {
  position: absolute;
  background: #ffaa00;
  width: 0%;
  height: 100%;
  top: 0;
  transition: 1s linear;
}
.bar__dot {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #ffaa00;
  border-radius: 50%;
  left: 0%;
  top: -1.5px;
  transition: 1s linear;
}
.bar__dot::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ffaa00;
  border-radius: 50%;
  left: -5px;
  top: -5px;
  box-shadow: inset 0px 0px 3px #ffaa00;
}

.currentStart {
  width: 36px;
  font-size: 11px;
  margin-right: 10px;
}

.currentEnd {
  width: 36px;
  font-size: 11px;
  margin-right: 50px;
}

.vol {
  position: relative;
  width: 100px;
  height: 2px;
  background: rgba(105, 105, 170, 0.1);
}
.vol .bi {
  position: absolute;
  color: #e2e2e2;
  font-size: 25px;
  top: -12px;
  left: -30px;
}
.vol input {
  position: relative;
  width: 100%;
  top: -10px;
  left: 0;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
}
.vol__bar {
  position: absolute;
  background: #ffaa00;
  width: 50%;
  height: 100%;
  top: 0;
  transition: 1s linear;
}
.vol__dot {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #ffaa00;
  border-radius: 50%;
  left: 50%;
  top: -1.5px;
  transition: 1s linear;
}
.vol__dot::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ffaa00;
  border-radius: 50%;
  left: -5px;
  top: -5px;
  box-shadow: inset 0px 0px 3px #ffaa00;
}

#download_music {
  font-size: 20px;
  margin-left: 10px;
}

@keyframes wave {
  0% {
    height: 10px;
  }
  50% {
    height: 15px;
  }
  100% {
    height: 10px;
  }
}
@media (max-width: 930px) {
  .play {
    position: fixed;
    bottom: 0;
    z-index: 15;
  }
  .play h5 {
    margin-right: 10px;
  }
  .play img {
    display: none;
  }
  .play__icon {
    position: absolute;
    z-index: 15;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(71, 57, 17);
    padding: 20px;
    border-radius: 30px 30px 0px 0px;
    border-top: 1px solid #333333;
    box-shadow: 0px -1px 1px #333333;
    transition: 0.5s linear;
  }
  .play__wave {
    display: none;
  }
  .play__vol {
    display: none;
  }
  .currentEnd {
    margin-right: 0px;
  }
}
@media (max-width: 425.98px) {
  .play {
    background: rgb(71, 57, 17);
  }
}
.dzidzio-top,
.kalush-top,
.tnmk-top,
.skofka-top,
.skriabin-songs,
.dzidzio-songs,
.kalush-songs,
.tnmk-songs,
.skofka-songs {
  display: none;
}