@import url('https://fonts.googleapis.com/css2?family=Cairo:slnt,wght@-11..11,200..1000&display=swap');
*{box-sizing: border-box;}
body{ color: #000; font-size: 16px; font-family: "Cairo", serif;}
ul, ol, li{padding: 0; margin: 0; list-style: none;}
li{list-style-type: none;}
a{text-decoration: none;  font-weight: 600; color: #000;}
input:focus{
outline: none;
}
button:focus{
outline: none;
}
img{width: 100%;}
html, body{
   scroll-behavior: smooth;
}
.Left-Sidebar {
    position: fixed;
    display: block;
    min-height: 100%;
    transition: width 0.5s ease-out;
    width: 242px;
    background: #fff;
    top: 70px;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #eeeeee transparent;
    padding-bottom: 50px;
}
    .Left-Sidebar.hidden {
      transform: translateX(-100%);
    }
    .Right-Side {
      margin-left: 242px;
      flex: 1;
      padding: 20px;
      transition: margin-left 0.3s ease-out;
    }
    .Right-Side.expanded {
      margin-left: 0;
    }
.Main-Wrapper {
    min-height: 100vh;
    overflow-x: hidden;
    background-color: #eef5f9;
}
/*Header-css*/
.Header {
    background: #ffffff;
    padding: 8px 18px;
    position: fixed;
    width: 100%;
    z-index: 9;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .3);
}
.Navbar {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}
.Logo {
    width: 12%;
}
.Logo img {
    width: 60px;
    height: 60px;
}
.Logo a {
    color: #000000;
    font-size: 30px;
    font-weight: 800;
}
.Side-menus button {
    border: none;
    background: #0161a5;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.Side-menus button:hover {
    opacity: .7;
}
.Navber-menus {
    display: flex;
    align-items: center;
    width: 75%;
    gap: 20px;
    justify-content: flex-start;
    margin-left: 20px;
}
.Search-sec {
    width: 100%;
    position: relative;
}
.Search-icon {
    position: absolute;
    left: 12px;
    transform: translateY(-50%);
    top: 50%;
    font-size: 15px;
    color: #555;
}
.Search-sec input {
    width: 100%;
    max-width: 500px;
    border: none;
    padding: 8px 10px 8px 35px;
    border-radius: 6px;
    background: #eeeeee;
}
.Menu-Profile {
    width: 12%;
}
.Drop-Btn {
    text-align: right !important;
}
.Menu-Dropdown {
    top: 10px !important;
}
.Menu-Profile .Sidebar-Dropdown .dropdown-toggle::after {
    display: none;
}
.Menu-Profile .Sidebar-Profile-Info {
    padding-top: 0;
}
.Menu-Profile .Profile-image img {
    width: 40px;
    height: 40px;
}
.Menu-profile {
    padding: 10px 16px;
    border-bottom: 1px dotted #ababab;
}


/*Side-bar-css*/
.Left-Sidebar {
    position: fixed;
    display: block;
    min-height: 100%;
    transition: width 0.5s ease-out;
    width: 242px;
    background: #fff;
    top: 76px;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.Sidebar-Content {
    padding-bottom: 30px;
}
.Sidebar-Profile {
    padding: 25px 18px;
    background-image: url(../images/profile_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.Profile-image img {
    width: 50px;
    height: 50px;
    background: #fff;
    padding: 6px;
    border-radius: 50%;
}
.Sidebar-Profile-Info {
    padding-top: 10px;
}
.Sidebar-Profile-Info p {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 20px;
}
.Sidebar-Profile-Info span {
    color: #555;
    font-size: 14px;
}
.Sidebar-Dropdown.dropdown button {
    border: none;
    background: transparent;
    text-align: left;
    width: 100%;
    max-width: 230px;
}
.Sidebar-Dropdown.dropdown ul.show {
    width: 100%;
    max-width: 230px;
    border: none;
    box-shadow: 0 .375rem 1.25rem 0 rgba(38, 43, 67, .18);
    padding: 10px 0 0px;
    overflow: hidden;
}
.Profile-Dropdown.show {
    top: 22px !important;
}
.Sidebar-Dropdown a.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.Sidebar-Dropdown a.dropdown-item span {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}
.Sidebar-Dropdown li {
    border-bottom: 1px solid #e6e6e6;
    padding: 5px 0;
}
.Sidebar-Dropdown li:last-child {
    border: none;
}
.Sidebar-Dropdown ul li i {
    width: 20px;
}
.Logout {
    background: #0161a5;
}
.Logout i{
    color: #fff;
}
.Logout a.dropdown-item span {
    color: #fff;
}
.dropdown-item:focus, .dropdown-item:hover {
    background-color: #f8f9fa00;
}
.SideBar-Menu {
    padding: 0 0 25px;
}
.SideBar-Menu h1 {
    text-transform: capitalize;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 22px 18px 10px;
    background: #0161a5;
    padding: 14px 10px;
    border-radius: 6px;
    color: #fff;
}
.SideBar-Menu h1:hover {
    opacity: .7;
}
.SideBar-Menu ul {
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 30px;
    padding-bottom: 20px;
}
.SideBar-Menu ul:last-child {
    border: none;
}
.SideBar-Menu ul li {
    background: #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
    margin: 0 18px;
}
.SideBar-Menu ul li a {
    text-transform: capitalize;
    color: #353535;
    font-size: 16px;
}
.SideBar-Menu ul li:hover a {
    color: #0161a5;
}
.SideBar-Menu ul li a i {
    width: 30px;
}

/*Right-side-css*/
.Right-Side {
    margin-left: 250px;
    padding: 100px 20px 50px;
}
.Dashboard h2 {
    text-transform: uppercase;
    color: #000;
    margin-bottom: 2px;
}
.Dashboard-card {
    margin-top: 40px;
}
.Card-bg {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
    padding: 20px 20px 30px 20px;
    margin-bottom: 30px;
}
.Card-bg h2 {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}
.Card-left h3 {
    font-size: 22px;
    font-weight: 700;
    color: #3c3c3c;
}
.Card-icon {
    font-size: 26px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Card-sub-flex {
    gap: 20px;
    align-items: center;
    margin-top: 25px;
}
.Trending{
    color: #0161a5;
    background: #ecf9fa;
}
.Card-right h3 {
    font-size: 28px;
    color: #000;
    font-weight: 700;
    margin: 0;
    padding: 0;
}
.Percent {
    color: #4caf50;
    font-weight: 700;
    font-size: 16px;
}
.Inc {
    padding-left: 5px;
    color: #333;
}
.Card-Header {
    border-bottom: 1px solid #e6e6e6;
    margin: 0 -20px 30px;
    padding: 0 20px 8px;
}
#myChart{
    width: 100%;
    height: auto;
  }
.Donut-Data {
    margin-top: 30px;
    text-align: center;
}
.Donut-Legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    row-gap: 10px;
    margin-bottom: 20px;
}
  .legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .legend-color {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%; /* Make it circular */
    margin-right: 5px;
  }
  .Donut-Data {
    text-align: center;
    margin-top: 20px;
  }
  .Donut-Data h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
  }
  .Donut-Data p {
    font-size: 16px;
    color: #555;
    margin: 5px 0 0;
  }
.Trending-slider .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
}
.Slick_Slide {
    overflow: hidden;
    background: #eef5f9;
    border-radius: 10px;
}
.ImgIcon {
    background: #fff;
    border: 1px solid #dfdfdf;
    overflow: hidden;
    position: relative;
    transition-duration: .35s;
}
.ImgIcon img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.TitlePara {
    padding: 20px 20px 25px;
}
.TitlePara h3 {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    text-transform: capitalize;
    margin-bottom: 4px;
}
.TitlePara p {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #0161a5;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0;
}
.Trending-slider button.slick-arrow {
    width: 40px;
    height: 40px;
    border: 0;
    background: #0161a5;
    border-radius: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    z-index: 1;
    font-size: 0;
}
.Trending-slider button.slick-next {
    left: 0;
}
.Trending-slider button.slick-next:before {
    content: "\f177";
    font: normal normal normal 14px / 1 FontAwesome;
    color: #fff;
}
.Trending-slider button.slick-prev {
    right: 0;
}
.Trending-slider button.slick-prev:after {
   content: "\f178";
    font: normal normal normal 14px / 1 FontAwesome;
    color: #fff;
}
.Trending-Btn {
    text-align: center;
}
.Buttonstyle {
    display: inline-block;
    background: #0161a5;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    margin-top: 30px;
}
.Buttonstyle:hover {
    opacity: .7;
}
.Top-Releasing {
    padding-bottom: 40px;
}
.Release-Li img {
    width: 55px;
    height: 55px;
    min-height: 55px;
    border-radius: 6px;
    margin-right: 10px;
}
.Release-left a {
    text-transform: capitalize;
    display: block;
    font-size: 18px;
    line-height: 24px;
}
.Artist-small {
    color: #333;
    text-transform: capitalize;
    font-size: 16px;
}
.Release-right i {
    color: #0161a5;
}
.Release-right small {
    font-size: 16px;
    color: #333;
}
.List-unstyle .border-bottom {
    margin-bottom: 16px;
}
.Latest-Release {
    height: 100%;
}
.Inner-latest {
    height: 100%;
    border: 1px solid #0161a5;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    text-align: center;
    border-radius: 6px;
}
.Inner-latest a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.Plus-icon i {
    background: #0161a599;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 21px;
}
.New-release {
    margin-top: 10px;
}
.New-release h3 {
    font-size: 20px;
}




.Balance-sec {
    overflow: hidden;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 60px auto 0;
}
.Balance-sec .Card-Header {
    background: #0161a5;
    color: #fff;
    margin: -20px -20px 0px;
    padding: 14px 20px;
}
.Balance-sec h2 {
    margin-bottom: 0;
}
.Inner-Balance {
    padding: 25px 25px 15px;
}
.Balance {
    font-size: 34px;
    font-weight: 700;
}
.Account {
    color: #0161a5;
}





@media screen and (max-width: 767px) {
 .Left-Sidebar {
    display: none;
}
.Right-Side {
    margin-left: 0 !important;
}
.Left-Sidebar.hidden {
    transform: translateX(0%);
    display: block !important;
    width: 100%;
}
}