@import url('https://fonts.googleapis.com/css2?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&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
    color: #5a5a5a;
    font-size: 16px;
}

body{
    background: #F5F6FA;
}

h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
}

/* ############## header ################ */

.header{
    width: calc(100% - 255px);
    max-width: 100%;    
    display: flex;
    justify-content: space-between;
    background: #fff;
    align-items: center;
    padding: 20px 30px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 111;
    box-shadow: 0px 1px 5px #0000003f;
    transition: all 0.2s ease;
}

.header:nth-child(3){
    gap: 0 100px;
}

.hamburger{
    display: block;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hamburger .bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 1px auto;
    background-color: #35bdaa;
}

.hamburger .bar:nth-child(1) {
    width: 17px;
    margin-left: 0px;
}

.hamburger .bar:nth-child(3){
    margin-left: 0px;
    width: 17px;
}

.header-logo{
    display: none;
}

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

.icon i{
    position: absolute;
    font-size: 20px;
    line-height: 2;
    color: #bfc3cd;
    cursor: pointer;
}

.user .badge{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    position: relative;
    top: -13px;
    right: 5px;
    padding: 4px;
}

.user-img{
    width: 26px;
    height: 26px;
    cursor: pointer;
    position: relative;
}

.user-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.mobile-dropdown {
    display: none;
    position: absolute;
    top: 46px;
    right: 0;
}

.mobile-dropdown .menu{
    width: 200px;
    border-radius: 5px; 
    background-color: #fff;
    padding: 20px 25px;
    border: 1px solid #00000049;
}

.mobile-dropdown .menu li{
    text-align: left;
    padding: 5px 0;
}

.mobile-dropdown .menu li a:hover{
    color: #5a5a5a;
}

.dropdown .btn:focus{
    box-shadow: none;
    outline: none;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #1e2125;
    background-color: #fff;
}

.userName h6{
    font-size: 14px;
    color: #5a5a5a;
}

.userName i{
    font-size: 14px;
    color: #Ae77f8;
}

.dropdown{
    position: relative;
}

.dropdown .btn{
    padding: 0;
}


.user .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    border-left: none;
    content: "\f0d7";
    border: none !important;
    font: normal normal normal 14px / 1 FontAwesome;
    color: #AE77F8;
    margin-left: 15px;
}

.dropdown-menu {
    position: absolute;
    width: 200px;
    top: 18px !important;
    left: 30px !important;
}


/* ############### sidebar ################### */


.left-sidebar {
    width: 100%;
    background: #fff;
    width: 255px;
    min-height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 30px 0 20px;
    box-shadow: 1px 1px 5px #0000003f;
    z-index: 111;
    height: 100vh;
    overflow-y: auto;
    transition: all 0.2s ease;
}



.active{
    left: -100%;
}

.headWidth{
    width: 100%;
    transition: width 0.2s ease;
}

.logo {
    display: flex;
    justify-content: center;
    padding: 30px 0;
}

.topButton{
    display: none;
}

.logo .img{
    width: 89px;
}

.logo .img img{
    width: 100%;
}

.left-sidebar .sidemenu{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px 0;
}

.menu-icon{
    width: 28px;
    height: 25px;
}

.menuItem a {
    font-size: 14px;
    color: #5a5a5a;
    font-weight: 500;
    margin-left: 10px;
}

.menuItem .icon i{
    font-size: 14px;
    color: #c1b4b4;
}
.inner-content {
    display: flex;
    align-items: center;
    gap: 0px;
}
.liclass {
    position: relative;
}

.liclass:after {
    content: "\f078";
    font: normal normal normal 14px / 1 FontAwesome;
    color: #c1b4b4;
    font-size: 14px;
    position: absolute;
    right: 0;
    top: 4px;
    cursor: pointer;
}
.subMenu {
    margin: 10px 0 0 56px;
    display: none;
}

.subMenu li{
    list-style-type: disc;
}

.subMenu li::marker{
    color: #8A8F9D;
}

.subMenu li a {
    font-size: 12px;
    color: #8A8F9D;
    margin-left: -2px;
    font-weight: 400;
}

/* .subMenu li a:hover{
    color: #8A8F9D;
} */
.user .dropdown-toggle {
    white-space: nowrap;
    position: relative;
}







