/* Caladea */
@import url('https://fonts.googleapis.com/css2?family=Caladea&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    height: 100vh;
    /* background: linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)), linear-gradient(rgba(139, 44, 7, 0.589),rgb(29, 29, 29));; */
    background: #0c1122;
    font-family: 'Caladea', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

header{
    width: 97%;
    height: 95%;
    /* border: 1px solid #fff; */
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    transition: 2s;
    /* box-shadow: 2px 2px 3px 0px #fff; */
}

header:hover{
    box-shadow: 2px 2px 3px 0px #fff;
}

header .menu_side, .song_side{
    position: relative;
    width: 25%;
    height: 90%;
    /* border: 1px solid #fff; */
    background-color: #111727;
    box-shadow: 5px 0px 2px #090f1f;
    color: #fff;

}

header .song_side{
    width: 75%;
    background: #0b1320;
}

header .m_play{
    width: 100%;
    height: 10%;
    background: #111727;
    box-shadow: 0px 3px 8px #090f1f;
}

header .menu_side h1{
    font-size: 25px;
    margin: 15px 0px 0px 20px;
    font-weight: 600;
    transition: .6s linear;
    cursor: pointer;
    transform: translate(0%,50%) scale(1);
}

header .menu_side h1:hover{
    transform: translate(25%,50%) scale(1.5);
}

header .menu_side .playlist{
    margin: 40px 0px 0px 20px;
}

header .menu_side .playlist h4{
    font-size: 20px;
    font-weight: bolder;
    padding-bottom: 15px;
    color: #4c5262;
    transition: .6s linear;
    display: flex;
    align-items: center;
    cursor: pointer;
}


header .menu_side .playlist h4:hover{
    color: #fff;
}

header .menu_side .playlist h4 span{
    position: relative;
    margin-right: 35px;
}

header .menu_side .playlist h4 span::before{
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border: 2px solid #4c5262;
    border-radius: 50%;
    top: -5px;
    transition: .6s linear;
}

header .menu_side .playlist h4:hover span::before{
    border: 2px solid #fff;
}

header .menu_side .playlist h4 .bi{
    display: none;
}

header .menu_side .playlist .acti{
    color: #1087be;
}

header .menu_side .playlist .acti span{
    display: none;
}

header .menu_side .playlist .acti .bi{
    display: flex;
    margin-right: 5%;
}

header .menu_side .playlist .act span{
    display: none;
}

header .menu_side .playlist .act .bi{
    display: flex;
    margin-right: 5%;
}



header .menu_side .song_menu{
    width: 100%;
    height: 64%;
    /* border: 1px solid #fff; */
    margin-top: 10%;
}

header .menu_side .song_menu li{
    position: relative;
    list-style-type: none;
    padding: 10px 0px 5px 20px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    transition:  .6s linear;
}

header .menu_side .song_menu li:hover{
    background: rgba(100, 100, 120, .2);
}

header .menu_side .song_menu li span{
    font-size: 16px;
    font-weight: 700;
    color: #1087be;
}

header .menu_side .song_menu li img{
    width: 32px;
    height: 32px;
    margin-left: 25px;
}

header .menu_side .song_menu li h5{
    font-size: 20px;
    margin-left: 20px;
}

header .menu_side .song_menu li h5 .subtitle{
    font-size: 15px;
    color: #4c5262;
}

header .menu_side .song_menu li h5 .subtitle{
    font-size: 15px;
    color: #4c5262;
}

header .menu_side .song_menu li .bi{
    position: absolute;
    right: 15px;
    top: 13px;
    font-size: 26px;
}

header .m_play{
    display: flex;
    align-items: center;
    padding: 0px 20px;
}

header .m_play .wave{
    width: 40px ;
    height: 40px;
    /* border: 1px solid #fff; */
    padding-bottom: 5px;
    display: flex;
    align-items: flex-end;
    padding: 5px;
    margin-right: 10PX;
}

header .m_play .wave .wave1{
    width: 3.5px ;
    height: 15px;
    margin-right: 3px;
    border-radius: 10px 10px 0px 0px;
    background: rgb(54, 122, 199);
    animation: unset;
}

header .m_play .wave .wave1:nth-child(2){
    height: 13px;
    /* animation-delay: .6s; */
    
}

header .m_play .wave .wave1:nth-child(3){
    height: 8px;
    /* animation-delay: .3s; */
}
@keyframes wave{
    0%{
        height: 10px;
    }
    50%{
        height: 15px;
    }
    100%{
        height: 10px;
    }

}

header .m_play img{
    width: 35px;
    height: 35px;
    margin-top: 10px;
}

/* js stuff*/
header .m_play .active .wave1{
    animation: wave 1s linear infinite;
}

header .m_play .active .wave1:nth-child(2){
    height: 13px;
    animation-delay: .6s;
    
}

header .m_play .active .wave1:nth-child(3){
    height: 8px;
    animation-delay: .3s;
}

/* js stuff end fr now*/

header .m_play h5{
    width: 150px;
    font-size: 17px;
    padding-top: 20px;
    margin-left: 15px;
    color: #fff;
    line-height: 15px;
}

header .m_play h5 .subtitle{
    font-size: 12px;
    color: #4c5262;
    padding-top: 3px;
}

header .m_play .ic{
    font-size: 30px;
    color: #fff;
    margin: 0px 20px 0px 40px;
}

header .m_play .ic .bi{
    cursor: pointer;
    outline: none;
}

/* header .m_play .ic .bi:nth-child(2){
    border: 1px solid rgba(230, 223, 223, 0.116);
    border-radius: 50%;
    padding: 5px 3px 0px 7px;
    margin: 0px 5px;
    transition: .6s linear;
} */
header .m_play span{
    color: #fff;
    width: 40px;
    font-size: 15px;
}

header .m_play span #cust{
    margin: 0px 0px 0px 20px;
}

