*{
    font-family: 'Montserrat',sans-serif;
    margin: 0;
    color: #fff;
    overflow: hidden;
}
p{
    margin: 8px;
}

h2{
    margin: 10px;
}


body{
    background-color: #000;
}


.main{
    display: flex; 
    height: 100vh;
    padding: 0.5rem;
}

.sidebar{
    background-color: #000; 
    width: 350px;
    border-radius: 1rem; /*16px*/

}

.main-content{
    background-color: #121212;
    flex:1;  /* all the space is included here */
    border-radius: 1rem; /*16px*/
    overflow: auto; /* scrollable here only*/
    margin-left: .5rem;
    padding: 0 1.5rem 0 1.5rem;
}

.music-player{
    background-color: black;
    position: fixed;
    bottom:0;
    width: 100%;
    height: 75px;
}

a{
    text-decoration: none;
    color:white;
}

.nav{
    background-color: #121212;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100px;
    padding: .5rem 0.75rem;
}

.nav-option{
    line-height: 2.5rem;
    opacity: .7;
    padding: .5rem .75rem;
}

.nav-option:hover{
    opacity: 2;
}

.nav-option a{
    font-size: 1rem;
    margin-left: 1rem;
}

.library{
    background-color: #121212;
    border-radius: 1rem;
    height: 100%;
    margin-top: .5rem;
    padding:  .5rem .75rem;
}

.options{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icons{
    font-size: 1.25rem;
    display: flex;
}

.icons i{
    opacity: .7;
    margin-right: 1rem;
}

.icons i:hover{
    opacity: 1;
}

.lib-option img{
    width: 1.15rem;
    height: 1.15rem;
}

.box{
    background-color: #232323;
    height: 8rem;
    border-radius: .75rem;
    margin: .75rem 0 1.75rem 0;
    padding: .7rem 1rem;
}

.box-p1{
    font-size: 1rem;
    font-weight: 600;
}

.box-p2{
    font-size: .85rem;
    opacity: .8;
}

.badge{
    background-color: #fff;
    border:none;
    border-radius: 100px;
    padding: .25rem 1rem;
    font-weight: 700;
    margin-top: .5rem;
    height: 2rem;
    width: fit-content;
    color: black;
}

.dark-badge{
    background-color: black;
    color: white;
}

.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: 10;
}

.sticky-nav-icons {
    margin-left: 0.75rem;
}

.sticky-nav-options{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-item{
    margin-right: 1rem;
}

@media (max-width: 1000px){
    .hide{
        display: none;
    }
    .sidebar{
        width: 310px;
        font-size: small;
    }

}

.card{
    background-color: #232323;
    width: 160px;
    border-radius: 1rem;
    padding: .8rem;
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.cards-container{
    display: flex;
    flex-wrap: wrap;
}

.card-img{
    width:100%;
}

.card-title{
    font-size: .9rem;
    font-weight: 600;
}

.card-info{
    font-size: .80rem;
    opacity: 0.8;
}

.footer{
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.line{
    width: 90%;
    height: 50%;
    border-top: 1px solid white;
    opacity: .4;

}

.music-player{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.album{
    width: 25%;
    margin: 1rem;
    display: flex;
    align-items: center;
    /* justify-content: center; */

}

.album img{
    width: 60px;
    border-radius: 5px;
}

.label-title{
    font-size: .80rem;
    font-weight: 600;
}

.label-subtitle{
    font-size: .65rem;
    opacity: .8;
}

.album i{
   padding:1rem;
   opacity: .7;
}

.player{
    width: 50%;
}

.player-controls, .playback-bar{
    display: flex;
    justify-content: center;
    align-items: center;

}

.playback-bar{
    width: 100%;
}

.progress-bar{
    width: 70%;
}

.progress-bar{
    width: 70%;
    appearance: none;
    background-color: transparent;
    cursor: pointer;
    padding: 0 .5rem;
}

.progress-bar::-webkit-slider-runnable-track{
    background-color: #bbbbbb;
    border-radius: 100px;
    height: .75rem;
}

.progress-bar::-webkit-slider-thumb{
    appearance: none;
    height: 1rem;
    width: .75rem;
    background-color: #1bd760;
    border-radius: 50%;
}


.player-control-icon{
    height: 1rem;
    margin-right: 1.7rem;
    opacity: .7;
}

.player-control-icon:hover, .album i:hover, .controls i:hover{
    opacity: 1;
}

.controls{
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.controls i{
    opacity: .7;
    padding: .5rem;
    font-size: medium;
}



/* 


@property --val {
    syntax: '<integer>';
    inherits: true;
    initial-value: 0; 
  }
  
  label {
    --c: green; 
    --g: round(.3em,1px);  
    --l: round(.2em,1px);  
    --s: round(1em,1px); 
    --t: round(.8em,1px); 
    --r: round(.8em,1px); 
    
    timeline-scope: --thumb-view;
    position: relative; 
    font-size: 24px;
  }
  
  input {
    width: 100%;
    height: var(--s);
    --_c: color-mix(in srgb, var(--c), #000 var(--p,0%));
    appearance :none;
    background: none;
    cursor: pointer;
    overflow: hidden;
    font-size: inherit;
  }
  input:focus-visible,
  input:hover{
    --p: 25%;
  }
  input:active,
  input:focus-visible{
    --_b: var(--s)
  }
  
  input[type="range" i]::-webkit-slider-thumb{
    height: var(--s);
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 0 0 0 var(--_b,var(--l)) inset var(--_c);
    border-image: linear-gradient(90deg,var(--_c) 50%,#ababab 0) 0 1/calc(50% - var(--l)/2) 100vw/0 calc(100vw + var(--g));
    -webkit-appearance: none;
    appearance: none;
    transition: .3s;
    anchor-name: --thumb;
    view-timeline: --thumb-view inline;
  } */
  