/* ############# rightbar ##############  */

.right-sidebar {
    padding: 100px 15px 30px;
    margin-left: 260px;
    transition: all 0.3s ease;
}

.rightBar{
    margin-left: 0;
}

.chart-content {
    background: #fff;
    padding: 20px 25px;
    border-radius: 5px;
    min-height: 420px;
}

.chart-content h6 {
    color: #434d6a;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
}

.selectBox select {
    background-color: #f5eefe;
    border: none;
    font-size: 11px;
    color: #AE77F8;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #e2e5e9;
}

.streams{
    margin-top: 15px;
}

.streams h6{
    font-size: 14px;
    color: #35bdaa;
}

.streams .value1{
    color: #fb7e48;
    font-size: 11px;
}

.streams .content {
    color: #818f9d;
    font-size: 11px;
}

.content:nth-child(5) .artist-data h6{
    color: #AE77F8;
}

.three-dot{
    cursor: pointer;
}

.three-dot .dot{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #00000000;
}

.selectBox i {
    color: #dbdfeb;
}


#chart {
    max-width: 100%;
    margin: 35px 0 0 0;
}


.right-sidebar .apexcharts-legend{
    display: none;
}

.chart-container {
    width: 100%;
    margin: 40px 0 0px 0px;
}

.chart-container #streamsChart{
        display: block;
        box-sizing: border-box;
        height: 250px !important;
        width: 100% !important;
}




.chart-content .main h6{
    color: #434d6a;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
}


/* .main-content{
    margin: 0 -25px;
} */

.main-content .content {
    border-bottom: 2px dotted #edf1f5;
    padding: 3px 25px;
    margin: 0 -25px;
}

.main-content .content:nth-child(6){
    border-bottom: none;
}


.main-content .content p{
    font-size: 14px;
    color: #Ae77f8;
}

.main-content .content h6{
    color: #434d6a;
    font-size: 11px;
}


.main-content .artist-data p {
    color: rgb(138, 143, 157);
    font-size: 12px;
    margin: 0;
}








/* ################# charts ###################### */

.charts {
    min-height: 554px;
    background: #fff;
    border-radius: 5px;
}




.charts .inner-content h6{
    font-size: 14px;
    color: #434d6a;
    line-height: 21px;
    font-weight: 500;
}


/* horzntal  */

.chartMainBox {
    width: 100%;
    max-width: 600px;
    padding: 30px 0px;
    height: 160px !important;
}

.chartMainBox canvas#myChart{
    display: block;
    box-sizing: border-box;
    width: 100% !important;
}

.top-artist {
    padding: 0px 0px 0 17px;
}

.main-content ul li{
    list-style: disc;
    font-size: 12px;
    color: 8a8f9d;
    font-weight: 500;
}

.main-content li::marker{
    font-size: 16px;
}

.main-content h6{
    font-size: 11px;
}

.main-content:nth-child(1) li::marker{
    color: #AE77F8;
}

.main-content:nth-child(2) li::marker{
    color: #565ff7;
}

.main-content:nth-child(3) li::marker{
    color: #35bdaa;
}


.main-content:nth-child(1) h6{
    color: #434d6a;
    font-weight: 600;
}

.main-content:nth-child(2) h6{
    color: #434d6a;
    font-weight: 600;
}

.main-content:nth-child(3) h6{
    color: #35bdaa ;
    font-weight: 600;
}






/* pie */

element.style {
    max-width: 400px; */
    margin: 0;
}

.peiChart {
    display: flex !important;
    justify-content: center !important;
    box-sizing: border-box;
    width: 100% !important;
    padding: 30px 0;
    margin: 0 !important;
}


.peiChart #myPieChart {
    height: 160px !important;   
    width: 160px !important;
}


.country{
    padding: 0px 25px;
    margin-bottom: 10px;
}

.country li{
    list-style: disc;
    font-size: 12px;
    color: #8a8f9d;
}

