::-webkit-scrollbar{
    width: 12px;
    /* height: 12px; */
}
::-webkit-scrollbar-track{
    background-color: none;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb{
    background-color: #242424;
    border-radius: 10px;
}
body{
    font-family: "Montserrat", sans-serif;
    margin: 0;
    background-color: black;
    overflow: hidden;
    color: white;
}
.main{
    display: flex;
    height: 100vh;
}
.sidebar{
    background-color: black;
    width: 350px;
    border-radius: 1rem;/*16px*/
    margin: 10px 5px;
}
.main-content{
    background-color: #121212;
    flex: 1;
    border-radius: 1rem;/*16px*/
    overflow: auto;
    margin: 10px 5px;
    padding: 0 1.25rem;
}
h2:hover{
    text-decoration: underline;
}
.music-player{
    background-color:black;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 72px;
}
a{
    text-decoration: none;
    color: white;
}
.nav{
    background-color: #121212;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100px;
    padding: 0.5rem 0.75rem;
}
.nav-option{
    line-height: 40px;
    opacity: 0.7;
    padding: 0.5rem 0.75rem;
}
.nav-option:hover{
    opacity: 1;
}
.nav-option i{
    font-size: 1.25rem;
}
.nav-option a{
   font-size: 1rem; 
   margin-left: 1rem;
}
.library{
    background-color: #121212;
    border-radius: 1rem;
    height: 100%;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
}
.library-option{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.your-lib img{
    height: 1.25rem;   
    width: 1.25rem;
}
.library-option .icons{
    opacity: 0.7;
    padding: 0.5rem 0.75rem;
}
.library-option .icons:hover{
    opacity: 1;
}
.box{
    height: 8rem;
    background-color: #242424;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0;
}
.box-p1{
    font-size: 1rem;
    font-weight: 500;
}
.box-p2{
    font-size: 0.85rem;
    opacity: 0.9;
}
.badge{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: black;
    border: none;
    border-radius: 100px;
    padding: 0.25rem 1rem;
    margin: 0.5rem 0;
    font-weight: 700;
    height: 2rem;
    width: fit-content;
    cursor: pointer;
}
.sticky-nav{
    position: sticky;
    top:0;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #121212;
    z-index: 2;
}
.sticky-nav-icons{
    margin-left: 1rem;
}
.sticky-nav-items{
    display: flex;
    justify-content: center;
    align-items: center;
}
.item{
    margin-right: 1.25rem;
}
@media(max-width:1000px){
    .hide{
        display: none;
    }
}
.card-container{
    display: flex;
    flex-wrap: wrap;
}
.card{
    width: 180px;
    padding: 1rem;
    border-radius: 1rem;
    margin: 10px 10px;
}
.card:hover{
    background-color: #242424;
}
.card-img{
    width: 100%;
    border-radius: 1rem;
}
.card-title{
    font-weight: 700;
    margin: 8px 0;
}
.card-info{
    margin: 8px 0;
    opacity: 0.8;
    font-size: 13px;
}
.rounded-card{
    height: 200px;
    width: 200px;
    border-radius: 50%;
}
.music-player{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 0 0;
}
.album{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    
}
.player{
    width: 50%;
}
.controls{
    width: 25%;
}
.player-controls{
    display: flex;
    justify-content: center;
    align-items: center;
}
.playback-control-icon{
    height: 1rem;
    opacity: 0.7;
    margin: 0rem 1rem;
}
.playback-control-icon:hover{
    opacity: 1;
}
.playback-bar{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;    
}
.progress-bar{
    margin: 0 8px;
    width: 65%;
    appearance: none;
    cursor: pointer;
    border-radius: 100px;
    height: 0.20rem;
}
.progress-bar::-webkit-slider-runnable-track{
    background-color: #ddd;
    height: 0.20rem;
    border-radius: 100px;
}
.progress-bar::-webkit-slider-thumb{
    appearance: none;
    background-color: #1bd760;
    height: 1rem;
    width: 1rem;
    border-radius: 50%;

    margin-top: -6px;
}
.song-img{
    height: 50px;
    width: 50px;
}
.album-item{
    margin-right: 1rem;
}
.the-song{
    font-weight: 700;
}


.controls{
    display: flex;
    justify-content: center;
    align-items: center;
}
.controls-icon{
    margin-right: 0.5rem;
}
.volume-control{
    appearance: none;
    border-radius: 100px;
    height: 0.25rem;
    width: 25%;
}
.volume-control::-webkit-slider-runnable-track{
    background-color: #ddd;
    border-radius: 100px;
    height: 0.25rem;
}
.volume-control::-webkit-slider-thumb{
    appearance: none;
    background-color: cornflowerblue;
    height: 0.7rem;
    width: 0.7rem;
    border-radius: 50%;
    margin-top: -4px;
}
@media(max-width:892px){
    .sidebar{
        display: none;
    }
}
@media(max-width:530px){
    .card{
        /* height: 150px; */
        width: 150px;
    }
    .rounded-card{
        width: 150px;
        height: 150px;
    }
}