body {
  min-height: 100vh;
  place-content: center;
  margin: 0;
  font-family: Roboto;
  display: grid;
}

* {
  box-sizing: border-box;
}

.music-table {
  width: 828px;
  z-index: 2;
  background: #f4f4f4;
  border: 1px solid #fff;
  border-radius: 60px;
  gap: 43px;
  padding: 40px;
  display: flex;
  box-shadow: 0 40px 60px #3630744d;
}

.album-art-container {
  width: 285px;
  aspect-ratio: 1;
  background: linear-gradient(145deg, #e3e3e3, #f8f8f8);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  box-shadow: 20px 20px 60px #bebebe, -20px -20px 60px #f8f8f8;
}

.album-art {
  width: 90%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.music-controls {
  width: 828px;
  height: 350px;
  z-index: 1;
  background: #f0f0f0;
  border: 1px solid #fff;
  border-radius: 60px;
  padding: 150px 40px 40px;
  position: relative;
  top: -100px;
  box-shadow: 0 40px 60px #412c644d;
}

.music-timing {
  color: #aa9bbe;
  justify-content: space-between;
  font-size: 14px;
  line-height: 17px;
  display: flex;
}

.music-controls-seek_bar_container, .music-controls-buttons {
  z-index: 1;
}

.seek-bar {
  width: 100%;
}

.music-meta {
  flex-direction: column;
  display: flex;
}

.music-meta_playing {
  color: #d0d1db;
  text-shadow: 1px 1px 1px #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
}

.music-meta_playing-headings-container {
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  gap: 12px;
  display: flex;
}

.music-meta_name {
  color: #86748d;
  margin: 0;
  font-size: 32px;
  font-weight: 700;
}

.music-meta_film {
  color: #86748d;
  color: #beb7c0;
  margin: 0;
  font-size: 24px;
}

.music-meta_artist {
  color: #86748d;
  color: #beb7c0;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.music-controls-buttons {
  justify-content: space-evenly;
  align-items: center;
  display: flex;
}

.fa-random, .fa-repeat {
  color: #c7c5d0;
}

.prev-track, .playpause-track, .next-track {
  color: #fff;
  width: 60px;
  aspect-ratio: 1;
  filter: drop-shadow(0 10px 10px #372e98a6);
  background: linear-gradient(159.16deg, #917ce4 26.46%, #3f2d8900 116.55%);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  box-shadow: inset 10px 10px 15px #fff3;
}

.prev-track-container, .playpause-track-container, .next-track-container {
  width: 80px;
  aspect-ratio: 1;
  background: #f8f8f8;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  box-shadow: -10px -10px 15px #fff, 10px 10px 10px #0000000d, inset 10px 10px 10px #0000000d, inset -10px -10px 20px #fff;
}

.playpause-track-container {
  width: 100px;
}

.playpause-track {
  width: 80px;
}

.seek-bar {
  height: 15px;
  -webkit-appearance: none;
  background: #dedde3;
  border-radius: 37px;
  outline: none;
  overflow: visible;
  box-shadow: -3px -3px 5px #fff, 3px 3px 5px #0000000d, inset 3px 3px 5px #0000000d, inset -3px -3px 5px #fff;
}

.seek-bar::-webkit-slider-thumb {
  box-sizing: content-box;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  cursor: pointer;
  background: linear-gradient(327.56deg, #5d24d6 19.23%, #7e74ed 81.76%);
  border: 5px solid #fff;
  border-radius: 50%;
}

.music-controls-seek_bar_container {
  position: relative;
}

.seek-bar-filled {
  height: 7.94px;
  background: linear-gradient(327.56deg, #5d24d6 19.23%, #7e74ed 81.76%);
  border-radius: 31px;
  position: absolute;
  top: 5px;
  left: 5px;
  box-shadow: 0 2px 3px #2b48b466, inset 1px 1px 3px #fff6;
}

.rotate {
  animation: rotation 8s linear infinite;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

/*# sourceMappingURL=index.8e2640c5.css.map */
