*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.wrapper{
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.app{
    width: 100%;
    height: 100%;
    background: #111727;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
}
.left-side-bar{
    width: 25%;
    height: 90%;
    box-shadow: 5px 0 2px #090f1f;
}
.right-side-home-interface{
    width: 75%;
    height: 90%;
    background: #0b1320;
    box-shadow: 5px 0 2px #090f1f;
    z-index: 2;
}
.audio-controler{
    height: 10%;
    width: 100%;
    box-shadow: 0 3px 8px #090f1f;
}

/* left side bar  */
/* brand name and logo  */
.left-side-bar .brand-name-logo{
    margin: 15px 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    user-select: none;
}
.left-side-bar .brand-name-logo h1{
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #30d665;
}
.left-side-bar .brand-name-logo img{
    margin-right: 40px;
}

/* 3 tyle of playlist design  */
.left-side-bar .playlist{
    margin: 30px 0 0 20px;
    user-select: none;
}
.left-side-bar .playlist h3{
    font-size: 18px;
    font-weight: 400px;
    padding-bottom: 8px;
    color: #4c5262;
    transition: .3s linear;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.left-side-bar .playlist h3:hover{
    color: #fff;
}
.left-side-bar .playlist h3 span{
    content: "";
    width: 12px;
    height: 12px;
    border: 2px solid #4c5262;
    border-radius: 50%;
    transition: .3s linear;
    margin-right: 18.5px;
    margin-left: 4px;
}
.left-side-bar .playlist h3:hover span{
    border: 2px solid #fff;
}
.left-side-bar .playlist h3.active span{
    display: none;
}
.left-side-bar .playlist h3 i{
    display: none;
    margin-right: 18px;
}
.left-side-bar .playlist h3.active i{
    display: block;
}
.left-side-bar .playlist h3.active{
    color: #36e2ec;
}

/* left side bar added song list  */
.left-side-bar .left-side-songs-list{
    /* margin-top: 40px; */
    width: 100%;
    height: 340px;
    /* height: 60%; */
    /* border: 1px solid white; */
    overflow: auto;
    scroll-behavior: smooth;
}
.left-side-bar .left-side-songs-list li{
    padding: 5px 40px 5px 20px;
    display: flex;
    align-items: center;
    /* margin-bottom: 5px; */
    transition: .3s linear;
    justify-content: space-around;
}
.left-side-bar .left-side-songs-list li:hover{
    background: rgba(105, 105, 105, 0.1);
}
.left-side-bar .left-side-songs-list li p{
    font-size: 12;
    font-weight: 600;
    color: #4c5262;
    margin-right: 16px;
}
.left-side-bar .left-side-songs-list li:nth-child(1) p{
    margin-right: 20px;
}
.left-side-bar .left-side-songs-list img{
    width: 32px;
    height: 32px;
}
.left-side-bar .left-side-songs-list li h4{
    font-size: 14px;
    margin-left: 15px;
    width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
    user-select: none;
}
.left-side-bar .left-side-songs-list li h4 span{
    font-size: 13px;
    color: #4c5262;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.left-side-bar .left-side-songs-list li i{
    padding-left: 15px;
    font-size: 24px;
    cursor: pointer;
}
.left-side-bar .left-side-songs-list::-webkit-scrollbar{
    display: none;
}


/* main home section design  */
.right-side-home-interface::before{
    content: '';
    background: url('./Image/bg.jpg');
    background-size: contain;
    width: 100%;
    margin-left: 30px;
    height: 300px;
    background-repeat: no-repeat;
    position: absolute;
    overflow: hidden;
    z-index: -1;
}
.right-side-home-interface{
    overflow: auto;
    scroll-behavior: smooth;
}
.right-side-home-interface::-webkit-scrollbar{
    display: none;
}
.right-side-home-interface nav{
    height: 10%;
    width: 90%;
    /* border: 1px solid white; */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.right-side-home-interface nav ul{
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.right-side-home-interface nav ul li{
    font-size: 15px;
    font-weight: 500;
    color: #4c5262;
    margin-right: 25px;
    cursor: pointer;
    user-select: none;
    text-transform: uppercase;
    position: relative;
    transition: .3s linear;
}
.right-side-home-interface nav ul li:hover{
    color: #fff;
}
.right-side-home-interface nav ul li.active-nav span{
    position: absolute;
    background: #36e2ec;
    border-radius: 20px;
    width: 100%;
    height: 2.5px;
    bottom: -5px;
    left: 0;
}
.right-side-home-interface nav ul li.active-nav{
    color: #fff;
}

/* search song  */
.right-side-home-interface nav .search-box{
    position: relative;
    width: 40%;
    padding: 1px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: gray;
    background: rgba(184, 184, 184, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    display: flex;
}
.right-side-home-interface nav .search-box input{
    all: unset;
    width: 90%;
    color: #fff;
    padding: 8px 1px;
    margin-left: 5px;
}
.right-side-home-interface nav .search-box input::placeholder{
    color: #bbb;
    opacity: 0.8;
}
.bi-search{
    margin-left: 5px;
}
/* search song box  */
.right-side-home-interface nav .search-box .search-result{
    position: absolute;
    width: 100%;
    height: 200px;
    top: 100%;
    margin-top: 5px;
    border-radius: 10px;
    left: 0;
    overflow: auto;
    scroll-behavior: smooth;
    /* border: 1px solid red; */
}
.right-side-home-interface nav .search-box .search-result::-webkit-scrollbar{
    display: none;
}
.right-side-home-interface nav .search-box .search-result .card{
    width: 100%;
    height: 45px;
    /* border: 1px solid white; */
    display: flex;
    align-items: center;
    background: rgba(184, 184, 184, 0.15);
    margin-bottom: 5px;
    text-decoration: none;
    display: none;
    border-radius: 5px;
}
.right-side-home-interface nav .search-box .search-result .card img{
    width: 35px;
    height: 35px;
    border-radius: 5px;
    margin: 0 12px;
}
.right-side-home-interface nav .search-box .search-result .card h4{
    width: 80%;
    height: 100%;
    /* border: 1px solid white; */
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.right-side-home-interface nav .search-box .search-result .card h4 span{
    font-size: 12px;
    color: #a4a8b4;
    font-weight: 500;
}
.right-side-home-interface nav .search-box i{
    margin-right: 8px;
    cursor: pointer;
}
.right-side-home-interface nav .profile-img{
    width: 35px;
    height: 35px;
    border: 2px solid #30d665;
    border-radius: 50%;
    cursor: pointer;
}

/* hero section  */
.right-side-home-interface .hero-section{
    width: 90%;
    height: auto;
    /* border: 1px solid #fff; */
    margin: 5px auto;
    padding-top: 20px;
}
.right-side-home-interface .hero-section h2{
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1.75px;
    word-spacing: 3.5px;
}
.right-side-home-interface .hero-section p{
    font-size: 14px;
    font-weight: 400;
    color: #4c5262;
    margin-top: 10px;
}
.right-side-home-interface .hero-section .hero-section-btn button{
    width: 130px;
    height: 35px;
    margin-top: 25px;
    border: 2px solid #36e2ec;
    border-radius: 20px;
    background: #5adae0;
    color: #fff;
    font-size: 15px;
    letter-spacing: 1.25px;
    cursor: pointer;
    margin-right: 12px;
    transition: .3s linear;
}
.right-side-home-interface .hero-section .hero-section-btn button:hover{
    background: none;
    color: #36e2ec;
}
.right-side-home-interface .hero-section .hero-section-btn button:nth-child(2){
    background: none;
    color: #36e2ec;
}
.right-side-home-interface .hero-section .hero-section-btn button:nth-child(2):hover{
    background: #36e2ec;
    color: #fff;
}

/* pupular song lists  */
.right-side-home-interface .pupular-songs-list{
    width: 90%;
    height: auto;
    margin: 0 auto;
    margin-top: 20px;
    /* border: 1px solid white; */
}
.right-side-home-interface .pupular-songs-list .heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.right-side-home-interface .pupular-songs-list .heading h4{
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    word-spacing: 2.25px;
}
.right-side-home-interface .pupular-songs-list .heading .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.right-side-home-interface .pupular-songs-list .heading .icon .icon-bg{
    height: 22px;
    width: 22px;
    background: transparent;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: .3s linear;
}
.right-side-home-interface .pupular-songs-list .heading .icon .icon-bg i{
    position: absolute;
    top: -2%;
    left: 10%;
    transition: .3s linear;
}
.right-side-home-interface .pupular-songs-list .heading .icon .icon-bg:nth-child(2) i{
    left: 15%;
}
.right-side-home-interface .pupular-songs-list .heading .icon .icon-bg:hover{
    background: #4c5262;
}
.right-side-home-interface .pupular-songs-list .heading .icon .icon-bg:hover i{
    color: #36e2ec;
}

/*song list  */
.right-side-home-interface .pupular-songs-list ul{
    width: 100%;
    height: 150px;
    margin-top: 10px;
    display: flex;
    overflow: auto;
    scroll-behavior: smooth;
    overflow-y: hidden;
}
.right-side-home-interface .pupular-songs-list ul li{
    list-style-type: none;
    max-width: 100px;
    height: 140px;
    margin-right: 10px;
    transition: .3s linear;
    user-select: none;
}
.right-side-home-interface .pupular-songs-list ul li:hover{
    background: rgba(105, 105, 170, 0.1);
}
.right-side-home-interface .pupular-songs-list ul li .song-poster{
    width: 100px;
    height: 100px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.right-side-home-interface .pupular-songs-list ul li .song-poster img{
    position: absolute;
    width: 100%;
    height: 100%;
}
.right-side-home-interface .pupular-songs-list ul li .song-poster i{
    position: absolute;
    font-size: 32px;
    opacity: 0;
    transition: .3s linear;
    cursor: pointer;
}
.right-side-home-interface .pupular-songs-list ul li:hover .song-poster i{
    opacity: 1;
}

.right-side-home-interface .pupular-songs-list ul li h4{
    padding: 5px 0 0 5px;
    line-height: 15px;
    font-size: 12px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.right-side-home-interface .pupular-songs-list ul li h4 span{
    font-size: 10px;
    color: #4c5262;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.right-side-home-interface .pupular-songs-list ul::-webkit-scrollbar{
    display: none;
}

/* popular artist list  */
.right-side-home-interface .popular-artist{
    width: 90%;
    height: auto;
    margin: 0 auto;
    margin-top: 15px;
    /* border: 1px solid white; */
}
.right-side-home-interface .popular-artist .artist-heading{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.right-side-home-interface .popular-artist .artist-heading h4{
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    word-spacing: 2.25px;
}
.right-side-home-interface .popular-artist .artist-heading .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.right-side-home-interface .popular-artist .artist-heading .icon .icon-bg{
    height: 22px;
    width: 22px;
    background: transparent;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: .3s linear;
}
.right-side-home-interface .popular-artist .artist-heading .icon .icon-bg i{
    position: absolute;
    top: -2%;
    left: 10%;
    transition: .3s linear;
}
.right-side-home-interface .popular-artist .artist-heading .icon .icon-bg:nth-child(2) i{
    left: 15%;
}
.right-side-home-interface .popular-artist .artist-heading .icon .icon-bg:hover{
    background: #4c5262;
}
.right-side-home-interface .popular-artist .artist-heading .icon .icon-bg:hover i{
    color: #36e2ec;
}

/* artist list  */
.right-side-home-interface .popular-artist ul{
    width: 100%;
    height: auto;
    margin-top: 10px;
    display: flex;
    overflow: auto;
    scroll-behavior: smooth;
    overflow-y: hidden;
}
.right-side-home-interface .popular-artist ul li{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 15px;
    list-style-type: none;
    cursor: pointer;
}
.right-side-home-interface .popular-artist ul li img{
    width: 70px;
    height: 70px;
    background-size: contain;
    border-radius: 50%;
}
.right-side-home-interface .popular-artist ul::-webkit-scrollbar{
    display: none;
}


/* audio controler  */
.audio-controler{
    padding: 0 20px;
    display: flex;
    align-items: center;
}
.audio-controler .wave{
    width: 35px;
    height: 35px;
    /* border: 1px solid white; */
    padding-bottom: 5px;
    margin-right: 10px;
    display: flex;
    align-items: flex-end;
}
.audio-controler .wave .wave-child{
    width: 5px;
    height: 15px;
    background: #36e2ec;
    margin-right: 3px;
    border-radius: 10px 10px 0 0;
    animation: unset;
    transition: .3s linear;
}
.audio-controler .wave.active-wave .wave-child{
    animation: wave 0.5s infinite linear;
}
.audio-controler .wave .wave-child:nth-child(2){
    height: 12px;
    animation-delay: 0.4s;
}
.audio-controler .wave .wave-child:nth-child(3){
    height: 13px;
    animation-delay: 0.8s;
}
@keyframes wave {
    0%{height: 15px;}
    50%{height: 20px;}
    100%{height: 15px;}
}

.audio-controler img{
    width: 35px;
    height: 35px;
    margin-left: 5px;
}
.audio-controler h4{
    width: 130px;
    margin-left: 5px;
    color: #fff;
    line-height: 17px;
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.audio-controler h4 span{
    font-size: 12px;
    font-weight: 400;
    color: #4c5262;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* audio controler (time + play-pause + previous-next) */
.audio-controler .main-controler{
    margin: 0 20px 0 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;
    height: 100%;
    margin-left: 20px;
}
.audio-controler .main-controler .controler-icon-pack1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 12%;
}
.audio-controler .main-controler .download-btn{
    width: 3%;
    color: #fff;
    text-decoration: none;
}
.audio-controler .main-controler i, .controler-icon-pack1 i{
    cursor: pointer;
    outline: none;
    font-size: 20px;
}
.audio-controler .main-controler i, .controler-icon-pack1 i#shuffle {
    margin-right: 7px;
}
.audio-controler .main-controler .time-controler .audio-controler-range p{
    letter-spacing: 1.5px;
}
/* time controler play pause icon and range  */
.audio-controler .main-controler .time-controler{
    width: 76%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.audio-controler .main-controler .time-controler .audio-controler-range{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
.audio-controler .main-controler .time-controler .audio-controler-range p{
    font-size: 14px;
    font-weight: 300;
}
.audio-controler .main-controler .time-controler .audio-controler-range .time-bar{
    position: relative;
    width: 84%;
    background: rgba(105, 105, 170, 0.1);
    height: 3px;
    border-radius: 2px;
}
.audio-controler .main-controler .time-controler .audio-controler-range .time-bar .bar2{
    position: absolute;
    background: #36e2ec;
    width: 0%;
    height: 100%;
    transition: 1s linear;
    border-radius: 2px;
}
.audio-controler .main-controler .time-controler .audio-controler-range .time-bar .dot{
    position: absolute;
    width: 5px;
    height: 5px;
    background: #36e2ec;
    border-radius: 50%;
    top: -1px;
    transition: 1s linear;
}
.audio-controler .main-controler .time-controler .audio-controler-range .time-bar .dot::before{
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    border: 1px solid #36e2ec;
    border-radius: 50%;
    left: -5px;
    top: -5px;
    box-shadow: inset 0 0 3px #36e2ec;
}
.audio-controler .main-controler .time-controler .audio-controler-range .time-bar input{
    position: absolute;
    width: 100%;
    top: -6px;
    left: 0;
    cursor: pointer;
    z-index: 99999;
    opacity: 0;
}
.audio-controler .main-controler .time-controler .audio-controler-icons{
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3px;
}
.audio-controler .main-controler .time-controler .audio-controler-icons i{
    transition: .3s linear;
}
.audio-controler .main-controler .time-controler .audio-controler-icons i:hover{
    color: #36e2ec;
}

/* volume controler  */
.audio-controler .volume-controler{
    width: 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 25px;
}
.audio-controler .volume-controler i{
    font-size: 22px;
}
.audio-controler .volume-controler .volume-bar{
    position: relative;
    background: rgba(105, 105, 170, 0.1);
    width: 85%;
    height: 3px;
    border-radius: 2px;
    margin-left: 10px;
}
.audio-controler .volume-controler .volume-bar .vol-bar{
    transition: .5s linear;
    position: absolute;
    width: 50%;
    height: 100%;
    background: #36e2ec;
    top: 0;
    border-radius: 2px;
    left: 0;
    transition: 1s linear;
}
.audio-controler .volume-controler .volume-bar .vol-dot{
    position: absolute;
    width: 5px;
    height: 5px;
    background: #36e2ec;
    border-radius: 50%;
    top: -1px;
    left: 50%;
    transition: 1s linear;
}
.audio-controler .volume-controler .volume-bar .vol-dot::before{
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    border: 1px solid #36e2ec;
    border-radius: 50%;
    left: -5px;
    top: -5px;
    box-shadow: inset 0 0 3px #36e2ec;
}
.audio-controler .volume-controler .volume-bar input{
    position: absolute;
    width: 100%;
    top: -6px;
    left: 0;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
}