header .m_play .bar{
    position: relative;
    width: 43%;
    height: 3px;
    background: rgba(230, 223, 223, 0.116);
    margin: 0px 15px 0px 10px;
}

header .m_play .bar .bar2{
    position: absolute;
    background: #1087be;
    width: 0%;
    height: 100%;
    top: 0;
    transition: 1s linear;
}

header .m_play .bar .dot{
    position: absolute;
    width: 5px;
    height: 5px;
    background: #1087be;
    border-radius: 50%;
    left: 0%;
    top: -1px;
    transition: 1s linear;
}

header .m_play .bar .dot::before{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid #1087be;
    border-radius: 50%;
    left: -6px;
    top: -6px;
    box-shadow: inset 0px 0px 3px #1087be;
}

header .m_play .bar input{
    position: absolute;
    width: 100%;
    top: -6px;
    left: 0;
    cursor: pointer;
    z-index: 900000;
    transition: 2s linear;
    opacity: 0;
}

header .m_play .volume{
    position: relative;
    width: 100px;
    height: 3px;
    margin-left: 50px;
    background-color: rgba(230, 223, 223, 0.116);
}

header .m_play .volume .bi{
    position: absolute;
    color: #fff;
    font-size: 25px;
    top: -13px;
    left: -30px;
}

header .m_play .volume input{
    position: absolute;
    width: 100%;
    top: -7px;
    left: 0;
    cursor: pointer;
    z-index: 90000;
    transition: 2s linear;
    opacity: 0;
}

header .m_play .volume .vol{
    position: absolute;
    background: #1087be;
    width: 0%;
    height: 100%;
    top: 0;
    transition: 1s linear;
}

header .m_play .volume .dot{
    position: absolute;
    width: 5px;
    height: 5px;
    background: #1087be;
    border-radius: 50%;
    left: 0%;
    top: -1px;
    transition: 1s linear;
}

header .m_play .volume .dot::before{
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid #1087be;
    border-radius: 50%;
    left: -6px;
    top: -6px;
    box-shadow: inset 0px 0px 3px #1087be;
}

 header .song_side{
    z-index: 2;
} 

header .song_side::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 300px;
    background: url('image/bg.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: right;
    z-index: -1;
}

