body {
  font-family: "Montserrat";
  margin: 0px;
  background-color: #000;
  color: #fff;
  padding: 1rem;
  overflow: hidden;
}

.main {
  display: flex;
  height: 100vh;
}
.sidebar {
  background-color: #121212;
  width: 340px;
  border-radius: 1rem;
}

.main_content {
  background-color: #000;
  color: white;
  flex: 1;
  border-radius: 1rem;
  overflow: auto;
  padding: 0 1.5rem 0 1.5rem;
}

.music_player {
  background-color: black;
  position: fixed;
  bottom: 0px;
  width: 100%;
  height: 4rem;
}
.nav {
  background-color: #121212;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 1rem;
  height: 6.25rem;
  padding: 0.5rem 0.75rem;
}

.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;
}

.nav-option a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  margin-left: 1rem;
}
.library {
  background-color: #121212;
  height: 100%;
  border-radius: 1rem;
  margin-top: 0.5rem;
}

.option {
  display: flex;
  justify-content: space-between;
}

.lib-option img {
  height: 1.25rem;
  width: 1.25rem;
}
.icons {
  opacity: 0.7;
  align-content: center;
}
.icons i {
  font-size: 1rem;
  margin-right: 1rem;
}
.icons:hover {
  opacity: 1;
}

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

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

.box-p2 {
  font-size: 0.85rem;
  opacity: 0.9;
}
.badge {
  background-color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.25rem 1rem;
  font-weight: 700;
  margin-top: 0.5rem;
  height: 2rem;
  width: fit-content;
}

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

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

.sticky-nav-icons {
  margin-left: 0.75rem;
}

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

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

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

.main_content h2 {
  margin-left: 1.5rem;
}
.card {
  background-color: #232323;
  width: 150px;
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1.5rem;
}

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

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

.card-title {
  margin-top: 0.1rem;
  font-weight: 600;
}

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

.footer {
  height: 200px;
  display: flex;
  font-size: 1.5rem;
  font-weight:600;
  flex-direction:column;
  align-items: center;
  justify-content: center;
}

.line {
  height: 30%;
  width: 90%;
  border-top: 1px solid white;
  opacity: 0.5;
}

.music_player {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.album {
  margin: 0;
  display: flex;
  width: 25%;
  height: 100%;
}

.curr-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33%;
}

.curr-icon img {
  width: 60%;
  height: 80%;
  border-radius: 0.5rem;
}

.curr-info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  width: 34%;
  height: 100%;
}

.curr-info-data {
  font-size: 0.75rem;
  margin: 0.25rem 0;
}

.curr-info h3 {
  font-size: 0.75rem;
  font-weight: 500;
}

.album-icon {
  display: flex;
  justify-content:center;
  align-items:center;
  flex-direction: row;
  width: 33%;
  height: 100%;
}

.current-icon{
  width:1.5rem;
  margin-right:1rem;
}

.player {
  width: 50%;
}

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

.player-control-icon {
  margin-top: 0.2rem;
  height: 1rem;
  margin-right: 1.75rem;
  opacity: 0.7;
}

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

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

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

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

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

.control{
  display:flex;
  width: 25%;
  height:100%;
}

.control-img{
  display: flex;
  justify-content:center;
  align-items:center;
  width:60%;
  height:100%;
}

.control-icon{
  display: flex;
  justify-content:center;
  align-items:center;
  width:2rem;
  height:2rem;
  margin-right:0.2rem;
}

/* .control-icon .icon1{
  width:100%;
  height:100%;
} */

.control-icon .icon3, .icon4{
  width:1rem;
  height:1rem;
}

.control-range{
  display:flex;
  align-items:center;
  width:100%;
  height:100%;
  appearance: none;
  background-color: transparent;
  cursor:pointer;
}

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

.range::-webkit-slider-thumb{
  appearance:none;
  height: 1rem;
  width: 1rem;
  background-color: #1bd760;
  border-radius: 50%;
  margin-top: -6px;
}