.country p{
    color: #434d6a;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}

.teritory-deta  h6 {
    color: #35bdaa;
    font-size: 11px;
    margin-top: 3px;
}

.teritory-deta:nth-child(1) .country li::marker{
    color: #565ff7;
} 

.teritory-deta:nth-child(2) .country li::marker{
    color: #35bdaa;
} 

.teritory-deta:nth-child(3) .country li::marker{
    color: #ffb748;
} 

.teritory-deta:nth-child(4) .country li::marker{
    color: #656ff7;
} 

.teritory-deta:nth-child(5) .country li::marker{
    color: #35bdaa;
}

/* ######### vBar ####### */

.verticalBar {
    width: 100% !important;
    padding: 38px 0 !important;
    display: flex;
    justify-content: flex-start;
}

.verticalBar #customBarChart{
    display: block;
    box-sizing: border-box;
    height: 143px !important;
    width: 100%;
}


/* ### doughnut Chart ##### */

.doughnut {
    display: flex;
    justify-content: center;
    width: 100% !important;
    padding: 30px 0px;
}

.doughnut #doughnutChart{
    display: block;
    box-sizing: border-box;
    height: 160px !important;
    width: 160px !important;
}


/* ########### images section ########## */

.imageBox-section {
    background-color: #fff;
    min-height: 347px !important;
}

.imageBox-section .row{
    --bs-gutter-x: 0.5rem !important;
}

.mainImgBox{
    margin-top: 30px;
 }

 .imageBox{
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease; 
    margin-top: 25px;  
 }

 .imageBox:hover{
    box-shadow: 1px 2px 5px #00000063;
    border-radius: 5px;
 }

 .imgbox img {
    width: 100%;
    /* height: 167px; */
    object-fit: cover;
    border-radius: 5px;
}


.img-content h6{
    font-size: 13px;
    color: #434d6a;
    font-weight: 600;
    line-height: 19.5px;
}

.img-content p{
    color: #8a8f9d;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
}



.subLabel-section {
    margin-top: 25px;
    min-height: 347px !important;
}

.sub-label-artist{
    margin-top: 20px;
}

.artist-img img{
    width: 32px;
    height: 25px;
    border-radius: 2px;
}

.artist-content h6{
    color: #434d6a;
    font-size: 13px;
    /* line-height: 19.5px; */
    font-weight: 500;
}

.artist-content p{
    font-size: 12px;
    /* line-height: 18px; */
    color: #8a8f9d;
    margin: 0;
}

.label-artist{
    margin: 25px 0;
    border: 2px dotted #edf1f5;
}

.label-artist h5{
    color: #35bdaa;
    font-size: 12px;
    font-weight: 500;
    line-height: 21px;
}























/* ########### medui query #########  */


@media (max-width:1599px){


    /* ###### charts ######## */

    .verticalBar {  
        padding: 25px 0 !important;
    }
/* 
    .imgbox img {
        width: 200px;
        height: 190px;
    } */
    .subLabel-section {
        min-height: 350px;
    }
}   



@media (max-width:1440px){


    /* ####### rightbar ######### */

    .main-content .content {
        padding: 2px 25px;
    }


    /* ######## image gallery ######## */

    /* .imgbox img {
        width: 180px;
        height: 175px;
    } */


    /* ######### chart ######## */

    .verticalBar {
        padding: 25px 0 !important;
    }

    
/* 
    .mainImgBox {
        margin-top: 30px;
        justify-content: center !important;
    } */

    .subLabel-section {
        min-height: 348px;
    }

    .verticalBar {
        padding: 39px 0 !important;
    }
}










@media (max-width:1200px){

/* ######## rightbar ######## */

    .chart-content {
        margin-bottom: 25px;
    }
    
    /* .mainImgBox {
        margin-top: 30px;
       justify-content: center !important;
    }

    .imgbox img {
        width: 190px;
        height: 180px;
        border-radius: 5px;
    } */
}



@media (max-width: 991px){

    .header {
        width: 100% ;
        padding: 10px 30px;
    }
    
    .hamburger {
        order: 1;
    }
    
    .icon i {
        font-size: 30px;
    }
    
    .header .dropdown a {
        display: none;
    }
    
    .header .user {
        margin-left: 380px;
    }
    
    .mobile-dropdown {
        top: 54px;
        left: -129px !important;
    }
    
    .left-sidebar.active {
        left: 0;
        width: 300px !important;
    }   
    
    .dropdown-menu {
        top: 26px !important;
        left: 30px !important;
    }
    
    .header-logo{
        display:block;
    }
    
    .header-logo img, svg {
        width: 60px !important;
    }
    
    /* ######## left sidebar ##### */
    
    
    .logo {
        justify-content: space-between;
    }
    
    .topButton{
        display: block;
    }
    
    .left-sidebar{
        left: -100%;
        transition: all 0.5s ease;
    }
    
    .left-sidebar.active {
        left: 0;
        width: 50%;
    }
    
    
    /* ###### right sidebar ######## */
    
    .right-sidebar {
        margin-left: 0;
    }
    
    .user-content {
        margin-top: 0;
    }

/* charts   */

.chartMainBox {
    width: 100%;
}

.chartMainBox canvas#myChart {
    width: 100% !important;
}

