body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    background-color: #000;
    color: white;
    overflow: hidden;
}

.main {
    display: flex;
    height: 100vh;
    padding: 0.5rem;
}

.sidebar {
    background-color: #000;
    width: 340px;
    border-radius: 1rem;        /*1rem = 16px*/
    margin-right: 0.5rem;
}

.main_content {
    background-color: #121212;
    flex: 1;
    border-radius: 0.5rem; 
    overflow: auto;
    padding: 0 1.5rem 0 1.5rem;
    height: 88.2%;
}

.music_player {
    background-color: #000;
    position: fixed;
    bottom: 0px;
    width: 100%;
    height: 75px;
}

a {
    text-decoration: none;
    color: white;
}
.nav {
    background-color: #121212;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100px;
    padding: 0.5rem 0.75rem;
}

.nav_option {
    line-height: 2.5rem;
    opacity: 0.7;
    margin: 0.5rem 0.75rem;
}

.nav_option:hover {
    line-height: 2.5rem;
    opacity: 1;
}

.nav_option i {
    font-size: 1.25rem;
}

.nav_option a {
    font-size: 1rem;
    margin-left: 1rem;
}

.library {
    background-color: #121212;
    border-radius: 0.5rem;
    height: 69%;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lib_options img {
    height: 1.25rem;
    width: 1.25rem;
}

.icons {
    font-size: 1.25rem;
    display: flex;
}

.icons i {
    opacity: 0.7;
    margin-right: 1rem;
}

.icons i:hover {
    opacity: 1;
}

.box {
    height: 8rem;
    background-color: #1f1f1f;
    margin: 0.75rem 0 1.75rem 0;
    padding: 0.2rem 1rem;
    border-radius: 0.75rem;
}

.box_p1 {
    font-size: 1rem;
    font-weight: 600;
}

.box_p2 {
    font-size: 0.85rem;
    opacity: 0.75;
}

.badge {
    background-color: #ffffff;
    color: #000000;
    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: #ffffff;
}

.dark_badge i {
    padding-right: 0.5rem;
}

.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_options {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav_item {
    margin-right: 1rem;
}

@media (max-width: 1000px) {
     .hide {
        display: none;
     }
}

.card {
    background-color: #232323;
    width: 150px;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.cards_container {
    display: flex;
    flex-wrap: wrap;
}

.card_img {
    width: 100%;
    border-radius: 0.5rem;
}

.card_title {
    font-weight: 600;
}

.card_info {
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.line {
    width: 90%;
    height: 50%;
    border-top: 1px solid white;
    opacity: 0.1;
}

.music_player {
    display: flex;
    justify-content: center;
    align-items: center;
}

.album {
    width: 25%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* background-color: pink; */
}

.album img {
    height: 3.5rem;
    width: 3.5rem;
}

.album_title {
    font-size: 0.75rem;
    font-weight: 700;
    word-spacing: -1px;
}

.album_info {
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 0.1;

}

.album_content {
    padding: 1rem;
}

.player {
    width: 50%;
    /* background-color: brown; */
}

.controls {
    width: 25%;
    /* background-color: blue; */
}

.player_control {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.player_control_icon {
    height: 1rem;
    width: 1rem;
    margin-left: 1.75rem;
    opacity: 0.7;
}

.player_control_icon:hover {
    opacity: 1;
}

.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: 100px;
    height: 0.2rem;
}

.progress_bar::-webkit-slider-thumb {
    appearance: none;
    height: 1rem;
    width: 1rem;
    background-color: #1bd760;
    border-radius: 50%;
    margin-top: -0.37rem;
}

.curr_time {
    font-size: 0.75rem;
    opacity: 0.75;
    margin-right: 0.35rem;
}

.tot_time {
    font-size: 0.75rem;
    opacity: 0.75;
    margin-left: 0.35rem;
}

.fav_icon img {
    height: 1.25rem;
    width: 1.25rem;
    opacity: 0.75;
}

.fav_icon img:hover {
    opacity: 1;
}


.fav_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0 0.5rem 0;
}

.controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.con_icon {
    height: 2.2rem;
    width: 1.5rem;
    padding: 0.2rem;
}

.control_icons img {
    opacity: 0.75;
}

.control_icons img:hover {
    opacity: 1;
}

.vol_progress_bar {
    width: 70%;
    appearance: none;
    background-color: transparent;
    cursor: pointer;
}

.vol_progress_bar::-webkit-slider-runnable-track {
    background-color: #ddd;
    border-radius: 100px;
    height: 0.2rem;
    margin-bottom: 0.3rem;
}

.vol_progress_bar::-webkit-slider-thumb {
    appearance: none;
    height: 1rem;
    width: 1rem;
    background-color: #1bd760;
    border-radius: 50%;
    margin-top: -0.37rem;
}

@media(max-width: 1143px) {
    .icon1 {
        display: none;
    }
}

@media(max-width: 1005px) {
    .icon2 {
        display: none;
    }
}

@media(max-width: 865px) {
    .icon3 {
        display: none;
    }
}

@media(max-width: 760px) {
    .icon4 {
        display: none;
    }
}

@media(max-width: 653px) {
    .controls {
        display: none;
    }

    .sidebar {
        display: none;
    }
}

::-webkit-scrollbar {
    width: 0.5rem;
    background-color: #000;
}

::-webkit-scrollbar-thumb {
    background-color: #ffffff4c;
}