@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Smooch+Sans:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    /* font-family: "Roboto", serif; */
    font-family: 'poppins';
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;
}

html{
    overflow: hidden;
}

div{
    color: #fff;
}

a:hover{
    transition: all 0.2s ease-in-out;
    color: #ebb959 !important;
}

.main-body{
    background-color: #0b0e16;
    padding: 20px;
    height: 94.3vh;
    display: flex;
    gap: 20px;
    padding-right: 0;
}

.main-nav{
    width: 20%;
    height: -webkit-fill-available;
    padding: 20px;
    background-color: #181b21;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.main-nav img.logo{
    width: 35%;
    align-self: baseline;
    margin: auto;
    margin-bottom: 40px;
    margin-top: 0;
    position: relative;
    left: -35px;
    top: 4px;
}

.main-nav a.fa.fa-bars{
    margin-top: 5px;
    color: #fff;
    text-decoration: none;
    background-color: #57595d;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;

    &::before{
        margin: 0;
    }
}

.nav-menu{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: -webkit-fill-available;
}

.nav-menu > div{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-menu .nav-item{
    padding: 16px 20px;
    background-color: transparent;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.4s ease-in-out;
    font-family: "Roboto", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    text-decoration: none;
    color: #fff;
}

.nav-menu .nav-item.active{
    background-color: #303236;
}

.nav-menu .nav-item:hover{
    background-color: #303236;
}

a::before{
    margin-right: 10px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.main-right{
    /* width: -webkit-fill-available; */
    width: 100%;
    overflow: auto;
    padding-right: 20px;
    overflow-x: hidden;
}

.right-nav{
    display: flex;
    width: -webkit-fill-available;
    /* height: 45px; */
    align-items: flex-start;
    justify-content: space-between;
}

.searchbar{
    background-color: #23262e;
    border-radius: 30px;
    width: 30%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.searchbar > input{
    background-color: transparent;
    padding: 13px 20px;
    outline: none;
    border: none;
    color: #fff;
    font-weight: 400;
    width: -webkit-fill-available;
}

.searchbar > i{
    color: #fff;
    margin-right: 20px;
    cursor: pointer;
}

.user-details{
    display: flex;
    gap: 10px;
    padding: 5px 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.user-details:hover{
    background-color: #23262e;
}

.user-details > img{
    height: 43px;
    width: 43px;
    border-radius: 50%;
}

.user-details > div h3{
    color: #fff;
    font-weight: 400;
}

.user-details .tag{
    background-color: #0a2b32;
    color: #fff;
    width: fit-content;
    padding: 5px 10px;
    margin-top: 3px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 200;
}

.nav-icon{
    /* height: 43px;
    width: 43px; */
    background-color: #23262e;
    padding: 20px 20px 19px 20px;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
}

.nav-icon::before{
    margin: 0;
}

.mr5{
    margin-right: 10px;
}

.nav-right-elements{
    display: flex;
    gap: 30px;
}

.carousel {
    margin-top: 30px;
    position: relative;
    /* width: 60%; */
    /* max-width: 600px; */
    overflow: hidden;
    border-radius: 10px;
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); */
}

.slides {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.slide {
    /* min-width: calc(44% - 30px); */
    height: 350px;
    min-width: 350px;
    /* padding: 1px; */
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    background: #3498db;
    color: white;
    overflow: hidden;
    border-radius: 20px;
}

.slide:hover{
    .song-details{
        opacity: 1;
    }
}

.slide > img{
    width: 100%;
    height: 100%;
}

.carousel-btn {
    position: absolute;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    /* background: rgba(0, 0, 0, 0.5); */
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(97, 102, 112, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.125);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    transition: 0.3s;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

#prev {
    left: 10px;
}

#next {
    right: 10px;
}

.text-md{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.text-sm{
    color: #fff;
    font-size: 10px;
}

.song-details{
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* flex-direction: column; */
    height: 100px;
    padding-left: 20px;
    position: relative;
    bottom: 30%;
    background-image: linear-gradient(to bottom, #3939391f, #000);
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.song-details a{
    height: 40px;
    width: 31px;
    color: #fff;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding-left: 10px;
    border-radius: 50%;
    margin-right: 20px;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(97, 102, 112, 0.75);
    /* border-radius: 12px; */
    border: 1px solid rgba(255, 255, 255, 0.125);
}

.song-details > .col-1{
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-direction: column;
}

.song-details> .col-1 > h5{
    margin-top: 5px;
}

.categories-menu{
    display: flex;
    margin-top: 20px;
    color: #fff;
    justify-content: space-between;
    /* gap: 15px; */
}

.categories-menu a.category-item{
    font-size: 13px;
    border: 1px solid #ffffff7a;
    padding: 7px 21px;
    color: #fff;
    border-radius: 30px;
    font-weight: 300;
    cursor: pointer;
    margin-right: 20px;
    transition: all 0.3s ease-in-out;
}

.categories-menu a.category-item.active{
    background-color: #23887f;
    color: #fff;
    border-color: #23887f;
}

.categories-menu a.category-item:hover{
    background-color: #23887f;
    color: #fff;
    border-color: #23887f;
}

.categories-menu .previous{
    color: #646a75;
    font-size: 30px;
}

.categories-menu .next{
    color: #fff;
    font-size: 30px;
}

.song-card-container{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.song-card{
    height: fit-content;
    border-radius: 20px;
    padding: 15px 9px 13px 9px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: 125px;
}

.song-card:nth-child(1){
    background-color: #ec8f217a;
    background-image: linear-gradient(121deg, #724f25 45%, #ed4d13 85%);  
}

.song-card:nth-child(2){
    background-color: #f3f3ed;
    background-image: linear-gradient(113deg, #a2a2a2 50%, #ba9388 100%);
}

.song-card:nth-child(3){
    background-color: #ffffff;
    background-image: linear-gradient(180deg, #ffffff 0%, #769a96 100%);
}

.song-card:nth-child(4){
    background-color: #3e3c32;
    background-image: linear-gradient(180deg, #3e3c32 0%, #bc766c 100%);
}

.song-card:nth-child(5){
    background-color: #944299;
    background-image: linear-gradient(180deg, #944299 0%, #7fa260 50%, #0f2f30 100%);
}

.song-card:nth-child(6){
    background-color: #1a1a1a;
    background-image: linear-gradient(0deg, #1a1a1a 0%, #ac7254 50%, #505050 100%);
}

.song-card:nth-child(7){
    background-color: #d1c91e;
    background-image: linear-gradient(180deg, #d1c91e 0%, #3e3e3e 100%); 
}

.song-card:nth-child(8){
    background-color: #0cb4e5;
    background-image: linear-gradient(177deg, #4bafcc 30%, #10394f 100%);
}

.song-card:nth-child(9){
    background-color: #dadada;
    background-image: linear-gradient(135deg, #dadada 0%, #818181 50%, #0f0f0f 100%);
}

.song-card:nth-child(10){
    background-color: #5260a5;
    background-image: linear-gradient(0deg, #5260a5 0%, #233277 100%);
}

.song-card:nth-child(11){
    background-color: #745950;
    background-image: linear-gradient(0deg, #745950 0%, #f5f5eb 100%);
}

.song-card:nth-child(12){
    background-color: #0d6072;
    background-image: linear-gradient(0deg, #0d6072 0%, #c3d9e5 100%);
}

.song-card > img{
    height: 115px;
    width: 115px;
    border-radius: 20px;
}

.song-card-heading{
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0px;
    font-family: 'poppins';
}

.song-card h4{
    margin-top: 10px;
}

.song-card-support-text{
    font-size: 12px;
    color: #fff;
    font-weight: 300;
    width: 150px;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
}

.music-player-support-text{
    text-align: left !important;
}

.Music-player-container{
    height: 100px;
    background-color: #2b3041f2;

    height: 100px;
    background: rgb(209 209 209 / 19%);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.9px);
    -webkit-backdrop-filter: blur(4.9px);
    border: 1px solid rgba(48, 48, 48, 0.3);

    width: 96%;
    left: 0;
    bottom: 0;
    position: sticky;
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.footer-song-details{
    display: flex;
    gap: 12px;
    min-width: fit-content;

    img{
        height: 35px;
        width: 35px;
        border-radius: 50%;
    }
}

.player-elements{
    margin-left: 35px;
    display: flex;
    align-items: center;

    .control-btns{
        color: #fff;
        font-size: large;
        text-decoration: none;
    }

    .play-pause-btn{
        color: #fff;
        font-size: large;
        text-decoration: none;
        padding: 15px 7px 15px 20px;
        background-color: #57595d;
        border-radius: 50%;
    }

    input[type="range"] {
        -webkit-appearance: none;
        width: 25vw;
        height: 1.5px;
        background: #c4c4c4;
        border-radius: 5px;
        outline: none;
        opacity: 0.9;
        transition: all 0.8s ease-in-out;
        margin-left: 10px;
        margin-right: 10px;
    }

    input[type="range"]:hover {
        opacity: 1;
        transition: all 0.8s ease-in-out;
    }

    /* Webkit (Chrome, Safari) */
    input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 15px;
        height: 15px;
        background: #fff;
        /* border: 6px solid transparent; */
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
        transition: 0.2s;
        transition: all 0.8s ease-in-out;
    }

    input[type="range"]::-webkit-slider-thumb:hover {
        background: #ff2e00;
        transition: all 0.8s ease-in-out;
    }

    /* Mozilla Firefox */
    input[type="range"]::-moz-range-thumb {
        width: 20px;
        height: 20px;
        background: #ff5733;
        border-radius: 50%;
        cursor: pointer;
        transition: 0.2s;
        transition: all 0.8s ease-in-out;
    }

    /* Microsoft Edge */
    input[type="range"]::-ms-thumb {
        width: 20px;
        height: 20px;
        background: #ff5733;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.8s ease-in-out;
    }

    .feature-btns{
        font-size: large;
        color: #fff;
        text-decoration: none;
        margin-left: 10px;
        transition: all 0.8s ease-in-out;
    }
}

.home-tab{
    display: block;
}

.playlist-tab,.artist-tab,.categoty-tab{
    display: none;
}

.artist-tab,.categoty-tab{
    min-height: 100vh;
}

.categoty-tab{
    h3{
        margin-top: 20px;
    }

    .btn-cnt{
        display: flex;
        align-items: center;
        justify-content: center;
        button{
            margin-top: 35px;
            padding: 16px 35px;
            cursor: pointer;
            background-color: transparent;
            border: 3px solid #fff;
            font-size: 16px;
            font-weight: 500;
            color: #fff;
            border-radius: 30px;
            transition: all 0.3s ease-in-out;

            &:hover{
                background-color: #fff;
                color: #000;
            }
        }
    }
}

.categories{
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.categorypage-category-item{
    border-radius: 15px;
    padding: 15px;
    /* background-color: #0a2b32; */
    width: -webkit-fill-available;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.categorypage-category-item:nth-child(5n+1){
    background-color: #4f6989;
}
.categorypage-category-item:nth-child(5n+2){
    background-color: #a39886;
}
.categorypage-category-item:nth-child(5n+3){
    background-color: #98513a;
}
.categorypage-category-item:nth-child(5n+4){
    background-color: #1c3d42;
}
.categorypage-category-item:nth-child(5n+5){
    background-color: #9f7c94;
}
.categorypage-category-item:nth-child(5n+6){
    background-color: #440b1b;
}

.mix-songs{
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.mix-songs-item{
    width: 150px;
    height: 150px;
    border-radius: 10px;
    background-size: 100% 100%;
    padding: 15px;
    display: flex;
    align-items: end;
    background-color: red;
    cursor: pointer;
    transition: all 0.3s ease-in-out;

    h5{
        font-size: 15px;
        font-weight: 400;
        padding-left: 10px;
    }
}

.mix-songs-item:hover{
    transform: scale(1.04);
}

.mix-songs-item:nth-child(1){
    background-image: url(assets/Photos&Covers/hindi-mix.jpg);
    border-bottom: 5px solid pink;
    h5{
        border-left: 5px solid pink;
    }
}
.mix-songs-item:nth-child(2){
    background-image: url(assets/Photos&Covers/taylor-swift-mix.jpg);
    border-bottom: 5px solid blue;
    mix-blend-mode: color-dodge;
    h5{
        border-left: 5px solid blue;
    }
}
.mix-songs-item:nth-child(3){
    background-image: url(assets/Photos&Covers/eminem-mix.jpg);
    border-bottom: 5px solid red;
    h5{
        border-left: 5px solid red;
    }
}
.mix-songs-item:nth-child(4){
    background-image: url(assets/Photos&Covers/bellie-eilish-mix.jpg);
    border-bottom: 5px solid #4f6989;
    h5{
        border-left: 5px solid #4f6989;
    }
}
.mix-songs-item:nth-child(5){
    background-image: url(assets/Photos&Covers/Moody-mix.jpg);
    border-bottom: 5px solid #a39886;
    h5{
        border-left: 5px solid #a39886;
    }
}
.mix-songs-item:nth-child(6){
    background-image: url(assets/Photos&Covers/weeknd-mix.jpg);
    border-bottom: 5px solid #9f7c94;
    h5{
        border-left: 5px solid #9f7c94;
    }
}
.mix-songs-item:nth-child(7){
    background-image: url(assets/Photos&Covers/pop-mix.jpg);
    border-bottom: 5px solid pink;
    h5{
        border-left: 5px solid pink;
    }
}
.mix-songs-item:nth-child(8){
    background-image: url(assets/Photos&Covers/2010-mix.jpg);
    border-bottom: 5px solid blue;
    h5{
        border-left: 5px solid blue;
    }
}
.mix-songs-item:nth-child(9){
    background-image: url(assets/Photos&Covers/2011-mix.jpg);
    border-bottom: 5px solid red;
    h5{
        border-left: 5px solid red;
    }
}
.mix-songs-item:nth-child(10){
    background-image: url(assets/Photos&Covers/2014-mix.jpg);
    border-bottom: 5px solid #4f6989;
    h5{
        border-left: 5px solid #4f6989;
    }
}
.mix-songs-item:nth-child(11){
    background-image: url(assets/Photos&Covers/2018-mix.jpg);
    border-bottom: 5px solid #a39886;
    h5{
        border-left: 5px solid #a39886;
    }
}
.mix-songs-item:nth-child(12){
    background-image: url(assets/Photos&Covers/2024-mix.jpg);
    border-bottom: 5px solid #9f7c94;
    h5{
        border-left: 5px solid #9f7c94;
    }
}

.artists-list{
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    /* justify-content: space-between; */
}

.artist-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    /* min-width: 140px;
    max-width: 150px; */

    &:hover{
        background-color: #303236;
    }

    img{
        height: 80px;
        width: 80px;
        border-radius: 50%;
    }

    h4{
        font-weight: 400;
        margin-top: 5px;
    }

    h5{
        font-weight: 300;
    }
}

.event-list{
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.event-item{
    padding: 15px;
    width: 100%;
    background: rgba(48, 48, 48, 0.19);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.9px);
    -webkit-backdrop-filter: blur(4.9px);
    border: 1px solid rgba(48, 48, 48, 0.3);
    margin-bottom: 20px;

    img{
        width: 100%;
        border-radius: 10px;
        margin-bottom: 10px;
        height: 250px;
    }

    h4{
        font-weight: 400;
        font-size: larger;
    }

    h5{
        font-weight: 300;
        font-size: medium;
    }

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

    a{
        background-color: #3e3c32;
        color: #fff;
        /* padding: 14px 5px 15px 15px; */
        border-radius: 50%;
        text-decoration: none;
        height: 50px;
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;

        &::before{
            margin: 0 !important;
        }
    }
}

.playlist-tab .topbar{
    margin-top: 20px;
    display: flex;
    justify-content: space-between;

    a{
        text-decoration: none;
        color: #fff;
        font-family: 'poppins';
        font-weight: 400;
    }
}

.play-lists{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
}

.play-list-item{
    border-radius: 10px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    width: 98%;
    align-items: center;
    background-color: #222222;
    margin-right: 20px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;

    .song-info{
        max-width: 324px;
        min-width: 324px;
    }

    &:hover{
        background-color: #4a3434;
    }

    &:last-child{
        margin-bottom: 20px;
    }

    img{
        height: 50px;
        width: 50px;
        border-radius: 10px;
    }

    h4{
        font-weight: 400;
    }
    h5{
        font-weight: 300;
    }
}

.d-none{
    display: none !important;
}
.d-block{
    display: block !important;
}

.back{
    display: none;
    color: #fff;
    font-size: larger;
    text-decoration: none;
    padding: 10px 12px;
    background-color: #303236;
    width: fit-content;
    border-radius: 50%;
    
}

.back::before{
    margin-right: 0 !important;
}

.Music-player{
    display: none;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;

    img{
        height: 350px;
        width: 350px;
        border-radius: 50%;
        border: 3px solid #fff;
        /* clip-path: circle(70px at center); */
        animation: CD 10s linear infinite;

        &::before {
            content: "";
            position: absolute;
            width: 80px; /* Size of the black hole */
            height: 80px;
            background-color: black; /* The black hole */
            border-radius: 50%;
            z-index: 1;
        }
    }


}

@keyframes CD {
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

.cd-hole{
    height: 50px;
    width: 50px;
    background-color: #000;
    border-radius: 50%;
    position: relative;
    left: -218px;
    border: 15px solid;
}

.current-time,.total-time{
    font-weight: 300;
    width: 43px;
}

.un-collapsed{
    transition: all 0.3s ease-in-out;
}

.collapsed{
    transition: all 0.3s ease-in-out;
    width: fit-content;

    .nav-toggler{
        margin-left: 10px;
        margin-bottom: 15px;
    }
    .logo{
        display: none;
    }
    .nav-menu a{
        transition: none;
        font-size: 0px;
        &::before{
            font-size: large;
            margin-right: 0;
        }
    }

    .nav-menu .nav-item.active,.nav-menu .nav-item{
        width: fit-content;
        transition: background-color 0.3s ease-in-out;
    }
}

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

.music-timer{
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 4px; */
}

.nav-toggler-mobile{
    display: none !important;
}

/* ********************************************************************************************************* */
/* ********************************************************************************************************* */
/* ********************************************************************************************************* */
/* ********************************************************************************************************* */
/* ********************************************************************************************************* */
/* ********************************************************************************************************* */
/* ********************************************************************************************************* */
/* ********************************************************************************************************* */
/* ********************************************************************************************************* */
/* ********************************************************************************************************* */
/* ********************************************************************************************************* */
/* ********************************************************************************************************* */
/* ********************************************************************************************************* */
/* ********************************************************************************************************* */
/* ********************************************************************************************************* */
/* ********************************************************************************************************* */
/* ********************************************************************************************************* */

  
/* Medium devices (tablets, 768px and upto 1200px) */
@media (min-width: 768px) and (max-width: 1200px) {
    .song-card-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 20px;
        gap: 11px;
    }

    .Music-player-container {
        .footer-song-details{
            margin-top: 5px;
            .song-card-support-text{
                width: auto;
            }
        }

        height: 100px;
        background: rgb(209 209 209 / 19%);
        border-radius: 16px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(4.9px);
        -webkit-backdrop-filter: blur(4.9px);
        border: 1px solid rgba(48, 48, 48, 0.3);
        width: 96%;
        left: 0;
        bottom: 0;
        position: sticky;
        border-radius: 30px;
        display: flex;
        align-items: center;
        padding: 0 20px;
        flex-direction: column;
    }

    .main-nav img.logo {
        width: 35%;
        align-self: baseline;
        margin: auto;
        margin-bottom: 40px;
        margin-top: 0;
        position: relative;
        left: -28px;
        top: 13px;
    }

    .user-details > div h3 {
        color: #fff;
        font-weight: 400;
        font-size: 14px;
    }

    .searchbar > input {
        background-color: transparent;
        padding: 13px 20px;
        outline: none;
        border: none;
        color: #fff;
        font-weight: 400;
        width: -webkit-fill-available;
    }

    .searchbar > i{
        margin-left: 15px;
    }

    .categories-menu a.category-item.active {
        background-color: #23887f;
        color: #fff;
        border-color: #23887f;
        line-height: 4;
    }

    .categories {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
        .categorypage-category-item{
            width: 100px;
            max-width: auto;
            flex: 1 0 30%;
        }
    }

    .play-list-item {
        .song-info {
            max-width: 300px;
            min-width: 300px;
        }
    }
}

@media (min-width: 350px) and (max-width: 768px) {
    .main-nav{
        /* display: none !important; */
        position: fixed;
        z-index: 9;
        height: 350px;
    }

    .mix-songs-item{
        width: 135px;
        height: 135px;
    }

    .nav-toggler-mobile{
        display: block !important;
    }

    .right-nav{
        .user-details{
            h3{
                font-size: 13px;
            }
        }

        a.fa-regular.fa-heart.nav-icon.mr5{
            display: none;
        }

        .searchbar > input{
            width: 90%;
        }
    }

    .categories-menu > div{
        display: flex;
        flex-wrap: nowrap;
        overflow: auto;

        
    }

    .categories-menu > div::-webkit-scrollbar {
        width: 12px; /* for vertical scrollbar */
        height: 12px; /* for horizontal scrollbar */
        display: none;
      }
      
      /* Track (background) */
      .categories-menu > div::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 10px;
        display: none;
      }
      
      /* Thumb (the draggable part) */
      .categories-menu > div::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
        display: none;
      }

      .song-card-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 20px;
        justify-content: space-evenly;
    }

    .Music-player-container{
        flex-direction: column;
        padding-left: 0px;
        height: 140px;
        padding-top: 20px;
        bottom: 30px;
    }

    .player-contents{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
    }

    .player-elements{
        flex-direction: column-reverse;
        margin-top: 10px;
        .fa.fa-random.feature-btns{
            display: none;
        }
    }
    
    a.fa-solid.fa-gear.nav-icon{
        display: none;
    }

    .main-nav.collapsed{
        display: none;
    }

    .main-nav.un-collapsed {
        display: block !important;
        width: 81%;
        height: 454px;
    }

    .nav-menu{
        height: 100%;
    }

    .cd-hole{
        min-width: 50px;
        height: 50px;
        left: -179px;
    }

    .Music-player {
        img {
            position: relative;
            left: 43px;
        }
    }

    .categories{
        overflow: auto;

        .categories::-webkit-scrollbar {
            width: 12px; /* for vertical scrollbar */
            height: 12px; /* for horizontal scrollbar */
            display: none;
          }
          
          /* Track (background) */
          .categories::-webkit-scrollbar-track {
            background: #f0f0f0;
            border-radius: 10px;
            display: none;
          }
          
          /* Thumb (the draggable part) */
          .categories::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
            display: none;
          }
        .categorypage-category-item{
            min-width: fit-content;
        }

    }

    .artists-list{
        justify-content: space-around;
    }

    .event-list{
        flex-direction: column;
    }

    .event-item{
        width: 91%;
    }

    .play-list-item > h5{
        display: none;
    }

    .play-list-item{
        width: 95%;
    }

}

/* .nav-toggler-mobile{
    display: none !important;
} */ 