.peiChart {
    width: 100% !important;
}

.peiChart #myPieChart {
    height: 150px !important;
    width: 150px !important;
}

.verticalBar {
    width: 100% !important;
}

element.style {
   width: 80% !important;   
}

.doughnut {
    width: 100%;
}

.doughnut #doughnutChart {
    height: 150px !important;
    width: 150px !important;
} 

/* .mainImgBox {
    margin-top: 30px;
    justify-content: center !important;
    gap: 10px 25px;
}

.imgbox img {
    width: 198px;
    height: 188px;
} */

}











@media (max-width: 767px){
    .header {
        width: 100% ;
        padding: 10px 30px;
    }
    
    .hamburger {
        order: 1;
    }
    
    .icon i {
        font-size: 30px;
    }
    
    .header .dropdown a {
        display: none;
    }
    
    .header .user {
        margin-left: 380px;
    }
    
    .mobile-dropdown {
        top: 54px;
        left: -129px !important;
    }
    
    .mobile-dropdown.active {
        display: block;
    }
    
    .dropdown-menu {
        top: 26px !important;
        left: 30px !important;
    }
    
    .header-logo{
        display:block;
    }
    
    .header-logo img, svg {
        width: 60px !important;
    }
    
    /* ######## left sidebar ##### */
    
    
    .logo {
        justify-content: space-between;
    }
    
    .topButton{
        display: block;
    }
    
    .left-sidebar{
        left: -100%;
        transition: all 0.5s ease;
    }
    
    .left-sidebar.active {
        left: 0;
        width: 50%;
    }
    
    
    /* ###### right sidebar ######## */
    
    .right-sidebar {
        margin-left: 0;
    }
    
    .user-content {
        margin-top: 0;
    }


    /* charts  */

    .chartMainBox {
        width: 100% !important;
    }

    .chartMainBox #myChart{
        width: 100% !important;
    }

    .peiChart {
        width: 100% !important;
        margin: 0 auto !important;
    }

    .peiChart #myPieChart {
        height: 150px !important;
        width: 150px !important;
    }

    .verticalBar {
        width: 100% !important;
    }

    .verticalBar #customBarChart {
        width: 70% !important;
    }

    .doughnut {
        width: 100% !important;
    }

    .doughnut #doughnutChart {
        height: 150px !important;
        width: 150px !important;
    }

    /* .imgbox img {
        width: 190px;
        height: 180px;
    } */
    
}






@media (max-width: 576px){
    .header {
        width: 100% ;
        padding: 10px 30px;
    }
    
    .hamburger {
        order: 1;
    }
    
    .icon i {
        font-size: 30px;
    }
    
    .header .dropdown a {
        display: none;
    }
    
    .header .user {
        margin-left: 300px;
    }
    
    .mobile-dropdown {
        top: 54px;
        left: -129px !important;
    }
    
    .mobile-dropdown.active {
        display: block;
    }
    
    .dropdown-menu {
        top: 26px !important;
        left: 30px !important;
    }
    
    .header-logo{
        display:block;
    }
    
    .header-logo img, svg {
        width: 60px !important;
    }
    
    /* ######## left sidebar ##### */
    
    
    .logo {
        justify-content: space-between;
    }
    
    .topButton{
        display: block;
    }
    
    .left-sidebar{
        left: -100%;
        transition: all 0.5s ease;
    }
    
    .left-sidebar.active {
        left: 0;
        width: 100% !important;
    }
    
    
    /* ###### right sidebar ######## */
    
    .right-sidebar {
        margin-left: 0;
    }
    
    .user-content {
        margin-top: 20px;
    }


    /* charts  */
    
    .chartMainBox {
        width: 100% !important;
    }

    .chartMainBox canvas#myChart {
        width: 100% !important;
    }

    .peiChart {
        width: 100% !important;
        margin: 0 auto !important;
    }

    .peiChart #myPieChart{
        height: 150px;
        width: 150px;
    }
    
    .verticalBar {
        width: 100% !important;
    }

    .verticalBar #customBarChart {
        width: 100% !important;
    }

    .doughnut {
        width: 100% !important;
    }

    .doughnut #doughnutChart {
        height: 150px !important;
        width: 150px !important;
    }

    /* .mainImgBox {
        margin-top: 30px;
        justify-content: center !important;
        gap: 30px 30px !important;
    } */
} 