header .song_side nav{
    width: 90%;
    height: 10%;
    margin: auto;
    /* border: 1px solid #fff; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .song_side nav ul{
    display: flex;
    
}

header .song_side nav ul li{
    position: relative;
    list-style-type: none;
    font-size: 20px;
    color: #4c5262;
    margin-right: 25px;
    cursor: pointer;
    transition: .6s linear;
}

header .song_side nav ul li:hover{
    color: #fff;
}

header .song_side nav ul li:hover:nth-child(1){
    color: #1087be;
    font-weight: 700;
}

header .song_side nav ul li:nth-child(1){
    color: #fff;
}

header .song_side nav ul li span{
    position: absolute;
    width: 105%;
    height: 3px;
    background: #1087be;
    bottom: -5px;
    left: 0;
    border-radius: 20%;
    transition: .8s;
}

header .song_side nav ul li:hover > span{
    position: absolute;
    width: 10%;
    height: 3px;
    background: #1087be;
    color: #1087be;
    bottom: -5px;
    left: 0;
    border-radius: 20%;
}

header .song_side nav .searchbar{
    position: relative;
    width: 40%;
    padding: 1px 10px;
    border-radius: 20%;
    color: #4c5262;
}

header .song_side nav .searchbar::before{
    position: absolute;
    content: '';
    width: 80%;
    height: 100%;
    border-radius: 20px;
    background: rgba(230, 223, 223, 0.116);
    backdrop-filter: blur(10px);
    z-index: -1;
}

header .song_side nav .searchbar .bi{
    font-size: 13px;
    padding: 7px 0px 0px 10px;
}

header .song_side nav .searchbar input{
    background: none;
    outline: none;
    border: none;
    padding: 0px 10px ;
    color: #fff;
}

header .song_side nav .user{
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    margin-right: 40px;
}

header .song_side nav .user img{
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 2px 2px 8px #f8f8f860;
    transition: .5s;
}

header .song_side nav .user img:hover{
    box-shadow: 0px 2px 5px #f8f8f8;
    width: 40px;
    height: 40px;
    transform: rotate(360deg);
}

header .song_side .content{
    width: 90%;
    height: 30%;
    margin: auto;
    /* border: 1px solid #fff; */
    padding-top: 20px;
}

header .song_side .content h1{
    font-size: 35px;
    font-weight: bolder;
}

header .song_side .content p{
    font-size: 17px;
    font-weight: 500;
    color: #4c5262;
    margin: 5px;
}

header .song_side .content .buttons{
    margin: 20px;
}

header .song_side .content .buttons button{
    width: 130px;
    height: 30px;
    border: 2px solid #1087be;
    outline: none;
    border-radius: 30px;
    background: #1087be;
    color: #fff;
    cursor: pointer;
    transition: .6s ;
}

header .song_side .content .buttons button:hover{
    background: none;
    color: #1087be;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

header .song_side .content .buttons button:nth-child(2){
    background: none;
    color: #1087be;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

header .song_side .content .buttons button:nth-child(2):hover{
    background: #1087be;
    color: #fff;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}


header .song_side .popular_song{
    width: 90%;
    height: auto;
    /* border: 1px solid #fff; */
    margin: auto;
    margin-top: 15px;
}


header .song_side .popular_song .h{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


header .song_side .popular_song .h .bi{
    color: #9c9b9bc4;
    cursor: pointer;
    font-size: 20px;
    transition: .6s linear;
}


header .song_side .popular_song .h .bi:hover{
    color: #fff;
}

header .song_side .popular_song .pop{
    width: 100%;
    height: 150px;
    margin-top: 15px;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
}

header .song_side .popular_song .pop::-webkit-scrollbar{
    display: none;
}

header .song_side .popular_song .pop li{
    min-width: 100px;
    height: 135px;
    list-style-type: none;
    margin-right: 15px;
    transition: .6s linear;
}

header .song_side .popular_song .pop li:hover{
    background: rgba(230, 223, 223, 0.116);
}

header .song_side .popular_song .pop li .iplay{
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .song_side .popular_song .pop li .iplay img{
    width: 100%;
    height: 100%;
}

header .song_side .popular_song .pop li .iplay .bi{
    position: absolute;
    font-size: 20px;
    cursor: pointer;
    transition: .6s linear;
    opacity: 0;
}

header .song_side .popular_song .pop li .iplay:hover .bi{
    opacity: 1;
}

header .song_side .popular_song .pop li h5{
    padding: 5px 0px 0px 5px;
    line-height: 15px;
    font-size: 15px;
    font-weight: 400;
}

header .song_side .popular_song .pop li h5 .subtitle{
    font-size: 12px;
    color: #4c5262;
}


header .song_side .popular_artists{
    width: 90%;
    height: auto;
    /* border: 1px solid #fff; */
    margin: auto;
    margin-top: 15px;
}


header .song_side .popular_artists .h{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


header .song_side .popular_artists .h .bi{
    color: #9c9b9bc4;
    cursor: pointer;
    font-size: 20px;
    transition: .6s linear;
}


header .song_side .popular_artists .h .bi:hover{
    color: #fff;
}

header .song_side .popular_artists .items{
    width: 100%;
    height: auto;
    margin-top: 10px;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
}

header .song_side .popular_artists .items::-webkit-scrollbar{
    display: none;
}

header .song_side .popular_artists .items li{
    list-style-type: none;
    position: relative;
    min-width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 25px;
    cursor: pointer;
}

header .song_side .popular_artists .items li img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
}