*{
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: black;
    color: white;
    overflow: hidden;
}

.main{
    display: flex;
    height: 100vh;
    padding: 0.5rem;
}

.sidebar{
    background-color: black;
    width: 340px;
    border-radius: 1rem;/*16px*/
    overflow: auto;
    margin-right: 0.5rem;
}

.main_content{
    background-color: #121212;
    flex: 1;
    border-radius: 1rem;/*16px*/
    overflow: auto;
    padding: 0 1.5rem 0 1.5rem;
}

.music_player{
    position: fixed;
    background-color: #000;
    bottom: 0px;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#nav{
    border-radius: 1rem;
    background-color: #121212;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem 0.75rem;
}
.nav_opt{
    line-height: 2.5rem;
    background-color: #121212;
    padding: 0.5rem 0.75rem;
}
.hover{
    opacity: 0.7;
}
.hover:hover{
    opacity: 1;
}
.nav_opt i{
    font-size: 1.25rem;
    margin-right: 6px;
}
.nav_opt a{
    text-decoration: none;
    color: white;
    font-size: 1rem;
}

.lib{
    background-color: #121212;
    border-radius: 1rem;
    height: 100%;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
}
.option{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #121212;
}
.lib_opt img{
    height: 1.25rem;
    width: 1.25rem;
    margin-right: 6px;
}
.icons{
    background-color: #121212;
    font-size: 1.25rem;
    opacity: 0.7;
    margin-right: 1rem;
}
.icons i{
    background-color: #121212;
}
.lib-box{
    background-color: #121212;
}
.box{
    height: 8rem;
    background-color: #232323;
    border-radius: 0.75rem;
    margin: 0.75rem 0 1.75rem 0;
    padding: 0.75rem 1rem;
}
.box_p1{
    font-size: 1rem;
    background-color: #232323;
    font-weight: 500;
    margin-top: 1rem;
}
.box_p2{
    background-color: #232323;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 0.75rem;
}
.badge{
    background-color: white;
    color: #000;
    border-radius: 100px;
    border: none;
    padding: 0.25rem 1rem;
    font-weight: 700;
    margin-top: 1rem;
    height: 2rem;
    width: fit-content;
}
.sticky-nav{
    background-color: #121212;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0 0.75rem 0;
    z-index: 10;
}
.sticky-nav-icons{
    margin-left: 0.75rem;
    background-color: #121212;
}
.sticky-nav-icons img{
    background-color: black;
    border: 2px solid black;
    border-radius: 50%;
}
.sticky-nav-options{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #121212;
}
.sticky-nav-options button{
    margin-right: 1rem;
}
.user{
    margin-top: 1rem;
    margin-right: 1rem;
}
.down{
    background-color: #000;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 1rem;;
}
.down i{
    margin-right: 0.5rem;
}
@media (max-width:1000px){
    .hide{
        display: none;
    }
}

h2{
    background-color: #121212;
    margin: 1rem;
}
.card-container{
    display: flex;
    background-color: #121212;
}
.card{
    background-color: #232323;
    width: 150px;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-left: 1.5rem;
    margin-top: 1rem;
}
.card-info{
    background-color: #232323;
    font-size: 0.75rem;
    opacity: 0.85;
}
.card-title{
    background-color: #232323;
    font-weight: 600;
    padding: 0.5rem 0 0.5rem 0;
}
.card-img{
    width: 100%;
    border-radius: 0.5rem;
}
.footer{
    height: 300px;
    background-color: #121212;
    padding-top: 50px;
}
hr{
    color: #232323;
}
.song{
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.singer{
    font-size: 0.75rem;
    opacity: 0.8;
}
.album {
    width: 25%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.album img{
    height: 60px;
    width: 60px;}
.player{
    width: 50%;
}
.controls{
    width: 20%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.fa-play{
    font-size: 0.5rem;
    padding: 3px 2px 3px 3px;
    border-radius: 3px;
    border: 2px solid white;
}
#vol{
    width: 30%;
    appearance: none;
    cursor: pointer;
}
#vol::-moz-range-thumb{
    appearance: none;
    background-color: transparent;
    border: none;
}
#vol::-moz-range-track{
    background-color: #dddddd9a;
    border-radius: 100px;
    height: 0.2rem;
}
#vol::-moz-range-progress{
    background-color: white;
    height: 0.25rem;
}
.player-control{
    display: flex;
    justify-content: center;
    align-items: center;
}
.player-control img{
    height: 0.8rem;
    margin-right: 1.75rem;
    margin-left: 1rem;
    opacity: 0.8;
    transition: all 0.2s ease-in-out;
}
.player-control img:hover{
    opacity: 1;
    transform: scale(1.1,1.1);
}
#play{
    height: 1.7rem;
    opacity: 1;
}
.playback-bar{
    display: flex;
    justify-content: center;
    align-items: center;
}
#progress-bar{
    width: 50%;
    appearance: none;
    cursor: pointer;
}
#progress-bar::-moz-range-track{
    background-color: #ddd;
    border-radius: 100px;
    height: 0.2rem;
}
span{
    margin: 0.5rem;
}
#progress-bar::-moz-range-thumb{
    appearance: none;
    background-color: transparent;
    border: none;
}
#progress-bar::-moz-range-thumb:hover{
    appearance: none;
    background-color: #1bd760;
    height: 0.8rem;
    width: 0.8rem;
    border-radius: 50%;
    margin-top: -6px;
}
#progress-bar::-moz-range-progress{
    background-color: white;
    height: 0.25rem;
}
#progress-bar::-moz-range-progress:hover{
    background-color: #1bd760;
}