body {
  margin: 0;
  padding: 0;

  background-color: #000;

  overflow: hidden;
}

* {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  color: azure;
}

.main {
  display: flex;
  height: 100vh;
}

.sidebar {
  width: 340px;
  background-color: #000000;
  border-radius: 0.5rem;
}

.nav {
  border-radius: 0.75rem;
  padding: 0.5rem 0.75rem;
  height: 100px;
  margin: 0.25rem 0.25rem;
  background-color: #121212;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nav-option {
  line-height: 2.5rem;
  opacity: 0.7;
  padding: 0.5rem 0.75rem;
}

.nav-option:hover {
  opacity: 1;
}

.nav-option i {
  font-size: 1.25rem;
  margin-right: 1rem;
}

.nav-option a {
  font-size: 1rem;
}

.lib {
  background-color: #121212;
  border-radius: 0.75rem;
  padding: 0.5rem 0.75rem;
  height: 100vh;
  /* display: flex; */
  /* flex-direction: row; */
  justify-content: space-between;
  align-content: center;
  margin: 0.5rem 0.25rem;
}

.lib-options {
  display: flex;
  /* height: 1.5rem; */
  /* width: 100hh; */
  flex-direction: row;
  justify-content: space-between;
  margin: 0.25rem 0.25rem;
  padding: 0.5rem 0.75rem;
  /* opacity: 0.7; */
}

.lib-op1 img {
  margin-right: 1rem;
}

.lib-op1 {
  opacity: 0.7;
}

.lib-op1:hover {
  opacity: 1;
}

.lib-icons a {
  padding-right: 0.5rem;
  opacity: 0.7;
}

.lib-icons a:hover {
  opacity: 1;
}

.lib-icons a {
  margin: 0.25rem;
}

.box {
  border-radius: 0.5rem;
  background-color: #232323;
  height: 8rem;
  margin: 0.5rem 0 0.5rem 0;
  padding: 0.75rem 1rem;
}

.box-p1 {
  font-size: 1rem;
  font-weight: 500;
}

.box-p2 {
  font-size: 0.8rem;
  opacity: 0.9;
}

.badge {
  color: black;
  background-color: white;
  height: 1.5rem;
  width: fit-content;
  border: none;
  border-radius: 5rem;
  padding: 0.25rem 1rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.dark-badge {
  background-color: #000;
  color: #fff;
}

.main-content {
  background-color: #121212;
  flex: 1;
  overflow: auto;
  margin: 0.25rem 0.25rem;
  padding: 0 1.5rem 0 1.5rem;
  border-radius: 0.75rem;
}

.sticky-nav {
  position: sticky;
  top: 0;
  background-color: #121212;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 1rem 0;
  z-index: 1;
}

.sticky-nav-icons img {
  margin: 0.5rem;
}

.sticky-nav-options {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-item {
  margin-right: 0.75rem;
}

@media (max-width: 1000px) {
  .hide {
    display: none;
  }
}

.card {
  background-color: #232323;
  width: 170px;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin: 0.25rem;
  transition: 0.25s;
  margin-right: 1rem;
}

.card:hover {
  background-color: #353535;
  transition: 0.25s;
  cursor: pointer;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
}

.card-title {
  font-weight: 700;
}

.card-info {
  font-size: 0.85rem;
  opacity: 0.8;
}

.card-img {
  width: 100%;
  border-radius: 0.5rem;
}

.footer {
  height: 200px;
  display: flex;
  align-items: center;
}

.line {
  width: 90%;
  height: 30%;
  border-top: 1px solid white;
  align-content: center;
  opacity: 0.4;
}

.music-player {
  background-color: #000000;
  position: fixed;
  bottom: 0px;
  height: 72px;
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.album {
  width: 25%;
  display: flex;
  align-items: center;
}

.album img {
  cursor: pointer;
}

.curr-playing {
  margin: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-items: center;
  /* align-items: center; */
}

.song-title {
  font-weight: 600;
  font-size: 0.85rem;
}

.song-info {
  font-size: 0.7rem;
  line-height: 10%;
  opacity: 0.85;
  cursor: pointer;
}

.song-info:hover {
  opacity: 1;
}

.player {
  width: 50%;
}

.player-control {
  display: flex;
  justify-content: center;
  align-items: center;
}

.player-control-icon {
  height: 1rem;
  width: 1rem;
  margin: 1rem;
  opacity: 0.7;
}

.player-control-icon:hover {
  opacity: 1;
}

.play-pause {
  opacity: 1;
  height: 2rem;
  width: 2rem;
}

.playback-bar {
  display: flex;
  justify-content: center;
  align-items: center;
}

.progress-bar {
  width: 70%;
  appearance: none;
  background-color: transparent;
  cursor: pointer;
}

.progress-bar::-webkit-slider-runnable-track {
  background-color: #ddd;
  border-radius: 50px;
  height: 0.2rem;
}

.progress-bar::-webkit-slider-thumb {
  appearance: none;
  height: 0.75rem;
  width: 0.75rem;
  background-color: #1ed760;
  border-radius: 50px;
  margin-top: -0.3rem;
}

.controls {
  width: 25%;
  padding: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

/* .controls img{
  height: 32px;
  width: 32px;
  margin: 1rem;
} */

.control-icon {
  height: 1.5rem;
  width: 1.5rem;
  margin: 0.5rem;
  /* opacity: 0.7; */
}

.sound-bar {
  width: 6rem;
  appearance: none;
  background-color: transparent;
  cursor: pointer;
}

.sound-bar::-webkit-slider-runnable-track {
  background-color: #ddd;
  border-radius: 50px;
  height: 0.2rem;
}

.sound-bar::-webkit-slider-thumb {
  appearance: none;
  height: 0.75rem;
  width: 0.75rem;
  background-color: #1ed760;
  border-radius: 50px;
  margin-top: -0.3rem;
}