@media (max-width: 480px){

/* ####### header ####### */

.header {
    width: 100% ;
    padding: 10px 30px;
}

.hamburger {
    order: 1;
}

.icon i {
    font-size: 30px;
}

.header .dropdown a {
    display: none;
}

.header .user {
    margin-left: 140px;
}

.mobile-dropdown {
    top: 54px;
    left: -129px !important;
}

.left-sidebar.active {
    left: 0;
    width: 100% !important;
}

.dropdown-menu {
    top: 26px !important;
    left: 30px !important;
}

.mobile-dropdown.active {
    display: block;
    left: -175px !important;
}

.header-logo img, svg {
    width: 60px !important;
}

/* ######## left sidebar ##### */


.logo {
    justify-content: space-between;
}

.topButton{
    display: block;
}

.left-sidebar{
    left: -100%;
    transition: all 0.5s ease;
}

.left-sidebar.active{
    left: 0;
    width: 100%;
}


/* ###### right sidebar ######## */

.right-sidebar {
    margin-left: 0;
}

.user-content {
    margin-top: 0;
}



/* charts */

.chartMainBox {
    width: 100% !important;
}

.chartMainBox canvas#myChart {
    width: 100% !important;
}

.peiChart {
    width: 100% !important;
}   

.peiChart #myPieChart {
    height: 150px !important;
    width: 150px !important;
}

.verticalBar {
    width: 100% !important;
}

.verticalBar #customBarChart {
    width: 100% !important;
}

.doughnut {
    width: 100% !important;
}

.doughnut #doughnutChart {
    height: 150px !important;
    width: 150px !important;
}

/* .mainImgBox {
    margin-top: 30px;
    justify-content: center !important;
    gap: 15px 15px !important;
}

.imgbox img {
    width: 154px;
    height: 145px;
} */



} 




@media (max-width: 320px){
   /* ####### header ####### */

.header {
    width: 100% ;
    padding: 10px 30px;
}

.hamburger {
    order: 1;
}

.icon i {
    font-size: 30px;
}

.header .dropdown a {
    display: none;
}

.header .user {
    margin-left: 120px;
}

.mobile-dropdown {
    top: 54px;
    left: -129px !important;
}

.left-sidebar.active {
    left: 0;
    width: 100% !important;
}

.mobile-dropdown.active {
    display: block;
    top: 53px;
    left: -164px !important;
}

.dropdown-menu {
    top: 26px !important;
    left: 30px !important;
}

.header-logo{
    display:block;
}

.header-logo img, svg {
    width: 60px !important;
}

/* ######## left sidebar ##### */


.logo {
    justify-content: space-between;
}

.topButton{
    display: block;
}

.left-sidebar{
    left: -100%;
    transition: all 0.5s ease;
}

.left-sidebar.active{
    left: 0;
    width: 100%;
}


/* ###### right sidebar ######## */

.right-sidebar {
    margin-left: 0;
}

.chart-content h6 {
    font-size: 11px;
}

.user-content {
    margin-top: 0px;
}


/* #charts  */


.chartMainBox canvas#myChart {
    width: 100% !important;
}

.chartMainBox {
    width: 100% !important;
}


.peiChart #myPieChart {
    height: 150px !important;
    width: 150px !important;
}  


.verticalBar #customBarChart {
    width: 100% !important;
}

.doughnut {
    width: 100% !important;
}

.doughnut #doughnutChart {
    height: 150px !important;
    width: 150px !important;
}

/* .imgbox img {
    width: 100%;
    height: 200px;
    margin-top: 15px;
} */

}